Home
last modified time | relevance | path

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

/external/llvm-project/lld/ELF/
DSyntheticSections.h974 template <class ELFT> class MipsReginfoSection final : public SyntheticSection {
978 static MipsReginfoSection *create();
980 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()
3818 template class elf::MipsReginfoSection<ELF32LE>; member in elf
3819 template class elf::MipsReginfoSection<ELF32BE>; member in elf
3820 template class elf::MipsReginfoSection<ELF64LE>; member in elf
3821 template class elf::MipsReginfoSection<ELF64BE>; member in elf
DWriter.cpp394 if (auto *sec = MipsReginfoSection<ELFT>::create()) in createSyntheticSections()