HomeSort by relevance Sort by last modified time
    Searched defs:hasFP (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/Target/BPF/
BPFFrameLowering.cpp 24 bool BPFFrameLowering::hasFP(const MachineFunction &MF) const { return true; }
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILFrameLowering.cpp 50 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const
  /external/llvm/lib/Target/AMDGPU/
AMDGPUFrameLowering.cpp 116 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 92 // hasFP - Return true if the specified function should have a dedicated frame
96 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.cpp 32 bool NVPTXFrameLowering::hasFP(const MachineFunction &MF) const { return true; }
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFrameLowering.cpp 45 bool WebAssemblyFrameLowering::hasFP(const MachineFunction &MF) const {
130 assert(!hasFP(MF) && "Functions needing frame pointers not yet supported");
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 64 (hasFP(MF) && !TRI->needsStackRealignment(MF)) ||
81 /// hasFP - Return true if the specified function should have a dedicated frame
84 bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
577 const bool HasFP = hasFP(MF);
578 RCXShadowSlot = 8 + CalleeSaveSize + (HasFP ? 8 : 0);
    [all...]
X86MCInstLower.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 30 bool MSP430FrameLowering::hasFP(const MachineFunction &MF) const {
57 if (hasFP(MF)) {
131 if (hasFP(MF)) {
293 if (hasFP(MF)) {
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 230 // hasFP - Return true if the specified function should have a dedicated frame
233 bool SparcFrameLowering::hasFP(const MachineFunction &MF) const {
256 // Sparc uses FP-based references in general, even when "hasFP" is
311 || hasFP(MF)); // need %FP
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 72 bool HasFP = hasFP(MF);
86 if (HasFP)
225 bool HasFP = hasFP(MF);
255 MIB.addReg(HasFP ? SystemZ::R11D : SystemZ::R15D);
325 bool HasFP = hasFP(MF);
368 if (HasFP) {
459 bool SystemZFrameLowering::hasFP(const MachineFunction &MF) const
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 217 bool XCoreFrameLowering::hasFP(const MachineFunction &MF) const {
255 bool FP = hasFP(MF);
382 bool FP = hasFP(MF);
434 assert(Reg != XCore::LR && !(Reg == XCore::R10 && hasFP(*MF)) &&
464 assert(Reg != XCore::LR && !(Reg == XCore::R10 && hasFP(*MF)) &&
566 if (hasFP(MF))
583 if (XFI->isLargeFrame(MF) || hasFP(MF))
587 if (XFI->isLargeFrame(MF) && !hasFP(MF))
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 130 // Note: currently hasFP() is always true for hasCalls(), but that's an
133 if (MFI->hasCalls() || hasFP(MF) || NumBytes > 128)
138 /// hasFP - Return true if the specified function should have a dedicated frame
140 bool AArch64FrameLowering::hasFP(const MachineFunction &MF) const {
220 bool HasFP = hasFP(MF);
226 int64_t saveAreaOffset = (HasFP ? 2 : 1) * stackGrowth;
239 if (HasFP && (FramePtr == Reg || Reg == AArch64::LR)) {
289 bool HasFP = hasFP(MF)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 55 /// hasFP - Return true if the specified function should have a dedicated frame
58 bool ARMFrameLowering::hasFP(const MachineFunction &MF) const {
209 DebugLoc dl, const ARMBaseInstrInfo &TII, bool HasFP) {
212 if (HasFP && !Info.BeforeFPSet)
327 bool HasFP = hasFP(MF);
344 DefCFAOffsetCandidates.emitDefCFAOffsets(MMI, MBB, dl, TII, HasFP);
399 if (HasFP) {
505 if (HasFP && isARM)
523 if (HasFP) {
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 462 if (!hasFP(MF))
504 if (!hasFP(MF))
628 if (hasFP(MF)) {
711 bool HexagonFrameLowering::hasFP(const MachineFunction &MF) const {
866 bool HasFP = hasFP(MF);
867 assert((HasFP || !UseFP) && "This function must have frame pointer");
893 if (Offset > 0 && !HasFP)
908 if (!UseFP && !UseAP && HasFP
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 492 // hasFP - Return true if the specified function actually has a dedicated frame
494 bool PPCFrameLowering::hasFP(const MachineFunction &MF) const {
496 // FIXME: This is pretty much broken by design: hasFP() might be called really
497 // early, before the stack layout was calculated and thus hasFP() might return
668 bool HasFP = hasFP(MF);
701 assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) &&
710 if (HasFP) {
767 if (HasFP)
883 if (HasFP) {
    [all...]

Completed in 360 milliseconds