Searched refs:WasmRelocation (Results 1 – 13 of 13) sorted by relevance
/openbsd/gnu/llvm/lld/wasm/ |
H A D | InputChunks.cpp | 112 for (const WasmRelocation &rel : relocations) { in relocate() 180 for (const WasmRelocation &rel : relocations) { in writeRelocations() 214 static unsigned writeCompressedReloc(uint8_t *buf, const WasmRelocation &rel, in writeCompressedReloc() 235 static unsigned getRelocWidthPadded(const WasmRelocation &rel) { in getRelocWidthPadded() 255 static unsigned getRelocWidth(const WasmRelocation &rel, uint64_t value) { in getRelocWidth() 287 for (const WasmRelocation &rel : relocations) { in calculateSize() 324 for (const WasmRelocation &rel : relocations) { in writeCompressed() 376 for (const WasmRelocation &rel : relocations) { in generateRelocationCode()
|
H A D | InputFiles.h | 121 uint32_t calcNewIndex(const WasmRelocation &reloc) const; 122 uint64_t calcNewValue(const WasmRelocation &reloc, uint64_t tombstone, 124 int64_t calcNewAddend(const WasmRelocation &reloc) const; 125 Symbol *getSymbol(const WasmRelocation &reloc) const { in getSymbol()
|
H A D | InputFiles.cpp | 103 uint32_t ObjFile::calcNewIndex(const WasmRelocation &reloc) const { in calcNewIndex() 116 int64_t ObjFile::calcNewAddend(const WasmRelocation &reloc) const { in calcNewAddend() 140 uint64_t ObjFile::calcNewValue(const WasmRelocation &reloc, uint64_t tombstone, in calcNewValue() 228 ArrayRef<WasmRelocation> relocs = section->Relocations; in setRelocs() 230 relocs, [](const WasmRelocation &r1, const WasmRelocation &r2) { in setRelocs() 239 auto relocLess = [](const WasmRelocation &r, uint32_t val) { in setRelocs() 248 c->setRelocations(ArrayRef<WasmRelocation>(relocsStart, relocsNext)); in setRelocs() 469 for (const WasmRelocation &reloc : section.Relocations) in parse()
|
H A D | InputChunks.h | 61 ArrayRef<WasmRelocation> getRelocations() const { return relocations; } in getRelocations() 62 void setRelocations(ArrayRef<WasmRelocation> rs) { relocations = rs; } in setRelocations() 118 ArrayRef<WasmRelocation> relocations;
|
H A D | Relocations.cpp | 88 for (const WasmRelocation &reloc : chunk->getRelocations()) { in scanRelocations()
|
H A D | MarkLive.cpp | 118 for (const WasmRelocation reloc : c->getRelocations()) { in mark()
|
/openbsd/gnu/llvm/lld/include/lld/Common/ |
H A D | LLVM.h | 53 struct WasmRelocation; 94 using llvm::wasm::WasmRelocation;
|
/openbsd/gnu/llvm/llvm/tools/llvm-objdump/ |
H A D | WasmDump.cpp | 34 const wasm::WasmRelocation &Rel = Obj->getWasmRelocation(RelRef); in getWasmRelocationValueString()
|
/openbsd/gnu/llvm/llvm/include/llvm/Object/ |
H A D | Wasm.h | 112 std::vector<wasm::WasmRelocation> Relocations; // Relocations for this section 129 const wasm::WasmRelocation &getWasmRelocation(const RelocationRef &Ref) const; 237 const wasm::WasmRelocation &getWasmRelocation(DataRefImpl Ref) const;
|
/openbsd/gnu/llvm/llvm/lib/Object/ |
H A D | WasmObjectFile.cpp | 929 wasm::WasmRelocation Reloc = {}; in parseRelocSection() 1776 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref); in getRelocationOffset() 1781 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref); in getRelocationSymbol() 1791 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref); in getRelocationType() 1797 const wasm::WasmRelocation &Rel = getWasmRelocation(Ref); in getRelocationTypeName() 1854 const wasm::WasmRelocation & 1859 const wasm::WasmRelocation &
|
/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
H A D | Wasm.h | 191 struct WasmRelocation { struct
|
/openbsd/gnu/llvm/llvm/tools/llvm-readobj/ |
H A D | WasmDumper.cpp | 88 const wasm::WasmRelocation &WasmReloc = Obj->getWasmRelocation(Reloc); in printRelocation()
|
/openbsd/gnu/llvm/llvm/tools/obj2yaml/ |
H A D | wasm2yaml.cpp | 395 for (const wasm::WasmRelocation &Reloc : WasmSec.Relocations) { in dump()
|