HomeSort by relevance Sort by last modified time
    Searched refs:hasFP (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/Target/PTX/
PTXFrameLowering.h 39 bool hasFP(const MachineFunction &MF) const { return false; }
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.h 36 bool hasFP(const MachineFunction &MF) const { return false; }
  /external/llvm/lib/Target/MBlaze/
MBlazeFrameLowering.h 42 bool hasFP(const MachineFunction &MF) const;
MBlazeFrameLowering.cpp 332 // hasFP - Return true if the specified function should have a dedicated frame
335 bool MBlazeFrameLowering::hasFP(const MachineFunction &MF) const {
375 if (hasFP(MF)) {
403 if (hasFP(MF)) {
442 if (hasFP(MF)) {
MBlazeRegisterInfo.cpp 182 return TFI->hasFP(MF) ? MBlaze::R19 : MBlaze::R1;
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.h 41 bool hasFP(const MachineFunction &MF) const;
MipsFrameLowering.cpp 84 // hasFP - Return true if the specified function should have a dedicated frame
87 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
243 if (hasFP(MF)) {
278 if (hasFP(MF)) {
312 if (hasFP(MF))
  /external/llvm/include/llvm/Target/
TargetFrameLowering.h 139 /// hasFP - Return true if the specified function should have a dedicated
142 virtual bool hasFP(const MachineFunction &MF) const = 0;
150 return !hasFP(MF);
161 return hasReservedCallFrame(MF) || hasFP(MF);
  /external/llvm/lib/Target/CellSPU/
SPUFrameLowering.h 41 bool hasFP(const MachineFunction &MF) const;
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.h 47 bool hasFP(const MachineFunction &MF) const;
MSP430RegisterInfo.cpp 68 if (TFI->hasFP(*MF))
92 if (TFI->hasFP(MF))
181 unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::FPW : MSP430::SPW);
187 if (!TFI->hasFP(MF))
228 if (TFI->hasFP(MF)) {
239 return TFI->hasFP(MF) ? MSP430::FPW : MSP430::SPW;
MSP430FrameLowering.cpp 29 bool MSP430FrameLowering::hasFP(const MachineFunction &MF) const {
55 if (hasFP(MF)) {
129 if (hasFP(MF)) {
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.h 43 bool hasFP(const MachineFunction &MF) const;
XCoreRegisterInfo.cpp 80 if (TFI->hasFP(MF)) {
91 return TFI->hasFP(MF);
203 bool FP = TFI->hasFP(MF);
312 return TFI->hasFP(MF) ? XCore::R10 : XCore::SP;
XCoreFrameLowering.cpp 86 bool XCoreFrameLowering::hasFP(const MachineFunction &MF) const {
101 bool FP = hasFP(MF);
221 bool FP = hasFP(MF);
367 if (hasFP(MF)) {
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.h 44 bool hasFP(const MachineFunction &MF) const;
HexagonFrameLowering.cpp 141 if (hasFP(MF)) {
178 if (hasFP(MF)) {
204 bool HexagonFrameLowering::hasFP(const MachineFunction &MF) const {
HexagonRegisterInfo.cpp 157 if (!TFI->hasFP(MF)) {
281 if (TFI->hasFP(MF)) {
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.h 49 bool hasFP(const MachineFunction &MF) const;
ARMBaseRegisterInfo.cpp 82 if (TFI->hasFP(MF))
113 if (FramePtr == Reg && TFI->hasFP(MF))
280 return TFI->hasFP(MF) ? 4 : 5;
282 unsigned FP = TFI->hasFP(MF) ? 1 : 0;
381 if (!TFI->hasFP(MF)) {
403 if (!TFI->hasFP(MF)) {
568 if (TFI->hasFP(MF))
901 if (TFI->hasFP(MF) &&
    [all...]
ARMFrameLowering.cpp 38 /// hasFP - Return true if the specified function should have a dedicated frame
41 bool ARMFrameLowering::hasFP(const MachineFunction &MF) const {
213 bool HasFP = hasFP(MF);
214 if (HasFP) {
230 if (HasFP)
261 if (HasFP && isARM)
273 if (STI.isTargetELF() && hasFP(MF))
332 // the sp from fp. We can assume there's an FP here since hasFP already
504 assert (hasFP(MF) && "dynamic stack realignment without a FP!")
    [all...]
Thumb1FrameLowering.cpp 134 if (hasFP(MF)) {
149 if (STI.isTargetELF() && hasFP(MF))
171 // the sp from fp. We can assume there's an FP here since hasFP already
  /external/llvm/lib/Target/X86/
X86FrameLowering.h 59 bool hasFP(const MachineFunction &MF) const;
X86RegisterInfo.cpp 214 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
281 if (TFI->hasFP(MF)) {
360 if (Reg == FramePtr && TFI->hasFP(MF)) {
493 BasePtr = (TFI->hasFP(MF) ? FramePtr : StackPtr);
524 return TFI->hasFP(MF) ? FramePtr : StackPtr;
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 183 unsigned FP = TFI->hasFP(MF) ? 1 : 0;
518 MI.getOperand(FIOperandNo).ChangeToRegister(TFI->hasFP(MF) ?
608 return TFI->hasFP(MF) ? PPC::R31 : PPC::R1;
610 return TFI->hasFP(MF) ? PPC::X31 : PPC::X1;

Completed in 173 milliseconds

1 2