Home
last modified time | relevance | path

Searched refs:IsN64 (Results 1 – 17 of 17) sorted by relevance

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsABIInfo.cpp29 if (IsN32() || IsN64()) in GetByValArgRegs()
37 if (IsN32() || IsN64()) in GetVarArgRegs()
45 if (IsN32() || IsN64() || IsEABI()) in GetCalleeAllocdArgSizeInBytes()
DMipsABIInfo.h44 bool IsN64() const { return ThisABI == ABI::N64; } in IsN64() function
DMipsOptionRecord.cpp28 if (MTS->getABI().IsN64()) { in EmitMipsOptionRecord()
DMipsTargetStreamer.cpp494 if (EFlags & ELF::EF_MIPS_CPIC && getABI().IsN64()) in finish()
683 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpLoad()
732 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpsetup()
/external/llvm/include/llvm/MC/
DMCELFObjectWriter.h45 const unsigned IsN64 : 1; variable
51 bool IsN64=false);
85 bool isN64() const { return IsN64; } in isN64()
/external/llvm/lib/Target/Mips/
DMipsRegisterInfo.cpp266 bool IsN64 = in getFrameRegister() local
267 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64(); in getFrameRegister()
272 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) : in getFrameRegister()
273 (IsN64 ? Mips::SP_64 : Mips::SP); in getFrameRegister()
DMipsMachineFunction.cpp84 .IsN64() in getGlobalBaseReg()
105 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64() in createEhDataRegsFI()
DMipsTargetMachine.cpp63 if (!ABI.IsN64()) in computeDataLayout()
73 if (ABI.IsN64() || ABI.IsN32()) in computeDataLayout()
DMipsISelLowering.cpp416 setMinStackArgumentAlignment((ABI.IsN32() || ABI.IsN64()) ? 8 : 4); in MipsTargetLowering()
418 setStackPointerRegisterToSaveRestore(ABI.IsN64() ? Mips::SP_64 : Mips::SP); in MipsTargetLowering()
420 setExceptionPointerRegister(ABI.IsN64() ? Mips::A0_64 : Mips::A0); in MipsTargetLowering()
421 setExceptionSelectorRegister(ABI.IsN64() ? Mips::A1_64 : Mips::A1); in MipsTargetLowering()
1568 if ((getTargetMachine().getRelocationModel() == Reloc::PIC_) || ABI.IsN64()) { in lowerBR_JT()
1650 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ && !ABI.IsN64()) { in lowerGlobalAddress()
1663 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerGlobalAddress()
1671 (ABI.IsN32() || ABI.IsN64()) ? MipsII::MO_GOT_DISP in lowerGlobalAddress()
1681 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ && !ABI.IsN64()) in lowerBlockAddress()
1684 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerBlockAddress()
[all …]
DMipsFrameLowering.cpp139 unsigned SP = STI.getABI().IsN64() ? Mips::SP_64 : Mips::SP; in eliminateCallFramePseudoInstr()
DMipsSubtarget.cpp171 bool MipsSubtarget::isABI_N64() const { return getABI().IsN64(); } in isABI_N64()
DMipsSERegisterInfo.cpp114 static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64(); in eliminateFI()
DMipsLongBranch.cpp279 if (!ABI.IsN64()) { in expandToLongBranch()
457 !IsPIC ? 2 : (ABI.IsN64() ? 10 : (!STI.isTargetNaCl() ? 9 : 10)); in runOnMachineFunction()
DMipsSEISelDAGToDAG.cpp138 RC = (ABI.IsN64()) ? &Mips::GPR64RegClass : &Mips::GPR32RegClass; in initGlobalBaseReg()
143 if (ABI.IsN64()) { in initGlobalBaseReg()
DMipsAsmPrinter.cpp708 if (RM == Reloc::Static && !ABI.IsN64()) in EmitStartOfAsmFile()
/external/llvm/lib/MC/
DMCELFObjectTargetWriter.cpp24 IsN64(IsN64_){ in MCELFObjectTargetWriter()
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp378 bool isABI_N64() const { return ABI.IsN64(); } in isABI_N64()