Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DRetireControlUnit.cpp46 unsigned TokenID = NextAvailableSlotIdx; in dispatch() local
52 return TokenID; in dispatch()
85 void RetireControlUnit::onInstructionExecuted(unsigned TokenID) { in onInstructionExecuted() argument
86 assert(Queue.size() > TokenID); in onInstructionExecuted()
87 assert(Queue[TokenID].IR.getInstruction() && "Instruction was not dispatched!"); in onInstructionExecuted()
88 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()
89 Queue[TokenID].Executed = true; in onInstructionExecuted()
/external/llvm-project/llvm/lib/MCA/HardwareUnits/
DRetireControlUnit.cpp46 unsigned TokenID = NextAvailableSlotIdx; in dispatch() local
52 return TokenID; in dispatch()
85 void RetireControlUnit::onInstructionExecuted(unsigned TokenID) { in onInstructionExecuted() argument
86 assert(Queue.size() > TokenID); in onInstructionExecuted()
87 assert(Queue[TokenID].IR.getInstruction() && "Instruction was not dispatched!"); in onInstructionExecuted()
88 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()
89 Queue[TokenID].Executed = true; in onInstructionExecuted()
/external/llvm-project/clang/include/clang/Basic/
DIdentifierTable.h63 unsigned TokenID : 9; variable
124 : TokenID(tok::identifier), ObjCOrBuiltinID(0), HasMacro(false), in IdentifierInfo()
190 tok::TokenKind getTokenID() const { return (tok::TokenKind)TokenID; } in getTokenID()
202 assert(TokenID != tok::identifier && "Already at tok::identifier"); in revertTokenIDToIdentifier()
203 TokenID = tok::identifier; in revertTokenIDToIdentifier()
207 assert(TokenID == tok::identifier && "Should be at tok::identifier"); in revertIdentifierToTokenID()
208 TokenID = TK; in revertIdentifierToTokenID()
554 II.TokenID = TokenCode; in get()
555 assert(II.TokenID == (unsigned) TokenCode && "TokenCode too large"); in get()
/external/clang/include/clang/Basic/
DIdentifierTable.h48 unsigned TokenID : 9; // Front-end token ID or tok::identifier. variable
156 tok::TokenKind getTokenID() const { return (tok::TokenKind)TokenID; } in getTokenID()
168 assert(TokenID != tok::identifier && "Already at tok::identifier"); in revertTokenIDToIdentifier()
169 TokenID = tok::identifier; in revertTokenIDToIdentifier()
173 assert(TokenID == tok::identifier && "Should be at tok::identifier"); in revertIdentifierToTokenID()
174 TokenID = TK; in revertIdentifierToTokenID()
502 II.TokenID = TokenCode; in get()
503 assert(II.TokenID == (unsigned) TokenCode && "TokenCode too large"); in get()
/external/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
DRetireControlUnit.h102 void onInstructionExecuted(unsigned TokenID);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
DRetireControlUnit.h102 void onInstructionExecuted(unsigned TokenID);
/external/clang/lib/Basic/
DIdentifierTable.cpp34 TokenID = tok::identifier; in IdentifierInfo()