Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h1187 template <class ELFT> class MipsReginfoSection final : public SyntheticSection {
1191 static std::unique_ptr<MipsReginfoSection> create(Ctx &);
1193 MipsReginfoSection(Ctx &, Elf_Mips_RegInfo reginfo);
H A DSyntheticSections.cpp221 MipsReginfoSection<ELFT>::MipsReginfoSection(Ctx &ctx, Elf_Mips_RegInfo reginfo) in MipsReginfoSection() function in MipsReginfoSection
227 template <class ELFT> void MipsReginfoSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
234 std::unique_ptr<MipsReginfoSection<ELFT>>
235 MipsReginfoSection<ELFT>::create(Ctx &ctx) { in create()
262 return std::make_unique<MipsReginfoSection<ELFT>>(ctx, reginfo); in create()
4773 if ((ctx.in.mipsReginfo = MipsReginfoSection<ELFT>::create(ctx))) in createSyntheticSections()