13#ifndef LLVM_CODEGEN_MACHINEFRAMEINFO_H
14#define LLVM_CODEGEN_MACHINEFRAMEINFO_H
27class MachineBasicBlock;
56 bool SpilledToReg =
false;
151 bool isStatepointSpillSlot =
false;
170 bool PreAllocated =
false;
186 StackObject(
uint64_t Size,
Align Alignment, int64_t SPOffset,
187 bool IsImmutable,
bool IsSpillSlot,
const AllocaInst *Alloca,
188 bool IsAliased,
uint8_t StackID = 0)
189 : SPOffset(SPOffset), Size(Size), Alignment(Alignment),
190 isImmutable(IsImmutable), isSpillSlot(IsSpillSlot), StackID(StackID),
191 Alloca(Alloca), isAliased(IsAliased) {}
195 Align StackAlignment;
208 bool StackRealignable;
214 std::vector<StackObject> Objects;
219 unsigned NumFixedObjects = 0;
223 bool HasVarSizedObjects =
false;
227 bool FrameAddressTaken =
false;
231 bool ReturnAddressTaken =
false;
235 bool HasStackMap =
false;
239 bool HasPatchPoint =
false;
256 int64_t OffsetAdjustment = 0;
270 bool AdjustsStack =
false;
273 bool HasCalls =
false;
276 int StackProtectorIdx = -1;
279 int FunctionContextIdx = -1;
285 uint64_t MaxCallFrameSize = ~UINT64_C(0);
289 unsigned CVBytesOfCalleeSavedRegisters = 0;
295 std::vector<CalleeSavedInfo> CSInfo;
298 bool CSIValid =
false;
302 SmallVector<std::pair<int, int64_t>, 32> LocalFrameObjects;
305 int64_t LocalFrameSize = 0;
309 Align LocalFrameMaxAlign;
314 bool UseLocalStackAllocationBlock =
false;
318 bool HasOpaqueSPAdjustment =
false;
322 bool HasCopyImplyingStackAdjustment =
false;
325 bool HasVAStart =
false;
328 bool HasMustTailInVarArgFunc =
false;
333 bool HasTailCall =
false;
336 SmallVector<MachineBasicBlock *, 4> SavePoints;
338 SmallVector<MachineBasicBlock *, 4> RestorePoints;
346 : StackAlignment(StackAlignment),
347 StackRealignable(StackRealignable), ForcedRealign(ForcedRealign) {}
424 LocalFrameObjects.push_back(std::pair<int, int64_t>(ObjectIndex,
Offset));
425 Objects[ObjectIndex + NumFixedObjects].PreAllocated =
true;
430 assert (i >= 0 && (
unsigned)i < LocalFrameObjects.size() &&
431 "Invalid local object reference!");
432 return LocalFrameObjects[i];
447 LocalFrameMaxAlign = Alignment;
456 return UseLocalStackAllocationBlock;
463 UseLocalStackAllocationBlock = v;
468 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
469 "Invalid Object Idx!");
470 return Objects[ObjectIdx+NumFixedObjects].PreAllocated;
475 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
476 "Invalid Object Idx!");
477 return Objects[ObjectIdx+NumFixedObjects].Size;
482 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
483 "Invalid Object Idx!");
484 Objects[ObjectIdx+NumFixedObjects].Size =
Size;
489 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
490 "Invalid Object Idx!");
491 return Objects[ObjectIdx + NumFixedObjects].Alignment;
502 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
503 "Invalid Object Idx!");
504 Objects[ObjectIdx + NumFixedObjects].Alignment = Alignment;
515 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
516 "Invalid Object Idx!");
517 return Objects[ObjectIdx+NumFixedObjects].Alloca;
523 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
524 "Invalid Object Idx!");
525 Objects[ObjectIdx + NumFixedObjects].Alloca =
nullptr;
531 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
532 "Invalid Object Idx!");
534 "Getting frame offset for a dead object?");
535 return Objects[ObjectIdx+NumFixedObjects].SPOffset;
539 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
540 "Invalid Object Idx!");
541 return Objects[ObjectIdx+NumFixedObjects].isZExt;
545 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
546 "Invalid Object Idx!");
547 Objects[ObjectIdx+NumFixedObjects].isZExt = IsZExt;
551 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
552 "Invalid Object Idx!");
553 return Objects[ObjectIdx+NumFixedObjects].isSExt;
557 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
558 "Invalid Object Idx!");
559 Objects[ObjectIdx+NumFixedObjects].isSExt = IsSExt;
565 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
566 "Invalid Object Idx!");
568 "Setting frame offset for a dead object?");
569 Objects[ObjectIdx+NumFixedObjects].SPOffset = SPOffset;
573 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
574 "Invalid Object Idx!");
575 return (
SSPLayoutKind)Objects[ObjectIdx+NumFixedObjects].SSPLayout;
579 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
580 "Invalid Object Idx!");
582 "Setting SSP layout for a dead object?");
583 Objects[ObjectIdx+NumFixedObjects].SSPLayout = Kind;
613 return ForcedRealign || MaxAlignment > StackAlignment;
633 return HasCopyImplyingStackAdjustment;
636 HasCopyImplyingStackAdjustment =
B;
661 std::vector<MachineBasicBlock::iterator> *FrameSDOps =
nullptr);
673 return MaxCallFrameSize;
676 return MaxCallFrameSize != ~UINT64_C(0);
683 return CVBytesOfCalleeSavedRegisters;
686 CVBytesOfCalleeSavedRegisters = S;
694 bool IsImmutable,
bool isAliased =
false);
699 bool IsImmutable =
false);
703 return ObjectIdx < 0 && (ObjectIdx >= -(int)NumFixedObjects);
709 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
710 "Invalid Object Idx!");
711 return Objects[ObjectIdx+NumFixedObjects].isAliased;
716 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
717 "Invalid Object Idx!");
718 Objects[ObjectIdx+NumFixedObjects].isAliased = IsAliased;
726 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
727 "Invalid Object Idx!");
728 return Objects[ObjectIdx+NumFixedObjects].isImmutable;
733 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
734 "Invalid Object Idx!");
735 Objects[ObjectIdx+NumFixedObjects].isImmutable = IsImmutable;
740 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
741 "Invalid Object Idx!");
742 return Objects[ObjectIdx+NumFixedObjects].isSpillSlot;
746 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
747 "Invalid Object Idx!");
748 return Objects[ObjectIdx+NumFixedObjects].isStatepointSpillSlot;
753 return Objects[ObjectIdx+NumFixedObjects].StackID;
758 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
759 "Invalid Object Idx!");
760 Objects[ObjectIdx+NumFixedObjects].StackID =
ID;
767 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
768 "Invalid Object Idx!");
769 return Objects[ObjectIdx+NumFixedObjects].Size == ~0ULL;
775 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
776 "Invalid Object Idx!");
777 return Objects[ObjectIdx + NumFixedObjects].Size == 0;
781 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
782 "Invalid Object Idx!");
783 Objects[ObjectIdx+NumFixedObjects].isStatepointSpillSlot =
true;
801 Objects[ObjectIdx+NumFixedObjects].Size = ~0ULL;
820 CSInfo = std::move(CSI);
830 SavePoints.assign(NewSavePoints.
begin(), NewSavePoints.
end());
833 return RestorePoints;
836 RestorePoints.assign(NewRestorePoints.
begin(), NewRestorePoints.
end());
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the SmallVector class.
an instruction to allocate memory on the stack
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
The CalleeSavedInfo class tracks the information need to locate where a callee saved register is in t...
CalleeSavedInfo(MCRegister R, int FI=0)
bool isSpilledToReg() const
void setReg(MCRegister R)
MCRegister getReg() const
MCRegister getDstReg() const
void setDstReg(MCRegister SpillReg)
Wrapper class representing physical registers. Should be passed by value.
constexpr unsigned id() const
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
bool needsSplitStackProlog() const
Return true if this function requires a split stack prolog, even if it uses no stack space.
void setMaxCallFrameSize(uint64_t S)
LLVM_ABI int CreateFixedObject(uint64_t Size, int64_t SPOffset, bool IsImmutable, bool isAliased=false)
Create a new object at a fixed location on the stack.
bool hasVarSizedObjects() const
This method may be called any time after instruction selection is complete to determine if the stack ...
void clearObjectAllocation(int ObjectIdx)
Remove the underlying Alloca of the specified stack object if it exists.
void setObjectZExt(int ObjectIdx, bool IsZExt)
void setIsImmutableObjectIndex(int ObjectIdx, bool IsImmutable)
Marks the immutability of an object.
SSPLayoutKind getObjectSSPLayout(int ObjectIdx) const
bool isObjectPreAllocated(int ObjectIdx) const
Return true if the object was pre-allocated into the local block.
LLVM_ABI void computeMaxCallFrameSize(MachineFunction &MF, std::vector< MachineBasicBlock::iterator > *FrameSDOps=nullptr)
Computes the maximum size of a callframe.
uint64_t getStackSize() const
Return the number of bytes that must be allocated to hold all of the fixed size frame objects.
void setAdjustsStack(bool V)
const AllocaInst * getObjectAllocation(int ObjectIdx) const
Return the underlying Alloca of the specified stack object if it exists.
bool adjustsStack() const
Return true if this function adjusts the stack – e.g., when calling another function.
LLVM_ABI int CreateStackObject(uint64_t Size, Align Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it.
LLVM_ABI void ensureMaxAlignment(Align Alignment)
Make sure the function is at least Align bytes aligned.
bool isReturnAddressTaken() const
This method may be called any time after instruction selection is complete to determine if there is a...
MachineFrameInfo(Align StackAlignment, bool StackRealignable, bool ForcedRealign)
int64_t getLocalFrameObjectCount() const
Return the number of objects allocated into the local object block.
void setHasPatchPoint(bool s=true)
bool hasCalls() const
Return true if the current function has any function calls.
bool isFrameAddressTaken() const
This method may be called any time after instruction selection is complete to determine if there is a...
std::vector< CalleeSavedInfo > & getCalleeSavedInfo()
ArrayRef< MachineBasicBlock * > getSavePoints() const
void setUseLocalStackAllocationBlock(bool v)
setUseLocalStackAllocationBlock - Set whether the local allocation blob should be allocated together ...
Align getMaxAlign() const
Return the alignment in bytes that this function must be aligned to, which is greater than the defaul...
Align getLocalFrameMaxAlign() const
Return the required alignment of the local object blob.
void setLocalFrameSize(int64_t sz)
Set the size of the local object blob.
void setObjectOffset(int ObjectIdx, int64_t SPOffset)
Set the stack frame offset of the specified object.
SSPLayoutKind
Stack Smashing Protection (SSP) rules require that vulnerable stack allocations are located close the...
@ SSPLK_SmallArray
Array or nested array < SSP-buffer-size.
@ SSPLK_LargeArray
Array or nested array >= SSP-buffer-size.
@ SSPLK_AddrOf
The address of this allocation is exposed and triggered protection.
@ SSPLK_None
Did not trigger a stack protector.
void markAsStatepointSpillSlotObjectIndex(int ObjectIdx)
std::pair< int, int64_t > getLocalFrameObjectMap(int i) const
Get the local offset mapping for a for an object.
bool contributesToMaxAlignment(uint8_t StackID)
Should this stack ID be considered in MaxAlignment.
void setFrameAddressIsTaken(bool T)
uint64_t getMaxCallFrameSize() const
Return the maximum size of a call frame that must be allocated for an outgoing function call.
bool shouldRealignStack() const
Return true if stack realignment is forced by function attributes or if the stack alignment.
bool hasPatchPoint() const
This method may be called any time after instruction selection is complete to determine if there is a...
void setHasStackMap(bool s=true)
bool hasOpaqueSPAdjustment() const
Returns true if the function contains opaque dynamic stack adjustments.
void setObjectSExt(int ObjectIdx, bool IsSExt)
void setObjectSSPLayout(int ObjectIdx, SSPLayoutKind Kind)
bool getUseLocalStackAllocationBlock() const
Get whether the local allocation blob should be allocated together or let PEI allocate the locals in ...
void setLocalFrameMaxAlign(Align Alignment)
Required alignment of the local object blob, which is the strictest alignment of any object in it.
bool isImmutableObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to an immutable object.
void setCVBytesOfCalleeSavedRegisters(unsigned S)
int getStackProtectorIndex() const
Return the index for the stack protector object.
int64_t getOffsetAdjustment() const
Return the correction for frame offsets.
LLVM_ABI int CreateSpillStackObject(uint64_t Size, Align Alignment)
Create a new statically sized stack object that represents a spill slot, returning a nonnegative iden...
void setRestorePoints(ArrayRef< MachineBasicBlock * > NewRestorePoints)
void setObjectSize(int ObjectIdx, int64_t Size)
Change the size of the specified stack object.
LLVM_ABI uint64_t estimateStackSize(const MachineFunction &MF) const
Estimate and return the size of the stack frame.
void setStackID(int ObjectIdx, uint8_t ID)
void setHasTailCall(bool V=true)
ArrayRef< MachineBasicBlock * > getRestorePoints() const
bool hasTailCall() const
Returns true if the function contains a tail call.
bool hasMustTailInVarArgFunc() const
Returns true if the function is variadic and contains a musttail call.
void setStackProtectorIndex(int I)
void setIsAliasedObjectIndex(int ObjectIdx, bool IsAliased)
Set "maybe pointed to by an LLVM IR value" for an object.
void setCalleeSavedInfoValid(bool v)
bool isStatepointSpillSlotObjectIndex(int ObjectIdx) const
bool isCalleeSavedInfoValid() const
Has the callee saved info been calculated yet?
void setReturnAddressIsTaken(bool s)
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
bool isObjectZExt(int ObjectIdx) const
void mapLocalFrameObject(int ObjectIndex, int64_t Offset)
Map a frame index into the local object block.
bool isSpillSlotObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a spill slot.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
bool isMaxCallFrameSizeComputed() const
void setHasOpaqueSPAdjustment(bool B)
int64_t getLocalFrameSize() const
Get the size of the local object blob.
bool isObjectSExt(int ObjectIdx) const
LLVM_ABI BitVector getPristineRegs(const MachineFunction &MF) const
Return a set of physical registers that are pristine.
bool hasStackMap() const
This method may be called any time after instruction selection is complete to determine if there is a...
const std::vector< CalleeSavedInfo > & getCalleeSavedInfo() const
Returns a reference to call saved info vector for the current function.
void RemoveStackObject(int ObjectIdx)
Remove or mark dead a statically sized stack object.
void setCalleeSavedInfo(std::vector< CalleeSavedInfo > CSI)
Used by prolog/epilog inserter to set the function's callee saved information.
void setHasCopyImplyingStackAdjustment(bool B)
LLVM_ABI void print(const MachineFunction &MF, raw_ostream &OS) const
Used by the MachineFunction printer to print information about stack objects.
unsigned getNumObjects() const
Return the number of objects.
bool hasVAStart() const
Returns true if the function calls the llvm.va_start intrinsic.
unsigned getCVBytesOfCalleeSavedRegisters() const
Returns how many bytes of callee-saved registers the target pushed in the prologue.
bool isVariableSizedObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a variable sized object.
LLVM_ABI int CreateVariableSizedObject(Align Alignment, const AllocaInst *Alloca)
Notify the MachineFrameInfo object that a variable sized object has been created.
uint64_t getUnsafeStackSize() const
LLVM_ABI void dump(const MachineFunction &MF) const
dump - Print the function to stderr.
int getObjectIndexEnd() const
Return one past the maximum frame object index.
bool hasStackProtectorIndex() const
bool hasCopyImplyingStackAdjustment() const
Returns true if the function contains operations which will lower down to instructions which manipula...
bool hasStackObjects() const
Return true if there are any stack objects in this function.
void setSavePoints(ArrayRef< MachineBasicBlock * > NewSavePoints)
LLVM_ABI int CreateFixedSpillStackObject(uint64_t Size, int64_t SPOffset, bool IsImmutable=false)
Create a spill slot at a fixed location on the stack.
MachineFrameInfo(const MachineFrameInfo &)=delete
bool isStackRealignable() const
uint8_t getStackID(int ObjectIdx) const
unsigned getNumFixedObjects() const
Return the number of fixed objects.
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
bool hasFunctionContextIndex() const
void setStackSize(uint64_t Size)
Set the size of the stack.
void setHasVAStart(bool B)
bool isFixedObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a fixed stack object.
int getObjectIndexBegin() const
Return the minimum frame object index.
void setUnsafeStackSize(uint64_t Size)
void setHasMustTailInVarArgFunc(bool B)
void setObjectAlignment(int ObjectIdx, Align Alignment)
setObjectAlignment - Change the alignment of the specified stack object.
bool isDeadObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a dead object.
void setOffsetAdjustment(int64_t Adj)
Set the correction for frame offsets.
int getFunctionContextIndex() const
Return the index for the function context object.
bool isAliasedObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to an object that might be pointed to by an LLVM IR v...
void setFunctionContextIndex(int I)
This class implements an extremely fast bulk output stream that can only output to a stream.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
This is an optimization pass for GlobalISel generic memory operations.
This struct is a compact representation of a valid (non-zero power of two) alignment.