Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lld/ELF/
DSyntheticSections.h1018 template <class ELFT> class MipsReginfoSection final : public SyntheticSection {
1022 static MipsReginfoSection *create();
1024 MipsReginfoSection(Elf_Mips_RegInfo reginfo);
DSyntheticSections.cpp213 MipsReginfoSection<ELFT>::MipsReginfoSection(Elf_Mips_RegInfo reginfo) in MipsReginfoSection() function in MipsReginfoSection
219 template <class ELFT> void MipsReginfoSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
226 MipsReginfoSection<ELFT> *MipsReginfoSection<ELFT>::create() { in create()
253 return make<MipsReginfoSection<ELFT>>(reginfo); in create()
3890 template class elf::MipsReginfoSection<ELF32LE>; member in elf
3891 template class elf::MipsReginfoSection<ELF32BE>; member in elf
3892 template class elf::MipsReginfoSection<ELF64LE>; member in elf
3893 template class elf::MipsReginfoSection<ELF64BE>; member in elf
DWriter.cpp394 if (auto *sec = MipsReginfoSection<ELFT>::create()) in createSyntheticSections()