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

1 2

  /external/llvm/lib/Target/Alpha/
AlphaFrameLowering.h 38 bool hasFP(const MachineFunction &MF) const;
AlphaFrameLowering.cpp 37 // hasFP - Return true if the specified function should have a dedicated frame
41 bool AlphaFrameLowering::hasFP(const MachineFunction &MF) const {
53 bool FP = hasFP(MF);
115 bool FP = hasFP(MF);
AlphaRegisterInfo.cpp 89 if (TFI->hasFP(MF)) {
139 bool FP = TFI->hasFP(MF);
182 return TFI->hasFP(MF) ? Alpha::R15 : Alpha::R30;
  /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/Blackfin/
BlackfinFrameLowering.h 38 bool hasFP(const MachineFunction &MF) const;
BlackfinFrameLowering.cpp 25 // hasFP - Return true if the specified function should have a dedicated frame
28 bool BlackfinFrameLowering::hasFP(const MachineFunction &MF) const {
60 if (!hasFP(MF)) {
105 if (!hasFP(MF)) {
BlackfinRegisterInfo.cpp 76 if (TFI->hasFP(MF))
208 if (TFI->hasFP(MF)) {
333 return TFI->hasFP(MF) ? BF::FP : BF::SP;
  /external/llvm/lib/Target/MBlaze/
MBlazeFrameLowering.h 43 bool hasFP(const MachineFunction &MF) const;
MBlazeFrameLowering.cpp 334 // hasFP - Return true if the specified function should have a dedicated frame
337 bool MBlazeFrameLowering::hasFP(const MachineFunction &MF) const {
376 if (hasFP(MF)) {
404 if (hasFP(MF)) {
443 if (hasFP(MF)) {
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.h 41 bool hasFP(const MachineFunction &MF) const;
MipsFrameLowering.cpp 82 // hasFP - Return true if the specified function should have a dedicated frame
85 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
242 if (hasFP(MF)) {
284 if (hasFP(MF)) {
318 if (hasFP(MF))
  /external/llvm/include/llvm/Target/
TargetFrameLowering.h 143 /// hasFP - Return true if the specified function should have a dedicated
146 virtual bool hasFP(const MachineFunction &MF) const = 0;
154 return !hasFP(MF);
165 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 94 if (TFI->hasFP(MF)) {
105 return TFI->hasFP(MF);
217 bool FP = TFI->hasFP(MF);
326 return TFI->hasFP(MF) ? XCore::R10 : XCore::SP;
XCoreFrameLowering.cpp 86 bool XCoreFrameLowering::hasFP(const MachineFunction &MF) const {
102 bool FP = hasFP(MF);
222 bool FP = hasFP(MF);
368 if (hasFP(MF)) {
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.h 51 bool hasFP(const MachineFunction &MF) const;
SystemZRegisterInfo.cpp 57 if (TFI->hasFP(MF)) {
111 unsigned BasePtr = (TFI->hasFP(MF) ? SystemZ::R11D : SystemZ::R15D);
SystemZFrameLowering.cpp 59 bool SystemZFrameLowering::hasFP(const MachineFunction &MF) const {
128 if (hasFP(MF)) {
337 MIB.addReg(hasFP(MF) ? SystemZ::R11D : SystemZ::R15D);
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.h 49 bool hasFP(const MachineFunction &MF) const;
  /external/llvm/lib/Target/X86/
X86FrameLowering.h 59 bool hasFP(const MachineFunction &MF) const;

Completed in 172 milliseconds

1 2