Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
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()
DMipsABIFlagsSection.cpp18 switch (FpABI) { in getFpABIValue()
51 if (FpABI == FpABIKind::XX) in getCPR1SizeValue()
DMipsTargetStreamer.cpp718 MipsABIFlagsSection::FpABIKind FpABI = ABIFlagsSection.getFpABI(); in emitDirectiveModuleFP() local
719 if (FpABI == MipsABIFlagsSection::FpABIKind::SOFT) in emitDirectiveModuleFP()
722 OS << "\t.module\tfp=" << ABIFlagsSection.getFpABIString(FpABI) << "\n"; in emitDirectiveModuleFP()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h663 MIPS_ABI_FP FpABI; member
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp412 bool parseFpABIValue(MipsABIFlagsSection::FpABIKind &FpABI,
8471 MipsABIFlagsSection::FpABIKind FpABI; in parseDirectiveModuleFP() local
8472 if (!parseFpABIValue(FpABI, ".module")) in parseDirectiveModuleFP()
8493 bool MipsAsmParser::parseFpABIValue(MipsABIFlagsSection::FpABIKind &FpABI, in parseFpABIValue() argument
8513 FpABI = MipsABIFlagsSection::FpABIKind::XX; in parseFpABIValue()
8539 FpABI = MipsABIFlagsSection::FpABIKind::S32; in parseFpABIValue()
8548 FpABI = MipsABIFlagsSection::FpABIKind::S64; in parseFpABIValue()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DELFYAML.cpp1419 IO.mapOptional("FpABI", Section.FpABI, in sectionMapping()
DELFEmitter.cpp1634 Flags.fp_abi = Section.FpABI; in writeSectionContent()