Home
last modified time | relevance | path

Searched refs:i100 (Results 1 – 25 of 35) sorted by relevance

12

/external/swiftshader/third_party/LLVM/test/Transforms/SCCP/
Dapint-basictest4.ll7 ; RUN: opt < %s -sccp -S | grep {ret i100 -1}
9 define i100 @test(i133 %A) {
15 %t4 = trunc i133 %t3 to i100
20 %f3 = trunc i133 %f2 to i100
23 %Ret = phi i100 [%t4, %BB1], [%f3, %BB2]
24 ret i100 %Ret
/external/llvm/test/Transforms/SCCP/
Dapint-basictest4.ll7 ; RUN: opt < %s -sccp -S | grep "ret i100 -1"
9 define i100 @test(i133 %A) {
15 %t4 = trunc i133 %t3 to i100
20 %f3 = trunc i133 %f2 to i100
23 %Ret = phi i100 [%t4, %BB1], [%f3, %BB2]
24 ret i100 %Ret
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/
D2009-11-16-BadKillsCrash.ll36 bb1.i100: ; preds = %invcont38
40 bb.i97: ; preds = %bb1.i100
43 bb1.i: ; preds = %bb1.i100
63 br i1 false, label %bb1.i100, label %invcont24
DAPIntLoadStore.ll200 @i100_l = external global i100 ; <i100*> [#uses=1]
201 @i100_s = external global i100 ; <i100*> [#uses=1]
1110 %tmp = load i100* @i100_l ; <i100> [#uses=1]
1111 store i100 %tmp, i100* @i100_s
/external/llvm/test/CodeGen/Generic/
D2009-11-16-BadKillsCrash.ll34 bb1.i100: ; preds = %invcont38
38 bb.i97: ; preds = %bb1.i100
41 bb1.i: ; preds = %bb1.i100
61 br i1 false, label %bb1.i100, label %invcont24
DAPIntLoadStore.ll200 @i100_l = external global i100 ; <i100*> [#uses=1]
201 @i100_s = external global i100 ; <i100*> [#uses=1]
1110 %tmp = load i100, i100* @i100_l ; <i100> [#uses=1]
1111 store i100 %tmp, i100* @i100_s
DAPIntSextParam.ll101 @i100_s = external global i100 ; <i100*> [#uses=1]
754 define void @i100_ls(i100 signext %x) nounwind {
755 store i100 %x, i100* @i100_s
/external/llvm/test/CodeGen/X86/
Davx512-mask-bugfix.ll25 br i1 %allon.i.i76, label %check_neighbors.i.i121, label %domixed.i.i100
27 domixed.i.i100:
/external/llvm/test/CodeGen/ARM/
D2009-07-01-CommuteBug.ll70 %cj.811.i = phi i32 [ undef, %bb.nph.i98 ], [ %cj.11.i100, %bb218.i ] ; <i32> [#uses=3]
98 %cj.11.i100 = select i1 undef, i32 %fj.4.i, i32 undef ; <i32> [#uses=2]
103 store i32 %cj.11.i100, i32* %scevgep89.i, align 4
D2009-06-30-RegScavengerAssert3.ll95 %cj.11.i100 = select i1 %6, i32 %fj.4.i, i32 %5 ; <i32> [#uses=1]
101 store i32 %cj.11.i100, i32* %scevgep89.i, align 4
D2009-06-30-RegScavengerAssert4.ll75 %cj.811.i = phi i32 [ %6, %bb.nph.i98 ], [ %cj.11.i100, %bb218.i ] ; <i32> [#uses=3]
101 %cj.11.i100 = select i1 undef, i32 %fj.4.i, i32 undef ; <i32> [#uses=1]
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
D2009-07-01-CommuteBug.ll70 %cj.811.i = phi i32 [ undef, %bb.nph.i98 ], [ %cj.11.i100, %bb218.i ] ; <i32> [#uses=3]
98 %cj.11.i100 = select i1 undef, i32 %fj.4.i, i32 undef ; <i32> [#uses=2]
103 store i32 %cj.11.i100, i32* %scevgep89.i, align 4
D2009-06-30-RegScavengerAssert4.ll75 %cj.811.i = phi i32 [ %6, %bb.nph.i98 ], [ %cj.11.i100, %bb218.i ] ; <i32> [#uses=3]
101 %cj.11.i100 = select i1 undef, i32 %fj.4.i, i32 undef ; <i32> [#uses=1]
D2009-06-30-RegScavengerAssert3.ll95 %cj.11.i100 = select i1 %6, i32 %fj.4.i, i32 %5 ; <i32> [#uses=1]
101 store i32 %cj.11.i100, i32* %scevgep89.i, align 4
/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
Dis_heap.pass.cpp179 int i100[] = {1, 0, 1, 0, 1, 1}; in test() local
242 assert(std::is_heap(i100, i100+6) == (std::is_heap_until(i100, i100+6) == i100+6)); in test()
Dis_heap_until.pass.cpp179 int i100[] = {1, 0, 1, 0, 1, 1}; in test() local
242 assert(std::is_heap_until(i100, i100+6) == i100+4); in test()
Dis_heap_until_comp.pass.cpp180 int i100[] = {1, 0, 1, 0, 1, 1}; in test() local
243 assert(std::is_heap_until(i100, i100+6, std::greater<int>()) == i100+1); in test()
Dis_heap_comp.pass.cpp180 int i100[] = {1, 0, 1, 0, 1, 1}; in test() local
243 …assert(std::is_heap(i100, i100+6, std::greater<int>()) == (std::is_heap_until(i100, i100+6, std::g… in test()
/external/swiftshader/third_party/LLVM/test/Transforms/JumpThreading/
Dcrash.ll406 %storemerge = phi i8 [ undef, %cond.true.i100 ], [ 22, %lbl_596 ] ; <i8> [#uses=1]
407 %l_678.5 = phi i64 [ %l_678.3, %cond.true.i100 ], [ undef, %lbl_596 ] ; <i64> [#uses=2]
414 br i1 %tobool118, label %cond.true.i100, label %lbl_596
416 cond.true.i100: ; preds = %for.inc120
D2010-08-26-and.ll113 %tmp14.i100 = and i8 %tmp2.i99, 1 ; <i8> [#uses=1]
114 %tobool.i101 = icmp eq i8 %tmp14.i100, 0 ; <i1> [#uses=1]
/external/llvm/test/Transforms/JumpThreading/
Dcrash.ll406 %storemerge = phi i8 [ undef, %cond.true.i100 ], [ 22, %lbl_596 ] ; <i8> [#uses=1]
407 %l_678.5 = phi i64 [ %l_678.3, %cond.true.i100 ], [ undef, %lbl_596 ] ; <i64> [#uses=2]
414 br i1 %tobool118, label %cond.true.i100, label %lbl_596
416 cond.true.i100: ; preds = %for.inc120
D2010-08-26-and.ll113 %tmp14.i100 = and i8 %tmp2.i99, 1 ; <i8> [#uses=1]
114 %tobool.i101 = icmp eq i8 %tmp14.i100, 0 ; <i1> [#uses=1]
/external/r8/src/test/examples/regalloc/
DRegAlloc.java143 int i099 = identity(99); int i100 = identity(100); int i101 = identity(101); in binaryOpUsingHighRegistersLocals() local
212 i096 + i097 + i098 + i099 + i100 + i101 + i102 + i103 + i104 + i105 + i106 + i107 + in binaryOpUsingHighRegistersLocals()
267 double i099 = identity(99.0); double i100 = identity(100.0); double i101 = identity(101.0); in binaryDoubleOpUsingHighRegistersLocals() local
333 i096 + i097 + i098 + i099 + i100 + i101 + i102 + i103 + i104 + i105 + i106 + i107 + in binaryDoubleOpUsingHighRegistersLocals()
/external/r8/src/test/examples/invoke/
DInvoke.java343 int i93, int i94, int i95, int i96, int i97, int i98, int i99, int i100, int i101, in manyArgs() argument
390 int i98 = 98; int i99 = 99; int i100 = 100; int i101 = 101; int i102 = 102; in rangeInvokeWithManyLocals() local
430 i96, i97, i98, i99, i100, i101, i102, i103, i104, i105, i106, i107, i108, i109, i110, in rangeInvokeWithManyLocals()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dfold-pcmpeqd-0.ll57 %andnps192.i100 = and <4 x i32> %bitcast190.i98, zeroinitializer ; <<4 x i32>> [#uses=1]
59 %orps203.i103 = or <4 x i32> %andnps192.i100, %xorps.i102 ; <<4 x i32>> [#uses=1]

12