Home
last modified time | relevance | path

Searched refs:callsite (Results 1 – 25 of 140) sorted by relevance

123456

/external/perfetto/ui/src/common/
Dflamegraph_util.ts96 function copyCallsite(callsite: CallsiteInfo): CallsiteInfo {
98 id: callsite.id,
99 parentId: callsite.parentId,
100 depth: callsite.depth,
101 name: callsite.name,
102 totalSize: callsite.totalSize,
103 mapping: callsite.mapping,
104 selfSize: callsite.selfSize,
105 merged: callsite.merged,
106 highlighted: callsite.highlighted
[all …]
/external/llvm-project/mlir/test/IR/
Dinvalid-locations.mlir42 return loc(callsite unknown // expected-error {{expected '(' in callsite location}}
49 return loc(callsite( at ) // expected-error {{expected location instance}}
56 return loc(callsite(unknown unknown) // expected-error {{expected 'at' in callsite location}}
63 return loc(callsite(unknown at ) // expected-error {{expected location instance}}
70 …return loc(callsite( unknown at unknown // expected-error@+1 {{expected ')' in callsite location}}
Dpretty-locations.mlir11 %2 = constant 4 : index loc(callsite("foo" at "mysource.cc":10:8))
17 …%3 = constant 4 : index loc(callsite("foo" at callsite("mysource1.cc":10:8 at callsite("mysource2.…
Dopaque_locations.mlir20 // CHECK: constant 4 : index loc(callsite("foo" at "mysource.cc":10:8))
21 // CHECK: constant 4 : index loc(callsite("foo" at "mysource.cc":10:8))
23 %2 = constant 4 : index loc(callsite("foo" at "mysource.cc":10:8))
31 } loc(fused["foo", "mysource.cc":10:8, callsite("foo" at "mysource.cc":10:8)])
Dlocations.mlir12 // CHECK: constant 4 : index loc(callsite("foo" at "mysource.cc":10:8))
13 %2 = constant 4 : index loc(callsite("foo" at "mysource.cc":10:8))
27 // CHECK-LABEL: func private @loc_attr(i1 {foo.loc_attr = loc(callsite("foo" at "mysource.cc":10:8)…
28 func private @loc_attr(i1 {foo.loc_attr = loc(callsite("foo" at "mysource.cc":10:8))})
Ddiagnostic-handler.mlir11 ….constant"() {value = 100} : () -> i1 loc(fused["bar", callsite("foo"("mysource1":0:0) at callsite
/external/llvm-project/llvm/test/Object/
Dstackmap-dump.test8 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
9 CHECK-NEXT: Function address: 0, stack size: 24, callsite record count: 1
10 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
11 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
12 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
13 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
14 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
15 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
16 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
17 CHECK-NEXT: Function address: 0, stack size: 56, callsite record count: 1
[all …]
/external/llvm-project/llvm/test/Transforms/Inline/
Dinline-hot-callsite-2.ll1 …ummary>,cgscc(inline)' -inline-threshold=0 -inlinehint-threshold=0 -hot-callsite-threshold=100 -S …
3 ; This tests that a callsite which is determined to be hot based on the caller's
4 ; entry count and the callsite block frequency gets the hot-callsite-threshold.
5 ; Another callsite with the same callee that is not hot does not get inlined
Dinline-cold-callsite.ll2 …uire<profile-summary>,cgscc(inline)' -inline-threshold=100 -inline-cold-callsite-threshold=0 -S | …
4 ; This tests that a cold callsite gets the inline-cold-callsite-threshold
5 ; and does not get inlined. Another callsite to an identical callee that
Dinline-cold-callsite-pgo.ll1 …uire<profile-summary>,cgscc(inline)' -inline-threshold=100 -inline-cold-callsite-threshold=0 -S | …
3 ; This tests that a cold callsite gets the inline-cold-callsite-threshold
4 ; and does not get inlined. Another callsite to an identical callee that
Dbfi-update.ll1 …mmary>,cgscc(inline)' -S -inline-threshold=50 -inline-cold-callsite-threshold=0 -hot-callsite-thre…
10 ; 1/10th of function a's entry block frequency, resulting in a callsite count of
11 ; 2 (since a's entry count is 20) which means that a->e callsite will be
Dinline-hot-callsite.ll1 ; This tests that a hot callsite gets the (higher) inlinehint-threshold even without
6 ; RUN: opt < %s -inline -inline-threshold=0 -hot-callsite-threshold=100 -S -enable-new-pm=0 | FileC…
7 ; RUN: opt < %s -passes='require<profile-summary>,cgscc(inline)' -inline-threshold=0 -hot-callsite-…
11 ; RUN: opt < %s -passes='default<O2>' -inline-threshold=0 -hot-callsite-threshold=100 -S | FileChec…
/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph.cc212 for (const CallSite& callsite : node->callsites()) { in SetCallContexts() local
213 for (const HloComputation* callee : callsite.called_computations()) { in SetCallContexts()
219 if (callsite.context() == CallContext::kParallel) { in SetCallContexts()
222 CHECK_EQ(callsite.context(), CallContext::kSequential); in SetCallContexts()
303 for (const CallSite& callsite : in Build() local
305 for (auto* callee : callsite.called_computations()) { in Build()
307 call_graph->GetNode(callee).AddCallerCallSite(callsite); in Build()
372 for (const auto& callsite : GetNode(c).caller_callsites()) { in GetComputationCallers() local
373 callers.push_back(callsite.instruction()); in GetComputationCallers()
445 for (const CallSite& callsite : node.callsites()) { in ToString() local
[all …]
Dconditional_to_select.cc75 for (const CallSite& callsite : node.callsites()) { in Run() local
76 if (callsite.instruction()->opcode() == HloOpcode::kConditional) { in Run()
77 VLOG(1) << "Visiting conditional: " << callsite.ToString(); in Run()
78 HloInstruction* conditional = callsite.instruction(); in Run()
Dhlo_alias_analysis.cc231 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeWhileAliasedBuffers() local
232 if (callsite.instruction()->opcode() == HloOpcode::kWhile) { in ComputeWhileAliasedBuffers()
237 callsite.instruction(), value.defining_index()); in ComputeWhileAliasedBuffers()
251 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeWhileAliasedBuffers() local
252 if (callsite.instruction()->opcode() == HloOpcode::kWhile && in ComputeWhileAliasedBuffers()
253 callsite.instruction()->while_body() == computation) { in ComputeWhileAliasedBuffers()
259 callsite.instruction(), position.index); in ComputeWhileAliasedBuffers()
261 << callsite.instruction()->name() in ComputeWhileAliasedBuffers()
287 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeConditionalAliasedBuffers() local
288 if (callsite.instruction()->opcode() == HloOpcode::kConditional) { in ComputeConditionalAliasedBuffers()
[all …]
Dhlo_dataflow_analysis.cc623 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in UpdateParameterValueSet() local
624 if (callsite.instruction()->opcode() == HloOpcode::kCall) { in UpdateParameterValueSet()
628 callsite.instruction()->operand(parameter->parameter_number()))); in UpdateParameterValueSet()
629 } else if (callsite.instruction()->opcode() == HloOpcode::kWhile) { in UpdateParameterValueSet()
635 &GetInstructionValueSet(callsite.instruction()->operand(0))); in UpdateParameterValueSet()
640 callsite.instruction()->while_body()->root_instruction()) { in UpdateParameterValueSet()
642 callsite.instruction()->while_body()->root_instruction())); in UpdateParameterValueSet()
645 } else if (callsite.instruction()->opcode() == HloOpcode::kConditional) { in UpdateParameterValueSet()
647 auto conditional = callsite.instruction(); in UpdateParameterValueSet()
906 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in Propagate() local
[all …]
Dhlo_liveness_analysis.cc202 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in PropagateLivenessToParameterCallers() local
203 if (callsite.instruction()->opcode() == HloOpcode::kWhile) { in PropagateLivenessToParameterCallers()
204 auto* xla_while = callsite.instruction(); in PropagateLivenessToParameterCallers()
232 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in PropagateLivenessThroughControlFlow() local
233 HloInstruction* caller = callsite.instruction(); in PropagateLivenessThroughControlFlow()
/external/llvm-project/llvm/test/Transforms/Util/
Dcall-promotion-utils-ptrcast-attribute.ll8 ; casting to i64 and pointer attribute at callsite dropped.
13 ; no casting needed, attribute at callsite preserved.
21 ; Make sure callsite attributes are preserved on arguments and retval.
24 ; Make sure callsite attributes are dropped on arguments and retval.
/external/llvm-project/llvm/test/Transforms/SampleProfile/
Dinline-cold-callsite-samplepgo.ll1 ; For SamplePGO, if -profile-sample-accurate is specified, cold callsite
4 …file -sample-profile-file=%S/Inputs/inline.prof -inline -S -inline-cold-callsite-threshold=0 | Fil…
5 …=%S/Inputs/inline.prof -profile-sample-accurate -inline -S -inline-cold-callsite-threshold=0 | Fil…
/external/perfetto/tools/
Dprofiling_sample_distribution.cc95 std::string callsite; in ProfilingSampleDistributionMain() local
97 std::cin >> callsite; in ProfilingSampleDistributionMain()
107 allocations.emplace_back(std::move(callsite), size); in ProfilingSampleDistributionMain()
/external/llvm-project/llvm/test/Transforms/CallSiteSplitting/
Dnoduplicate.ll1 ; RUN: opt -S -callsite-splitting -callsite-splitting-duplication-threshold=100000000 < %s | FileCh…
2 ; RUN: opt -S -callsite-splitting -callsite-splitting-duplication-threshold=100000000 < %s | FileCh…
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/tests/
Dimport_quant_stats.mlir7 loc(fused["skip1", "skip2.cc":10:8, callsite("op" at "skip3.cc":10:8)])
17 loc(fused["skip1.cc":10:8, "op", callsite("skip2" at "skip3.cc":10:8)])
29 loc(fused["skip1.cc":10:8, "op_0", callsite("skip2" at "skip3.cc":10:8)])
40 loc(fused["skip1.cc":10:8, "op_regex", callsite("skip2" at "skip3.cc":10:8)])
/external/llvm-project/llvm/test/Transforms/SampleProfile/Inputs/
Dinline-replay.txt1 …mii inlined into main to match profiling context with (cost=45, threshold=337) at callsite main:3.1
2 …d into main to match profiling context with (cost=-5, threshold=337) at callsite _Z3sumii:1 @ main…
/external/tensorflow/tensorflow/compiler/jit/
Dxla_kernel_creator_test.cc103 auto callsite = in TEST_F() local
107 (*(callsite->node_def.mutable_attr()))["_XlaMustCompile"] = BoolAttr(true); in TEST_F()
110 Status status = xla_kernel_creator.CreateKernel(flr_, callsite, &kernel_); in TEST_F()
/external/llvm/test/CodeGen/X86/
Ddeopt-bundles.ll10 ; STACKMAPS: Stack Maps: callsite 2882400015
17 ; STACKMAPS-NEXT: Stack Maps: callsite 4242
24 ; STACKMAPS-NEXT: Stack Maps: callsite 4243
31 ; STACKMAPS-NEXT: Stack Maps: callsite 2882400015
38 ; STACKMAPS-NEXT: Stack Maps: callsite 2882400015
45 ; STACKMAPS-NEXT: Stack Maps: callsite 4243

123456