| /freebsd-11-stable/contrib/llvm-project/lld/ELF/ |
| HD | InputSection.cpp | 213 using Chdr32 = typename ELF32LE::Chdr; in parseCompressedHeader() 1323 template InputSection::InputSection(ObjFile<ELF32LE> &, const ELF32LE::Shdr &, 1332 template std::string InputSectionBase::getLocation<ELF32LE>(uint64_t); 1337 template void InputSection::writeTo<ELF32LE>(uint8_t *); 1342 template MergeInputSection::MergeInputSection(ObjFile<ELF32LE> &, 1343 const ELF32LE::Shdr &, StringRef); 1351 template EhInputSection::EhInputSection(ObjFile<ELF32LE> &, 1352 const ELF32LE::Shdr &, StringRef); 1360 template void EhInputSection::split<ELF32LE>();
|
| HD | Target.cpp | 68 return getMipsTargetInfo<ELF32LE>(); in getTarget() 118 return getErrPlace<ELF32LE>(loc); in getErrorPlace()
|
| HD | OutputSections.cpp | 496 template void OutputSection::writeHeaderTo<ELF32LE>(ELF32LE::Shdr *Shdr); 501 template void OutputSection::writeTo<ELF32LE>(uint8_t *Buf); 506 template void OutputSection::maybeCompress<ELF32LE>();
|
| HD | InputFiles.cpp | 207 doParseFile<ELF32LE>(file); in parseFile() 257 return getSrcMsgAux(cast<ObjFile<ELF32LE>>(*this), sym, sec, offset); in getSrcMsg() 309 init<ELF32LE>(); in ELFFileBase() 1519 return make<ObjFile<ELF32LE>>(mb, archiveName); in createObjectFile() 1613 template void BitcodeFile::parse<ELF32LE>(); 1618 template void LazyObjFile::parse<ELF32LE>(); 1623 template class ObjFile<ELF32LE>; 1628 template void SharedFile::parse<ELF32LE>();
|
| HD | SyntheticSections.cpp | 468 addSectionAux<ELF32LE>(sec); in finalizeContents() 3721 template GdbIndexSection *GdbIndexSection::create<ELF32LE>(); 3726 template void splitSections<ELF32LE>(); 3731 template class MipsAbiFlagsSection<ELF32LE>; 3736 template class MipsOptionsSection<ELF32LE>; 3741 template class MipsReginfoSection<ELF32LE>; 3746 template class DynamicSection<ELF32LE>; 3751 template class RelocationSection<ELF32LE>; 3756 template class AndroidPackedRelocationSection<ELF32LE>; 3761 template class RelrSection<ELF32LE>; [all …]
|
| HD | DWARF.cpp | 127 template class LLDDwarfObj<ELF32LE>;
|
| HD | MarkLive.cpp | 393 template void markLive<ELF32LE>();
|
| HD | ICF.cpp | 530 template void doIcf<ELF32LE>();
|
| HD | ARMErrataFix.cpp | 323 auto *f = cast<ObjFile<ELF32LE>>(file); in init()
|
| HD | Relocations.cpp | 1963 template void scanRelocations<ELF32LE>(InputSectionBase &); 1967 template void reportUndefinedSymbols<ELF32LE>();
|
| HD | Writer.cpp | 2733 template void createSyntheticSections<ELF32LE>(); 2738 template void writeResult<ELF32LE>();
|
| /freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/ |
| HD | MipsArchTree.cpp | 372 return isN32Abi<ELF32LE>(f); in isMipsN32Abi() 391 template uint32_t calcMipsEFlags<ELF32LE>();
|
| HD | Mips.cpp | 757 template TargetInfo *getMipsTargetInfo<ELF32LE>(); 762 template bool isMipsPIC<ELF32LE>(const Defined *);
|
| HD | Hexagon.cpp | 67 uint32_t eflags = cast<ObjFile<ELF32LE>>(f)->getObj().getHeader()->e_flags; in calcEFlags()
|
| HD | X86.cpp | 472 write32le(buf + 5, i * sizeof(object::ELF32LE::Rel)); in writeIBTPlt()
|
| HD | RISCV.cpp | 107 return cast<ObjFile<ELF32LE>>(f)->getObj().getHeader()->e_flags; in getEFlags()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| HD | ELFDump.cpp | 122 if (auto *ELF32LE = dyn_cast<ELF32LEObjectFile>(Obj)) in getELFRelocationValueString() local 123 return getRelocationValueString(ELF32LE, Rel, Result); in getELFRelocationValueString()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| HD | ELFObjcopy.cpp | 114 if (isa<ELFObjectFile<ELF32LE>>(Bin)) in getOutputElfType() 139 return std::make_unique<ELFWriter<ELF32LE>>(Obj, Buf, !Config.StripSections, in createELFWriter() 193 if (auto *O = dyn_cast<ELFObjectFile<ELF32LE>>(&In)) in findBuildID()
|
| HD | Object.cpp | 522 std::max(sizeof(object::Elf_Chdr_Impl<object::ELF32LE>), in CompressedSection() 1678 if (auto *O = dyn_cast<ELFObjectFile<ELF32LE>>(Bin)) { in create() 1679 ELFBuilder<ELF32LE> Builder(*O, *Obj, ExtractPartition); in create() 2391 template class ELFBuilder<ELF32LE>; 2396 template class ELFWriter<ELF32LE>;
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ |
| HD | ELFObjectFile.cpp | 81 return createPtr<ELF32LE>(Obj); in createELFObjectFile()
|
| HD | ELF.cpp | 586 template class llvm::object::ELFFile<ELF32LE>;
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| HD | Symbolize.cpp | 309 if (auto *O = dyn_cast<ELFObjectFile<ELF32LE>>(Obj)) in getBuildID()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ |
| HD | ELFTypes.h | 94 using ELF32LE = ELFType<support::little, false>; variable
|
| HD | ELF.h | 304 using ELF32LEFile = ELFFile<ELF32LE>;
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| HD | ELFDumper.cpp | 2449 template <> void ELFDumper<ELF32LE>::printUnwindInfo() { in printUnwindInfo() 2450 const ELFFile<ELF32LE> *Obj = ObjF->getELFFile(); in printUnwindInfo() 2453 ARM::EHABI::PrinterContext<ELF32LE> Ctx(W, Obj, ObjF->getFileName(), in printUnwindInfo() 2457 DwarfCFIEH::PrinterContext<ELF32LE> Ctx(W, ObjF); in printUnwindInfo() 2542 template <> void ELFDumper<ELF32LE>::printAttributes() { in printAttributes() 2543 const ELFFile<ELF32LE> *Obj = ObjF->getELFFile(); in printAttributes()
|