MLIR  19.0.0git
Namespaces | Macros | Functions
SROA.cpp File Reference
#include "mlir/Transforms/SROA.h"
#include "mlir/Analysis/DataLayoutAnalysis.h"
#include "mlir/Analysis/SliceAnalysis.h"
#include "mlir/Interfaces/MemorySlotInterfaces.h"
#include "mlir/Transforms/Passes.h"
#include "mlir/Transforms/Passes.h.inc"

Go to the source code of this file.

Namespaces

 mlir
 Include the generated interface declarations.
 

Macros

#define GEN_PASS_DEF_SROA
 
#define DEBUG_TYPE   "sroa"
 

Functions

static std::optional< MemorySlotDestructuringInfo > computeDestructuringInfo (DestructurableMemorySlot &slot, const DataLayout &dataLayout)
 Computes information for slot destructuring. More...
 
static void destructureSlot (DestructurableMemorySlot &slot, DestructurableAllocationOpInterface allocator, RewriterBase &rewriter, const DataLayout &dataLayout, MemorySlotDestructuringInfo &info, const SROAStatistics &statistics)
 Performs the destructuring of a destructible slot given associated destructuring information. More...
 

Macro Definition Documentation

◆ DEBUG_TYPE

#define DEBUG_TYPE   "sroa"

Definition at line 20 of file SROA.cpp.

◆ GEN_PASS_DEF_SROA

#define GEN_PASS_DEF_SROA

Definition at line 16 of file SROA.cpp.

Function Documentation

◆ computeDestructuringInfo()

static std::optional<MemorySlotDestructuringInfo> computeDestructuringInfo ( DestructurableMemorySlot slot,
const DataLayout dataLayout 
)
static

Computes information for slot destructuring.

This will compute whether this slot can be destructured and data to perform the destructuring. Returns nothing if the slot cannot be destructured or if there is no useful work to be done.

Definition at line 46 of file SROA.cpp.

References mlir::MemorySlot::elemType, mlir::getForwardSlice(), mlir::Value::getUses(), mlir::MemorySlot::ptr, mlir::succeeded(), and mlir::Value::use_empty().

Referenced by mlir::tryToDestructureMemorySlots().

◆ destructureSlot()

static void destructureSlot ( DestructurableMemorySlot slot,
DestructurableAllocationOpInterface  allocator,
RewriterBase rewriter,
const DataLayout dataLayout,
MemorySlotDestructuringInfo &  info,
const SROAStatistics statistics 
)
static