Lines Matching refs:btest
1954 BoolTest::mask btest = bol->as_Bool()->_test._test;
1955 if (ifproj->is_IfFalse()) btest = BoolTest(btest).negate();
1956 if (cmp->in(1) == ykey) btest = BoolTest(btest).commute();
1957 // At this point, we know that 'x btest y' is true.
1958 switch (btest) {
1985 BoolTest::mask btest = bol->as_Bool()->_test._test;
1986 if (btest == BoolTest::eq || btest == BoolTest::ne) continue;
1987 if (cmp->in(1) == ykey) btest = BoolTest(btest).commute();
1990 best_btest = btest;
3430 BoolTest::mask btest = BoolTest::lt; // correct for testing is_[obj]array
3432 if (not_array) btest = BoolTest(btest).negate();
3433 Node* bol = _gvn.transform( new(C) BoolNode(cmp, btest) );