reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Object/WasmObjectFile.cpp
  164   Expr.Opcode = readOpcode(Ctx);
  166   switch (Expr.Opcode) {
 1216       Segment.Data.Offset.Opcode = wasm::WASM_OPCODE_I32_CONST;
 1314     assert(Segment.Offset.Opcode == wasm::WASM_OPCODE_I32_CONST);
lib/ObjectYAML/WasmEmitter.cpp
  132   writeUint8(OS, InitExpr.Opcode);
  133   switch (InitExpr.Opcode) {
  150     reportError("unknown opcode in init_expr: " + Twine(InitExpr.Opcode));
lib/ObjectYAML/WasmYAML.cpp
  417   WasmYAML::Opcode Op = Expr.Opcode;
  419   Expr.Opcode = Op;
  420   switch (Expr.Opcode) {
  451     Segment.Offset.Opcode = wasm::WASM_OPCODE_I32_CONST;
tools/lld/wasm/Driver.cpp
  454   wasmGlobal.InitExpr.Opcode = WASM_OPCODE_I32_CONST;
tools/lld/wasm/InputFiles.cpp
  268     if (seg.Offset.Opcode != WASM_OPCODE_I32_CONST)
tools/lld/wasm/OutputSections.cpp
  152         initExpr.Opcode = WASM_OPCODE_GLOBAL_GET;
  155         initExpr.Opcode = WASM_OPCODE_I32_CONST;
tools/lld/wasm/SyntheticSections.cpp
  273     global.InitExpr.Opcode = WASM_OPCODE_I32_CONST;
  287     global.InitExpr.Opcode = WASM_OPCODE_I32_CONST;
  351     initExpr.Opcode = WASM_OPCODE_GLOBAL_GET;
  354     initExpr.Opcode = WASM_OPCODE_I32_CONST;
tools/lld/wasm/WriterUtils.cpp
  136   writeU8(os, initExpr.Opcode, "opcode");
  137   switch (initExpr.Opcode) {
  148     fatal("unknown opcode in init expr: " + Twine(initExpr.Opcode));
tools/llvm-readobj/WasmDumper.cpp
  193         if (Seg.Offset.Opcode == wasm::WASM_OPCODE_I32_CONST)