13#ifndef LLVM_CODEGEN_MACHINEFRAMEINFO_H
14#define LLVM_CODEGEN_MACHINEFRAMEINFO_H
56 bool SpilledToReg =
false;
154 bool isStatepointSpillSlot =
false;
173 bool PreAllocated =
false;
190 bool IsImmutable,
bool IsSpillSlot,
const AllocaInst *Alloca,
191 bool IsAliased,
uint8_t StackID = 0)
192 : SPOffset(SPOffset),
Size(
Size), Alignment(Alignment),
193 isImmutable(IsImmutable), isSpillSlot(IsSpillSlot), StackID(StackID),
194 Alloca(Alloca), isAliased(IsAliased) {}
198 Align StackAlignment;
211 bool StackRealignable;
217 std::vector<StackObject> Objects;
222 unsigned NumFixedObjects = 0;
226 bool HasVarSizedObjects =
false;
230 bool FrameAddressTaken =
false;
234 bool ReturnAddressTaken =
false;
238 bool HasStackMap =
false;
242 bool HasPatchPoint =
false;
248 uint64_t StackSize = 0;
259 int64_t OffsetAdjustment = 0;
273 bool AdjustsStack =
false;
276 bool HasCalls =
false;
279 int StackProtectorIdx = -1;
282 int FunctionContextIdx = -1;
288 uint64_t MaxCallFrameSize = ~UINT64_C(0);
292 unsigned CVBytesOfCalleeSavedRegisters = 0;
298 std::vector<CalleeSavedInfo> CSInfo;
301 bool CSIValid =
false;
308 int64_t LocalFrameSize = 0;
312 Align LocalFrameMaxAlign;
317 bool UseLocalStackAllocationBlock =
false;
321 bool HasOpaqueSPAdjustment =
false;
325 bool HasCopyImplyingStackAdjustment =
false;
328 bool HasVAStart =
false;
331 bool HasMustTailInVarArgFunc =
false;
336 bool HasTailCall =
false;
344 uint64_t UnsafeStackSize = 0;
349 : StackAlignment(StackAlignment),
350 StackRealignable(StackRealignable), ForcedRealign(ForcedRealign) {}
427 LocalFrameObjects.push_back(std::pair<int, int64_t>(ObjectIndex,
Offset));
428 Objects[ObjectIndex + NumFixedObjects].PreAllocated =
true;
433 assert (i >= 0 && (
unsigned)i < LocalFrameObjects.size() &&
434 "Invalid local object reference!");
435 return LocalFrameObjects[i];
450 LocalFrameMaxAlign = Alignment;
459 return UseLocalStackAllocationBlock;
466 UseLocalStackAllocationBlock = v;
471 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
472 "Invalid Object Idx!");
473 return Objects[ObjectIdx+NumFixedObjects].PreAllocated;
478 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
479 "Invalid Object Idx!");
480 return Objects[ObjectIdx+NumFixedObjects].Size;
485 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
486 "Invalid Object Idx!");
487 Objects[ObjectIdx+NumFixedObjects].Size =
Size;
492 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
493 "Invalid Object Idx!");
494 return Objects[ObjectIdx + NumFixedObjects].Alignment;
516 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
517 "Invalid Object Idx!");
518 Objects[ObjectIdx + NumFixedObjects].Alignment = Alignment;
529 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
530 "Invalid Object Idx!");
531 return Objects[ObjectIdx+NumFixedObjects].Alloca;
537 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
538 "Invalid Object Idx!");
539 Objects[ObjectIdx + NumFixedObjects].Alloca =
nullptr;
545 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
546 "Invalid Object Idx!");
548 "Getting frame offset for a dead object?");
549 return Objects[ObjectIdx+NumFixedObjects].SPOffset;
553 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
554 "Invalid Object Idx!");
555 return Objects[ObjectIdx+NumFixedObjects].isZExt;
559 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
560 "Invalid Object Idx!");
561 Objects[ObjectIdx+NumFixedObjects].isZExt = IsZExt;
565 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
566 "Invalid Object Idx!");
567 return Objects[ObjectIdx+NumFixedObjects].isSExt;
571 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
572 "Invalid Object Idx!");
573 Objects[ObjectIdx+NumFixedObjects].isSExt = IsSExt;
579 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
580 "Invalid Object Idx!");
582 "Setting frame offset for a dead object?");
583 Objects[ObjectIdx+NumFixedObjects].SPOffset = SPOffset;
587 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
588 "Invalid Object Idx!");
589 return (
SSPLayoutKind)Objects[ObjectIdx+NumFixedObjects].SSPLayout;
593 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
594 "Invalid Object Idx!");
596 "Setting SSP layout for a dead object?");
597 Objects[ObjectIdx+NumFixedObjects].SSPLayout = Kind;
627 return ForcedRealign || MaxAlignment > StackAlignment;
647 return HasCopyImplyingStackAdjustment;
650 HasCopyImplyingStackAdjustment =
B;
675 std::vector<MachineBasicBlock::iterator> *FrameSDOps =
nullptr);
687 return MaxCallFrameSize;
690 return MaxCallFrameSize != ~UINT64_C(0);
697 return CVBytesOfCalleeSavedRegisters;
700 CVBytesOfCalleeSavedRegisters = S;
708 bool IsImmutable,
bool isAliased =
false);
713 bool IsImmutable =
false);
717 return ObjectIdx < 0 && (ObjectIdx >= -(int)NumFixedObjects);
723 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
724 "Invalid Object Idx!");
725 return Objects[ObjectIdx+NumFixedObjects].isAliased;
730 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
731 "Invalid Object Idx!");
732 Objects[ObjectIdx+NumFixedObjects].isAliased = IsAliased;
740 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
741 "Invalid Object Idx!");
742 return Objects[ObjectIdx+NumFixedObjects].isImmutable;
747 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
748 "Invalid Object Idx!");
749 Objects[ObjectIdx+NumFixedObjects].isImmutable = IsImmutable;
754 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
755 "Invalid Object Idx!");
756 return Objects[ObjectIdx+NumFixedObjects].isSpillSlot;
760 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
761 "Invalid Object Idx!");
762 return Objects[ObjectIdx+NumFixedObjects].isStatepointSpillSlot;
767 return Objects[ObjectIdx+NumFixedObjects].StackID;
772 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
773 "Invalid Object Idx!");
774 Objects[ObjectIdx+NumFixedObjects].StackID =
ID;
781 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
782 "Invalid Object Idx!");
783 return Objects[ObjectIdx+NumFixedObjects].Size == ~0ULL;
789 assert(
unsigned(ObjectIdx + NumFixedObjects) < Objects.size() &&
790 "Invalid Object Idx!");
791 return Objects[ObjectIdx + NumFixedObjects].Size == 0;
795 assert(
unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
796 "Invalid Object Idx!");
797 Objects[ObjectIdx+NumFixedObjects].isStatepointSpillSlot =
true;
815 Objects[ObjectIdx+NumFixedObjects].Size = ~0ULL;
834 CSInfo = std::move(CSI);
847 SavePoints = std::move(NewSavePoints);
851 RestorePoints = std::move(NewRestorePoints);
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
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
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()
bool isScalableStackID(uint8_t StackID) 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 clearRestorePoints()
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 setSavePoints(SaveRestorePoints NewSavePoints)
bool hasScalableStackID(int ObjectIdx) const
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 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)
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
void setRestorePoints(SaveRestorePoints NewRestorePoints)
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.
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
const SaveRestorePoints & getRestorePoints() 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.
const SaveRestorePoints & getSavePoints() const
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.
@ ScalablePredicateVector
This is an optimization pass for GlobalISel generic memory operations.
DenseMap< MachineBasicBlock *, std::vector< CalleeSavedInfo > > SaveRestorePoints
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
This struct is a compact representation of a valid (non-zero power of two) alignment.