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

References

include/llvm/TableGen/Record.h
  904   Init *getMHS() const { return MHS; }
  912     return LHS->isComplete() && MHS->isComplete() && RHS->isComplete();
lib/TableGen/Record.cpp
 1135     DefInit *MHSd = dyn_cast<DefInit>(MHS);
 1136     VarInit *MHSv = dyn_cast<VarInit>(MHS);
 1137     StringInit *MHSs = dyn_cast<StringInit>(MHS);
 1174     if (Init *Result = ForeachHelper(LHS, MHS, RHS, getType(), CurRec))
 1183         return MHS;
 1190     ListInit *MHSl = dyn_cast<ListInit>(MHS);
 1192     bool MHSok = MHSl || isa<UnsetInit>(MHS);
 1195     if (isa<UnsetInit>(MHS) && isa<UnsetInit>(RHS))
 1225         return MHS->resolveReferences(R);
 1230   Init *mhs = MHS->resolveReferences(R);
 1241   if (LHS != lhs || MHS != mhs || RHS != rhs)
 1258           ", " + MHS->getAsString() + ", " + RHS->getAsString() + ")");