Lines Matching refs:ContextNode
36 ContextNode *markAsScratch(const ContextNode *Ctx) { in markAsScratch()
37 return reinterpret_cast<ContextNode *>(reinterpret_cast<uint64_t>(Ctx) | 1); in markAsScratch()
69 const auto *Ctx = reinterpret_cast<const ContextNode *>(Pos); in validate()
82 const auto *Ctx = reinterpret_cast<const ContextNode *>(Pos); in validate()
94 inline ContextNode *allocContextNode(char *Place, GUID Guid, in allocContextNode()
96 ContextNode *Next = nullptr) { in allocContextNode()
98 return new (Place) ContextNode(Guid, NrCounters, NrCallsites, Next); in allocContextNode()
101 void resetContextNode(ContextNode &Node) { in resetContextNode()
111 void onContextEnter(ContextNode &Node) { ++Node.counters()[0]; } in onContextEnter()
125 markAsScratch(reinterpret_cast<ContextNode *>(__Buffer))
130 __thread ContextNode **volatile __llvm_ctx_profile_callsite[2] = {0, 0};
163 ContextNode *getCallsiteSlow(GUID Guid, ContextNode **InsertionPoint, in getCallsiteSlow()
165 auto AllocSize = ContextNode::getAllocSize(NrCounters, NrCallsites); in getCallsiteSlow()
184 ContextNode *__llvm_ctx_profile_get_context(void *Callee, GUID Guid, in __llvm_ctx_profile_get_context()
247 const auto Needed = ContextNode::getAllocSize(NrCounters, NrCallsites); in setupContext()
256 ContextNode *__llvm_ctx_profile_start_context( in __llvm_ctx_profile_start_context()
297 bool (*Writer)(void *W, const ContextNode &)) { in __llvm_ctx_profile_fetch() argument