Lines Matching refs:wasmObj
95 "\n Function Imports : " + Twine(wasmObj->getNumImportedFunctions()) + in dumpInfo()
96 "\n Global Imports : " + Twine(wasmObj->getNumImportedGlobals()) + in dumpInfo()
97 "\n Event Imports : " + Twine(wasmObj->getNumImportedEvents())); in dumpInfo()
145 const WasmSymbol &sym = wasmObj->syms()[reloc.Index]; in calcExpectedValue()
149 const WasmSymbol &sym = wasmObj->syms()[reloc.Index]; in calcExpectedValue()
161 const WasmSymbol &sym = wasmObj->syms()[reloc.Index]; in calcExpectedValue()
165 wasmObj->dataSegments()[sym.Info.DataRef.Segment]; in calcExpectedValue()
177 const WasmSymbol &sym = wasmObj->syms()[reloc.Index]; in calcExpectedValue()
179 functions[sym.Info.ElementIndex - wasmObj->getNumImportedFunctions()]; in calcExpectedValue()
191 const WasmSymbol &sym = wasmObj->syms()[reloc.Index]; in calcExpectedValue()
319 wasmObj.reset(obj); in parse()
326 wasmObj->getNumImportedFunctions() + wasmObj->functions().size(); in parse()
329 for (const WasmElemSegment &seg : wasmObj->elements()) { in parse()
352 std::vector<bool> isCalledDirectly(wasmObj->getNumberOfSymbols(), false); in parse()
353 for (const SectionRef &sec : wasmObj->sections()) { in parse()
354 const WasmSection §ion = wasmObj->getWasmSection(sec); in parse()
377 ArrayRef<StringRef> comdats = wasmObj->linkingData().Comdats; in parse()
384 for (const WasmSegment &s : wasmObj->dataSegments()) { in parse()
392 ArrayRef<WasmFunction> funcs = wasmObj->functions(); in parse()
393 ArrayRef<uint32_t> funcTypes = wasmObj->functionTypes(); in parse()
394 ArrayRef<WasmSignature> types = wasmObj->types(); in parse()
405 for (const WasmGlobal &g : wasmObj->globals()) in parse()
409 for (const WasmEvent &e : wasmObj->events()) in parse()
413 symbols.reserve(wasmObj->getNumberOfSymbols()); in parse()
414 for (const SymbolRef &sym : wasmObj->symbols()) { in parse()
415 const WasmSymbol &wasmSym = wasmObj->getWasmSymbol(sym.getRawDataRefImpl()); in parse()
463 functions[sym.Info.ElementIndex - wasmObj->getNumImportedFunctions()]; in createDefined()
482 globals[sym.Info.ElementIndex - wasmObj->getNumImportedGlobals()]; in createDefined()
494 events[sym.Info.ElementIndex - wasmObj->getNumImportedEvents()]; in createDefined()