|
LLVM
4.0.0
|
#include <AArch64FrameLowering.h>
Public Member Functions | |
| AArch64FrameLowering () | |
| void | emitCalleeSavedFrameMoves (MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI) const |
| MachineBasicBlock::iterator | eliminateCallFramePseudoInstr (MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator I) const override |
| This method is called during prolog/epilog code insertion to eliminate call frame setup and destroy pseudo instructions (but only if the Target is using them). More... | |
| void | emitPrologue (MachineFunction &MF, MachineBasicBlock &MBB) const override |
| emitProlog/emitEpilog - These methods insert prolog and epilog code into the function. More... | |
| void | emitEpilogue (MachineFunction &MF, MachineBasicBlock &MBB) const override |
| bool | canUseAsPrologue (const MachineBasicBlock &MBB) const override |
Check whether or not the given MBB can be used as a prologue for the target. More... | |
| int | getFrameIndexReference (const MachineFunction &MF, int FI, unsigned &FrameReg) const override |
| getFrameIndexReference - Provide a base+offset reference to an FI slot for debug info. More... | |
| int | resolveFrameIndexReference (const MachineFunction &MF, int FI, unsigned &FrameReg, bool PreferFP=false) const |
| bool | spillCalleeSavedRegisters (MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector< CalleeSavedInfo > &CSI, const TargetRegisterInfo *TRI) const override |
| spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns true if it isn't possible / profitable to do so by issuing a series of store instructions via storeRegToStackSlot(). More... | |
| bool | restoreCalleeSavedRegisters (MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector< CalleeSavedInfo > &CSI, const TargetRegisterInfo *TRI) const override |
| restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns true if it isn't possible / profitable to do so by issuing a series of load instructions via loadRegToStackSlot(). More... | |
| bool | canUseRedZone (const MachineFunction &MF) const |
| Can this function use the red zone for local allocations. More... | |
| bool | hasFP (const MachineFunction &MF) const override |
| hasFP - Return true if the specified function should have a dedicated frame pointer register. More... | |
| bool | hasReservedCallFrame (const MachineFunction &MF) const override |
| hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required, we reserve argument space for call sites in the function immediately on entry to the current function. More... | |
| void | determineCalleeSaves (MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS) const override |
| This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() should actually get saved. More... | |
| bool | enableShrinkWrapping (const MachineFunction &MF) const override |
| Returns true if the target will correctly handle shrink wrapping. More... | |
| bool | enableStackSlotScavenging (const MachineFunction &MF) const override |
| Returns true if the stack slot holes in the fixed and callee-save stack area should be used when allocating other stack locations to reduce stack size. More... | |
Public Member Functions inherited from llvm::TargetFrameLowering | |
| TargetFrameLowering (StackDirection D, unsigned StackAl, int LAO, unsigned TransAl=1, bool StackReal=true) | |
| virtual | ~TargetFrameLowering () |
| StackDirection | getStackGrowthDirection () const |
| getStackGrowthDirection - Return the direction the stack grows More... | |
| unsigned | getStackAlignment () const |
| getStackAlignment - This method returns the number of bytes to which the stack pointer must be aligned on entry to a function. More... | |
| int | alignSPAdjust (int SPAdj) const |
| alignSPAdjust - This method aligns the stack adjustment to the correct alignment. More... | |
| unsigned | getTransientStackAlignment () const |
| getTransientStackAlignment - This method returns the number of bytes to which the stack pointer must be aligned at all times, even between calls. More... | |
| bool | isStackRealignable () const |
| isStackRealignable - This method returns whether the stack can be realigned. More... | |
| virtual unsigned | getStackAlignmentSkew (const MachineFunction &MF) const |
| Return the skew that has to be applied to stack alignment under certain conditions (e.g. More... | |
| int | getOffsetOfLocalArea () const |
| getOffsetOfLocalArea - This method returns the offset of the local area from the stack pointer on entrance to a function. More... | |
| virtual bool | isFPCloseToIncomingSP () const |
| isFPCloseToIncomingSP - Return true if the frame pointer is close to the incoming stack pointer, false if it is close to the post-prologue stack pointer. More... | |
| virtual bool | assignCalleeSavedSpillSlots (MachineFunction &MF, const TargetRegisterInfo *TRI, std::vector< CalleeSavedInfo > &CSI) const |
| assignCalleeSavedSpillSlots - Allows target to override spill slot assignment logic. More... | |
| virtual const SpillSlot * | getCalleeSavedSpillSlots (unsigned &NumEntries) const |
| getCalleeSavedSpillSlots - This method returns a pointer to an array of pairs, that contains an entry for each callee saved register that must be spilled to a particular stack location if it is spilled. More... | |
| virtual bool | targetHandlesStackFrameRounding () const |
| targetHandlesStackFrameRounding - Returns true if the target is responsible for rounding up the stack frame (probably at emitPrologue time). More... | |
| virtual void | inlineStackProbe (MachineFunction &MF, MachineBasicBlock &PrologueMBB) const |
| Replace a StackProbe stub (if any) with the actual probe code inline. More... | |
| virtual void | adjustForSegmentedStacks (MachineFunction &MF, MachineBasicBlock &PrologueMBB) const |
| Adjust the prologue to have the function use segmented stacks. More... | |
| virtual void | adjustForHiPEPrologue (MachineFunction &MF, MachineBasicBlock &PrologueMBB) const |
| Adjust the prologue to add Erlang Run-Time System (ERTS) specific code in the assembly prologue to explicitly handle the stack. More... | |
| virtual bool | noFramePointerElim (const MachineFunction &MF) const |
| Return true if the target needs to disable frame pointer elimination. More... | |
| virtual bool | canSimplifyCallFramePseudos (const MachineFunction &MF) const |
| canSimplifyCallFramePseudos - When possible, it's best to simplify the call frame pseudo ops before doing frame index elimination. More... | |
| virtual bool | needsFrameIndexResolution (const MachineFunction &MF) const |
| virtual int | getFrameIndexReferencePreferSP (const MachineFunction &MF, int FI, unsigned &FrameReg, bool IgnoreSPUpdates) const |
Same as getFrameIndexReference, except that the stack pointer (as opposed to the frame pointer) will be the preferred value for FrameReg. More... | |
| virtual void | processFunctionBeforeFrameFinalized (MachineFunction &MF, RegScavenger *RS=nullptr) const |
| processFunctionBeforeFrameFinalized - This method is called immediately before the specified function's frame layout (MF.getFrameInfo()) is finalized. More... | |
| virtual unsigned | getWinEHParentFrameOffset (const MachineFunction &MF) const |
| virtual void | orderFrameObjects (const MachineFunction &MF, SmallVectorImpl< int > &objectsToAllocate) const |
| Order the symbols in the local stack frame. More... | |
| virtual bool | canUseAsEpilogue (const MachineBasicBlock &MBB) const |
Check whether or not the given MBB can be used as a epilogue for the target. More... | |
Additional Inherited Members | |
Public Types inherited from llvm::TargetFrameLowering | |
| enum | StackDirection { StackGrowsUp, StackGrowsDown } |
Static Public Member Functions inherited from llvm::TargetFrameLowering | |
| static bool | isSafeForNoCSROpt (const Function *F) |
| Check if given function is safe for not having callee saved registers. More... | |
Definition at line 21 of file AArch64FrameLowering.h.
|
inlineexplicit |
Definition at line 23 of file AArch64FrameLowering.h.
|
overridevirtual |
Check whether or not the given MBB can be used as a prologue for the target.
The prologue will be inserted first in this basic block. This method is used by the shrink-wrapping pass to decide if MBB will be correctly handled by the target. As soon as the target enable shrink-wrapping without overriding this method, we assume that each basic block is a valid prologue.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 271 of file AArch64FrameLowering.cpp.
References findScratchNonCalleeSaveRegister(), llvm::MachineBasicBlock::getParent(), llvm::AArch64Subtarget::getRegisterInfo(), llvm::MachineFunction::getSubtarget(), and MBB.
| bool AArch64FrameLowering::canUseRedZone | ( | const MachineFunction & | MF | ) | const |
Can this function use the red zone for local allocations.
Definition at line 119 of file AArch64FrameLowering.cpp.
References EnableRedZone, llvm::MachineFunction::getFrameInfo(), llvm::MachineFunction::getFunction(), llvm::MachineFunction::getInfo(), llvm::AArch64FunctionInfo::getLocalStackSize(), llvm::MachineFrameInfo::hasCalls(), llvm::Function::hasFnAttribute(), and hasFP().
Referenced by emitEpilogue(), emitPrologue(), and resolveFrameIndexReference().
|
overridevirtual |
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() should actually get saved.
The default implementation checks populates the SavedRegs bitset with all registers which are modified in the function, targets may override this function to save additional registers. This method also sets up the register scavenger ensuring there is a free register or a frameindex available.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 1080 of file AArch64FrameLowering.cpp.
References llvm::RegScavenger::addScavengingFrameIndex(), llvm::alignTo(), llvm::AArch64RegisterInfo::cannotEliminateFrame(), contains(), llvm::BitVector::count(), llvm::MachineFrameInfo::CreateStackObject(), llvm::dbgs(), DEBUG, llvm::TargetFrameLowering::determineCalleeSaves(), llvm::MachineFrameInfo::estimateStackSize(), llvm::BitVector::find_first(), llvm::BitVector::find_next(), llvm::TargetRegisterClass::getAlignment(), llvm::AArch64RegisterInfo::getBaseRegister(), llvm::AArch64RegisterInfo::getCalleeSavedRegs(), llvm::Function::getCallingConv(), llvm::MachineFunction::getFrameInfo(), llvm::MachineFunction::getFunction(), llvm::MachineFunction::getInfo(), llvm::TargetSubtargetInfo::getRegisterInfo(), llvm::TargetRegisterClass::getSize(), llvm::MachineFunction::getSubtarget(), llvm::CallingConv::GHC, llvm::AArch64RegisterInfo::hasBasePointer(), hasFP(), i, llvm::AArch64RegisterInfo::isReservedReg(), llvm::PrintReg(), produceCompactUnwindFrame(), llvm::BitVector::set(), llvm::AArch64FunctionInfo::setCalleeSavedStackSize(), llvm::AArch64FunctionInfo::setHasStackFrame(), and llvm::BitVector::test().
|
overridevirtual |
This method is called during prolog/epilog code insertion to eliminate call frame setup and destroy pseudo instructions (but only if the Target is using them).
It is responsible for eliminating these instructions, replacing them with concrete instructions. This method need only be implemented if using call frame setup/destroy pseudo instructions. Returns an iterator pointing to the instruction after the replaced one.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 157 of file AArch64FrameLowering.cpp.
References llvm::alignTo(), assert(), llvm::emitFrameOffset(), llvm::MachineBasicBlock::erase(), llvm::TargetSubtargetInfo::getFrameLowering(), llvm::TargetSubtargetInfo::getInstrInfo(), llvm::TargetFrameLowering::getStackAlignment(), llvm::MachineFunction::getSubtarget(), llvm::TargetFrameLowering::hasReservedCallFrame(), and TII.
| void AArch64FrameLowering::emitCalleeSavedFrameMoves | ( | MachineBasicBlock & | MBB, |
| MachineBasicBlock::iterator | MBBI | ||
| ) | const |
Definition at line 203 of file AArch64FrameLowering.cpp.
References llvm::MachineFunction::addFrameInst(), llvm::BuildMI(), llvm::MCCFIInstruction::createOffset(), llvm::MachineBasicBlock::findDebugLoc(), llvm::MachineInstr::FrameSetup, llvm::MCInstrInfo::get(), llvm::MachineFrameInfo::getCalleeSavedInfo(), llvm::MCRegisterInfo::getDwarfRegNum(), llvm::MachineFunction::getFrameInfo(), llvm::TargetSubtargetInfo::getInstrInfo(), llvm::MachineFrameInfo::getObjectOffset(), llvm::TargetFrameLowering::getOffsetOfLocalArea(), llvm::MachineBasicBlock::getParent(), llvm::TargetSubtargetInfo::getRegisterInfo(), llvm::MachineFunction::getSubtarget(), MRI, Offset, llvm::MachineInstrBuilder::setMIFlags(), and TII.
Referenced by emitPrologue().
|
overridevirtual |
Implements llvm::TargetFrameLowering.
Definition at line 644 of file AArch64FrameLowering.cpp.
References assert(), llvm::MachineBasicBlock::begin(), canUseRedZone(), convertCalleeSaveRestoreToSPPrePostIncDec(), llvm::emitFrameOffset(), llvm::MachineBasicBlock::end(), fixupCalleeSaveRestoreStackOffset(), llvm::MachineInstr::FrameDestroy, llvm::AArch64FunctionInfo::getArgumentStackToRestore(), llvm::AArch64FunctionInfo::getCalleeSavedStackSize(), llvm::Function::getCallingConv(), llvm::MachineBasicBlock::getFirstTerminator(), llvm::MachineFunction::getFrameInfo(), llvm::MachineFunction::getFunction(), llvm::MachineOperand::getImm(), llvm::MachineFunction::getInfo(), llvm::AArch64Subtarget::getInstrInfo(), llvm::MachineBasicBlock::getLastNonDebugInstr(), llvm::AArch64FunctionInfo::getLocalStackSize(), llvm::MachineFrameInfo::getStackSize(), llvm::MachineFunction::getSubtarget(), llvm::CallingConv::GHC, hasFP(), llvm::MachineFrameInfo::hasVarSizedObjects(), llvm::AArch64FunctionInfo::isStackRealigned(), and TII.
|
overridevirtual |
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
Implements llvm::TargetFrameLowering.
Definition at line 407 of file AArch64FrameLowering.cpp.
References llvm::MachineFunction::addFrameInst(), llvm::MachineInstrBuilder::addImm(), assert(), llvm::MachineBasicBlock::begin(), llvm::BuildMI(), canUseRedZone(), convertCalleeSaveRestoreToSPPrePostIncDec(), llvm::TargetInstrInfo::copyPhysReg(), llvm::countTrailingZeros(), llvm::MCCFIInstruction::createDefCfa(), llvm::MCCFIInstruction::createDefCfaOffset(), llvm::MCContext::createTempSymbol(), emitCalleeSavedFrameMoves(), llvm::emitFrameOffset(), llvm::WebAssembly::End, llvm::MachineBasicBlock::end(), findScratchNonCalleeSaveRegister(), fixupCalleeSaveRestoreStackOffset(), FramePtr, llvm::MachineInstr::FrameSetup, llvm::MCInstrInfo::get(), llvm::AArch64FunctionInfo::getCalleeSavedStackSize(), llvm::Function::getCallingConv(), llvm::MachineModuleInfo::getContext(), llvm::MachineFunction::getDataLayout(), llvm::MachineFunction::getFrameInfo(), llvm::MachineFunction::getFunction(), llvm::MachineFunction::getInfo(), llvm::AArch64Subtarget::getInstrInfo(), llvm::AArch64FunctionInfo::getLocalStackSize(), llvm::MachineFrameInfo::getMaxAlignment(), llvm::MachineFunction::getMMI(), llvm::DataLayout::getPointerSize(), llvm::AArch64Subtarget::getRegisterInfo(), llvm::MachineFrameInfo::getStackSize(), llvm::MachineFunction::getSubtarget(), llvm::CallingConv::GHC, llvm::MachineModuleInfo::hasDebugInfo(), hasFP(), llvm::AArch64FunctionInfo::hasStackFrame(), llvm::RegState::Kill, llvm::Function::needsUnwindTableEntry(), llvm::AArch64FunctionInfo::setLocalStackSize(), llvm::MachineInstrBuilder::setMIFlags(), llvm::AArch64FunctionInfo::setStackRealigned(), and TII.
|
inlineoverridevirtual |
Returns true if the target will correctly handle shrink wrapping.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 66 of file AArch64FrameLowering.h.
|
overridevirtual |
Returns true if the stack slot holes in the fixed and callee-save stack area should be used when allocating other stack locations to reduce stack size.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 1196 of file AArch64FrameLowering.cpp.
References llvm::MachineFunction::getInfo(), and llvm::AArch64FunctionInfo::hasCalleeSaveStackFreeSpace().
|
overridevirtual |
getFrameIndexReference - Provide a base+offset reference to an FI slot for debug info.
It's the same as what we use for resolving the code-gen references for now. FIXME: This can go wrong when references are SP-relative and simple call frames aren't used.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 784 of file AArch64FrameLowering.cpp.
References resolveFrameIndexReference().
|
overridevirtual |
hasFP - Return true if the specified function should have a dedicated frame pointer register.
Implements llvm::TargetFrameLowering.
Definition at line 136 of file AArch64FrameLowering.cpp.
References llvm::TargetOptions::DisableFramePointerElim(), llvm::MachineFunction::getFrameInfo(), llvm::TargetSubtargetInfo::getRegisterInfo(), llvm::MachineFunction::getSubtarget(), llvm::MachineFunction::getTarget(), llvm::MachineFrameInfo::hasCalls(), llvm::MachineFrameInfo::hasPatchPoint(), llvm::MachineFrameInfo::hasStackMap(), llvm::MachineFrameInfo::hasVarSizedObjects(), llvm::MachineFrameInfo::isFrameAddressTaken(), llvm::TargetRegisterInfo::needsStackRealignment(), and llvm::TargetMachine::Options.
Referenced by canUseRedZone(), determineCalleeSaves(), emitEpilogue(), emitPrologue(), llvm::AArch64RegisterInfo::getFrameRegister(), llvm::AArch64RegisterInfo::getRegPressureLimit(), llvm::AArch64RegisterInfo::getReservedRegs(), llvm::AArch64RegisterInfo::isReservedReg(), llvm::AArch64RegisterInfo::needsFrameBaseReg(), and resolveFrameIndexReference().
|
overridevirtual |
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required, we reserve argument space for call sites in the function immediately on entry to the current function.
This eliminates the need for add/sub sp brackets around call sites. Returns true if the call frame is included as part of the stack frame.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 153 of file AArch64FrameLowering.cpp.
References llvm::MachineFunction::getFrameInfo(), and llvm::MachineFrameInfo::hasVarSizedObjects().
| int AArch64FrameLowering::resolveFrameIndexReference | ( | const MachineFunction & | MF, |
| int | FI, | ||
| unsigned & | FrameReg, | ||
| bool | PreferFP = false |
||
| ) | const |
Definition at line 790 of file AArch64FrameLowering.cpp.
References assert(), canUseRedZone(), llvm::AArch64RegisterInfo::getBaseRegister(), llvm::MachineFunction::getFrameInfo(), llvm::AArch64RegisterInfo::getFrameRegister(), llvm::MachineFunction::getInfo(), llvm::AArch64FunctionInfo::getLocalStackSize(), llvm::MachineFrameInfo::getObjectOffset(), llvm::TargetSubtargetInfo::getRegisterInfo(), llvm::MachineFrameInfo::getStackSize(), llvm::MachineFunction::getSubtarget(), llvm::AArch64RegisterInfo::hasBasePointer(), hasFP(), llvm::AArch64FunctionInfo::hasStackFrame(), llvm::MachineFrameInfo::hasVarSizedObjects(), llvm::MachineFrameInfo::isFixedObjectIndex(), and Offset.
Referenced by llvm::AArch64RegisterInfo::eliminateFrameIndex(), and getFrameIndexReference().
|
overridevirtual |
restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns true if it isn't possible / profitable to do so by issuing a series of load instructions via loadRegToStackSlot().
Returns false otherwise.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 1021 of file AArch64FrameLowering.cpp.
References llvm::MachineInstrBuilder::addImm(), llvm::MachineInstrBuilder::addMemOperand(), llvm::MachineInstrBuilder::addReg(), llvm::SmallVectorTemplateCommon< T >::begin(), llvm::BuildMI(), computeCalleeSaveRegisterPairs(), llvm::dbgs(), DEBUG, llvm::SmallVectorTemplateCommon< T >::end(), llvm::MachineBasicBlock::end(), llvm::MachineInstr::FrameDestroy, llvm::MCInstrInfo::get(), llvm::getDefRegState(), llvm::MachinePointerInfo::getFixedStack(), llvm::TargetSubtargetInfo::getInstrInfo(), llvm::MachineFunction::getMachineMemOperand(), llvm::MCRegisterInfo::getName(), llvm::MachineBasicBlock::getParent(), llvm::MachineFunction::getSubtarget(), llvm::MachineMemOperand::MOLoad, llvm::NVPTX::PTXCvtMode::RPI, llvm::MachineInstrBuilder::setMIFlag(), and TII.
|
overridevirtual |
spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns true if it isn't possible / profitable to do so by issuing a series of store instructions via storeRegToStackSlot().
Returns false otherwise.
Reimplemented from llvm::TargetFrameLowering.
Definition at line 961 of file AArch64FrameLowering.cpp.
References llvm::MachineBasicBlock::addLiveIn(), llvm::BuildMI(), computeCalleeSaveRegisterPairs(), llvm::dbgs(), DEBUG, llvm::MachineInstr::FrameSetup, llvm::MCInstrInfo::get(), llvm::MachinePointerInfo::getFixedStack(), llvm::TargetSubtargetInfo::getInstrInfo(), llvm::MachineFunction::getMachineMemOperand(), llvm::MCRegisterInfo::getName(), llvm::MachineBasicBlock::getParent(), getPrologueDeath(), llvm::MachineFunction::getSubtarget(), llvm::MachineMemOperand::MOStore, llvm::SmallVectorTemplateCommon< T >::rbegin(), llvm::SmallVectorTemplateCommon< T >::rend(), llvm::NVPTX::PTXCvtMode::RPI, and TII.
1.8.6