Home
last modified time | relevance | path

Searched refs:FpABI (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIFlagsSection.h48 FpABIKind FpABI = FpABIKind::ANY;
74 FpABIKind getFpABI() { return FpABI; } in getFpABI()
76 FpABI = Value; in setFpABI()
177 FpABI = FpABIKind::ANY; in setFpAbiFromPredicates()
179 FpABI = FpABIKind::SOFT; in setFpAbiFromPredicates()
181 FpABI = FpABIKind::S64; in setFpAbiFromPredicates()
184 FpABI = FpABIKind::XX; in setFpAbiFromPredicates()
186 FpABI = FpABIKind::S64; in setFpAbiFromPredicates()
188 FpABI = FpABIKind::S32; in setFpAbiFromPredicates()
H A DMipsABIFlagsSection.cpp18 switch (FpABI) { in getFpABIValue()
51 if (FpABI == FpABIKind::XX) in getCPR1SizeValue()
H A DMipsTargetStreamer.cpp732 MipsABIFlagsSection::FpABIKind FpABI = ABIFlagsSection.getFpABI(); in emitDirectiveModuleFP() local
733 if (FpABI == MipsABIFlagsSection::FpABIKind::SOFT) in emitDirectiveModuleFP()
736 OS << "\t.module\tfp=" << ABIFlagsSection.getFpABIString(FpABI) << "\n"; in emitDirectiveModuleFP()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h681 MIPS_ABI_FP FpABI; member
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp411 bool parseFpABIValue(MipsABIFlagsSection::FpABIKind &FpABI,
8535 MipsABIFlagsSection::FpABIKind FpABI; in parseDirectiveModuleFP() local
8536 if (!parseFpABIValue(FpABI, ".module")) in parseDirectiveModuleFP()
8557 bool MipsAsmParser::parseFpABIValue(MipsABIFlagsSection::FpABIKind &FpABI, in parseFpABIValue() argument
8577 FpABI = MipsABIFlagsSection::FpABIKind::XX; in parseFpABIValue()
8603 FpABI = MipsABIFlagsSection::FpABIKind::S32; in parseFpABIValue()
8612 FpABI = MipsABIFlagsSection::FpABIKind::S64; in parseFpABIValue()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1693 Flags.fp_abi = Section.FpABI; in writeSectionContent()
H A DELFYAML.cpp1523 IO.mapOptional("FpABI", Section.FpABI, in sectionMapping()