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

References

utils/TableGen/SearchableTableEmitter.cpp
  196   assert(Index.Fields.size() == 1);
  198   if (Index.Fields[0].Enum) {
  199     Record *EnumEntry = Rec->getValueAsDef(Index.Fields[0].Name);
  200     return Index.Fields[0].Enum->EntryMap[EnumEntry]->second;
  203   return getInt(Rec, Index.Fields[0].Name);
  210   for (const auto &Field : Index.Fields) {
  312     for (const auto &Field : Index.Fields) {
  338       for (const auto &Field : Index.Fields) {
  361   if (Index.Fields.size() == 1 &&
  362       (Index.Fields[0].Enum || isa<BitsRecTy>(Index.Fields[0].RecType))) {
  362       (Index.Fields[0].Enum || isa<BitsRecTy>(Index.Fields[0].RecType))) {
  374     OS << "  size_t Idx = " << Index.Fields[0].Name << ";\n";
  386     const GenericField &Field = Index.Fields[0];
  397   for (const auto &Field : Index.Fields) {
  404   for (const auto &Field : Index.Fields) {
  424   for (const auto &Field : Index.Fields) {
  452   for (const auto &Field : Index.Fields)
  470   for (const auto &Field : Index.Fields) {
  554     Index->Fields.push_back(*Field);
  557   if (EarlyOut && isa<StringRecTy>(Index->Fields[0].RecType)) {