Lines Matching defs:chk
499 Node* chk = _gvn.transform( new (C) CmpINode(should_post_flag, intcon(0)) );
500 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) );
1179 Node *chk = NULL;
1181 case T_LONG : chk = new (C) CmpLNode(value, _gvn.zerocon(T_LONG)); break;
1182 case T_INT : chk = new (C) CmpINode(value, _gvn.intcon(0)); break;
1229 chk = new (C) CmpPNode( value, null() );
1236 assert(chk != NULL, "sanity check");
1237 chk = _gvn.transform(chk);
1240 BoolNode *btst = new (C) BoolNode( chk, btest);