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.cpp785 MipsABIFlagsSection::FpABIKind FpABI = ABIFlagsSection.getFpABI(); in emitDirectiveModuleFP() local
786 if (FpABI == MipsABIFlagsSection::FpABIKind::SOFT) in emitDirectiveModuleFP()
789 OS << "\t.module\tfp=" << ABIFlagsSection.getFpABIString(FpABI) << "\n"; in emitDirectiveModuleFP()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h709 MIPS_ABI_FP FpABI; member
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp409 bool parseFpABIValue(MipsABIFlagsSection::FpABIKind &FpABI,
8481 MipsABIFlagsSection::FpABIKind FpABI; in parseDirectiveModuleFP() local
8482 if (!parseFpABIValue(FpABI, ".module")) in parseDirectiveModuleFP()
8503 bool MipsAsmParser::parseFpABIValue(MipsABIFlagsSection::FpABIKind &FpABI, in parseFpABIValue() argument
8523 FpABI = MipsABIFlagsSection::FpABIKind::XX; in parseFpABIValue()
8549 FpABI = MipsABIFlagsSection::FpABIKind::S32; in parseFpABIValue()
8558 FpABI = MipsABIFlagsSection::FpABIKind::S64; in parseFpABIValue()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1765 Flags.fp_abi = Section.FpABI; in writeSectionContent()
H A DELFYAML.cpp1573 IO.mapOptional("FpABI", Section.FpABI, in sectionMapping()