Home
last modified time | relevance | path

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

12345

/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,
110 callsite: CallsiteInfo, map: Map<number, number>): number {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dstackmap-dump.test9 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
10 CHECK-NEXT: Function address: 0, stack size: 24, 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: 56, callsite record count: 1
17 CHECK-NEXT: Function address: 0, stack size: 56, callsite record count: 1
18 CHECK-NEXT: Function address: 0, stack size: 56, callsite record count: 1
[all …]
/external/swiftshader/third_party/llvm-7.0/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
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 | FileCheck %s
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…
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-cold-callsite-samplepgo.ll1 ; For SamplePGO, if -profile-sample-accurate is specified, cold callsite
4 ; RUN: opt < %s -inline -S -inline-cold-callsite-threshold=0 | FileCheck %s
/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph.cc211 for (const CallSite& callsite : node->callsites()) { in SetCallContexts() local
212 for (const HloComputation* callee : callsite.called_computations()) { in SetCallContexts()
218 if (callsite.context() == CallContext::kParallel) { in SetCallContexts()
221 CHECK_EQ(callsite.context(), CallContext::kSequential); in SetCallContexts()
302 for (const CallSite& callsite : in Build() local
304 for (auto* callee : callsite.called_computations()) { in Build()
306 call_graph->GetNode(callee).AddCallerCallSite(callsite); in Build()
371 for (auto callsite : GetNode(c).caller_callsites()) { in GetComputationCallers() local
372 callers.push_back(callsite.instruction()); in GetComputationCallers()
444 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.cc554 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in UpdateParameterValueSet() local
555 if (callsite.instruction()->opcode() == HloOpcode::kCall) { in UpdateParameterValueSet()
559 callsite.instruction()->operand(parameter->parameter_number()))); in UpdateParameterValueSet()
560 } else if (callsite.instruction()->opcode() == HloOpcode::kWhile) { in UpdateParameterValueSet()
566 &GetInstructionValueSet(callsite.instruction()->operand(0))); in UpdateParameterValueSet()
571 callsite.instruction()->while_body()->root_instruction()) { in UpdateParameterValueSet()
573 callsite.instruction()->while_body()->root_instruction())); in UpdateParameterValueSet()
576 } else if (callsite.instruction()->opcode() == HloOpcode::kConditional) { in UpdateParameterValueSet()
578 auto conditional = callsite.instruction(); in UpdateParameterValueSet()
783 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/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/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/tensorflow/tensorflow/compiler/jit/
Dxla_kernel_creator_test.cc101 NodeDef callsite = in TEST_F() local
105 (*callsite.mutable_attr())["_XlaMustCompile"] = BoolAttr(true); in TEST_F()
108 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
/external/swiftshader/third_party/llvm-7.0/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
190 ; STACKMAPS: Stack Maps: callsite 2882400015
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/CallSiteSplitting/
Dlpad.ll1 ; RUN: opt -S -callsite-splitting < %s | FileCheck %s
3 ; Make sure that the callsite is not splitted by checking that there's only one
Dcallsite-no-splitting.ll1 ; RUN: opt < %s -callsite-splitting -S | FileCheck %s
2 ; RUN: opt < %s -passes='function(callsite-splitting)' -S | FileCheck %s
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/RewriteStatepointsForGC/
Dunreachable-regression.ll5 ; After the rewritable callsite collection if any callsite was found
/external/v8/src/execution/
Dmessages.cc1313 Handle<String> callsite = RenderCallSite(isolate, source, &location, &hint); in NewIteratorError() local
1318 return isolate->factory()->NewTypeError(id, callsite, iterator_symbol); in NewIteratorError()
1322 return isolate->factory()->NewTypeError(id, callsite); in NewIteratorError()
1328 Handle<String> callsite; in ThrowSpreadArgError() local
1340 callsite = in ThrowSpreadArgError()
1350 callsite = BuildDefaultCallSite(isolate, object); in ThrowSpreadArgError()
1354 isolate->ThrowAt(isolate->factory()->NewTypeError(id, callsite, object), in ThrowSpreadArgError()
1363 Handle<String> callsite = RenderCallSite(isolate, source, &location, &hint); in NewCalledNonCallableError() local
1366 return isolate->factory()->NewTypeError(id, callsite); in NewCalledNonCallableError()
1373 Handle<String> callsite = RenderCallSite(isolate, source, &location, &hint); in NewConstructedNonConstructable() local
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
DAndroidInterceptorsIntegrationTest.java66 CallSite callsite = in invokeDynamic() local
70 callsite in invokeDynamic()
/external/llvm/test/Assembler/
Dattribute-builtin.ll31 ; CHECK-BAD: Attribute 'builtin' can only be applied to a callsite.
33 ; CHECK-BAD: Attribute 'builtin' can only be applied to a callsite.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Assembler/
Dattribute-builtin.ll31 ; CHECK-BAD: Attribute 'builtin' can only be applied to a callsite.
33 ; CHECK-BAD: Attribute 'builtin' can only be applied to a callsite.

12345