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

References

tools/clang/utils/TableGen/ClangOpcodesEmitter.cpp
  114   OS << "#ifdef GET_INTERP\n";
  116   Enumerate(R, N, [this, R, &OS, &N](ArrayRef<Record *> TS, const Twine &ID) {
  121     OS << "case OP_" << ID << ": {\n";
  125       OS << "\tauto V" << I;
  126       OS << " = ";
  127       OS << "PC.read<" << Args[I]->getValueAsString("Name") << ">();\n";
  131     OS << "\tif (!" << N;
  132     PrintTypes(OS, TS);
  133     OS << "(S";
  135       OS << ", PC";
  137       OS << ", OpPC";
  139       OS << ", Result";
  141       OS << ", V" << I;
  142     OS << "))\n";
  143     OS << "\t\treturn false;\n";
  147       OS << "\tif (!S.Current || S.Current->isRoot())\n";
  148       OS << "\t\treturn true;\n";
  151     OS << "\tcontinue;\n";
  152     OS << "}\n";
  154   OS << "#endif\n";