Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DIdentifierTable.h71 unsigned TokenID : 9; variable
132 : 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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h102 void onInstructionExecuted(unsigned TokenID);