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

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILFrameLowering.cpp 50 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 93 // hasFP - Return true if the specified function should have a dedicated frame
96 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILFrameLowering.cpp 50 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.cpp 33 bool NVPTXFrameLowering::hasFP(const MachineFunction &MF) const { return true; }
  /external/llvm/lib/Target/R600/
AMDGPUFrameLowering.cpp 111 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 43 /// hasFP - Return true if the specified function should have a dedicated frame
46 bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
449 bool HasFP = hasFP(MF);
499 if (HasFP) MinSize += SlotSize;
535 if (HasFP) {
615 if (!HasFP && NeedsDwarfCFI) {
635 assert(HasFP && "There should be a frame pointer if stack is realigned.");
739 if (HasFP) {
813 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI)
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 29 bool MSP430FrameLowering::hasFP(const MachineFunction &MF) const {
55 if (hasFP(MF)) {
129 if (hasFP(MF)) {
291 if (hasFP(MF)) {
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 181 // hasFP - Return true if the specified function should have a dedicated frame
184 bool SparcFrameLowering::hasFP(const MachineFunction &MF) const {
214 || hasFP(MF)); // need %FP
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 114 if (hasFP(MF)) {
153 if (hasFP(MF) || MF.getTarget().getOptLevel() == CodeGenOpt::None) {
203 bool HexagonFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 69 bool HasFP = hasFP(MF);
83 if (HasFP)
221 bool HasFP = hasFP(MF);
251 MIB.addReg(HasFP ? SystemZ::R11D : SystemZ::R15D);
320 bool HasFP = hasFP(MF);
360 if (HasFP) {
448 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);
375 bool FP = hasFP(MF);
427 assert(Reg != XCore::LR && !(Reg == XCore::R10 && hasFP(*MF)) &&
457 assert(Reg != XCore::LR && !(Reg == XCore::R10 && hasFP(*MF)) &&
557 if (hasFP(MF))
574 if (XFI->isLargeFrame(MF) || hasFP(MF))
578 if (XFI->isLargeFrame(MF) && !hasFP(MF))
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 75 // Note: currently hasFP() is always true for hasCalls(), but that's an
78 if (MFI->hasCalls() || hasFP(MF) || NumBytes > 128)
83 /// hasFP - Return true if the specified function should have a dedicated frame
85 bool AArch64FrameLowering::hasFP(const MachineFunction &MF) const {
170 bool HasFP = hasFP(MF);
176 int64_t saveAreaOffset = (HasFP ? 2 : 1) * stackGrowth;
189 if (HasFP && (FramePtr == Reg || Reg == AArch64::LR)) {
213 bool HasFP = hasFP(MF)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 46 /// hasFP - Return true if the specified function should have a dedicated frame
49 bool ARMFrameLowering::hasFP(const MachineFunction &MF) const {
261 bool HasFP = hasFP(MF);
267 if (HasFP) {
359 if (HasFP && isARM)
414 if (HasFP) {
436 if (!HasFP) {
470 if (!HasFP) {
495 if (!HasFP) {
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 428 // hasFP - Return true if the specified function actually has a dedicated frame
430 bool PPCFrameLowering::hasFP(const MachineFunction &MF) const {
432 // FIXME: This is pretty much broken by design: hasFP() might be called really
433 // early, before the stack layout was calculated and thus hasFP() might return
545 bool HasFP = hasFP(MF);
578 assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) &&
584 if (HasFP) {
632 if (HasFP)
731 if (HasFP) {
    [all...]

Completed in 818 milliseconds