Home
last modified time | relevance | path

Searched refs:TokenID (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/MCA/HardwareUnits/
H A DRetireControlUnit.cpp48 unsigned TokenID = NextAvailableSlotIdx; in dispatch() local
52 assert(TokenID < UnhandledTokenID && "Invalid token ID"); in dispatch()
55 return TokenID; in dispatch()
88 void RetireControlUnit::onInstructionExecuted(unsigned TokenID) { in onInstructionExecuted() argument
89 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()
/openbsd-src/gnu/llvm/llvm/lib/MCA/Stages/
H A DRetireStage.cpp53 unsigned TokenID = IS.getRCUTokenID(); in execute() local
54 assert(TokenID != RetireControlUnit::UnhandledTokenID); in execute()
55 RCU.onInstructionExecuted(TokenID); in execute()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DIdentifierTable.h89 unsigned TokenID : 9; variable
159 : TokenID(tok::identifier), ObjCOrBuiltinID(0), HasMacro(false), in IdentifierInfo()
262 tok::TokenKind getTokenID() const { return (tok::TokenKind)TokenID; } in getTokenID()
274 assert(TokenID != tok::identifier && "Already at tok::identifier"); in revertTokenIDToIdentifier()
275 TokenID = tok::identifier; in revertTokenIDToIdentifier()
279 assert(TokenID == tok::identifier && "Should be at tok::identifier"); in revertIdentifierToTokenID()
280 TokenID = TK; in revertIdentifierToTokenID()
623 II.TokenID = TokenCode; in get()
624 assert(II.TokenID == (unsigned) TokenCode && "TokenCode too large"); in get()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h102 void onInstructionExecuted(unsigned TokenID);