Home
last modified time | relevance | path

Searched refs:Int32Compare (Results 1 – 3 of 3) sorted by relevance

/external/v8/test/cctest/compiler/
Dcodegen-tester.cc29 CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b)); in TEST()
30 CHECK_EQ(a < b, wInt32LessThan.Int32Compare(a, b)); in TEST()
31 CHECK_EQ(a <= b, wInt32LessThanOrEqual.Int32Compare(a, b)); in TEST()
41 CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b)); in TEST()
42 CHECK_EQ(a < b, wUint32LessThan.Int32Compare(a, b)); in TEST()
43 CHECK_EQ(a <= b, wUint32LessThanOrEqual.Int32Compare(a, b)); in TEST()
48 CHECK_EQ(true, wWord32Equal.Int32Compare(0, 0)); in TEST()
49 CHECK_EQ(true, wWord32Equal.Int32Compare(257, 257)); in TEST()
50 CHECK_EQ(true, wWord32Equal.Int32Compare(65539, 65539)); in TEST()
51 CHECK_EQ(true, wWord32Equal.Int32Compare(-1, -1)); in TEST()
[all …]
Dtest-branch-combine.cc320 if (invert) return !w.Int32Compare(a, b) ? 1 : 0; in expected()
321 return w.Int32Compare(a, b) ? 1 : 0; in expected()
356 if (invert) return !w.Int32Compare(a, b) ? eq_constant : ne_constant; in expected()
357 return w.Int32Compare(a, b) ? eq_constant : ne_constant; in expected()
Dcodegen-tester.h269 bool Int32Compare(int32_t a, int32_t b) { in Int32Compare() function