Lines Matching full:auto
76 auto x = builder.Arguments(1); in HWTEST_F_L0()
77 auto const_i64_0 = builder.Int64(0); in HWTEST_F_L0()
78 auto test_x_add_0 = builder.Int64Add(x, const_i64_0); in HWTEST_F_L0()
83 auto const_i64_1 = builder.Int64(1); in HWTEST_F_L0()
84 auto const_i64_2 = builder.Int64(2); in HWTEST_F_L0()
85 auto result = instcombie.VisitGate(builder.Int64Add(const_i64_1, const_i64_2)); in HWTEST_F_L0()
90 auto const_i64_max = builder.Int64(9223372036854775807); in HWTEST_F_L0()
91 auto const_i64_1 = builder.Int64(1); in HWTEST_F_L0()
92 auto result = instcombie.VisitGate(builder.Int64Add(const_i64_max, const_i64_1)); in HWTEST_F_L0()
100 auto y = builder.Arguments(2); in HWTEST_F_L0()
101 auto const_i64_max = builder.Int64(9223372036854775807); in HWTEST_F_L0()
102 auto const_i64_1 = builder.Int64(1); in HWTEST_F_L0()
103 …auto result = instcombie.VisitGate(builder.Int64Add(builder.Int64Add(y, const_i64_max), const_i64_… in HWTEST_F_L0()
110 auto z = builder.Arguments(3); in HWTEST_F_L0()
111 auto const_i64_1 = builder.Int64(1); in HWTEST_F_L0()
112 auto const_i64_2 = builder.Int64(2); in HWTEST_F_L0()
113 auto z_add_1 = builder.Int64Add(z, const_i64_1); in HWTEST_F_L0()
114 auto intfer = builder.Int64Add(z_add_1, z_add_1); in HWTEST_F_L0()
116 auto result = instcombie.VisitGate(builder.Int64Add(z_add_1, const_i64_2)); in HWTEST_F_L0()
136 auto x = builder.Arguments(1); in HWTEST_F_L0()
137 auto const_i32_0 = builder.Int32(0); in HWTEST_F_L0()
138 auto test_x_add_0 = builder.Int32Add(x, const_i32_0); in HWTEST_F_L0()
144 auto const_i32_1 = builder.Int32(1); in HWTEST_F_L0()
145 auto const_i32_2 = builder.Int32(2); in HWTEST_F_L0()
146 auto result = instcombie.VisitGate(builder.Int32Add(const_i32_1, const_i32_2)); in HWTEST_F_L0()
152 auto const_i32_max = builder.Int32(2147483647); in HWTEST_F_L0()
153 auto const_i32_1 = builder.Int32(1); in HWTEST_F_L0()
154 auto result = instcombie.VisitGate(builder.Int32Add(const_i32_max, const_i32_1)); in HWTEST_F_L0()
163 auto x = builder.Arguments(2); in HWTEST_F_L0()
164 auto y = builder.Arguments(3); in HWTEST_F_L0()
165 auto zero = builder.Int32(0); in HWTEST_F_L0()
166 auto result = instcombie.VisitGate(builder.Int32Add(builder.Int32Sub(zero, x), y)); in HWTEST_F_L0()
174 auto x = builder.Arguments(4); in HWTEST_F_L0()
175 auto y = builder.Arguments(5); in HWTEST_F_L0()
176 auto zero = builder.Int32(0); in HWTEST_F_L0()
177 auto result = instcombie.VisitGate(builder.Int32Add(y, builder.Int32Sub(zero, x))); in HWTEST_F_L0()
186 auto y = builder.Arguments(6); in HWTEST_F_L0()
187 auto const_1 = builder.Int32(1); in HWTEST_F_L0()
188 auto const_2 = builder.Int32(2); in HWTEST_F_L0()
189 auto result = instcombie.VisitGate(builder.Int32Add(builder.Int32Add(y, const_1), const_2)); in HWTEST_F_L0()
197 auto y = builder.Arguments(6); in HWTEST_F_L0()
198 auto const_1 = builder.Int32(2147483647); in HWTEST_F_L0()
199 auto const_2 = builder.Int32(1); in HWTEST_F_L0()
200 auto result = instcombie.VisitGate(builder.Int32Add(builder.Int32Add(y, const_1), const_2)); in HWTEST_F_L0()
223 auto x = builder.Arguments(1); in HWTEST_F_L0()
224 auto const_i64_0 = builder.Int64(0); in HWTEST_F_L0()
225 auto test_x_add_0 = builder.Int64Sub(x, const_i64_0); in HWTEST_F_L0()
230 auto const_i64_1 = builder.Int64(1); in HWTEST_F_L0()
231 auto const_i64_2 = builder.Int64(2); in HWTEST_F_L0()
232 auto result = instcombie.VisitGate(builder.Int64Sub(const_i64_1, const_i64_2)); in HWTEST_F_L0()
238 auto const_i64_min = builder.Int64(-9223372036854775807 - 1); // -9223372036854775808 in HWTEST_F_L0()
239 auto const_i64_1 = builder.Int64(1); in HWTEST_F_L0()
240 auto result = instcombie.VisitGate(builder.Int64Sub(const_i64_min, const_i64_1)); in HWTEST_F_L0()
250 auto x = builder.Arguments(2); in HWTEST_F_L0()
251 auto result = instcombie.VisitGate(builder.Int64Sub(x, x)); in HWTEST_F_L0()
257 auto x = builder.Arguments(3); in HWTEST_F_L0()
258 auto const_1 = builder.Int64(-1); in HWTEST_F_L0()
259 auto result = instcombie.VisitGate(builder.Int64Sub(x, const_1)); in HWTEST_F_L0()
267 auto x = builder.Arguments(3); in HWTEST_F_L0()
268 auto const_min = builder.Int64(INT64_MIN); // Minimum int64_t value in HWTEST_F_L0()
269 auto result = instcombie.VisitGate(builder.Int64Sub(x, const_min)); in HWTEST_F_L0()
295 auto x = builder.Arguments(1); in HWTEST_F_L0()
296 auto const_i32_0 = builder.Int32(0); in HWTEST_F_L0()
297 auto test_x_add_0 = builder.Int32Sub(x, const_i32_0); in HWTEST_F_L0()
302 auto const_i32_1 = builder.Int32(1); in HWTEST_F_L0()
303 auto const_i32_2 = builder.Int32(2); in HWTEST_F_L0()
304 auto result = instcombie.VisitGate(builder.Int32Sub(const_i32_1, const_i32_2)); in HWTEST_F_L0()
310 auto const_i32_min = builder.Int32(-2147483647 - 1); // -2147483648 in HWTEST_F_L0()
311 auto const_i32_1 = builder.Int32(1); in HWTEST_F_L0()
312 auto result = instcombie.VisitGate(builder.Int32Sub(const_i32_min, const_i32_1)); in HWTEST_F_L0()
321 auto x = builder.Arguments(2); in HWTEST_F_L0()
322 auto result = instcombie.VisitGate(builder.Int32Sub(x, x)); in HWTEST_F_L0()
328 auto x = builder.Arguments(3); in HWTEST_F_L0()
329 auto const_1 = builder.Int32(-1); in HWTEST_F_L0()
330 auto result = instcombie.VisitGate(builder.Int32Sub(x, const_1)); in HWTEST_F_L0()
339 auto x = builder.Arguments(3); in HWTEST_F_L0()
340 auto const_min = builder.Int32(INT32_MIN); // Minimum int32_t value in HWTEST_F_L0()
341 auto result = instcombie.VisitGate(builder.Int32Sub(x, const_min)); in HWTEST_F_L0()
368 auto x = b.Arguments(1); in HWTEST_F_L0()
369 auto const_0 = b.Int64(0); in HWTEST_F_L0()
370 auto result = b.Int64Mul(x, const_0); in HWTEST_F_L0()
375 auto x = b.Arguments(1); in HWTEST_F_L0()
376 auto const_1 = b.Int64(1); in HWTEST_F_L0()
377 auto result = b.Int64Mul(x, const_1); in HWTEST_F_L0()
383 auto const_1 = b.Int64(1); in HWTEST_F_L0()
384 auto const_2 = b.Int64(2); in HWTEST_F_L0()
385 auto result = instcombie.VisitGate(b.Int64Mul(const_1, const_2)); in HWTEST_F_L0()
390 auto const_i64_max = b.Int64(9223372036854775807); // Max int64_t value in HWTEST_F_L0()
391 auto const_i64_2 = b.Int64(2); in HWTEST_F_L0()
392 auto result = instcombie.VisitGate(b.Int64Mul(const_i64_max, const_i64_2)); in HWTEST_F_L0()
401 auto x = b.Arguments(2); in HWTEST_F_L0()
402 auto result = instcombie.VisitGate(b.Int64Mul(x, b.Int64(-1))); in HWTEST_F_L0()
412 auto x = b.Arguments(3); in HWTEST_F_L0()
413 auto const_4 = b.Int64(4); in HWTEST_F_L0()
414 auto result = instcombie.VisitGate(b.Int64Mul(x, const_4)); in HWTEST_F_L0()
423 auto x = b.Arguments(4); in HWTEST_F_L0()
424 auto const_4 = b.Int64(4); in HWTEST_F_L0()
425 auto const_5 = b.Int64(5); in HWTEST_F_L0()
426 auto result = instcombie.VisitGate(b.Int64Mul(b.Int64Mul(x, const_4), const_5)); in HWTEST_F_L0()
434 auto x = b.Arguments(4); in HWTEST_F_L0()
435 auto const_almost_max = b.Int64(INT64_MAX - 1); // INT64_MAX - 1 in HWTEST_F_L0()
436 auto const_3 = b.Int64(3); in HWTEST_F_L0()
437 auto result = instcombie.VisitGate(b.Int64Mul(b.Int64Mul(x, const_almost_max), const_3)); in HWTEST_F_L0()
464 auto x = b.Arguments(1); in HWTEST_F_L0()
465 auto const_0 = b.Int32(0); in HWTEST_F_L0()
466 auto result = b.Int32Mul(x, const_0); in HWTEST_F_L0()
471 auto x = b.Arguments(1); in HWTEST_F_L0()
472 auto const_1 = b.Int32(1); in HWTEST_F_L0()
473 auto result = b.Int32Mul(x, const_1); in HWTEST_F_L0()
480 auto const_1 = b.Int32(1); in HWTEST_F_L0()
481 auto const_2 = b.Int32(2); in HWTEST_F_L0()
482 auto result = instcombie.VisitGate(b.Int32Mul(const_1, const_2)); in HWTEST_F_L0()
489 auto const_i32_max = b.Int32(2147483647); // Max int32_t value in HWTEST_F_L0()
490 auto const_i32_2 = b.Int32(2); in HWTEST_F_L0()
491 auto result = instcombie.VisitGate(b.Int32Mul(const_i32_max, const_i32_2)); in HWTEST_F_L0()
502 auto x = b.Arguments(2); in HWTEST_F_L0()
503 auto result = instcombie.VisitGate(b.Int32Mul(x, b.Int32(-1))); in HWTEST_F_L0()
514 auto x = b.Arguments(3); in HWTEST_F_L0()
515 auto const_4 = b.Int32(4); in HWTEST_F_L0()
516 auto result = instcombie.VisitGate(b.Int32Mul(x, const_4)); in HWTEST_F_L0()
526 auto x = b.Arguments(4); in HWTEST_F_L0()
527 auto const_4 = b.Int32(4); in HWTEST_F_L0()
528 auto const_5 = b.Int32(5); in HWTEST_F_L0()
529 auto result = instcombie.VisitGate(b.Int32Mul(b.Int32Mul(x, const_4), const_5)); in HWTEST_F_L0()
538 auto x = b.Arguments(4); in HWTEST_F_L0()
539 auto const_almost_max = b.Int32(INT32_MAX - 1); // INT32_MAX - 1 in HWTEST_F_L0()
540 auto const_3 = b.Int32(3); in HWTEST_F_L0()
541 auto result = instcombie.VisitGate(b.Int32Mul(b.Int32Mul(x, const_almost_max), const_3)); in HWTEST_F_L0()
569 auto x = b.Arguments(1); in HWTEST_F_L0()
570 auto const_0 = b.Int64(0); in HWTEST_F_L0()
571 auto result = b.Int64Div(const_0, x); in HWTEST_F_L0()
578 auto x = b.Arguments(1); in HWTEST_F_L0()
579 auto const_0 = b.Int64(0); in HWTEST_F_L0()
580 auto result = b.Int64Div(x, const_0); in HWTEST_F_L0()
586 auto x = b.Arguments(1); in HWTEST_F_L0()
587 auto const_1 = b.Int64(1); in HWTEST_F_L0()
588 auto result = b.Int64Div(x, const_1); in HWTEST_F_L0()
594 auto const_4 = b.Int64(4); in HWTEST_F_L0()
595 auto const_2 = b.Int64(2); in HWTEST_F_L0()
596 auto result = instcombie.VisitGate(b.Int64Div(const_4, const_2)); in HWTEST_F_L0()
603 auto x = b.Arguments(2); in HWTEST_F_L0()
604 auto result = instcombie.VisitGate(b.Int64Div(x, b.Int64(-1))); in HWTEST_F_L0()
616 auto x = b.Arguments(2); in HWTEST_F_L0()
617 auto result = instcombie.VisitGate(b.Int64Div(x, b.Int64(-5))); in HWTEST_F_L0()
646 auto x = b.Arguments(1); in HWTEST_F_L0()
647 auto const_0 = b.Int32(0); in HWTEST_F_L0()
648 auto result = b.Int32Div(const_0, x); in HWTEST_F_L0()
655 auto x = b.Arguments(1); in HWTEST_F_L0()
656 auto const_0 = b.Int32(0); in HWTEST_F_L0()
657 auto result = b.Int32Div(x, const_0); in HWTEST_F_L0()
663 auto x = b.Arguments(1); in HWTEST_F_L0()
664 auto const_1 = b.Int32(1); in HWTEST_F_L0()
665 auto result = b.Int32Div(x, const_1); in HWTEST_F_L0()
671 auto const_4 = b.Int32(4); in HWTEST_F_L0()
672 auto const_2 = b.Int32(2); in HWTEST_F_L0()
673 auto result = instcombie.VisitGate(b.Int32Div(const_4, const_2)); in HWTEST_F_L0()
681 auto x = b.Arguments(2); in HWTEST_F_L0()
682 auto result = instcombie.VisitGate(b.Int32Div(x, b.Int32(-1))); in HWTEST_F_L0()
693 auto x = b.Arguments(2); in HWTEST_F_L0()
694 auto result = instcombie.VisitGate(b.Int32Div(x, b.Int32(-5))); in HWTEST_F_L0()
723 auto x = b.Arguments(1); in HWTEST_F_L0()
724 auto nan = b.NanValue(); in HWTEST_F_L0()
725 auto zero = b.Double(0); in HWTEST_F_L0()
739 auto x = b.Arguments(1); in HWTEST_F_L0()
740 auto nan = b.NanValue(); in HWTEST_F_L0()
749 auto value1 = b.Double(10.1); in HWTEST_F_L0()
750 auto value2 = b.Double(5.2); in HWTEST_F_L0()
751 auto result = instcombie.VisitGate(b.DoubleAdd(value1, value2)); in HWTEST_F_L0()
770 auto x = b.Arguments(1); in HWTEST_F_L0()
771 auto neg_one = b.Double(-1); in HWTEST_F_L0()
772 auto result = instcombie.VisitGate(b.DoubleMul(x, neg_one)); in HWTEST_F_L0()
783 auto x = b.Arguments(1); in HWTEST_F_L0()
784 auto two = b.Double(2.0); in HWTEST_F_L0()
785 auto result = instcombie.VisitGate(b.DoubleMul(x, two)); in HWTEST_F_L0()
806 auto x = b.Arguments(1); in HWTEST_F_L0()
807 auto zero = b.Int32(0); in HWTEST_F_L0()
808 auto one = b.Int32(1); in HWTEST_F_L0()
809 auto neg_one = b.Int32(-1); in HWTEST_F_L0()
810 auto four = b.Int32(4); in HWTEST_F_L0()
811 auto two = b.Int32(2); in HWTEST_F_L0()
844 auto add_overflow = b.AddWithOverflow(b.Int32(2147483647), b.Int32(1)); in HWTEST_F_L0()
845 … auto add_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, add_overflow, b.Int32(0)); in HWTEST_F_L0()
846 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, add_overflow, b.Int32(1)); in HWTEST_F_L0()
853 auto add_overflow = b.AddWithOverflow(b.Int32(2147483646), b.Int32(1)); in HWTEST_F_L0()
854 … auto add_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, add_overflow, b.Int32(0)); in HWTEST_F_L0()
855 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, add_overflow, b.Int32(1)); in HWTEST_F_L0()
864 auto x = b.Arguments(1); in HWTEST_F_L0()
865 auto add_overflow = b.AddWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()
866 … auto add_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, add_overflow, b.Int32(0)); in HWTEST_F_L0()
867 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, add_overflow, b.Int32(1)); in HWTEST_F_L0()
889 auto sub_overflow = b.SubWithOverflow(b.Int32(-2147483648), b.Int32(1)); in HWTEST_F_L0()
890 … auto sub_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, sub_overflow, b.Int32(0)); in HWTEST_F_L0()
891 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, sub_overflow, b.Int32(1)); in HWTEST_F_L0()
898 auto sub_overflow = b.SubWithOverflow(b.Int32(2147483647), b.Int32(1)); in HWTEST_F_L0()
899 … auto sub_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, sub_overflow, b.Int32(0)); in HWTEST_F_L0()
900 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, sub_overflow, b.Int32(1)); in HWTEST_F_L0()
908 auto x = b.Arguments(1); in HWTEST_F_L0()
909 auto sub_overflow = b.SubWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()
910 … auto sub_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, sub_overflow, b.Int32(0)); in HWTEST_F_L0()
911 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, sub_overflow, b.Int32(1)); in HWTEST_F_L0()
933 auto mul_overflow = b.MulWithOverflow(b.Int32(2147483647), b.Int32(2)); in HWTEST_F_L0()
934 … auto mul_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, mul_overflow, b.Int32(0)); in HWTEST_F_L0()
935 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, mul_overflow, b.Int32(1)); in HWTEST_F_L0()
943 auto mul_overflow = b.MulWithOverflow(b.Int32(1000), b.Int32(2)); in HWTEST_F_L0()
944 … auto mul_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, mul_overflow, b.Int32(0)); in HWTEST_F_L0()
945 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, mul_overflow, b.Int32(1)); in HWTEST_F_L0()
953 auto x = b.Arguments(1); in HWTEST_F_L0()
954 auto mul_overflow = b.MulWithOverflow(x, b.Int32(1)); in HWTEST_F_L0()
955 … auto mul_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, mul_overflow, b.Int32(0)); in HWTEST_F_L0()
956 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, mul_overflow, b.Int32(1)); in HWTEST_F_L0()
964 auto x = b.Arguments(1); in HWTEST_F_L0()
965 auto mul_overflow = b.MulWithOverflow(x, b.Int32(0)); in HWTEST_F_L0()
966 … auto mul_result = b.ExtractValue(ecmascript::kungfu::MachineType::I32, mul_overflow, b.Int32(0)); in HWTEST_F_L0()
967 … auto is_over = b.ExtractValue(ecmascript::kungfu::MachineType::I1, mul_overflow, b.Int32(1)); in HWTEST_F_L0()
986 auto x = b.Arguments(1); in HWTEST_F_L0()
987 auto zero = b.Int64(0); in HWTEST_F_L0()
988 auto neg_one = b.Int64(-1); in HWTEST_F_L0()
989 auto Icmp = b.Equal(x, zero); in HWTEST_F_L0()
990 auto one = b.Int64(1); in HWTEST_F_L0()
991 auto two = b.Int64(2); in HWTEST_F_L0()
998 auto result = instcombie.VisitGate(b.Int64And(b.Int64And(x, one), two)); in HWTEST_F_L0()
1007 auto x = b.Arguments(2); in HWTEST_F_L0()
1008 auto zero = b.Int32(0); in HWTEST_F_L0()
1009 auto neg_one = b.Int32(-1); in HWTEST_F_L0()
1010 auto Icmp = b.Equal(x, zero); in HWTEST_F_L0()
1011 auto one = b.Int32(1); in HWTEST_F_L0()
1012 auto two = b.Int32(2); in HWTEST_F_L0()
1019 auto result = instcombie.VisitGate(b.Int32And(b.Int32And(x, one), two)); in HWTEST_F_L0()
1041 auto x = b.Arguments(1); in HWTEST_F_L0()
1042 auto zero = b.Int64(0); in HWTEST_F_L0()
1043 auto neg_one = b.Int64(-1); in HWTEST_F_L0()
1044 auto one = b.Int64(1); in HWTEST_F_L0()
1045 auto two = b.Int64(2); in HWTEST_F_L0()
1046 auto three = b.Int64(3); in HWTEST_F_L0()
1052 auto result = instcombie.VisitGate( in HWTEST_F_L0()
1062 auto x = b.Arguments(1); in HWTEST_F_L0()
1063 auto zero = b.Int32(0); in HWTEST_F_L0()
1064 auto neg_one = b.Int32(-1); in HWTEST_F_L0()
1065 auto one = b.Int32(1); in HWTEST_F_L0()
1066 auto two = b.Int32(2); in HWTEST_F_L0()
1067 auto three = b.Int32(3); in HWTEST_F_L0()
1073 …auto result = instcombie.VisitGate(b.Int32Or(b.Int32And(x, b.Int32(-1431655765)), b.Int32(14316557… in HWTEST_F_L0()
1095 auto x = b.Arguments(1); in HWTEST_F_L0()
1096 auto zero = b.Int64(0); in HWTEST_F_L0()
1097 auto neg_one = b.Int64(-1); in HWTEST_F_L0()
1098 auto one = b.Int64(1); in HWTEST_F_L0()
1099 auto two = b.Int64(2); in HWTEST_F_L0()
1100 auto three = b.Int64(3); in HWTEST_F_L0()
1109 auto x = b.Arguments(1); in HWTEST_F_L0()
1110 auto zero = b.Int32(0); in HWTEST_F_L0()
1111 auto neg_one = b.Int32(-1); in HWTEST_F_L0()
1112 auto one = b.Int32(1); in HWTEST_F_L0()
1113 auto two = b.Int32(2); in HWTEST_F_L0()
1114 auto three = b.Int32(3); in HWTEST_F_L0()
1137 auto x = b.Arguments(1); in HWTEST_F_L0()
1138 auto zero = b.Int64(0); in HWTEST_F_L0()
1139 auto two = b.Int64(2); in HWTEST_F_L0()
1148 auto x = b.Arguments(1); in HWTEST_F_L0()
1149 auto zero = b.Int32(0); in HWTEST_F_L0()
1150 auto two = b.Int32(2); in HWTEST_F_L0()
1174 auto x = b.Arguments(1); in HWTEST_F_L0()
1175 auto zero = b.Int64(0); in HWTEST_F_L0()
1176 auto two = b.Int64(2); in HWTEST_F_L0()
1185 auto x = b.Arguments(1); in HWTEST_F_L0()
1186 auto zero = b.Int32(0); in HWTEST_F_L0()
1187 auto two = b.Int32(2); in HWTEST_F_L0()
1210 auto x = b.Arguments(1); in HWTEST_F_L0()
1211 auto zero = b.Int64(0); in HWTEST_F_L0()
1212 auto two = b.Int64(2); in HWTEST_F_L0()
1219 auto x = b.Arguments(1); in HWTEST_F_L0()
1220 auto zero = b.Int32(0); in HWTEST_F_L0()
1221 auto two = b.Int32(2); in HWTEST_F_L0()
1244 auto x = b.Arguments(1); in HWTEST_F_L0()
1245 auto constant1 = b.Int64(5); in HWTEST_F_L0()
1246 auto constant2 = b.Int64(10); in HWTEST_F_L0()
1247 auto result = instcombie.VisitGate(b.Equal(b.Int64Or(x, constant1), constant2)); in HWTEST_F_L0()
1253 auto x = b.Arguments(1); in HWTEST_F_L0()
1254 auto constant1 = b.Int64(5); in HWTEST_F_L0()
1255 auto constant2 = b.Int64(10); in HWTEST_F_L0()
1256 …auto result = instcombie.VisitGate(b.Equal(b.Int64ToTaggedPtr(b.Int64Or(x, constant1)), constant2)… in HWTEST_F_L0()
1261 auto x = b.Arguments(1); in HWTEST_F_L0()
1262 auto constant1 = b.Int64(15); in HWTEST_F_L0()
1263 auto constant2 = b.Int64(7); in HWTEST_F_L0()
1264 auto zero = b.Int64(0); in HWTEST_F_L0()
1265 … auto result = instcombie.VisitGate(b.Equal(b.Int64And(b.Int64Or(x, constant1), constant2), zero)); in HWTEST_F_L0()
1283 auto x = b.Arguments(1); in HWTEST_F_L0()
1287 auto x = b.Arguments(2); in HWTEST_F_L0()
1291 auto x = b.Arguments(3); in HWTEST_F_L0()