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

References

utils/TableGen/IntrinsicEmitter.cpp
  158   OS << "// Intrinsic ID to overload bitset\n";
  159   OS << "#ifdef GET_INTRINSIC_OVERLOAD_TABLE\n";
  160   OS << "static const uint8_t OTable[] = {\n";
  161   OS << "  0";
  165       OS << ",\n  0";
  167       OS << " | (1<<" << (i+1)%8 << ')';
  169   OS << "\n};\n\n";
  171   OS << "return (OTable[id/8] & (1 << (id%8))) != 0;\n";
  172   OS << "#endif\n\n";