| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 55 Expected<std::unique_ptr<WasmObjectFile>> 70 static uint8_t readUint8(WasmObjectFile::ReadContext &Ctx) { in readUint8() 268 WasmObjectFile::ReadContext SectionCtx; in readSection() 291 WasmObjectFile::WasmObjectFile(MemoryBufferRef Buffer, Error &Err) in WasmObjectFile() function in WasmObjectFile 332 Error WasmObjectFile::parseSection(WasmSection &Sec) { in parseSection() 1659 WasmObjectFile::getSymbolType(DataRefImpl Symb) const { in getSymbolType() 1803 void WasmObjectFile::getRelocationTypeName( in getRelocationTypeName() 1828 section_iterator WasmObjectFile::section_end() const { in section_end() 1834 uint8_t WasmObjectFile::getBytesInAddress() const { in getBytesInAddress() 1840 Triple::ArchType WasmObjectFile::getArch() const { in getArch() [all …]
|
| H A D | SymbolSize.cpp | 32 if (isa<WasmObjectFile>(&O)) in getSectionID() 42 if (const auto *M = dyn_cast<WasmObjectFile>(&O)) in getSymbolSectionID()
|
| H A D | CMakeLists.txt | 30 WasmObjectFile.cpp
|
| /llvm-project-15.0.7/llvm/lib/ObjCopy/wasm/ |
| H A D | WasmReader.h | 20 explicit Reader(const object::WasmObjectFile &O) : WasmObj(O) {} in Reader() 24 const object::WasmObjectFile &WasmObj;
|
| H A D | WasmObjcopy.cpp | 143 object::WasmObjectFile &In, raw_ostream &Out) { in executeObjcopyOnBinary()
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjCopy/wasm/ |
| H A D | WasmObjcopy.h | 17 class WasmObjectFile; variable 29 object::WasmObjectFile &In, raw_ostream &Out);
|
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | WasmDump.h | 19 class WasmObjectFile; variable 26 Error getWasmRelocationValueString(const object::WasmObjectFile *Obj,
|
| H A D | WasmDump.cpp | 23 const auto *File = cast<const WasmObjectFile>(Obj); in printWasmFileHeader() 31 Error objdump::getWasmRelocationValueString(const WasmObjectFile *Obj, in getWasmRelocationValueString()
|
| H A D | llvm-objdump.cpp | 389 if (auto *Wasm = dyn_cast<WasmObjectFile>(Obj)) in getRelocationValueString() 847 static Optional<SectionRef> getWasmCodeSection(const WasmObjectFile &Obj) { in getWasmCodeSection() 857 addMissingWasmCodeSymbols(const WasmObjectFile &Obj, in addMissingWasmCodeSymbols() 1318 addMissingWasmCodeSymbols(cast<WasmObjectFile>(Obj), AllSymbols); in disassembleObject()
|
| /llvm-project-15.0.7/lld/include/lld/Common/ |
| H A D | LLVM.h | 40 class WasmObjectFile; variable 85 using llvm::object::WasmObjectFile;
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | WasmDumper.cpp | 59 WasmDumper(const WasmObjectFile *Obj, ScopedPrinter &Writer) in WasmDumper() 76 const WasmObjectFile *Obj; 248 std::unique_ptr<ObjDumper> createWasmDumper(const object::WasmObjectFile &Obj, in createWasmDumper()
|
| H A D | ObjDumper.h | 208 std::unique_ptr<ObjDumper> createWasmDumper(const object::WasmObjectFile &Obj,
|
| H A D | llvm-readobj.cpp | 337 if (const WasmObjectFile *WasmObj = dyn_cast<WasmObjectFile>(&Obj)) in createDumper()
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | InputFiles.h | 117 const WasmObjectFile *getWasmObj() const { return wasmObj.get(); } in getWasmObj() 160 std::unique_ptr<WasmObjectFile> wasmObj;
|
| H A D | InputFiles.cpp | 81 auto *obj = cast<WasmObjectFile>(bin.get()); in createObjectFile() 396 auto *obj = dyn_cast<WasmObjectFile>(bin.get()); in parse()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/lib/Object/ |
| H A D | BUILD.gn | 44 "WasmObjectFile.cpp",
|
| /llvm-project-15.0.7/llvm/lib/ObjCopy/ |
| H A D | ObjCopy.cpp | 69 if (auto *WasmBinary = dyn_cast<object::WasmObjectFile>(&In)) { in executeObjcopyOnBinary()
|
| /llvm-project-15.0.7/llvm/tools/obj2yaml/ |
| H A D | obj2yaml.h | 35 const llvm::object::WasmObjectFile &Obj);
|
| H A D | wasm2yaml.cpp | 21 const object::WasmObjectFile &Obj; 24 WasmDumper(const object::WasmObjectFile &O) : Obj(O) {} in WasmDumper() 409 std::error_code wasm2yaml(raw_ostream &Out, const object::WasmObjectFile &Obj) { in wasm2yaml()
|
| H A D | obj2yaml.cpp | 49 return errorCodeToError(wasm2yaml(OS, cast<WasmObjectFile>(Obj))); in dumpObject()
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | Wasm.h | 120 class WasmObjectFile : public ObjectFile { 123 WasmObjectFile(MemoryBufferRef Object, Error &Err);
|
| H A D | ObjectFile.h | 45 class WasmObjectFile; variable 391 static Expected<std::unique_ptr<WasmObjectFile>>
|
| /llvm-project-15.0.7/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 296 if (isa<WasmObjectFile>(Obj)) in isSymbolList64Bit() 1043 static char getSymbolNMTypeChar(WasmObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar() 1138 else if (WasmObjectFile *Wasm = dyn_cast<WasmObjectFile>(&Obj)) in getNMSectionTagAndName()
|
| /llvm-project-15.0.7/llvm/tools/llvm-ar/ |
| H A D | llvm-ar.cpp | 656 if (isa<WasmObjectFile>(Obj)) in is64BitSymbolicFile()
|