Home
last modified time | relevance | path

Searched refs:isRela (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp1454 bool isRela = ctx.arg.isRela; in computeContents() local
1455 addInt(isRela ? DT_RELAENT : DT_RELENT, in computeContents()
1456 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in computeContents()
1464 addInt(isRela ? DT_RELACOUNT : DT_RELCOUNT, numRelativeRels); in computeContents()
1516 addInt(DT_PLTREL, ctx.arg.isRela ? DT_RELA : DT_REL); in computeContents()
1781 : RelocationBaseSection(ctx, name, ctx.arg.isRela ? SHT_RELA : SHT_REL, in RelocationSection()
1782 ctx.arg.isRela ? DT_RELA : DT_REL, in RelocationSection()
1783 ctx.arg.isRela ? DT_RELASZ : DT_RELSZ, combreloc, in RelocationSection()
1785 this->entsize = ctx.arg.isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection()
1794 if (ctx.arg.isRela) in writeTo()
[all …]
H A DConfig.h509 bool isRela; member
H A DDriver.cpp2003 ctx.arg.isRela = getIsRela(ctx, args); in setConfigs()
2012 !ctx.arg.isRela; in setConfigs()
H A DWriter.cpp828 std::string name = ctx.arg.isRela ? "__rela_iplt_start" : "__rel_iplt_start"; in addRelIpltSymbols()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h35 template <class ELFT, bool isRela> struct Elf_Rel_Impl;