Home
last modified time | relevance | path

Searched refs:MipsOptionsSection (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h999 template <class ELFT> class MipsOptionsSection final : public SyntheticSection {
1004 static MipsOptionsSection *create();
1006 MipsOptionsSection(Elf_Mips_RegInfo reginfo);
H A DSyntheticSections.cpp152 MipsOptionsSection<ELFT>::MipsOptionsSection(Elf_Mips_RegInfo reginfo) in MipsOptionsSection() function in MipsOptionsSection
158 template <class ELFT> void MipsOptionsSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
169 MipsOptionsSection<ELFT> *MipsOptionsSection<ELFT>::create() { in create()
208 return make<MipsOptionsSection<ELFT>>(reginfo); in create()
3876 template class elf::MipsOptionsSection<ELF32LE>; member in elf
3877 template class elf::MipsOptionsSection<ELF32BE>; member in elf
3878 template class elf::MipsOptionsSection<ELF64LE>; member in elf
3879 template class elf::MipsOptionsSection<ELF64BE>; member in elf
H A DWriter.cpp392 if (auto *sec = MipsOptionsSection<ELFT>::create()) in createSyntheticSections()