Searched refs:isRela (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/lld/ELF/ |
D | SyntheticSections.cpp | 1402 bool isRela = config->isRela; in finalizeContents() local 1403 addInt(isRela ? DT_RELAENT : DT_RELENT, in finalizeContents() 1404 isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel)); in finalizeContents() 1412 addInt(isRela ? DT_RELACOUNT : DT_RELCOUNT, numRelativeRels); in finalizeContents() 1443 addInt(DT_PLTREL, config->isRela ? DT_RELA : DT_REL); in finalizeContents() 1632 if (config->isRela) in encodeDynamicReloc() 1640 : RelocationBaseSection(name, config->isRela ? SHT_RELA : SHT_REL, in RelocationSection() 1641 config->isRela ? DT_RELA : DT_REL, in RelocationSection() 1642 config->isRela ? DT_RELASZ : DT_RELSZ), in RelocationSection() 1644 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); in RelocationSection() [all …]
|
D | Config.h | 331 bool isRela; member
|
D | Writer.cpp | 398 StringRef relaDynName = config->isRela ? ".rela.dyn" : ".rel.dyn"; in createSyntheticSections() 536 config->isRela ? ".rela.plt" : ".rel.plt", /*sort=*/false); in createSyntheticSections() 1099 config->isRela ? "__rela_iplt_start" : "__rel_iplt_start", in addRelIpltSymbols() 1103 config->isRela ? "__rela_iplt_end" : "__rel_iplt_end", in addRelIpltSymbols()
|
D | Driver.cpp | 1328 config->isRela = getIsRela(args); in setConfigs() 1337 !config->isRela; in setConfigs()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.cpp | 265 if (!RelSection->isRela()) { in writeFunctionCode() 445 Section->appendRelocationOffset(Str, RelSection->isRela(), in writeDataOfType() 611 Section->appendRelocationOffset(Str, RelSection->isRela(), TargetOffset); in writeJumpTable()
|
D | IceELFSection.h | 248 bool isRela() const { return Header.sh_type == SHT_RELA; } in isRela() function
|
/external/llvm/include/llvm/Object/ |
D | ELFTypes.h | 29 template <class ELFT, bool isRela> struct Elf_Rel_Impl;
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | ELFTypes.h | 33 template <class ELFT, bool isRela> struct Elf_Rel_Impl;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELFTypes.h | 33 template <class ELFT, bool isRela> struct Elf_Rel_Impl;
|