reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
225 W.printString("Name", Symbol.Info.Name); 226 W.printEnum("Type", Symbol.Info.Kind, makeArrayRef(WasmSymbolTypes)); 227 W.printFlags("Flags", Symbol.Info.Flags, makeArrayRef(WasmSymbolFlags)); 229 if (Symbol.Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) { 230 W.printString("ImportName", Symbol.Info.ImportName); 231 W.printString("ImportModule", Symbol.Info.ImportModule); 233 if (Symbol.Info.Kind != wasm::WASM_SYMBOL_TYPE_DATA) { 234 W.printHex("ElementIndex", Symbol.Info.ElementIndex); 235 } else if (!(Symbol.Info.Flags & wasm::WASM_SYMBOL_UNDEFINED)) { 236 W.printHex("Offset", Symbol.Info.DataRef.Offset); 237 W.printHex("Segment", Symbol.Info.DataRef.Segment); 238 W.printHex("Size", Symbol.Info.DataRef.Size);