Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/ELF/
H A DSyntheticSections.cpp1379 bool isRela = config->isRela; in computeContents() local
1380 addInt(isRela ? DT_RELAENT : DT_RELENT, in computeContents()
1381 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in computeContents()
1389 addInt(isRela ? DT_RELACOUNT : DT_RELCOUNT, numRelativeRels); in computeContents()
1436 addInt(DT_PLTREL, config->isRela ? DT_RELA : DT_REL); in computeContents()
1678 : RelocationBaseSection(name, config->isRela ? SHT_RELA : SHT_REL, in RelocationSection()
1679 config->isRela ? DT_RELA : DT_REL, in RelocationSection()
1680 config->isRela ? DT_RELASZ : DT_RELSZ, combreloc, in RelocationSection()
1682 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection()
1691 if (config->isRela) in writeTo()
[all …]
H A DConfig.h385 bool isRela; member
H A DWriter.cpp319 StringRef relaDynName = config->isRela ? ".rela.dyn" : ".rel.dyn"; in createSyntheticSections()
472 config->isRela ? ".rela.plt" : ".rel.plt", /*sort=*/false, in createSyntheticSections()
1026 config->isRela ? "__rela_iplt_start" : "__rel_iplt_start", in addRelIpltSymbols()
1030 config->isRela ? "__rela_iplt_end" : "__rel_iplt_end", in addRelIpltSymbols()
H A DDriver.cpp1580 config->isRela = getIsRela(args); in setConfigs()
1589 !config->isRela; in setConfigs()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DELFTypes.h34 template <class ELFT, bool isRela> struct Elf_Rel_Impl;