reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
69 ValueProfNode **ValueCounters = (ValueProfNode **)DI->Values; 75 ValueProfNode *CurrentVNode = ValueCounters[i];projects/compiler-rt/lib/profile/InstrProfiling.h
66 ValueProfNode *__llvm_profile_begin_vnodes(); 67 ValueProfNode *__llvm_profile_end_vnodes();projects/compiler-rt/lib/profile/InstrProfilingInternal.h
185 COMPILER_RT_VISIBILITY extern ValueProfNode *CurrentVNode; 186 COMPILER_RT_VISIBILITY extern ValueProfNode *EndVNode;projects/compiler-rt/lib/profile/InstrProfilingPlatformLinux.c
36 extern ValueProfNode PROF_VNODES_START COMPILER_RT_VISIBILITY; 37 extern ValueProfNode PROF_VNODES_STOP COMPILER_RT_VISIBILITY; 47 ValueProfNode __prof_vnodes_sect_data[0] COMPILER_RT_SECTION(INSTR_PROF_VNODES_SECT_NAME); 73 COMPILER_RT_VISIBILITY ValueProfNode * 77 COMPILER_RT_VISIBILITY ValueProfNode *__llvm_profile_end_vnodes(void) { 80 COMPILER_RT_VISIBILITY ValueProfNode *CurrentVNode = &PROF_VNODES_START; 81 COMPILER_RT_VISIBILITY ValueProfNode *EndVNode = &PROF_VNODES_STOP;projects/compiler-rt/lib/profile/InstrProfilingValue.c
32 COMPILER_RT_VISIBILITY ValueProfNode 96 ValueProfNode **Mem = 97 (ValueProfNode **)calloc(NumVSites, sizeof(ValueProfNode *)); 107 static ValueProfNode *allocateOneNode(void) { 108 ValueProfNode *Node; 111 return (ValueProfNode *)calloc(1, sizeof(ValueProfNode)); 146 ValueProfNode **ValueCounters = (ValueProfNode **)PData->Values; 147 ValueProfNode *PrevVNode = NULL; 148 ValueProfNode *MinCountVNode = NULL; 149 ValueProfNode *CurVNode = ValueCounters[CounterIndex]; 275 ValueProfNode **NodesKind[IPVK_Last + 1]; 314 ValueProfNode **Nodes = (ValueProfNode **)Data->Values; 328 ValueProfNode *Site = 343 static ValueProfNode *getNextNValueData(uint32_t VK, uint32_t Site, 345 ValueProfNode *StartNode, uint32_t N) { 347 ValueProfNode *VNode = StartNode ? StartNode : RTRecord.NodesKind[VK][Site];projects/compiler-rt/lib/profile/InstrProfilingWriter.c
188 ValueProfNode *NextStartNode = 0;