Home
last modified time | relevance | path

Searched refs:ABIFlagsSection (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIFlagsSection.cpp58 MCStreamer &operator<<(MCStreamer &OS, MipsABIFlagsSection &ABIFlagsSection) { in operator <<() argument
60 OS.emitIntValue(ABIFlagsSection.getVersionValue(), 2); // version in operator <<()
61 OS.emitIntValue(ABIFlagsSection.getISALevelValue(), 1); // isa_level in operator <<()
62 OS.emitIntValue(ABIFlagsSection.getISARevisionValue(), 1); // isa_rev in operator <<()
63 OS.emitIntValue(ABIFlagsSection.getGPRSizeValue(), 1); // gpr_size in operator <<()
64 OS.emitIntValue(ABIFlagsSection.getCPR1SizeValue(), 1); // cpr1_size in operator <<()
65 OS.emitIntValue(ABIFlagsSection.getCPR2SizeValue(), 1); // cpr2_size in operator <<()
66 OS.emitIntValue(ABIFlagsSection.getFpABIValue(), 1); // fp_abi in operator <<()
67 OS.emitIntValue(ABIFlagsSection.getISAExtensionValue(), 4); // isa_ext in operator <<()
68 OS.emitIntValue(ABIFlagsSection.getASESetValue(), 4); // ases in operator <<()
[all …]
H A DMipsTargetStreamer.cpp154 if (!ABIFlagsSection.OddSPReg && !ABIFlagsSection.Is32BitABI) in emitDirectiveModuleOddSPReg()
732 MipsABIFlagsSection::FpABIKind FpABI = ABIFlagsSection.getFpABI(); in emitDirectiveModuleFP()
736 OS << "\t.module\tfp=" << ABIFlagsSection.getFpABIString(FpABI) << "\n"; in emitDirectiveModuleFP()
744 OS << ABIFlagsSection.getFpABIString(Value) << "\n"; in emitDirectiveSetFp()
750 OS << "\t.module\t" << (ABIFlagsSection.OddSPReg ? "" : "no") << "oddspreg\n"; in emitDirectiveModuleOddSPReg()
1310 OS << ABIFlagsSection; in emitMipsAbiFlags()
H A DMipsABIFlagsSection.h204 MCStreamer &operator<<(MCStreamer &OS, MipsABIFlagsSection &ABIFlagsSection);
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetStreamer.h175 ABIFlagsSection.setAllFromPredicates(P); in updateABIInfo()
178 MipsABIFlagsSection &getABIFlagsSection() { return ABIFlagsSection; } in getABIFlagsSection()
186 MipsABIFlagsSection ABIFlagsSection; variable