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

References

utils/TableGen/FixedLenDecoderEmitter.cpp
  968   OS.indent(Indentation) << "template<typename InsnType>\n";
  969   OS.indent(Indentation) << "static DecodeStatus decodeToMCInst(DecodeStatus S,"
  971   OS.indent(Indentation) << "                                   uint64_t "
  974   OS.indent(Indentation) << "DecodeComplete = true;\n";
  975   OS.indent(Indentation) << "InsnType tmp;\n";
  976   OS.indent(Indentation) << "switch (Idx) {\n";
  977   OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
  980     OS.indent(Indentation) << "case " << Index++ << ":\n";
  981     OS << Decoder;
  982     OS.indent(Indentation+2) << "return S;\n";
  984   OS.indent(Indentation) << "}\n";
  986   OS.indent(Indentation) << "}\n\n";