Searched refs:TokenID (Results 1 – 4 of 4) sorted by relevance
48 unsigned TokenID = NextAvailableSlotIdx; in dispatch() local52 assert(TokenID < UnhandledTokenID && "Invalid token ID"); in dispatch()55 return TokenID; in dispatch()88 void RetireControlUnit::onInstructionExecuted(unsigned TokenID) { in onInstructionExecuted() argument89 assert(Queue.size() > TokenID); in onInstructionExecuted()90 assert(Queue[TokenID].IR.getInstruction() && "Instruction was not dispatched!"); in onInstructionExecuted()91 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()92 Queue[TokenID].Executed = true; in onInstructionExecuted()
71 unsigned TokenID : 9; variable132 : TokenID(tok::identifier), ObjCOrBuiltinID(0), HasMacro(false), in IdentifierInfo()198 tok::TokenKind getTokenID() const { return (tok::TokenKind)TokenID; } in getTokenID()210 assert(TokenID != tok::identifier && "Already at tok::identifier"); in revertTokenIDToIdentifier()211 TokenID = tok::identifier; in revertTokenIDToIdentifier()215 assert(TokenID == tok::identifier && "Should be at tok::identifier"); in revertIdentifierToTokenID()216 TokenID = TK; in revertIdentifierToTokenID()555 II.TokenID = TokenCode; in get()556 assert(II.TokenID == (unsigned) TokenCode && "TokenCode too large"); in get()
53 unsigned TokenID = IS.getRCUTokenID(); in execute() local54 assert(TokenID != RetireControlUnit::UnhandledTokenID); in execute()55 RCU.onInstructionExecuted(TokenID); in execute()
102 void onInstructionExecuted(unsigned TokenID);