Home
last modified time | relevance | path

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

1234

/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/tensorflow/tensorflow/compiler/xla/service/
Dcall_graph.cc209 for (const CallSite& callsite : node->callsites()) { in SetCallContexts() local
210 for (const HloComputation* callee : callsite.called_computations()) { in SetCallContexts()
216 if (callsite.context() == CallContext::kParallel) { in SetCallContexts()
219 CHECK_EQ(callsite.context(), CallContext::kSequential); in SetCallContexts()
300 for (const CallSite& callsite : in Build() local
302 for (auto* callee : callsite.called_computations()) { in Build()
304 call_graph->GetNode(callee).AddCallerCallSite(callsite); in Build()
369 for (auto callsite : GetNode(c).caller_callsites()) { in GetComputationCallers() local
370 callers.push_back(callsite.instruction()); in GetComputationCallers()
442 for (const CallSite& callsite : node.callsites()) { in ToString() local
[all …]
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()
258 callsite.instruction(), position.index); in ComputeWhileAliasedBuffers()
260 << callsite.instruction()->name() in ComputeWhileAliasedBuffers()
286 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in ComputeConditionalAliasedBuffers() local
287 if (callsite.instruction()->opcode() == HloOpcode::kConditional) { in ComputeConditionalAliasedBuffers()
[all …]
Dhlo_dataflow_analysis.cc484 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in UpdateParameterValueSet() local
485 if (callsite.instruction()->opcode() == HloOpcode::kCall) { in UpdateParameterValueSet()
489 callsite.instruction()->operand(parameter->parameter_number()))); in UpdateParameterValueSet()
490 } else if (callsite.instruction()->opcode() == HloOpcode::kWhile) { in UpdateParameterValueSet()
496 &GetInstructionValueSet(callsite.instruction()->operand(0))); in UpdateParameterValueSet()
501 callsite.instruction()->while_body()->root_instruction()) { in UpdateParameterValueSet()
503 callsite.instruction()->while_body()->root_instruction())); in UpdateParameterValueSet()
506 } else if (callsite.instruction()->opcode() == HloOpcode::kConditional) { in UpdateParameterValueSet()
508 auto conditional = callsite.instruction(); in UpdateParameterValueSet()
707 for (const CallSite& callsite : call_graph_node.caller_callsites()) { in Propagate() local
[all …]
Dcall_inliner.cc145 for (const CallSite& callsite : node.caller_callsites()) { in Run() local
146 VLOG(1) << "Visiting callsite: " << callsite.ToString(); in Run()
147 if (callsite.instruction()->opcode() == HloOpcode::kCall) { in Run()
148 HloInstruction* call = callsite.instruction(); in Run()
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/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/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/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
Dcallsite-split-debug.ll1 ; RUN: opt -S -callsite-splitting -o - < %s | FileCheck %s
2 ; RUN: opt -S -strip-debug -callsite-splitting -o - < %s | FileCheck %s
/external/v8/src/runtime/
Druntime-internal.cc390 Handle<String> callsite = RenderCallSite(isolate, object, &hint); in ThrowIteratorError() local
395 THROW_NEW_ERROR(isolate, NewTypeError(id, iterator_symbol, callsite), in ThrowIteratorError()
400 THROW_NEW_ERROR(isolate, NewTypeError(id, callsite), Object); in ThrowIteratorError()
408 Handle<String> callsite = RenderCallSite(isolate, object, &hint); in RUNTIME_FUNCTION() local
411 THROW_NEW_ERROR_RETURN_FAILURE(isolate, NewTypeError(id, callsite)); in RUNTIME_FUNCTION()
419 Handle<String> callsite = RenderCallSite(isolate, object, &hint); in RUNTIME_FUNCTION() local
421 THROW_NEW_ERROR_RETURN_FAILURE(isolate, NewTypeError(id, callsite)); in RUNTIME_FUNCTION()
/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/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
DAndroidInterceptorsIntegrationTest.java66 CallSite callsite = in invokeDynamic() local
70 callsite in invokeDynamic()
/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.
/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/llvm/test/Bitcode/
Dthinlto-function-summary-callgraph.ll10 ; See if the call to func is registered, using the expected callsite count
23 ; See if the call to func is registered, using the expected callsite count
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dcall_nonnull_arg.ll4 ; InstCombine should mark null-checked argument as nonnull at callsite
35 ; propagated to the parameters of the 'baz' callsite.

1234