/external/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsMCAsmInfo.cpp | 27 if (TheTriple.isMIPS64() && !ABI.IsN32()) in MipsMCAsmInfo() 32 else if (ABI.IsN32() || ABI.IsN64()) in MipsMCAsmInfo()
|
D | MipsABIInfo.cpp | 36 if (IsN32() || IsN64()) in GetByValArgRegs() 44 if (IsN32() || IsN64()) in GetVarArgRegs() 52 if (IsN32() || IsN64()) in GetCalleeAllocdArgSizeInBytes()
|
D | MipsAsmBackend.h | 30 bool IsN32; variable 36 TheTriple(TT), IsN32(N32) {} in MipsAsmBackend()
|
D | MipsABIInfo.h | 41 bool IsN32() const { return ThisABI == ABI::N32; } in IsN32() function 74 inline bool AreGprs64bit() const { return IsN32() || IsN64(); } in AreGprs64bit()
|
D | MipsMCTargetDesc.h | 45 createMipsELFObjectWriter(const Triple &TT, bool IsN32);
|
D | MipsTargetStreamer.cpp | 126 if (!getABI().IsN32() && !getABI().IsN64()) in emitDirectiveCpLocal() 922 else if (getABI().IsN32()) in finish() 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() 1246 if (getABI().IsN32()) { in emitDirectiveCpsetup() 1286 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpreturn()
|
D | MipsOptionRecord.cpp | 58 Sec->setAlignment(MTS->getABI().IsN32() ? Align(8) : Align(4)); in EmitMipsOptionRecord()
|
D | MipsAsmBackend.cpp | 220 return createMipsELFObjectWriter(TheTriple, IsN32); in createObjectTargetWriter() 591 ABI.IsN32()); in createMipsAsmBackend()
|
D | MipsELFObjectWriter.cpp | 664 llvm::createMipsELFObjectWriter(const Triple &TT, bool IsN32) { in createMipsELFObjectWriter() argument 666 bool IsN64 = TT.isArch64Bit() && !IsN32; in createMipsELFObjectWriter()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsMCAsmInfo.cpp | 27 if (TheTriple.isMIPS64() && !ABI.IsN32()) in MipsMCAsmInfo() 32 else if (ABI.IsN32() || ABI.IsN64()) in MipsMCAsmInfo()
|
D | MipsABIInfo.cpp | 36 if (IsN32() || IsN64()) in GetByValArgRegs() 44 if (IsN32() || IsN64()) in GetVarArgRegs() 52 if (IsN32() || IsN64()) in GetCalleeAllocdArgSizeInBytes()
|
D | MipsABIInfo.h | 42 bool IsN32() const { return ThisABI == ABI::N32; } in IsN32() function 75 inline bool AreGprs64bit() const { return IsN32() || IsN64(); } in AreGprs64bit()
|
D | MipsAsmBackend.h | 32 bool IsN32; variable 38 TheTriple(TT), IsN32(N32) {} in MipsAsmBackend()
|
D | MipsMCTargetDesc.h | 47 createMipsELFObjectWriter(const Triple &TT, bool IsN32);
|
D | MipsTargetStreamer.cpp | 123 if (!getABI().IsN32() && !getABI().IsN64()) in emitDirectiveCpLocal() 903 else if (getABI().IsN32()) in finish() 1118 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpLoad() 1185 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpRestore() 1199 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpsetup() 1216 if (getABI().IsN32()) { in emitDirectiveCpsetup() 1256 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpreturn()
|
D | MipsOptionRecord.cpp | 58 Sec->setAlignment(MTS->getABI().IsN32() ? Align(8) : Align(4)); in EmitMipsOptionRecord()
|
D | MipsAsmBackend.cpp | 220 return createMipsELFObjectWriter(TheTriple, IsN32); in createObjectTargetWriter() 591 ABI.IsN32()); in createMipsAsmBackend()
|
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsABIInfo.cpp | 29 if (IsN32() || IsN64()) in GetByValArgRegs() 37 if (IsN32() || IsN64()) in GetVarArgRegs() 45 if (IsN32() || IsN64()) in GetCalleeAllocdArgSizeInBytes()
|
D | MipsABIInfo.h | 43 bool IsN32() const { return ThisABI == ABI::N32; } in IsN32() function 76 inline bool AreGprs64bit() const { return IsN32() || IsN64(); } in AreGprs64bit()
|
D | MipsOptionRecord.cpp | 53 Sec->setAlignment(MTS->getABI().IsN32() ? 8 : 4); in EmitMipsOptionRecord()
|
D | MipsTargetStreamer.cpp | 789 else if (getABI().IsN32()) in finish() 1001 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpLoad() 1063 if (!Pic || (getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpRestore() 1077 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpsetup() 1094 if (getABI().IsN32()) { in emitDirectiveCpsetup() 1134 if (!Pic || !(getABI().IsN32() || getABI().IsN64())) in emitDirectiveCpreturn()
|
/external/llvm/lib/Target/Mips/ |
D | MipsSubtarget.cpp | 172 bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } in isABI_N32()
|
/external/llvm-project/llvm/lib/Target/Mips/ |
D | MipsSubtarget.cpp | 277 bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } in isABI_N32()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsMachineFunction.cpp | 112 if (ABI.IsN32()) { in initGlobalBaseReg()
|
D | MipsSubtarget.cpp | 277 bool MipsSubtarget::isABI_N32() const { return getABI().IsN32(); } in isABI_N32()
|