Home
last modified time | relevance | path

Searched defs:Obj (Results 1 – 25 of 165) sorted by relevance

1234567

/freebsd-12-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
DMsgPackReader.cpp29 Expected<bool> Reader::read(Object &Obj) { in read()
182 template <class T> Expected<bool> Reader::readRaw(Object &Obj) { in readRaw()
192 template <class T> Expected<bool> Reader::readInt(Object &Obj) { in readInt()
202 template <class T> Expected<bool> Reader::readUInt(Object &Obj) { in readUInt()
212 template <class T> Expected<bool> Reader::readLength(Object &Obj) { in readLength()
222 template <class T> Expected<bool> Reader::readExt(Object &Obj) { in readExt()
232 Expected<bool> Reader::createRaw(Object &Obj, uint32_t Size) { in createRaw()
242 Expected<bool> Reader::createExt(Object &Obj, uint32_t Size) { in createExt()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
DPdbYaml.cpp104 void MappingTraits<PdbObject>::mapping(IO &IO, PdbObject &Obj) { in mapping()
116 void MappingTraits<MSFHeaders>::mapping(IO &IO, MSFHeaders &Obj) { in mapping()
142 void MappingTraits<PdbInfoStream>::mapping(IO &IO, PdbInfoStream &Obj) { in mapping()
150 void MappingTraits<PdbDbiStream>::mapping(IO &IO, PdbDbiStream &Obj) { in mapping()
162 pdb::yaml::PdbTpiStream &Obj) { in mapping()
168 IO &IO, pdb::yaml::PdbPublicsStream &Obj) { in mapping()
173 NamedStreamMapping &Obj) { in mapping()
178 void MappingTraits<PdbModiStream>::mapping(IO &IO, PdbModiStream &Obj) { in mapping()
183 void MappingTraits<PdbDbiModuleInfo>::mapping(IO &IO, PdbDbiModuleInfo &Obj) { in mapping()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
DCOFFDump.cpp161 static Error resolveSectionAndAddress(const COFFObjectFile *Obj, in resolveSectionAndAddress()
195 getSectionContents(const COFFObjectFile *Obj, in getSectionContents()
236 printSEHTable(const COFFObjectFile *Obj, uint32_t TableVA, int Count) { in printSEHTable()
272 static void printTLSDirectory(const COFFObjectFile *Obj) { in printTLSDirectory()
303 static void printLoadConfiguration(const COFFObjectFile *Obj) { in printLoadConfiguration()
350 static void printImportTables(const COFFObjectFile *Obj) { in printImportTables()
396 static void printExportTable(const COFFObjectFile *Obj) { in printExportTable()
448 static bool getPDataSection(const COFFObjectFile *Obj, in getPDataSection()
476 Error objdump::getCOFFRelocationValueString(const COFFObjectFile *Obj, in getCOFFRelocationValueString()
530 static void printRuntimeFunction(const COFFObjectFile *Obj, in printRuntimeFunction()
[all …]
DXCOFFDump.cpp22 Error objdump::getXCOFFRelocationValueString(const XCOFFObjectFile *Obj, in getXCOFFRelocationValueString()
47 objdump::getXCOFFSymbolCsectSMC(const XCOFFObjectFile *Obj, in getXCOFFSymbolCsectSMC()
61 bool objdump::isLabel(const XCOFFObjectFile *Obj, const SymbolRef &Sym) { in isLabel()
DELFDump.cpp56 static Error getRelocationValueString(const ELFObjectFile<ELFT> *Obj, in getRelocationValueString()
130 Error objdump::getELFRelocationValueString(const ELFObjectFileBase *Obj, in getELFRelocationValueString()
144 static uint64_t getSectionLMA(const ELFFile<ELFT> &Obj, in getSectionLMA()
210 static void printProgramHeaders(const ELFFile<ELFT> &Obj, StringRef FileName) { in printProgramHeaders()
360 void objdump::printELFFileHeader(const object::ObjectFile *Obj) { in printELFFileHeader()
371 void objdump::printELFDynamicSection(const object::ObjectFile *Obj) { in printELFDynamicSection()
382 void objdump::printELFSymbolVersionInfo(const object::ObjectFile *Obj) { in printELFSymbolVersionInfo()
DWasmDump.cpp22 void objdump::printWasmFileHeader(const object::ObjectFile *Obj) { in printWasmFileHeader()
31 Error objdump::getWasmRelocationValueString(const WasmObjectFile *Obj, in getWasmRelocationValueString()
Dllvm-objdump.cpp350 static const Target *getTarget(const ObjectFile *Obj) { in getTarget()
380 const ObjectFile *Obj = Rel.getObject(); in getRelocationValueString() local
434 static bool isAArch64Elf(const ObjectFile *Obj) { in isAArch64Elf()
439 static bool isArmElf(const ObjectFile *Obj) { in isArmElf()
444 static bool hasMappingSymbols(const ObjectFile *Obj) { in hasMappingSymbols()
673 static uint8_t getElfSymbolType(const ObjectFile *Obj, const SymbolRef &Sym) { in getElfSymbolType()
695 addDynamicElfSymbols(const ELFObjectFile<ELFT> *Obj, in addDynamicElfSymbols()
724 addDynamicElfSymbols(const ObjectFile *Obj, in addDynamicElfSymbols()
739 static Optional<SectionRef> getWasmCodeSection(const WasmObjectFile *Obj) { in getWasmCodeSection()
749 addMissingWasmCodeSymbols(const WasmObjectFile *Obj, in addMissingWasmCodeSymbols()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
DELFObjcopy.cpp65 static bool onlyKeepDWOPred(const Object &Obj, const SectionBase &Sec) { in onlyKeepDWOPred()
137 Object &Obj, raw_ostream &Out, in createELFWriter()
158 Object &Obj, raw_ostream &Out, in createWriter()
178 Object &Obj) { in dumpSectionToFile()
207 Object &Obj, SectionPred &RemovePred, in replaceDebugSections()
247 static Error updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj) { in updateAndRemoveSymbols()
342 static Error replaceAndRemoveSections(const CommonConfig &Config, Object &Obj) { in replaceAndRemoveSections()
504 static void addSymbol(Object &Obj, const NewSymbolInfo &SymInfo, in addSymbol()
565 Object &Obj) { in handleArgs()
713 static Error writeOutput(const CommonConfig &Config, Object &Obj, in writeOutput()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp72 LLVMSymbolizer::symbolizeCode(const ObjectFile &Obj, in symbolizeCode()
115 LLVMSymbolizer::symbolizeInlinedCode(const ObjectFile &Obj, in symbolizeInlinedCode()
154 LLVMSymbolizer::symbolizeData(const ObjectFile &Obj, in symbolizeData()
189 LLVMSymbolizer::symbolizeFrame(const ObjectFile &Obj, in symbolizeFrame()
277 bool getGNUDebuglinkContents(const ObjectFile *Obj, std::string &DebugName, in getGNUDebuglinkContents()
313 const MachOObjectFile *Obj) { in darwinDsymMatchesBinary()
322 Optional<ArrayRef<uint8_t>> getBuildID(const ELFFile<ELFT> &Obj) { in getBuildID()
341 Optional<ArrayRef<uint8_t>> getBuildID(const ELFObjectFileBase *Obj) { in getBuildID()
428 const ObjectFile *Obj, in lookUpDebuglinkObject()
448 const ELFObjectFileBase *Obj, in lookUpBuildIDObject()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DTrailingObjects.h145 getTrailingObjectsImpl(const BaseTy *Obj, in getTrailingObjectsImpl()
160 getTrailingObjectsImpl(BaseTy *Obj, in getTrailingObjectsImpl()
241 getTrailingObjectsImpl(const BaseTy *Obj, in getTrailingObjectsImpl()
247 getTrailingObjectsImpl(BaseTy *Obj, in getTrailingObjectsImpl()
260 callNumTrailingObjects(const BaseTy *Obj, in callNumTrailingObjects()
266 static size_t callNumTrailingObjects(const BaseTy *Obj, in callNumTrailingObjects()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
DDarwinSDKInfo.cpp38 const llvm::json::Object &Obj, VersionTuple MaximumDeploymentTarget) { in parseJSON()
64 static Optional<VersionTuple> getVersionKey(const llvm::json::Object &Obj, in getVersionKey()
76 DarwinSDKInfo::parseDarwinSDKSettingsJSON(const llvm::json::Object *Obj) { in parseDarwinSDKSettingsJSON()
125 if (const auto *Obj = Result->getAsObject()) { in parseDarwinSDKInfo() local
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
DCOFFObjcopy.cpp34 static uint64_t getNextRVA(const Object &Obj) { in getNextRVA()
60 static void addSection(Object &Obj, StringRef Name, ArrayRef<uint8_t> Contents, in addSection()
84 static Error addGnuDebugLink(Object &Obj, StringRef DebugLinkFile) { in addGnuDebugLink()
134 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs()
261 Object *Obj = ObjOrErr->get(); in executeObjcopyOnBinary() local
DWriter.h25 Object &Obj; variable
55 COFFWriter(Object &Obj, raw_ostream &Out) in COFFWriter()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/
DWriter.h22 Writer(Object &Obj, raw_ostream &Out) : Obj(Obj), Out(Out) {} in Writer()
27 Object &Obj; variable
DWasmObjcopy.cpp41 Object &Obj) { in dumpSectionToFile()
60 static void removeSections(const CommonConfig &Config, Object &Obj) { in removeSections()
112 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs()
150 Object *Obj = ObjOrErr->get(); in executeObjcopyOnBinary() local
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
DMachOObjcopy.cpp52 static Error removeSections(const CommonConfig &Config, Object &Obj) { in removeSections()
83 static void markSymbols(const CommonConfig &, Object &Obj) { in markSymbols()
90 static void updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj) { in updateAndRemoveSymbols()
142 static Error processLoadCommands(const CommonConfig &Config, Object &Obj) { in processLoadCommands()
258 Object &Obj) { in dumpSectionToFile()
279 static Error addSection(StringRef SecName, StringRef Filename, Object &Obj) { in addSection()
336 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Remarks/
DRemarkLinker.cpp24 getRemarksSectionName(const object::ObjectFile &Obj) { in getRemarksSectionName()
33 llvm::remarks::getRemarksSectionContents(const object::ObjectFile &Obj) { in getRemarksSectionContents()
102 Error RemarkLinker::link(const object::ObjectFile &Obj, in link()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
DSectionSizes.cpp37 static void prettyPrintSectionSizes(const ObjectFile &Obj, in prettyPrintSectionSizes()
79 void dwarfdump::calculateSectionSizes(const ObjectFile &Obj, in calculateSectionSizes()
104 bool dwarfdump::collectObjectSectionSizes(ObjectFile &Obj, in collectObjectSectionSizes()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/DumpTool/
DASTSrcLocProcessor.cpp52 llvm::json::Object toJSON(llvm::StringMap<std::vector<StringRef>> const &Obj) { in toJSON()
62 llvm::json::Object toJSON(llvm::StringMap<std::string> const &Obj) { in toJSON()
72 llvm::json::Object toJSON(ClassData const &Obj) { in toJSON()
92 llvm::json::Object toJSON(llvm::StringMap<ClassData> const &Obj) { in toJSON()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-nm/
Dllvm-nm.cpp244 static char isSymbolList64Bit(SymbolicFile &Obj) { in isSymbolList64Bit()
268 static void darwinPrintSymbol(SymbolicFile &Obj, const NMSymbol &S, in darwinPrintSymbol()
637 static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName, in sortAndPrintSymbolList()
807 static char getSymbolNMTypeChar(ELFObjectFileBase &Obj, in getSymbolNMTypeChar()
851 static char getSymbolNMTypeChar(COFFObjectFile &Obj, symbol_iterator I) { in getSymbolNMTypeChar()
906 static char getSymbolNMTypeChar(COFFImportFile &Obj) { in getSymbolNMTypeChar()
918 static char getSymbolNMTypeChar(MachOObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar()
961 static char getSymbolNMTypeChar(TapiFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar()
965 static char getSymbolNMTypeChar(WasmObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar()
972 static char getSymbolNMTypeChar(IRObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDataExtractor.h22 const DWARFObject *Obj = nullptr; variable
28 DWARFDataExtractor(const DWARFObject &Obj, const DWARFSection &Section, in DWARFDataExtractor()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOI386.h38 const MachOObjectFile &Obj = in processRelocationRef() local
128 Error finalizeSection(const ObjectFile &Obj, unsigned SectionID, in finalizeSection()
149 const MachOObjectFile &Obj = in processSECTDIFFRelocation() local
212 Error populateJumpTable(const MachOObjectFile &Obj, in populateJumpTable()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
DRTDyldObjectLinkingLayer.cpp99 auto Obj = object::ObjectFile::createObjectFile(*O); in emit() local
159 std::map<StringRef, JITEvaluatedSymbol> ResolvedSymbols) { in emit()
166 Error Err) mutable { in emit()
187 MaterializationResponsibility &R, const object::ObjectFile &Obj, in onObjLoad()
292 std::unique_ptr<object::ObjectFile> Obj; in onObjEmit() local
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
DGIMatchDag.h184 auto Obj = in addInstrNode() local
193 auto Obj = std::make_unique<T>(getContext(), std::forward<Args>(args)...); in addPredicateNode() local
200 auto Obj = std::make_unique<GIMatchDagEdge>(std::forward<Args>(args)...); in addEdge() local
208 auto Obj = std::make_unique<GIMatchDagPredicateDependencyEdge>( in addPredicateDependency() local
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DUser.cpp132 User *Obj = reinterpret_cast<User*>(End); in allocateFixedOperandUser() local
159 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); in operator new() local
176 User *Obj = static_cast<User *>(Usr); in operator delete() local

1234567