Searched defs:tst (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A DparseHelper.cpp226 Node *tst = Bool( CmpP( init_thread, cur_thread), BoolTest::eq); local
227 IfNode* iff = create_and_map_if(control(), tst, PROB_ALWAYS, COUNT_UNKNOWN);
237 tst = Bool( CmpI( init_state, being_init), BoolTest::eq);
238 iff = create_and_map_if(control(), tst, PROB_ALWAYS, COUNT_UNKNOWN);
327 Node *tst = _gvn.transform( new (C) BoolNode( chk, btest) ); local
329 { BuildCutout unless(this, tst, PROB_ALWAYS);
H A DgraphKit.hpp816 IfNode* create_and_map_if(Node* ctrl, Node* tst, float prob, float cnt) { argument
817 IfNode* iff = new (C) IfNode(ctrl, tst, prob, cnt);// New IfNode's
820 if (!tst->is_Con()) record_for_igvn(iff); // Range-check and Null-check removal is later
824 IfNode* create_and_xform_if(Node* ctrl, Node* tst, float prob, float cnt) { argument
825 IfNode* iff = new (C) IfNode(ctrl, tst, prob, cnt);// New IfNode's
828 if (!tst->is_Con()) record_for_igvn(iff); // Range-check and Null-check removal is later
H A Dparse1.cpp151 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) ); local
152 IfNode* iff = create_and_map_if(control(), tst, PROB_MAX, COUNT_UNKNOWN);
H A Dparse2.cpp119 Node* tst; local
123 // only works with non-negative lengths. Instead, hack "tst" to be zero so
125 tst = _gvn.intcon(0);
133 tst = _gvn.transform( new (C) BoolNode(chk, btest) );
136 { BuildCutout unless(this, tst, PROB_MAX);
170 Node *tst = _gvn.transform( new (C) BoolNode( cmp, mask)); local
171 IfNode *iff = create_and_map_if( control(), tst, ((mask == BoolTest::eq) ? PROB_STATIC_INFREQUENT : PROB_FAIR), COUNT_UNKNOWN );
448 Node* tst = _gvn.transform( new (C) BoolNode(cmp, BoolTest::ge) ); local
449 IfNode* iff = create_and_map_if( control(), tst, PROB_FAIR, COUNT_UNKNOWN);
1001 Node *tst local
1094 Node* tst = _gvn.transform(tst0); local
[all...]
H A DgraphKit.cpp500 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) ); local
503 { BuildCutout unless(this, tst, PROB_MAX);
1241 Node *tst = _gvn.transform( btst ); local
1246 if (tst != btst && type == T_OBJECT) {
1253 cfg->in(0)->in(1) == tst ) {
1306 IfNode* iff = create_and_map_if(control(), tst, ok_prob, COUNT_UNKNOWN);
1313 BuildCutout unless(this, tst, ok_prob);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp1806 // Condition (the one you would use to get the same effect after "tst" on
1996 inline void tst( Register s ) { orcc( G0, s, G0 ); } function in class:MacroAssembler

Completed in 90 milliseconds