/openbsd/gnu/llvm/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() 450 Error WasmObjectFile::parseNameSection(ReadContext &Ctx) { in parseNameSection() 1651 WasmObjectFile::getSymbolType(DataRefImpl Symb) const { in getSymbolType() 1795 void WasmObjectFile::getRelocationTypeName( in getRelocationTypeName() 1820 section_iterator WasmObjectFile::section_end() const { in section_end() 1826 uint8_t WasmObjectFile::getBytesInAddress() const { in getBytesInAddress() [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 | 31 WasmObjectFile.cpp
|
/openbsd/gnu/llvm/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 | 145 object::WasmObjectFile &In, raw_ostream &Out) { in executeObjcopyOnBinary()
|
/openbsd/gnu/llvm/llvm/include/llvm/ObjCopy/wasm/ |
H A D | WasmObjcopy.h | 17 class WasmObjectFile; variable 29 object::WasmObjectFile &In, raw_ostream &Out);
|
/openbsd/gnu/llvm/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 | 404 if (auto *Wasm = dyn_cast<WasmObjectFile>(Obj)) in getRelocationValueString() 877 static std::optional<SectionRef> getWasmCodeSection(const WasmObjectFile &Obj) { in getWasmCodeSection() 887 addMissingWasmCodeSymbols(const WasmObjectFile &Obj, in addMissingWasmCodeSymbols() 1368 addMissingWasmCodeSymbols(cast<WasmObjectFile>(Obj), AllSymbols); in disassembleObject()
|
/openbsd/gnu/llvm/lld/include/lld/Common/ |
H A D | LLVM.h | 40 class WasmObjectFile; variable 85 using llvm::object::WasmObjectFile;
|
/openbsd/gnu/llvm/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 | 350 if (const WasmObjectFile *WasmObj = dyn_cast<WasmObjectFile>(&Obj)) in createDumper()
|
/openbsd/gnu/llvm/lld/wasm/ |
H A D | InputFiles.h | 119 const WasmObjectFile *getWasmObj() const { return wasmObj.get(); } in getWasmObj() 162 std::unique_ptr<WasmObjectFile> wasmObj;
|
H A D | InputFiles.cpp | 83 auto *obj = cast<WasmObjectFile>(bin.get()); in createObjectFile() 398 auto *obj = dyn_cast<WasmObjectFile>(bin.get()); in parse()
|
/openbsd/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/Object/ |
H A D | BUILD.gn | 47 "WasmObjectFile.cpp",
|
/openbsd/gnu/llvm/llvm/lib/ObjCopy/ |
H A D | ObjCopy.cpp | 69 if (auto *WasmBinary = dyn_cast<object::WasmObjectFile>(&In)) { in executeObjcopyOnBinary()
|
/openbsd/gnu/usr.bin/clang/libLLVMObject/ |
H A D | Makefile | 37 WasmObjectFile.cpp \
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/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 395 static Expected<std::unique_ptr<WasmObjectFile>>
|
/openbsd/gnu/llvm/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 303 if (isa<WasmObjectFile>(Obj)) in isSymbolList64Bit() 1050 static char getSymbolNMTypeChar(WasmObjectFile &Obj, basic_symbol_iterator I) { in getSymbolNMTypeChar() 1145 else if (WasmObjectFile *Wasm = dyn_cast<WasmObjectFile>(&Obj)) in getNMSectionTagAndName()
|
/openbsd/gnu/llvm/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 656 if (isa<WasmObjectFile>(Obj)) in is64BitSymbolicFile()
|