| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsABIInfo.cpp | 35 if (IsN32() || IsN64()) in GetByValArgRegs() 43 if (IsN32() || IsN64()) in GetVarArgRegs() 51 if (IsN32() || IsN64()) in GetCalleeAllocdArgSizeInBytes() 125 return IsN64() ? EhDataReg64[I] : EhDataReg[I]; in GetEhDataReg()
|
| H A D | MipsABIInfo.h | 42 bool IsN64() const { return ThisABI == ABI::N64; } in IsN64() function 73 inline bool ArePtrs64bit() const { return IsN64(); } in ArePtrs64bit() 74 inline bool AreGprs64bit() const { return IsN32() || IsN64(); } in AreGprs64bit()
|
| H A D | MipsMCAsmInfo.cpp | 32 else if (ABI.IsN32() || ABI.IsN64()) in MipsMCAsmInfo()
|
| H A D | MipsTargetStreamer.cpp | 126 if (!getABI().IsN32() && !getABI().IsN64()) in emitDirectiveCpLocal() 1137 emitAddu(RegNo, RegNo, GPReg, getABI().IsN64(), &STI); in emitDirectiveCpAdd() 1148 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpLoad() 1215 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpRestore() 1229 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpsetup() 1286 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpreturn()
|
| H A D | MipsOptionRecord.cpp | 33 if (MTS->getABI().IsN64()) { in EmitMipsOptionRecord()
|
| H A D | MipsELFObjectWriter.cpp | 666 bool IsN64 = TT.isArch64Bit() && !IsN32; in createMipsELFObjectWriter() local 669 IsN64); in createMipsELFObjectWriter()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsMachineFunction.cpp | 41 if (TM.getABI().IsN64()) in getGlobalBaseRegClass() 74 RC = (ABI.IsN64()) ? &Mips::GPR64RegClass : &Mips::GPR32RegClass; in initGlobalBaseReg() 79 if (ABI.IsN64()) { in initGlobalBaseReg() 153 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64() in createEhDataRegsFI()
|
| H A D | MipsRegisterInfo.cpp | 278 bool IsN64 = in getFrameRegister() local 279 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64(); in getFrameRegister() 284 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) : in getFrameRegister() 285 (IsN64 ? Mips::SP_64 : Mips::SP); in getFrameRegister()
|
| H A D | MipsBranchExpansion.cpp | 377 bool HasR6 = ABI.IsN64() ? STI->hasMips64r6() : STI->hasMips32r6(); in buildProperJumpMI() 380 unsigned JR = ABI.IsN64() ? Mips::JR64 : Mips::JR; in buildProperJumpMI() 381 unsigned JIC = ABI.IsN64() ? Mips::JIC64 : Mips::JIC; in buildProperJumpMI() 382 unsigned JR_HB = ABI.IsN64() ? Mips::JR_HB64 : Mips::JR_HB; in buildProperJumpMI() 383 unsigned JR_HB_R6 = ABI.IsN64() ? Mips::JR_HB64_R6 : Mips::JR_HB_R6; in buildProperJumpMI() 394 unsigned ATReg = ABI.IsN64() ? Mips::AT_64 : Mips::AT; in buildProperJumpMI() 433 if (!ABI.IsN64()) { in expandToLongBranch() 684 if (ABI.IsN64()) { in expandToLongBranch()
|
| H A D | MipsTargetMachine.cpp | 81 if (!ABI.IsN64()) in computeDataLayout() 91 if (ABI.IsN64() || ABI.IsN32()) in computeDataLayout()
|
| H A D | MipsISelLowering.h | 352 return ABI.IsN64() ? Mips::A0_64 : Mips::A0; in getExceptionPointerRegister() 359 return ABI.IsN64() ? Mips::A1_64 : Mips::A1; in getExceptionSelectorRegister() 474 SelectionDAG &DAG, bool IsN64) const { in getAddrGPRel() argument 478 DAG.getRegister(IsN64 ? Mips::GP_64 : Mips::GP, Ty), in getAddrGPRel()
|
| H A D | MipsFrameLowering.cpp | 140 unsigned SP = STI.getABI().IsN64() ? Mips::SP_64 : Mips::SP; in eliminateCallFramePseudoInstr()
|
| H A D | MipsISelLowering.cpp | 518 setMinStackArgumentAlignment((ABI.IsN32() || ABI.IsN64()) ? Align(8) in MipsTargetLowering() 521 setStackPointerRegisterToSaveRestore(ABI.IsN64() ? Mips::SP_64 : Mips::SP); in MipsTargetLowering() 2079 return getAddrGPRel(N, SDLoc(N), Ty, DAG, ABI.IsN64()); in lowerGlobalAddress() 2099 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerGlobalAddress() 2109 (ABI.IsN32() || ABI.IsN64()) ? MipsII::MO_GOT_DISP : MipsII::MO_GOT, in lowerGlobalAddress() 2122 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerBlockAddress() 2217 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerJumpTable() 2234 return getAddrGPRel(N, SDLoc(N), Ty, DAG, ABI.IsN64()); in lowerConstantPool() 2240 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerConstantPool() 2267 unsigned ArgSlotSizeInBytes = (ABI.IsN32() || ABI.IsN64()) ? 8 : 4; in lowerVAARG() [all …]
|
| H A D | MipsSubtarget.cpp | 276 bool MipsSubtarget::isABI_N64() const { return getABI().IsN64(); } in isABI_N64()
|
| H A D | MipsSEFrameLowering.cpp | 419 unsigned AND = ABI.IsN64() ? Mips::AND64 : Mips::AND; in emitPrologue() 867 unsigned RA = ABI.IsN64() ? Mips::RA_64 : Mips::RA; in determineCalleeSaves() 869 unsigned BP = ABI.IsN64() ? Mips::S7_64 : Mips::S7; in determineCalleeSaves()
|
| H A D | MipsSEISelDAGToDAG.cpp | 1106 (ABI.IsN32() || ABI.IsN64()))) { in trySelect() 1156 (ABI.IsN32() || ABI.IsN64())) { in trySelect() 1273 } else if (ABI.IsN64() || ABI.IsN32()) { in trySelect()
|
| H A D | MipsInstrInfo.td | 222 def IsN64 : Predicate<"Subtarget->isABI_N64()">; 504 list<Predicate> AdditionalPredicates = [IsN64];
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/ |
| H A D | Mips.cpp | 227 bool IsN64 = ABIName == "64"; in getMIPSTargetFeatures() local 252 if (IsN64 && NonPIC && (!ABICallsArg || UseAbiCalls)) { in getMIPSTargetFeatures()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 593 return ABI.IsN32() || ABI.IsN64(); in isJalrRelocAvailable() 599 bool isABI_N64() const { return ABI.IsN64(); } in isABI_N64() 3014 if (ABI.IsN32() || ABI.IsN64()) { in loadAndAddSymbolAddress() 3775 if (ABI.IsN64()) { in expandMem16Inst()
|