/minix3/external/bsd/llvm/dist/llvm/tools/macho-dump/ |
H A D | macho-dump.cpp | 70 static int DumpSectionData(const MachOObjectFile &Obj, unsigned Index, in DumpSectionData() 125 static int DumpSegmentCommand(const MachOObjectFile &Obj, in DumpSegmentCommand() 148 static int DumpSegment64Command(const MachOObjectFile &Obj, in DumpSegment64Command() 172 static void DumpSymbolTableEntryData(const MachOObjectFile &Obj, in DumpSymbolTableEntryData() 188 static int DumpSymtabCommand(const MachOObjectFile &Obj) { in DumpSymtabCommand() 225 static int DumpDysymtabCommand(const MachOObjectFile &Obj) { in DumpDysymtabCommand() 260 DumpLinkeditDataCommand(const MachOObjectFile &Obj, in DumpLinkeditDataCommand() 279 DumpDataInCodeDataCommand(const MachOObjectFile &Obj, in DumpDataInCodeDataCommand() 301 DumpLinkerOptionsCommand(const MachOObjectFile &Obj, in DumpLinkerOptionsCommand() 323 DumpVersionMin(const MachOObjectFile &Obj, in DumpVersionMin() [all …]
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/ |
H A D | bitfield-gnu.m | 4 @interface Obj { B *b; } @end interface 5 @implementation Obj @end implementation
|
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-objdump/ |
H A D | COFFDump.cpp | 161 resolveSectionAndAddress(const COFFObjectFile *Obj, const SymbolRef &Sym, in resolveSectionAndAddress() 196 getSectionContents(const COFFObjectFile *Obj, in getSectionContents() 237 printSEHTable(const COFFObjectFile *Obj, uint32_t TableVA, int Count) { in printSEHTable() 255 static void printLoadConfiguration(const COFFObjectFile *Obj) { in printLoadConfiguration() 302 static void printImportTables(const COFFObjectFile *Obj) { in printImportTables() 342 static void printExportTable(const COFFObjectFile *Obj) { in printExportTable() 377 static bool getPDataSection(const COFFObjectFile *Obj, in getPDataSection() 449 static void printRuntimeFunction(const COFFObjectFile *Obj, in printRuntimeFunction() 472 static void printRuntimeFunctionRels(const COFFObjectFile *Obj, in printRuntimeFunctionRels() 517 void llvm::printCOFFUnwindInfo(const COFFObjectFile *Obj) { in printCOFFUnwindInfo() [all …]
|
H A D | ELFDump.cpp | 78 void llvm::printELFFileHeader(const object::ObjectFile *Obj) { in printELFFileHeader()
|
/minix3/external/bsd/llvm/dist/llvm/tools/obj2yaml/ |
H A D | obj2yaml.cpp | 22 static std::error_code dumpObject(const ObjectFile &Obj) { in dumpObject() 41 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary)) in dumpInput() local
|
H A D | coff2yaml.cpp | 21 const object::COFFObjectFile &Obj; member in __anona567690f0111::COFFDumper 36 COFFDumper::COFFDumper(const object::COFFObjectFile &Obj) : Obj(Obj) { in COFFDumper() 268 std::error_code coff2yaml(raw_ostream &Out, const object::COFFObjectFile &Obj) { in coff2yaml()
|
/minix3/external/bsd/llvm/dist/clang/test/Rewriter/ |
H A D | objc-modern-StretAPI-3.mm | 18 @interface Obj interface 24 @implementation Obj implementation
|
/minix3/external/bsd/llvm/dist/llvm/lib/DebugInfo/ |
H A D | DIContext.cpp | 16 DIContext *DIContext::getDWARFContext(const object::ObjectFile &Obj) { in getDWARFContext()
|
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 253 static char isSymbolList64Bit(SymbolicFile &Obj) { in isSymbolList64Bit() 541 static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName, in sortAndPrintSymbolList() 644 static char getSymbolNMTypeChar(ELFObjectFile<ELFT> &Obj, in getSymbolNMTypeChar() 691 static char getSymbolNMTypeChar(COFFObjectFile &Obj, symbol_iterator I) { in getSymbolNMTypeChar() 738 static uint8_t getNType(MachOObjectFile &Obj, DataRefImpl Symb) { in getNType() 747 static char getSymbolNMTypeChar(MachOObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar() 788 static char getSymbolNMTypeChar(IRObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar() 796 static bool isELFObject(ELFObjectFile<ELFT> &Obj, symbol_iterator I) { in isELFObject() 805 static bool isObject(SymbolicFile &Obj, basic_symbol_iterator I) { in isObject() 817 static char getNMTypeChar(SymbolicFile &Obj, basic_symbol_iterator I) { in getNMTypeChar() [all …]
|
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Object/ |
H A D | MachOUniversal.h | 69 ObjectForArch Obj; variable 71 object_iterator(const ObjectForArch &Obj) : Obj(Obj) {} in object_iterator()
|
H A D | RelocVisitor.h | 44 explicit RelocVisitor(const ObjectFile &Obj) in RelocVisitor() 225 const ELF32LEObjectFile *Obj = cast<ELF32LEObjectFile>(R.getObjectFile()); in getELFAddend32LE() local 233 const ELF64LEObjectFile *Obj = cast<ELF64LEObjectFile>(R.getObjectFile()); in getELFAddend64LE() local 241 const ELF32BEObjectFile *Obj = cast<ELF32BEObjectFile>(R.getObjectFile()); in getELFAddend32BE() local 249 const ELF64BEObjectFile *Obj = cast<ELF64BEObjectFile>(R.getObjectFile()); in getELFAddend64BE() local
|
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-readobj/ |
H A D | llvm-readobj.cpp | 217 static std::error_code createDumper(const ObjectFile *Obj, StreamWriter &Writer, in createDumper() 232 static StringRef getLoadName(const ObjectFile *Obj) { in getLoadName() 245 static void dumpObject(const ObjectFile *Obj) { in dumpObject() 311 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&*ChildOrErr.get())) in dumpArchive() local 337 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary)) in dumpInput() local
|
H A D | MachODumper.cpp | 30 MachODumper(const MachOObjectFile *Obj, StreamWriter& Writer) in MachODumper() 53 const MachOObjectFile *Obj; member in __anonf8890dc00111::MachODumper 61 std::error_code createMachODumper(const object::ObjectFile *Obj, in createMachODumper() 292 static void getSection(const MachOObjectFile *Obj, in getSection() 321 static void getSymbol(const MachOObjectFile *Obj, in getSymbol() 389 void MachODumper::printSections(const MachOObjectFile *Obj) { in printSections() 485 void MachODumper::printRelocation(const MachOObjectFile *Obj, in printRelocation()
|
H A D | ELFDumper.cpp | 43 ELFDumper(const ELFFile<ELFT> *Obj, StreamWriter &Writer) in ELFDumper() 70 const ELFO *Obj; member in __anoncc0d1b2f0111::ELFDumper 86 static std::error_code createELFDumper(const ELFFile<ELFT> *Obj, in createELFDumper() 93 std::error_code createELFDumper(const object::ObjectFile *Obj, in createELFDumper() 118 static std::string getFullSymbolName(const ELFO &Obj, in getFullSymbolName() 139 getSectionNameIndex(const ELFO &Obj, typename ELFO::Elf_Sym_Iter Symbol, in getSectionNameIndex() 166 findSectionByAddress(const ELFFile<ELFT> *Obj, uint64_t Addr) { in findSectionByAddress() 1043 MipsGOTParser(const ObjectFile *Obj, StreamWriter &W) : Obj(Obj), W(W) {} in MipsGOTParser() 1053 const ObjectFile *Obj; member in __anoncc0d1b2f0411::MipsGOTParser
|
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
H A D | RuntimeDyldMachOI386.h | 37 const MachOObjectFile &Obj = in processRelocationRef() local 114 void finalizeSection(const ObjectFile &Obj, unsigned SectionID, in finalizeSection() 131 const MachOObjectFile &Obj = in processSECTDIFFRelocation() local 191 const MachOObjectFile &Obj = in processI386ScatteredVANILLA() local 224 void populateJumpTable(const MachOObjectFile &Obj, const SectionRef &JTSection, in populateJumpTable()
|
H A D | RuntimeDyldMachOX86_64.h | 37 const MachOObjectFile &Obj = in processRelocationRef() local 101 void finalizeSection(const ObjectFile &Obj, unsigned SectionID, in finalizeSection()
|
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 123 const ObjectFile *Obj = Sym.getObject(); in getOffset() local 139 RuntimeDyldImpl::loadObjectImpl(const object::ObjectFile &Obj) { in loadObjectImpl() 267 const ObjectFile *Obj = Section.getObject(); in isRequiredForExecution() local 275 const ObjectFile *Obj = Section.getObject(); in isReadOnlyData() local 284 const ObjectFile *Obj = Section.getObject(); in isZeroInit() local 296 void RuntimeDyldImpl::computeTotalAllocSize(const ObjectFile &Obj, in computeTotalAllocSize() 379 unsigned RuntimeDyldImpl::computeSectionStubBufSize(const ObjectFile &Obj, in computeSectionStubBufSize() 444 void RuntimeDyldImpl::emitCommonSymbols(const ObjectFile &Obj, in emitCommonSymbols() 482 unsigned RuntimeDyldImpl::emitSection(const ObjectFile &Obj, in emitSection() 566 unsigned RuntimeDyldImpl::findOrEmitSection(const ObjectFile &Obj, in findOrEmitSection() [all …]
|
H A D | RuntimeDyldMachO.cpp | 56 const MachOObjectFile &Obj = in getRelocationValueRef() local 91 const MachOObjectFile &Obj = in makeValueAddendPCRel() local 119 RuntimeDyldMachO::getSectionByAddress(const MachOObjectFile &Obj, in getSectionByAddress() 137 const MachOObjectFile &Obj, in populateIndirectSymbolPointersSection() 180 void RuntimeDyldMachOCRTPBase<Impl>::finalizeLoad(const ObjectFile &Obj, in finalizeLoad()
|
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/ |
H A D | OProfileJITEventListener.cpp | 80 const ObjectFile &Obj, in NotifyObjectEmitted() 116 void OProfileJITEventListener::NotifyFreeingObject(const ObjectFile &Obj) { in NotifyFreeingObject()
|
/minix3/external/bsd/llvm/dist/llvm/include/llvm/ExecutionEngine/ |
H A D | JITEventListener.h | 74 virtual void NotifyObjectEmitted(const object::ObjectFile &Obj, in NotifyObjectEmitted() 79 virtual void NotifyFreeingObject(const object::ObjectFile &Obj) {} in NotifyFreeingObject()
|
/minix3/external/bsd/llvm/dist/llvm/lib/Object/ |
H A D | ELFObjectFile.cpp | 24 ObjectFile::createELFObjectFile(MemoryBufferRef Obj) { in createELFObjectFile()
|
H A D | SymbolicFile.cpp | 62 ErrorOr<std::unique_ptr<ObjectFile>> Obj = in createSymbolicFile() local
|
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-dwarfdump/ |
H A D | llvm-dwarfdump.cpp | 87 ObjectFile &Obj = *ObjOrErr.get(); in DumpInput() local
|
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-vtabledump/ |
H A D | llvm-vtabledump.cpp | 71 static SmallVectorImpl<SectionRef> &getRelocSections(const ObjectFile *Obj, in getRelocSections() 86 static bool collectRelocatedSymbols(const ObjectFile *Obj, in collectRelocatedSymbols() 115 const ObjectFile *Obj, const SectionRef &Sec, uint64_t SecAddress, in collectRelocationOffsets() 138 static void dumpVTables(const ObjectFile *Obj) { in dumpVTables() 412 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&*ChildOrErr.get())) in dumpArchive() local 437 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary)) in dumpInput() local
|
/minix3/external/bsd/llvm/dist/clang/test/PCH/ |
H A D | captured-stmt.cpp | 38 C Obj(10); in test_bar() local
|