Searched refs:SubLNode (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp389 return new (phase->C) SubLNode(phase->makecon( add_ring( t_sub1, t_2 ) ),
396 Node *sub = new (phase->C) SubLNode(NULL, NULL);
414 return new (phase->C) SubLNode(in1->in(1), in2->in(2));
419 return new (phase->C) SubLNode(in2->in(1), in1->in(2));
425 return new (phase->C) SubLNode( in1, in2->in(2) );
429 return new (phase->C) SubLNode( in2, in1->in(2) );
H A Dsubnode.cpp261 Node *SubLNode::Ideal(PhaseGVN *phase, bool can_reshape) {
273 assert(false, "dead loop in SubLNode::Ideal");
290 Node *sub2 = phase->transform( new (phase->C) SubLNode( in11, in2 ));
302 Node* sub2 = phase->transform( new (phase->C) SubLNode(in1, in21) );
316 assert(false, "dead loop in SubLNode::Ideal");
322 return new (phase->C) SubLNode( phase->makecon(TypeLong::ZERO), in2->in(2));
326 return new (phase->C) SubLNode( phase->makecon(TypeLong::ZERO),in2->in(1));
330 return new (phase->C) SubLNode( in2->in(2), in2->in(1) );
334 return new (phase->C) SubLNode( in1->in(2), in2->in(2) );
338 return new (phase->C) SubLNode( in
[all...]
H A Ddivnode.cpp358 q = new (phase->C) SubLNode(phase->longcon(0), dividend);
408 q = new (phase->C) SubLNode(phase->longcon(0), phase->transform(q));
448 q = new (phase->C) SubLNode(addend0, addend1);
1064 Node *sub = phase->transform( new (phase->C) SubLNode( x, divisor ) );
1125 result = new (phase->C) SubLNode( in(1), mult );
H A Dsubnode.hpp80 //------------------------------SubLNode---------------------------------------
82 class SubLNode : public SubNode { class in inherits:SubNode
84 SubLNode( Node *in1, Node *in2 ) : SubNode(in1,in2) {} function in class:SubLNode
H A Dmulnode.cpp312 res = new (phase->C) SubLNode( n1, in(1) );
320 res = new (phase->C) SubLNode(phase->longcon(0),res);
H A Dparse2.cpp2076 c = _gvn.transform( new (C) SubLNode(a,b) );
2113 b = _gvn.transform( new (C) SubLNode(longcon(0),a));
H A Dtype.hpp1329 #define SubXNode SubLNode
H A Dconnode.cpp967 case Op_SubI: return new (phase->C) SubLNode(cx, cy);
H A Dcompile.cpp2837 Node* sub = new (this) SubLNode(d->in(1), mult);
H A Dloopnode.cpp965 Node *range = phase->transform(new (phase->C) SubLNode(limit, init));
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp1912 declare_c2_type(SubLNode, SubNode) \

Completed in 101 milliseconds