Lines Matching refs:ElementIndex

44     Out << ", ElemIndex=" << Info.ElementIndex;  in print()
494 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
495 if (!isValidFunctionIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
496 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
501 unsigned FuncIndex = Info.ElementIndex - NumImportedFunctions; in parseLinkingSectionSymtab()
507 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab()
519 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
520 if (!isValidGlobalIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
521 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
530 unsigned GlobalIndex = Info.ElementIndex - NumImportedGlobals; in parseLinkingSectionSymtab()
536 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab()
569 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
571 StringRef SectionName = Sections[Info.ElementIndex].Name; in parseLinkingSectionSymtab()
577 Info.ElementIndex = readVaruint32(Ctx); in parseLinkingSectionSymtab()
578 if (!isValidEventIndex(Info.ElementIndex) || in parseLinkingSectionSymtab()
579 IsDefined != isDefinedEventIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
588 unsigned EventIndex = Info.ElementIndex - NumImportedEvents; in parseLinkingSectionSymtab()
596 wasm::WasmImport &Import = *ImportedEvents[Info.ElementIndex]; in parseLinkingSectionSymtab()
1201 return Sym.Info.ElementIndex; in getWasmSymbolValue()
1269 Ref.d.a = Sym.Info.ElementIndex; in getSymbolSection()