Lines Matching refs:Im
1267 wasm::WasmImport Im; in parseImportSection() local
1268 Im.Module = readString(Ctx); in parseImportSection()
1269 Im.Field = readString(Ctx); in parseImportSection()
1270 Im.Kind = readUint8(Ctx); in parseImportSection()
1271 switch (Im.Kind) { in parseImportSection()
1274 Im.SigIndex = readVaruint32(Ctx); in parseImportSection()
1275 if (Im.SigIndex >= NumTypes) in parseImportSection()
1281 Im.Global.Type = readUint8(Ctx); in parseImportSection()
1282 Im.Global.Mutable = readVaruint1(Ctx); in parseImportSection()
1285 Im.Memory = readLimits(Ctx); in parseImportSection()
1286 if (Im.Memory.Flags & wasm::WASM_LIMITS_FLAG_IS_64) in parseImportSection()
1290 Im.Table = readTableType(Ctx); in parseImportSection()
1292 auto ElemType = Im.Table.ElemType; in parseImportSection()
1306 Im.SigIndex = readVaruint32(Ctx); in parseImportSection()
1307 if (Im.SigIndex >= NumTypes) in parseImportSection()
1315 Imports.push_back(Im); in parseImportSection()