Home
last modified time | relevance | path

Searched refs:wasmObj (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/llvm/lld/wasm/
DInputFiles.cpp274 uint32_t tableCount = wasmObj->getNumImportedTables() + tables.size(); in addLegacyIndirectFunctionTableIfNeeded()
310 for (const auto &import : wasmObj->imports()) { in addLegacyIndirectFunctionTableIfNeeded()
405 wasmObj.reset(obj); in parse()
412 wasmObj->getNumImportedFunctions() + wasmObj->functions().size(); in parse()
415 for (const WasmElemSegment &seg : wasmObj->elements()) { in parse()
432 ArrayRef<StringRef> comdats = wasmObj->linkingData().Comdats; in parse()
446 std::vector<bool> isCalledDirectly(wasmObj->getNumberOfSymbols(), false); in parse()
447 for (const SectionRef &sec : wasmObj->sections()) { in parse()
448 const WasmSection &section = wasmObj->getWasmSection(sec); in parse()
479 for (const WasmSegment &s : wasmObj->dataSegments()) { in parse()
[all …]
DInputFiles.h119 const WasmObjectFile *getWasmObj() const { return wasmObj.get(); } in getWasmObj()
162 std::unique_ptr<WasmObjectFile> wasmObj; variable