reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
687 if (C.isEOF()) { 688 Token.reset(MIToken::Eof, C.remaining()); 689 return C.remaining(); 692 if (Cursor R = maybeLexMachineBasicBlock(C, Token, ErrorCallback)) 694 if (Cursor R = maybeLexIdentifier(C, Token)) 696 if (Cursor R = maybeLexJumpTableIndex(C, Token)) 698 if (Cursor R = maybeLexStackObject(C, Token)) 700 if (Cursor R = maybeLexFixedStackObject(C, Token)) 702 if (Cursor R = maybeLexConstantPoolItem(C, Token)) 704 if (Cursor R = maybeLexSubRegisterIndex(C, Token, ErrorCallback)) 706 if (Cursor R = maybeLexIRBlock(C, Token, ErrorCallback)) 708 if (Cursor R = maybeLexIRValue(C, Token, ErrorCallback)) 710 if (Cursor R = maybeLexRegister(C, Token, ErrorCallback)) 712 if (Cursor R = maybeLexGlobalValue(C, Token, ErrorCallback)) 714 if (Cursor R = maybeLexExternalSymbol(C, Token, ErrorCallback)) 716 if (Cursor R = maybeLexMCSymbol(C, Token, ErrorCallback)) 718 if (Cursor R = maybeLexHexadecimalLiteral(C, Token)) 720 if (Cursor R = maybeLexNumericalLiteral(C, Token)) 722 if (Cursor R = maybeLexExlaim(C, Token, ErrorCallback)) 724 if (Cursor R = maybeLexSymbol(C, Token)) 726 if (Cursor R = maybeLexNewline(C, Token)) 728 if (Cursor R = maybeLexEscapedIRValue(C, Token, ErrorCallback)) 730 if (Cursor R = maybeLexStringConstant(C, Token, ErrorCallback)) 733 Token.reset(MIToken::Error, C.remaining()); 734 ErrorCallback(C.location(), 735 Twine("unexpected character '") + Twine(C.peek()) + "'"); 736 return C.remaining();