Home
last modified time | relevance | path

Searched refs:constant2 (Results 1 - 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dinstruction_combine.cpp189 // Match {EQ ((x or constant1) , constant2)} {((constant1 | constant2) != constant2)} => false in VisitICMP()
202 uint64_t constant2 = static_cast<uint64_t>(m.Right().ResolvedValue()); in VisitICMP() local
203 bool flag = ((constant1 | constant2) != constant2); in VisitICMP()
212 // Match {EQ((X or constant1) & constant2, 0)} { (constan2 !=0 && constant1 & constant2 !=0) }=> false in VisitICMP()
218 auto constant2 = andOp.Right().ResolvedValue(); in VisitICMP() local
220 bool flag = (constant1 & constant2) ! in VisitICMP()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
H A Dinstruction_combine_test.cpp1242 // Match {EQ ((x or constant1) , constant2)} {((constant1 || constant2) != constant2)} => false in HWTEST_F_L0()
1246 auto constant2 = b.Int64(10); in HWTEST_F_L0() local
1247 auto result = instcombie.VisitGate(b.Equal(b.Int64Or(x, constant1), constant2)); in HWTEST_F_L0()
1255 auto constant2 = b.Int64(10); in HWTEST_F_L0() local
1256 auto result = instcombie.VisitGate(b.Equal(b.Int64ToTaggedPtr(b.Int64Or(x, constant1)), constant2)); in HWTEST_F_L0()
1259 // Match {EQ((X or constant1) & constant2, 0)} { (constan2 !=0 && constant1 & constant2 !=0) }=> false in HWTEST_F_L0()
1263 auto constant2 in HWTEST_F_L0() local
[all...]

Completed in 4 milliseconds