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.cpp1403 bool isRela = config->isRela; in computeContents() local
1404 addInt(isRela ? DT_RELAENT : DT_RELENT, in computeContents()
1405 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in computeContents()
1413 addInt(isRela ? DT_RELACOUNT : DT_RELCOUNT, numRelativeRels); in computeContents()
1463 addInt(DT_PLTREL, config->isRela ? DT_RELA : DT_REL); in computeContents()
1723 : RelocationBaseSection(name, config->isRela ? SHT_RELA : SHT_REL, in RelocationSection()
1724 config->isRela ? DT_RELA : DT_REL, in RelocationSection()
1725 config->isRela ? DT_RELASZ : DT_RELSZ, combreloc, in RelocationSection()
1727 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection()
1736 if (config->isRela) in writeTo()
[all …]
H A DConfig.h424 bool isRela; member
H A DDriver.cpp1832 config->isRela = getIsRela(args); in setConfigs()
1841 !config->isRela; in setConfigs()
H A DWriter.cpp801 std::string name = config->isRela ? "__rela_iplt_start" : "__rel_iplt_start"; in addRelIpltSymbols()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h34 template <class ELFT, bool isRela> struct Elf_Rel_Impl;