Lines Matching refs:Im
1123 wasm::WasmImport Im; in parseImportSection() local
1124 Im.Module = readString(Ctx); in parseImportSection()
1125 Im.Field = readString(Ctx); in parseImportSection()
1126 Im.Kind = readUint8(Ctx); in parseImportSection()
1127 switch (Im.Kind) { in parseImportSection()
1130 Im.SigIndex = readVaruint32(Ctx); in parseImportSection()
1131 if (Im.SigIndex >= NumTypes) in parseImportSection()
1137 Im.Global.Type = readUint8(Ctx); in parseImportSection()
1138 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1141 Im.Memory = readLimits(Ctx); in parseImportSection()
1142 if (Im.Memory.Flags & wasm::WASM_LIMITS_FLAG_IS_64) in parseImportSection()
1146 Im.Table = readTableType(Ctx); in parseImportSection()
1148 auto ElemType = Im.Table.ElemType; in parseImportSection()
1160 Im.SigIndex = readVaruint32(Ctx); in parseImportSection()
1161 if (Im.SigIndex >= NumTypes) in parseImportSection()
1169 Imports.push_back(Im); in parseImportSection()