Lines Matching refs:Ex
1300 wasm::WasmExport Ex; in parseExportSection() local
1301 Ex.Name = readString(Ctx); in parseExportSection()
1302 Ex.Kind = readUint8(Ctx); in parseExportSection()
1303 Ex.Index = readVaruint32(Ctx); in parseExportSection()
1308 Info.Name = Ex.Name; in parseExportSection()
1310 switch (Ex.Kind) { in parseExportSection()
1312 if (!isDefinedFunctionIndex(Ex.Index)) in parseExportSection()
1315 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
1317 Info.ElementIndex = Ex.Index; in parseExportSection()
1324 if (!isValidGlobalIndex(Ex.Index)) in parseExportSection()
1329 if (isDefinedGlobalIndex(Ex.Index)) { in parseExportSection()
1330 auto Global = getDefinedGlobal(Ex.Index); in parseExportSection()
1344 if (!isValidTagIndex(Ex.Index)) in parseExportSection()
1348 Info.ElementIndex = Ex.Index; in parseExportSection()
1354 Info.ElementIndex = Ex.Index; in parseExportSection()
1360 Exports.push_back(Ex); in parseExportSection()
1361 if (Ex.Kind != wasm::WASM_EXTERNAL_MEMORY) { in parseExportSection()