Searched refs:IsN32 (Results 1 – 15 of 15) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsMCAsmInfo.cpp | 27 if (TheTriple.isMIPS64() && !ABI.IsN32()) in MipsMCAsmInfo() 32 else if (ABI.IsN32() || ABI.IsN64()) in MipsMCAsmInfo()
|
H A D | MipsABIInfo.cpp | 36 if (IsN32() || IsN64()) in GetByValArgRegs() 44 if (IsN32() || IsN64()) in GetVarArgRegs() 52 if (IsN32() || IsN64()) in GetCalleeAllocdArgSizeInBytes()
|
H A D | MipsAsmBackend.h | 30 bool IsN32; variable 37 TheTriple(TT), IsN32(N32) {} in MipsAsmBackend()
|
H A D | MipsABIInfo.h | 41 bool IsN32() const { return ThisABI == ABI::N32; } in IsN32() function 74 inline bool AreGprs64bit() const { return IsN32() || IsN64(); } in AreGprs64bit()
|
H A D | MipsMCTargetDesc.h | 43 createMipsELFObjectWriter(const Triple &TT, bool IsN32);
|
H A D | MipsTargetStreamer.cpp | 132 if (!getABI().IsN32() && !getABI().IsN64()) in emitDirectiveCpLocal() 936 else if (getABI().IsN32()) in finish() 1158 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpLoad() 1225 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpRestore() 1239 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpsetup() 1271 if (getABI().IsN32()) in emitDirectiveCpsetup() 1280 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpreturn()
|
H A D | MipsOptionRecord.cpp | 55 Sec->setAlignment(MTS->getABI().IsN32() ? Align(8) : Align(4)); in EmitMipsOptionRecord()
|
H A D | MipsAsmBackend.cpp | 221 return createMipsELFObjectWriter(TheTriple, IsN32); in createObjectTargetWriter() 607 ABI.IsN32()); in createMipsAsmBackend()
|
H A D | MipsELFObjectWriter.cpp | 666 llvm::createMipsELFObjectWriter(const Triple &TT, bool IsN32) { in createMipsELFObjectWriter() argument 668 bool IsN64 = TT.isArch64Bit() && !IsN32; in createMipsELFObjectWriter()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsSubtarget.cpp | 280 bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } in isABI_N32()
|
H A D | MipsMachineFunction.cpp | 119 if (ABI.IsN32()) { in initGlobalBaseReg()
|
H A D | MipsTargetMachine.cpp | 101 if (ABI.IsN64() || ABI.IsN32()) in computeDataLayout()
|
H A D | MipsSEISelDAGToDAG.cpp | 1135 (ABI.IsN32() || ABI.IsN64()))) { in trySelect() 1185 (ABI.IsN32() || ABI.IsN64())) { in trySelect() 1302 } else if (ABI.IsN64() || ABI.IsN32()) { in trySelect()
|
H A D | MipsISelLowering.cpp | 529 setMinStackArgumentAlignment((ABI.IsN32() || ABI.IsN64()) ? Align(8) in MipsTargetLowering() 2130 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerGlobalAddress() 2140 (ABI.IsN32() || ABI.IsN64()) ? MipsII::MO_GOT_DISP : MipsII::MO_GOT, in lowerGlobalAddress() 2153 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerBlockAddress() 2248 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerJumpTable() 2271 return getAddrLocal(N, SDLoc(N), Ty, DAG, ABI.IsN32() || ABI.IsN64()); in lowerConstantPool() 2298 unsigned ArgSlotSizeInBytes = (ABI.IsN32() || ABI.IsN64()) ? 8 : 4; in lowerVAARG() 2517 if ((ABI.IsN32() || ABI.IsN64()) && (Op.getValueType() == MVT::f64)) in lowerFABS() 3449 Callee = getAddrLocal(G, DL, Ty, DAG, ABI.IsN32() || ABI.IsN64()); in LowerCall() 3815 if ((ABI.IsN32() || ABI.IsN64()) && Type == MVT::i32) in shouldSignExtendTypeInLibCall()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/ |
H A D | MipsAsmParser.cpp | 593 return ABI.IsN32() || ABI.IsN64(); in isJalrRelocAvailable() 598 bool isABI_N32() const { return ABI.IsN32(); } in isABI_N32() 3083 if (ABI.IsN32() || ABI.IsN64()) { in loadAndAddSymbolAddress()
|