Lines Matching refs:Ex
1436 wasm::WasmExport Ex; in parseExportSection() local
1437 Ex.Name = readString(Ctx); in parseExportSection()
1438 Ex.Kind = readUint8(Ctx); in parseExportSection()
1439 Ex.Index = readVaruint32(Ctx); in parseExportSection()
1444 Info.Name = Ex.Name; in parseExportSection()
1446 switch (Ex.Kind) { in parseExportSection()
1448 if (!isDefinedFunctionIndex(Ex.Index)) in parseExportSection()
1451 getDefinedFunction(Ex.Index).ExportName = Ex.Name; in parseExportSection()
1453 Info.ElementIndex = Ex.Index; in parseExportSection()
1460 if (!isValidGlobalIndex(Ex.Index)) in parseExportSection()
1465 if (isDefinedGlobalIndex(Ex.Index)) { in parseExportSection()
1466 auto Global = getDefinedGlobal(Ex.Index); in parseExportSection()
1480 if (!isValidTagIndex(Ex.Index)) in parseExportSection()
1484 Info.ElementIndex = Ex.Index; in parseExportSection()
1490 Info.ElementIndex = Ex.Index; in parseExportSection()
1496 Exports.push_back(Ex); in parseExportSection()
1497 if (Ex.Kind != wasm::WASM_EXTERNAL_MEMORY) { in parseExportSection()