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

/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp287 int phi_x_idx = 0; // Index of phi input where to find naked x local
294 case BoolTest::lt: cmp_zero_idx = 1; phi_x_idx = IfTrue; break;
295 case BoolTest::le: cmp_zero_idx = 2; phi_x_idx = IfFalse; break;
296 case BoolTest::gt: cmp_zero_idx = 2; phi_x_idx = IfTrue; break;
297 case BoolTest::ge: cmp_zero_idx = 1; phi_x_idx = IfFalse; break;
317 if( X != in(phi_x_idx) ) return NULL;
318 int phi_sub_idx = phi_x_idx == IfTrue ? IfFalse : IfTrue;
343 int phi_x_idx = 0; // Index of phi input where to find naked x local
350 case BoolTest::lt: cmp_zero_idx = 1; phi_x_idx = IfTrue; break;
351 case BoolTest::le: cmp_zero_idx = 2; phi_x_idx
[all...]
H A Dcfgnode.cpp1331 int phi_x_idx = 0; // Index of phi input where to find naked x local
1343 case BoolTest::lt: cmp_zero_idx = 1; phi_x_idx = true_path; break;
1344 case BoolTest::le: cmp_zero_idx = 2; phi_x_idx = false_path; break;
1345 case BoolTest::gt: cmp_zero_idx = 2; phi_x_idx = true_path; break;
1346 case BoolTest::ge: cmp_zero_idx = 1; phi_x_idx = false_path; break;
1374 if( phi_root->in(phi_x_idx) != x ) return NULL;
1377 Node *sub = phi_root->in(3 - phi_x_idx);

Completed in 346 milliseconds