/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IRCE/ |
D | range_intersect_miscompile.ll | 21 ; CHECK: range_check_block: ; preds = %inner_loop 49 br label %inner_loop 51 inner_loop: ; preds = %inner_loop, %loop_header.split.us 52 %inner_iv = phi i32 [ 1, %loop_header.split.us ], [ %inner_iv_next, %inner_loop ] 55 br i1 %inner_cond, label %inner_loop, label %range_check_block 60 range_check_block: ; preds = %inner_loop 81 ; CHECK: range_check_block: ; preds = %inner_loop 99 br label %inner_loop 101 inner_loop: ; preds = %inner_loop, %loop_header.split.us 102 %inner_iv = phi i32 [ 1, %loop_header.split.us ], [ %inner_iv_next, %inner_loop ] [all …]
|
D | with-parent-loops.ll | 8 define void @inner_loop(i32* %arr, i32* %a_len_ptr, i32 %n) #0 { 9 ; CHECK: irce: in function inner_loop: constrained Loop at depth 1 containing: %loop<header><exitin… 42 loop: ; preds = %inner_loop.exit, %entry 43 %idx = phi i32 [ 0, %entry ], [ %idx.next, %inner_loop.exit ] 63 br label %inner_loop.exit 66 br label %inner_loop.exit 68 inner_loop.exit: ; preds = %exit.i, %out.of.bounds.i 71 exit: ; preds = %inner_loop.exit 88 loop.i: ; preds = %inner_loop.exit.i, %loop 89 %idx.i = phi i32 [ 0, %loop ], [ %idx.next.i, %inner_loop.exit.i ] [all …]
|
D | optimistic_scev.ll | 19 br label %inner_loop 21 inner_loop: 33 br i1 %cond, label %exit, label %inner_loop
|
D | add-metadata-pre-post-loops.ll | 9 define void @inner_loop(i32* %arr, i32* %a_len_ptr, i32 %n) #0 { 10 ; CHECK-LABEL: inner_loop(
|
/external/llvm/test/Transforms/IRCE/ |
D | with-parent-loops.ll | 7 define void @inner_loop(i32* %arr, i32* %a_len_ptr, i32 %n) #0 { 8 ; CHECK: irce: in function inner_loop: constrained Loop at depth 1 containing: %loop<header><exitin… 41 loop: ; preds = %inner_loop.exit, %entry 42 %idx = phi i32 [ 0, %entry ], [ %idx.next, %inner_loop.exit ] 62 br label %inner_loop.exit 65 br label %inner_loop.exit 67 inner_loop.exit: ; preds = %exit.i, %out.of.bounds.i 70 exit: ; preds = %inner_loop.exit 87 loop.i: ; preds = %inner_loop.exit.i, %loop 88 %idx.i = phi i32 [ 0, %loop ], [ %idx.next.i, %inner_loop.exit.i ] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopUnswitch/ |
D | invalidate-scev.ll | 19 br label %inner_loop 21 inner_loop: ; preds = %inner_backedge, %loop 24 inner_backedge: ; preds = %inner_loop 25 br label %inner_loop 27 backedge: ; preds = %inner_loop
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/MustExecute/ |
D | loop-header.ll | 57 ; CHECK: br label %inner_loop ; (mustexec in: loop) 58 ; CHECK-LABEL: inner_loop: 59 ; CHECK: %v = load i32, i32* %p ; (mustexec in: inner_loop) 60 ; CHECK: %inner.test = icmp eq i32 %v, 0 ; (mustexec in: inner_loop) 61 ; CHECK: br i1 %inner.test, label %inner_loop, label %next ; (mustexec in: inner_loop) 69 br label %inner_loop 71 inner_loop: 74 br i1 %inner.test, label %inner_loop, label %next
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | cayman-loop-bug.ll | 16 %cnt = phi i32 [0, %entry], [%cnt_incr, %inner_loop] 22 br label %inner_loop 24 inner_loop: 32 br label %inner_loop
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | cayman-loop-bug.ll | 16 %cnt = phi i32 [0, %entry], [%cnt_incr, %inner_loop] 22 br label %inner_loop 24 inner_loop: 32 br label %inner_loop
|
D | infinite-loop.ll | 113 ; IR: br label %inner_loop 115 ; IR: inner_loop: 121 ; IR: br i1 %cond3, label %inner_loop, label %outer_loop 132 ; SI: [[INNER_LOOP:BB[0-9]+_[0-9]+]]: ; %inner_loop 154 ; br i1 %cond2, label %outer_loop, label %inner_loop 155 br label %inner_loop 157 inner_loop: ; preds = %LeafBlock, %LeafBlock1 160 br i1 %cond3, label %inner_loop, label %outer_loop
|
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/nonwritable/ |
D | private_nonwritable.amber | 74 OpBranch %inner_loop 76 %inner_loop = OpLabel 77 %j = OpPhi %uint %uint_0 %outer_loop %inc_j %inner_loop 89 OpLoopMerge %inner_merge %inner_loop None 90 OpBranchConditional %inner_eq %inner_merge %inner_loop
|
D | function_nonwritable.amber | 74 OpBranch %inner_loop 76 %inner_loop = OpLabel 77 %j = OpPhi %uint %uint_0 %outer_loop %inc_j %inner_loop 89 OpLoopMerge %inner_merge %inner_loop None 90 OpBranchConditional %inner_eq %inner_merge %inner_loop
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/ |
D | unroll_simple.cpp | 1388 Loop& inner_loop = loop_descriptor.GetLoopByIndex(0); in TEST_F() local 1390 EXPECT_TRUE(inner_loop.HasUnrollLoopControl()); in TEST_F() 1394 EXPECT_EQ(inner_loop.GetBlocks().size(), 4u); in TEST_F() 1396 EXPECT_EQ(inner_loop.NumImmediateChildren(), 0u); in TEST_F() 1399 LoopUtils loop_utils{context.get(), &inner_loop}; in TEST_F() 1432 Loop& inner_loop = loop_descriptor.GetLoopByIndex(0); in TEST_F() local 1434 EXPECT_TRUE(inner_loop.HasUnrollLoopControl()); in TEST_F() 1438 EXPECT_EQ(inner_loop.GetBlocks().size(), 4u); in TEST_F() 1441 EXPECT_EQ(inner_loop.NumImmediateChildren(), 0u); in TEST_F() 1443 LoopUtils loop_utils{context.get(), &inner_loop}; in TEST_F()
|
/external/angle/third_party/spirv-tools/src/test/opt/loop_optimizations/ |
D | unroll_simple.cpp | 1388 Loop& inner_loop = loop_descriptor.GetLoopByIndex(0); in TEST_F() local 1390 EXPECT_TRUE(inner_loop.HasUnrollLoopControl()); in TEST_F() 1394 EXPECT_EQ(inner_loop.GetBlocks().size(), 4u); in TEST_F() 1396 EXPECT_EQ(inner_loop.NumImmediateChildren(), 0u); in TEST_F() 1399 LoopUtils loop_utils{context.get(), &inner_loop}; in TEST_F() 1432 Loop& inner_loop = loop_descriptor.GetLoopByIndex(0); in TEST_F() local 1434 EXPECT_TRUE(inner_loop.HasUnrollLoopControl()); in TEST_F() 1438 EXPECT_EQ(inner_loop.GetBlocks().size(), 4u); in TEST_F() 1441 EXPECT_EQ(inner_loop.NumImmediateChildren(), 0u); in TEST_F() 1443 LoopUtils loop_utils{context.get(), &inner_loop}; in TEST_F()
|
/external/deqp-deps/SPIRV-Tools/test/opt/loop_optimizations/ |
D | unroll_simple.cpp | 1388 Loop& inner_loop = loop_descriptor.GetLoopByIndex(0); in TEST_F() local 1390 EXPECT_TRUE(inner_loop.HasUnrollLoopControl()); in TEST_F() 1394 EXPECT_EQ(inner_loop.GetBlocks().size(), 4u); in TEST_F() 1396 EXPECT_EQ(inner_loop.NumImmediateChildren(), 0u); in TEST_F() 1399 LoopUtils loop_utils{context.get(), &inner_loop}; in TEST_F() 1432 Loop& inner_loop = loop_descriptor.GetLoopByIndex(0); in TEST_F() local 1434 EXPECT_TRUE(inner_loop.HasUnrollLoopControl()); in TEST_F() 1438 EXPECT_EQ(inner_loop.GetBlocks().size(), 4u); in TEST_F() 1441 EXPECT_EQ(inner_loop.NumImmediateChildren(), 0u); in TEST_F() 1443 LoopUtils loop_utils{context.get(), &inner_loop}; in TEST_F()
|
/external/grpc-grpc/test/cpp/microbenchmarks/ |
D | bm_fullstack_trickle.cc | 291 auto inner_loop = [&](bool in_warmup) { in BM_PumpStreamServerToClient_Trickle() local 311 inner_loop(true); in BM_PumpStreamServerToClient_Trickle() 319 inner_loop(false); in BM_PumpStreamServerToClient_Trickle() 389 auto inner_loop = [&](bool in_warmup) { in BM_PumpUnbalancedUnary_Trickle() local 424 inner_loop(true); in BM_PumpUnbalancedUnary_Trickle() 432 inner_loop(false); in BM_PumpUnbalancedUnary_Trickle()
|
/external/tensorflow/tensorflow/compiler/xla/service/mlir_gpu/experimental/conv_emitter/ |
D | conv_emitter.cc | 245 auto inner_loop = in TileLoop() local 248 auto& inner_operations = inner_loop.getBody()->getOperations(); in TileLoop() 265 affine_map.operands.push_back(inner_loop.getInductionVar()); in TileLoop() 282 return inner_loop; in TileLoop()
|
/external/v8/src/compiler/ |
D | loop-peeling.cc | 309 for (LoopTree::Loop* inner_loop : loop->children()) { in PeelInnerLoops() 310 PeelInnerLoops(inner_loop); in PeelInnerLoops()
|
/external/angle/third_party/spirv-tools/src/source/opt/ |
D | register_pressure.cpp | 200 for (const Loop* inner_loop : loop) { in DoLoopLivenessUnification() local 202 reg_pressure_->Get(inner_loop->GetHeaderBlock()); in DoLoopLivenessUnification() 206 DoLoopLivenessUnification(*inner_loop); in DoLoopLivenessUnification()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | register_pressure.cpp | 200 for (const Loop* inner_loop : loop) { in DoLoopLivenessUnification() local 202 reg_pressure_->Get(inner_loop->GetHeaderBlock()); in DoLoopLivenessUnification() 206 DoLoopLivenessUnification(*inner_loop); in DoLoopLivenessUnification()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | register_pressure.cpp | 200 for (const Loop* inner_loop : loop) { in DoLoopLivenessUnification() local 202 reg_pressure_->Get(inner_loop->GetHeaderBlock()); in DoLoopLivenessUnification() 206 DoLoopLivenessUnification(*inner_loop); in DoLoopLivenessUnification()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | 2008-04-10-ScavengerAssert.ll | 204 br i1 false, label %inner_loop.exit, label %cond_next85 205 inner_loop.exit: ; preds = %cond_true56 211 cond_false96: ; preds = %inner_loop.exit 213 cond_next104: ; preds = %inner_loop.exit
|
D | coalesce-subregs.ll | 201 br i1 undef, label %after_inner_loop, label %inner_loop 203 inner_loop: 204 br i1 true, label %after_inner_loop, label %inner_loop 208 %inner_loop ]
|
/external/llvm/test/CodeGen/ARM/ |
D | 2008-04-10-ScavengerAssert.ll | 204 br i1 false, label %inner_loop.exit, label %cond_next85 205 inner_loop.exit: ; preds = %cond_true56 211 cond_false96: ; preds = %inner_loop.exit 213 cond_next104: ; preds = %inner_loop.exit
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | break-false-dep.ll | 317 br label %inner_loop 319 inner_loop: 320 %phi = phi i64 [ %phi_k, %loop ], [ %nextk, %inner_loop ] 329 br i1 %cmp, label %inner_loop, label %loop_end
|