/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | stackmap-dump.test | 9 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/ |
D | call_graph.cc | 209 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 …]
|
D | hlo_alias_analysis.cc | 231 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 …]
|
D | hlo_dataflow_analysis.cc | 484 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 …]
|
D | call_inliner.cc | 145 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()
|
D | hlo_liveness_analysis.cc | 202 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/ |
D | inline-hot-callsite-2.ll | 1 …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
|
D | inline-cold-callsite.ll | 2 …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
|
D | inline-cold-callsite-pgo.ll | 1 …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
|
D | inline-hot-callsite.ll | 1 ; 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…
|
D | bfi-update.ll | 1 …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
|
D | inline-cold-callsite-samplepgo.ll | 1 ; 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/ |
D | profiling_sample_distribution.cc | 95 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/ |
D | deopt-bundles.ll | 10 ; 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/ |
D | deopt-bundles.ll | 10 ; 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/ |
D | lpad.ll | 1 ; RUN: opt -S -callsite-splitting < %s | FileCheck %s 3 ; Make sure that the callsite is not splitted by checking that there's only one
|
D | callsite-no-splitting.ll | 1 ; RUN: opt < %s -callsite-splitting -S | FileCheck %s 2 ; RUN: opt < %s -passes='function(callsite-splitting)' -S | FileCheck %s
|
D | callsite-split-debug.ll | 1 ; 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/ |
D | runtime-internal.cc | 390 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/ |
D | unreachable-regression.ll | 5 ; After the rewritable callsite collection if any callsite was found
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/ |
D | AndroidInterceptorsIntegrationTest.java | 66 CallSite callsite = in invokeDynamic() local 70 callsite in invokeDynamic()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Assembler/ |
D | attribute-builtin.ll | 31 ; 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/ |
D | attribute-builtin.ll | 31 ; 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/ |
D | thinlto-function-summary-callgraph.ll | 10 ; 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/ |
D | call_nonnull_arg.ll | 4 ; InstCombine should mark null-checked argument as nonnull at callsite 35 ; propagated to the parameters of the 'baz' callsite.
|