| /llvm-project-15.0.7/bolt/include/bolt/Core/ |
| H A D | BinarySection.h | 109 if (Section.getObject()->isELF() && in getContents() 157 if (isELF()) { in BinarySection() 220 bool isELF() const; 229 if (isELF()) in isText() 234 if (isELF()) in isData() 252 if (isELF()) { in isAllocatable()
|
| H A D | BinaryContext.h | 687 bool isELF() const { return TheTriple->isOSBinFormatELF(); } in isELF() function 862 if (isELF()) in getCodeSection()
|
| /llvm-project-15.0.7/llvm/unittests/ObjCopy/ |
| H A D | ObjCopyTest.cpp | 219 [](const Binary &File) { return File.isELF(); }); in TEST() 289 SimpleFileELFYAML, [](const Binary &File) { return File.isELF(); }, in TEST() 321 SimpleFileELFYAML, [](const Binary &File) { return File.isELF(); }, in TEST() 380 SimpleFileELFYAML, [](const Binary &File) { return File.isELF(); }, in TEST()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/ |
| H A D | SymbolizableObjectFile.cpp | 154 Obj.isELF() ? ELFSymbolRef(Symbol).getRawDataRefImpl().d.b : 0; in addSymbol() 157 if (Obj.isELF()) { in addSymbol() 170 if (Obj.isELF()) { in addSymbol() 211 if (Obj.isELF() && ELFSymbolRef(Symbol).getBinding() != ELF::STB_LOCAL) in addSymbol() 248 assert(Module->isELF()); in getNameFromSymbolTable()
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCSymbolELF.h | 46 static bool classof(const MCSymbol *S) { return S->isELF(); } in classof()
|
| H A D | MCSymbol.h | 276 bool isELF() const { return Kind == SymbolKindELF; } in isELF() function
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | Binary.h | 122 bool isELF() const { in isELF() function 165 if (isELF()) in getTripleObjectFormat()
|
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 782 assert(Obj.isELF()); in getElfSymbolType() 973 if (Obj->isELF()) in shouldAdjustVA() 1240 assert(Obj.isELF()); in createFakeELFSections() 1971 if (!Obj->isELF()) in printDynamicRelocations() 2010 if (!Obj.isELF()) in shouldDisplayLMA() 2143 if (!O.isELF()) { in printSymbolTable() 2217 if (O.isELF()) { in printSymbol() 2301 else if (O.isELF()) in printSymbol() 2304 if (O.isELF()) { in printSymbol() 2400 if (Obj->isELF()) { in printFaultMaps() [all …]
|
| H A D | OffloadDump.cpp | 69 if (!O.isELF()) { in dumpOffloadBinary()
|
| /llvm-project-15.0.7/llvm/unittests/ObjectYAML/ |
| H A D | YAML2ObjTest.cpp | 36 ASSERT_TRUE(Obj->isELF()); in TEST()
|
| /llvm-project-15.0.7/bolt/lib/Rewrite/ |
| H A D | ExecutableFileMemoryManager.cpp | 54 if (BC.isELF()) { in allocateSection()
|
| /llvm-project-15.0.7/bolt/lib/Core/ |
| H A D | BinarySection.cpp | 29 bool BinarySection::isELF() const { return BC.isELF(); } in isELF() function in BinarySection
|
| /llvm-project-15.0.7/llvm/lib/XRay/ |
| H A D | InstrumentationMap.cpp | 61 if ((!ObjFile.getBinary()->isELF() && !ObjFile.getBinary()->isMachO()) || in loadObj() 93 if (ObjFile.getBinary()->isELF()) { in loadObj()
|
| /llvm-project-15.0.7/llvm/tools/obj2yaml/ |
| H A D | obj2yaml.cpp | 45 if (Obj.isELF()) in dumpObject()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Globals.cpp | 311 bool isELF = in canIncreaseAlignment() local 313 if (isELF && !isDSOLocal()) in canIncreaseAlignment()
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | ObjDumper.cpp | 115 SecIndex = Obj.isELF() ? 0 : 1; in getSectionRefsByNameOrIndex()
|
| H A D | llvm-readobj.cpp | 441 if (Obj.isELF()) { in dumpObject()
|
| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | RelocationResolver.cpp | 703 } else if (Obj.isELF()) { in getRelocationResolver() 785 if (Obj->isELF()) { in resolveRelocation()
|
| /llvm-project-15.0.7/llvm/tools/llvm-tli-checker/ |
| H A D | llvm-tli-checker.cpp | 169 if (!O->isELF()) { in populateFromObject()
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | InstrProfCorrelator.cpp | 133 if (Obj.isELF() || Obj.isMachO()) { in get()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 199 if (Obj.isELF()) { in notifyObjectLoaded()
|
| /llvm-project-15.0.7/bolt/lib/RuntimeLibs/ |
| H A D | InstrumentationRuntimeLibrary.cpp | 70 MCSection *Section = BC.isELF() in emitBinary()
|
| /llvm-project-15.0.7/bolt/lib/Passes/ |
| H A D | Instrumentation.cpp | 645 if (BC.isELF()) { in createAuxiliaryFunctions()
|
| /llvm-project-15.0.7/llvm/tools/llvm-size/ |
| H A D | llvm-size.cpp | 175 if (!Obj->isELF()) in considerForSize()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldELF.cpp | 181 assert(Obj.isELF() && "Not an ELF object file."); in createELFDebugObject() 2362 return Obj.isELF(); in isCompatibleFile()
|