Searched defs:addx (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp185 Node *addx = add2->clone(); local
186 addx->set_req(1, in(1));
187 addx->set_req(2, add2->in(1));
188 addx = phase->transform(addx);
189 set_req(1, addx);
H A DloopTransform.cpp240 Node* addx; local
242 addx = new (phase->C) SubINode(inv, x);
244 addx = new (phase->C) AddINode(x, inv);
246 phase->register_new_node(addx, phase->get_ctrl(x));
247 phase->_igvn.replace_node(n1, addx);
250 return addx;

Completed in 31 milliseconds