Lines Matching defs:Im
1262 wasm::WasmImport Im;
1263 Im.Module = readString(Ctx);
1264 Im.Field = readString(Ctx);
1265 Im.Kind = readUint8(Ctx);
1266 switch (Im.Kind) {
1269 Im.SigIndex = readVaruint32(Ctx);
1270 if (Im.SigIndex >= NumTypes)
1276 Im.Global.Type = readUint8(Ctx);
1277 Im.Global.Mutable = readVaruint1(Ctx);
1280 Im.Memory = readLimits(Ctx);
1281 if (Im.Memory.Flags & wasm::WASM_LIMITS_FLAG_IS_64)
1285 Im.Table = readTableType(Ctx);
1287 auto ElemType = Im.Table.ElemType;
1301 Im.SigIndex = readVaruint32(Ctx);
1302 if (Im.SigIndex >= NumTypes)
1310 Imports.push_back(Im);