Searched refs:ELF64LE (Results 1 – 25 of 28) sorted by relevance
12
| /freebsd-11-stable/contrib/llvm-project/lld/ELF/ |
| HD | InputSection.cpp | 212 using Chdr64 = typename ELF64LE::Chdr; in parseCompressedHeader() 1327 template InputSection::InputSection(ObjFile<ELF64LE> &, const ELF64LE::Shdr &, 1334 template std::string InputSectionBase::getLocation<ELF64LE>(uint64_t); 1339 template void InputSection::writeTo<ELF64LE>(uint8_t *); 1346 template MergeInputSection::MergeInputSection(ObjFile<ELF64LE> &, 1347 const ELF64LE::Shdr &, StringRef); 1355 template EhInputSection::EhInputSection(ObjFile<ELF64LE> &, 1356 const ELF64LE::Shdr &, StringRef); 1362 template void EhInputSection::split<ELF64LE>();
|
| HD | Target.cpp | 72 return getMipsTargetInfo<ELF64LE>(); in getTarget() 122 return getErrPlace<ELF64LE>(loc); in getErrorPlace()
|
| HD | OutputSections.cpp | 498 template void OutputSection::writeHeaderTo<ELF64LE>(ELF64LE::Shdr *Shdr); 503 template void OutputSection::writeTo<ELF64LE>(uint8_t *Buf); 508 template void OutputSection::maybeCompress<ELF64LE>();
|
| HD | InputFiles.cpp | 213 doParseFile<ELF64LE>(file); in parseFile() 261 return getSrcMsgAux(cast<ObjFile<ELF64LE>>(*this), sym, sec, offset); in getSrcMsg() 315 init<ELF64LE>(); in ELFFileBase() 1523 return make<ObjFile<ELF64LE>>(mb, archiveName); in createObjectFile() 1615 template void BitcodeFile::parse<ELF64LE>(); 1620 template void LazyObjFile::parse<ELF64LE>(); 1625 template class ObjFile<ELF64LE>; 1630 template void SharedFile::parse<ELF64LE>();
|
| HD | SyntheticSections.cpp | 476 addSectionAux<ELF64LE>(sec); in finalizeContents() 3723 template GdbIndexSection *GdbIndexSection::create<ELF64LE>(); 3728 template void splitSections<ELF64LE>(); 3733 template class MipsAbiFlagsSection<ELF64LE>; 3738 template class MipsOptionsSection<ELF64LE>; 3743 template class MipsReginfoSection<ELF64LE>; 3748 template class DynamicSection<ELF64LE>; 3753 template class RelocationSection<ELF64LE>; 3758 template class AndroidPackedRelocationSection<ELF64LE>; 3763 template class RelrSection<ELF64LE>; [all …]
|
| HD | DWARF.cpp | 129 template class LLDDwarfObj<ELF64LE>;
|
| HD | MarkLive.cpp | 395 template void markLive<ELF64LE>();
|
| HD | AArch64ErrataFix.cpp | 447 auto *f = cast<ObjFile<ELF64LE>>(file); in init()
|
| HD | ICF.cpp | 532 template void doIcf<ELF64LE>();
|
| HD | Relocations.cpp | 1965 template void scanRelocations<ELF64LE>(InputSectionBase &); 1969 template void reportUndefinedSymbols<ELF64LE>();
|
| HD | Writer.cpp | 2735 template void createSyntheticSections<ELF64LE>(); 2740 template void writeResult<ELF64LE>();
|
| /freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/ |
| HD | MipsArchTree.cpp | 376 return isN32Abi<ELF64LE>(f); in isMipsN32Abi() 393 template uint32_t calcMipsEFlags<ELF64LE>();
|
| HD | AMDGPU.cpp | 44 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader()->e_flags; in getEFlags()
|
| HD | Mips.cpp | 759 template TargetInfo *getMipsTargetInfo<ELF64LE>(); 764 template bool isMipsPIC<ELF64LE>(const Defined *);
|
| HD | PPC64.cpp | 173 config->isLE ? getRelaTocSymAndAddend<ELF64LE>(tocISB, rel.addend) in tryRelaxPPC64TocIndirection() 352 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader()->e_flags; in getEFlags()
|
| HD | RISCV.cpp | 106 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader()->e_flags; in getEFlags()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| HD | ELFDump.cpp | 124 if (auto *ELF64LE = dyn_cast<ELF64LEObjectFile>(Obj)) in getELFRelocationValueString() local 125 return getRelocationValueString(ELF64LE, Rel, Result); in getELFRelocationValueString()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| HD | ELFObjcopy.cpp | 116 if (isa<ELFObjectFile<ELF64LE>>(Bin)) in getOutputElfType() 142 return std::make_unique<ELFWriter<ELF64LE>>(Obj, Buf, !Config.StripSections, in createELFWriter() 195 else if (auto *O = dyn_cast<ELFObjectFile<ELF64LE>>(&In)) in findBuildID()
|
| HD | Object.cpp | 520 std::max(std::max(sizeof(object::Elf_Chdr_Impl<object::ELF64LE>), in CompressedSection() 1682 } else if (auto *O = dyn_cast<ELFObjectFile<ELF64LE>>(Bin)) { in create() 1683 ELFBuilder<ELF64LE> Builder(*O, *Obj, ExtractPartition); in create() 2389 template class ELFBuilder<ELF64LE>; 2394 template class ELFWriter<ELF64LE>;
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ |
| HD | ELFObjectFile.cpp | 88 return createPtr<ELF64LE>(Obj); in createELFObjectFile()
|
| HD | ELF.cpp | 588 template class llvm::object::ELFFile<ELF64LE>;
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| HD | Symbolize.cpp | 313 else if (auto *O = dyn_cast<ELFObjectFile<ELF64LE>>(Obj)) in getBuildID()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ |
| HD | ELFTypes.h | 96 using ELF64LE = ELFType<support::little, true>; variable
|
| HD | ELF.h | 305 using ELF64LEFile = ELFFile<ELF64LE>;
|
| HD | ELFObjectFile.h | 445 using ELF64LEObjectFile = ELFObjectFile<ELF64LE>;
|
12