HomeSort by relevance Sort by last modified time
    Searched refs:ValueProfNode (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/lib/profile/
InstrProfilingPlatformDarwin.c 33 extern ValueProfNode
36 extern ValueProfNode
55 ValueProfNode *__llvm_profile_begin_vnodes(void) {
59 ValueProfNode *__llvm_profile_end_vnodes(void) { return &VNodesEnd; }
61 COMPILER_RT_VISIBILITY ValueProfNode *CurrentVNode = &VNodesStart;
62 COMPILER_RT_VISIBILITY ValueProfNode *EndVNode = &VNodesEnd;
InstrProfilingPlatformLinux.c 33 extern ValueProfNode PROF_VNODES_START COMPILER_RT_VISIBILITY;
34 extern ValueProfNode PROF_VNODES_STOP COMPILER_RT_VISIBILITY;
42 ValueProfNode __prof_vnodes_sect_data[0] COMPILER_RT_SECTION(INSTR_PROF_VNODES_SECT_NAME_STR);
65 COMPILER_RT_VISIBILITY ValueProfNode *
69 COMPILER_RT_VISIBILITY ValueProfNode *__llvm_profile_end_vnodes(void) {
72 COMPILER_RT_VISIBILITY ValueProfNode *CurrentVNode = &PROF_VNODES_START;
73 COMPILER_RT_VISIBILITY ValueProfNode *EndVNode = &PROF_VNODES_STOP;
InstrProfilingValue.c 31 COMPILER_RT_VISIBILITY ValueProfNode
95 ValueProfNode **Mem =
96 (ValueProfNode **)calloc(NumVSites, sizeof(ValueProfNode *));
106 static ValueProfNode *allocateOneNode(__llvm_profile_data *Data, uint32_t Index,
108 ValueProfNode *Node;
111 return (ValueProfNode *)calloc(1, sizeof(ValueProfNode));
124 Node = COMPILER_RT_PTR_FETCH_ADD(ValueProfNode, CurrentVNode, 1);
145 ValueProfNode **ValueCounters = (ValueProfNode **)PData->Values
    [all...]
InstrProfiling.h 35 typedef struct ValueProfNode * PtrToNodeT;
36 typedef struct ValueProfNode {
39 } ValueProfNode;
66 ValueProfNode *__llvm_profile_begin_vnodes();
67 ValueProfNode *__llvm_profile_end_vnodes();
InstrProfilingPlatformOther.c 85 ValueProfNode *__llvm_profile_begin_vnodes(void) {
89 ValueProfNode *__llvm_profile_end_vnodes(void) { return 0; }
91 COMPILER_RT_VISIBILITY ValueProfNode *CurrentVNode = 0;
92 COMPILER_RT_VISIBILITY ValueProfNode *EndVNode = 0;
InstrProfiling.c 55 ValueProfNode **ValueCounters = (ValueProfNode **)DI->Values;
61 ValueProfNode *CurrentVNode = ValueCounters[i];
InstrProfilingInternal.h 105 struct ValueProfNode;
130 struct ValueProfNode *(*GetValueData)(uint32_t ValueKind, uint32_t Site,
132 struct ValueProfNode *StartNode,
172 COMPILER_RT_VISIBILITY extern ValueProfNode *CurrentVNode;
173 COMPILER_RT_VISIBILITY extern ValueProfNode *EndVNode;
InstrProfilingWriter.c 182 ValueProfNode *NextStartNode = 0;

Completed in 889 milliseconds