Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Foreach

295 /// values in all surrounding foreach loops, creating new records for
343 Error(Loc, "foreach iterator value is untyped");
380 K == tgtok::MultiClass || K == tgtok::Foreach;
773 // If this is in a foreach loop, make sure it's not a loop iterator
1000 Code = TernOpInit::FOREACH;
1083 TokError("could not get type for !foreach");
1688 /// ParseForeachDeclaration - Read a foreach declaration, returning
1698 TokError("Expected identifier in foreach declaration");
1707 TokError("Expected '=' in foreach declaration");
2004 /// Foreach ::= FOREACH Declaration IN '{ ObjectList '}'
2005 /// Foreach ::= FOREACH Declaration IN Object
2008 assert(Lex.getCode() == tgtok::Foreach && "Unknown tok");
2026 // FOREACH Declaration IN Object
2032 // Otherwise, this is a group foreach.
2040 TokError("expected '}' at end of foreach command");
2247 case tgtok::Foreach:
2554 case tgtok::Foreach: return ParseForeach(MC);