Home
last modified time | relevance | path

Searched refs:callsites (Results 1 – 25 of 65) sorted by relevance

123

/external/perfetto/ui/src/common/
Dflamegraph_unittest.ts19 const callsites: CallsiteInfo[] = [ constant
66 const mergedCallsites = mergeCallsites(callsites, 5);
69 expect(mergedCallsites).toEqual(callsites);
73 const callsites: CallsiteInfo[] = [ constant
131 const mergedCallsites = mergeCallsites(callsites, 5);
134 expect(mergedCallsites).toEqual(callsites);
138 const callsites: CallsiteInfo[] = [ constant
174 const mergedCallsites = mergeCallsites(callsites, 6);
203 const callsites: CallsiteInfo[] = [ constant
341 const mergedCallsites = mergeCallsites(callsites, 4);
[all …]
/external/perfetto/ui/src/controller/
Dcpu_profile_controller.ts144 const callsites = await this.args.engine.query(sampleQuery); constant
146 if (slowlyCountRows(callsites) < 1) {
151 for (let i = 0; i < slowlyCountRows(callsites); i++) {
152 const id = +callsites.columns[0].longValues![i];
153 const name = callsites.columns[1].stringValues![i];
154 const mapping = callsites.columns[2].stringValues![i];
Dheap_profile_controller.ts269 const callsites = await this.args.engine.query( constant
277 for (let i = 0; i < slowlyCountRows(callsites); i++) {
278 const hash = callsites.columns[0].longValues![i];
279 let name = callsites.columns[1].stringValues![i];
280 const parentHash = callsites.columns[2].longValues![i];
281 const depth = +callsites.columns[3].longValues![i];
282 const totalSize = +callsites.columns[sizeIndex].longValues![i];
283 const mapping = callsites.columns[8].stringValues![i];
284 const selfSize = +callsites.columns[selfIndex].longValues![i];
/external/llvm-project/llvm/test/tools/llvm-profdata/Inputs/
Dprofile-symbol-list.expected11 Samples collected in inlined callsites {
16 No inlined callsites in this function
21 No inlined callsites in this function
27 No inlined callsites in this function
32 No inlined callsites in this function
/external/llvm-project/llvm/test/tools/llvm-profdata/
Doverflow-sample.test12 SHOW_OVERFLOW-DAG: No inlined callsites in this function
17 SHOW_OVERFLOW-DAG: No inlined callsites in this function
22 SHOW_OVERFLOW-DAG: No inlined callsites in this function
33 SHOW_NO_OVERFLOW-DAG: No inlined callsites in this function
38 SHOW_NO_OVERFLOW-DAG: No inlined callsites in this function
43 SHOW_NO_OVERFLOW-DAG: No inlined callsites in this function
Dcompact-sample.proftext7 # CHECK: Samples collected in inlined callsites {
/external/llvm/test/tools/llvm-profdata/
Doverflow-sample.test12 SHOW_OVERFLOW-NEXT: No inlined callsites in this function
17 SHOW_OVERFLOW-NEXT: No inlined callsites in this function
22 SHOW_OVERFLOW-NEXT: No inlined callsites in this function
33 SHOW_NO_OVERFLOW-NEXT: No inlined callsites in this function
38 SHOW_NO_OVERFLOW-NEXT: No inlined callsites in this function
43 SHOW_NO_OVERFLOW-NEXT: No inlined callsites in this function
/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph_test.cc50 HloComputation* map_computation, int64 callsites) { in MakeMappingComputation() argument
55 for (int64 i = 0; i < callsites; ++i) { in MakeMappingComputation()
65 HloComputation* callee_computation, int64 callsites, in MakeCallingComputation() argument
71 for (int64 i = 0; i < callsites; ++i) { in MakeCallingComputation()
107 EXPECT_TRUE(node.callsites().empty()); in TEST_F()
154 EXPECT_EQ(5, entry_node.callsites().size()); in TEST_F()
163 EXPECT_TRUE(map_node.callsites().empty()); in TEST_F()
188 EXPECT_EQ(3, entry_node.callsites().size()); in TEST_F()
196 EXPECT_TRUE(called_node.callsites().empty()); in TEST_F()
226 EXPECT_EQ(2, entry_node.callsites().size()); in TEST_F()
[all …]
Dflatten_call_graph_test.cc48 HloComputation* map_computation, int64 callsites) { in MakeMappingComputation() argument
53 for (int64 i = 0; i < callsites; ++i) { in MakeMappingComputation()
63 HloComputation* callee_computation, int64 callsites, in MakeCallingComputation() argument
69 for (int64 i = 0; i < callsites; ++i) { in MakeCallingComputation()
Dcall_graph.cc212 for (const CallSite& callsite : node->callsites()) { in SetCallContexts()
304 call_graph->GetNode(computation).callsites()) { in Build()
445 for (const CallSite& callsite : node.callsites()) { in ToString()
Dconditional_to_select.cc75 for (const CallSite& callsite : node.callsites()) { in Run()
/external/perfetto/src/trace_processor/importers/proto/
Dheap_profile_tracker_unittest.cc188 const auto& callsites = storage.stack_profile_callsite_table(); in FindCallstack() local
189 for (uint32_t i = 0; i < callsites.row_count(); ++i) { in FindCallstack()
190 if (callsites.depth()[i] == depth && callsites.parent_id()[i] == parent && in FindCallstack()
191 callsites.frame_id()[i] == frame_id) { in FindCallstack()
192 return callsites.id()[i]; in FindCallstack()
Dheap_profile_tracker.cc118 auto callsites = GetMergedCallsites(storage, i); in BuildNativeFlamegraph() local
120 PERFETTO_CHECK(!callsites.empty()); in BuildNativeFlamegraph()
121 for (MergedCallsite& merged_callsite : callsites) { in BuildNativeFlamegraph()
/external/llvm-project/llvm/test/Transforms/CodeGenPrepare/X86/
Dsection-samplepgo.ll14 ; The sum of 2 callsites are hot
22 ; The sum of all callsites are neither hot or cold
/external/perfetto/src/profiling/memory/
Dbookkeeping_dump.cc71 void DumpState::DumpCallstacks(GlobalCallstackTrie* callsites) { in DumpCallstacks() argument
83 intern_state_->WriteCallstack(node, callsites, GetCurrentInternedData()); in DumpCallstacks()
Dheapprofd_producer.h187 : callsites(c), dump_at_max_mode(d) {} in ProcessState()
199 GlobalCallstackTrie* callsites; member
209 std::forward_as_tuple(callsites, dump_at_max_mode)); in GetHeapInfo()
Dunwinding_unittest.cc141 GlobalCallstackTrie callsites; in TEST() local
161 GlobalCallstackTrie callsites; in TEST() local
Dbookkeeping.h130 explicit HeapTracker(GlobalCallstackTrie* callsites, bool dump_at_max_mode) in HeapTracker() argument
131 : callsites_(callsites), dump_at_max_mode_(dump_at_max_mode) {} in HeapTracker()
Dbookkeeping_dump.h61 void DumpCallstacks(GlobalCallstackTrie* callsites);
/external/llvm-project/llvm/test/Transforms/Inline/
Dinline-remark.ll3 ; Test that the inliner adds inline remark attributes to non-inlined callsites.
25 ;; Test 1 - Add different inline remarks to similar callsites.
Dfunction-count-update-2.ll4 ; has been inlined into a two callsites.
/external/llvm-project/llvm/test/Instrumentation/AddressSanitizer/
Dinstrument-no-return.ll12 ; Instrument noreturn callsites (regardless of function)
30 ; Do *not* instrument callsites marked !nosanitize
/external/llvm-project/llvm/test/Transforms/RewriteStatepointsForGC/
Dstatepoint-attrs.ll3 ; Ensure statepoints copy (valid) attributes from callsites.
Dunreachable-regression.ll11 ; callsites. Such stale pointers caused crash when accessed.
/external/llvm/test/CodeGen/X86/
Ddeopt-intrinsic-cconv.ll27 ; STACKMAPS: Stack Maps: callsites:

123