HomeSort by relevance Sort by last modified time
    Searched refs:hasFP (Results 126 - 150 of 162) sorted by null

1 2 3 4 56 7

  /external/swiftshader/third_party/llvm-7.0/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 {
617 const bool HasFP = hasFP(MF);
624 int64_t InitSlot = 8 + CalleeSaveSize + (HasFP ? 8 : 0);
    [all...]
X86MCInstLower.cpp     [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 {
207 bool HasFP) {
210 if (HasFP && !Info.BeforeFPSet)
325 bool HasFP = hasFP(MF);
342 DefCFAOffsetCandidates.emitDefCFAOffsets(MMI, MBB, dl, TII, HasFP);
397 if (HasFP) {
503 if (HasFP && isARM)
521 if (HasFP) {
    [all...]
ThumbRegisterInfo.cpp 518 assert(SPAdj == 0 && STI.getFrameLowering()->hasFP(MF) && "Unexpected");
Thumb1FrameLowering.cpp 180 bool HasFP = hasFP(MF);
181 if (HasFP)
237 if (HasFP) {
268 if (!HasFP) {
278 if (STI.isTargetELF() && HasFP)
300 // the sp from fp. We can assume there's an FP here since hasFP already
  /external/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp 502 if (hasFP(MF)) {
683 if (hasFP(MF)) {
761 FrameReg = hasFP(MF) ? ABI.GetFramePtr() : ABI.GetStackPtr();
850 if (hasFP(MF))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUFrameLowering.cpp 43 // hasFP - Return true if the specified function actually has a dedicated frame
46 bool SPUFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp 528 if (hasFP(MF)) {
708 if (hasFP(MF)) {
785 FrameReg = hasFP(MF) ? ABI.GetFramePtr() : ABI.GetStackPtr();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/
MachineInstrTest.cpp 44 bool hasFP(const MachineFunction &MF) const override { return false; }
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCRegisterInfo.cpp 546 MI.getOperand(FIOperandNo).ChangeToRegister(TFI->hasFP(MF) ?
634 return TFI->hasFP(MF) ? PPC::R31 : PPC::R1;
636 return TFI->hasFP(MF) ? PPC::X31 : PPC::X1;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 102 /// hasFP - Return true if the specified function should have a dedicated frame
105 bool ARMFrameLowering::hasFP(const MachineFunction &MF) const {
253 const ARMBaseInstrInfo &TII, bool HasFP) {
257 if (HasFP && !Info.BeforeFPSet)
390 bool HasFP = hasFP(MF);
407 DefCFAOffsetCandidates.emitDefCFAOffsets(MBB, dl, TII, HasFP);
462 if (HasFP) {
571 if (HasFP && isARM)
589 if (HasFP) {
    [all...]
Thumb1FrameLowering.cpp 204 bool HasFP = hasFP(MF);
205 if (HasFP)
262 if (HasFP) {
337 if (!HasFP) {
347 if (STI.isTargetELF() && HasFP)
396 // the sp from fp. We can assume there's an FP here since hasFP already
771 !(hasFP(MF) && Reg == RegInfo->getFrameRegister(MF)))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 595 if (hasFP(MF)) {
626 if (!hasFP(MF)) {
865 bool HasFP = hasFP(MF);
867 if (HasFP) {
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 295 unsigned FP = TFI->hasFP(MF) ? 1 : 0;
    [all...]
PPCFrameLowering.cpp 490 // hasFP - Return true if the specified function actually has a dedicated frame
492 bool PPCFrameLowering::hasFP(const MachineFunction &MF) const {
494 // FIXME: This is pretty much broken by design: hasFP() might be called really
495 // early, before the stack layout was calculated and thus hasFP() might return
744 bool HasFP = hasFP(MF);
777 assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) &&
792 if (HasFP) {
880 if (HasFP)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 358 unsigned FP = TFI->hasFP(MF) ? 1 : 0;
    [all...]
PPCFrameLowering.cpp 504 // hasFP - Return true if the specified function actually has a dedicated frame
506 bool PPCFrameLowering::hasFP(const MachineFunction &MF) const {
508 // FIXME: This is pretty much broken by design: hasFP() might be called really
509 // early, before the stack layout was calculated and thus hasFP() might return
753 bool HasFP = hasFP(MF);
787 assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) &&
802 if (HasFP) {
891 if (HasFP)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsRegisterInfo.cpp 338 return TFI->hasFP(MF) ? Mips::FP : Mips::SP;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PrologEpilogInserter.cpp 566 if (RS && TFI.hasFP(Fn) && RegInfo->useFPForScavengingIndex(Fn) &&
649 if (RS && (!TFI.hasFP(Fn) || RegInfo->needsStackRealignment(Fn) ||
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIFrameLowering.cpp 552 bool NeedFP = hasFP(MF);
821 bool SIFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 532 if (!hasFP(MF))
581 if (!hasFP(MF))
745 bool HasFP = hasFP(MF);
747 if (HasFP) {
797 if (HasFP) {
843 bool HexagonFrameLowering::hasFP(const MachineFunction &MF) const {
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp     [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 780 bool EarlyScavengingSlots = (TFI.hasFP(Fn) &&
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
Thumb1RegisterInfo.cpp 616 assert(SPAdj == 0 && MF.getTarget().getFrameLowering()->hasFP(MF) &&
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZISelLowering.cpp 436 (TFI->hasFP(MF) ?
    [all...]

Completed in 1332 milliseconds

1 2 3 4 56 7