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

/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp1280 DivModINode* divmod = new (C) DivModINode(n->in(0), n->in(1), n->in(2)); local
1281 Node* dproj = new (C) ProjNode(divmod, DivModNode::div_proj_num);
1282 Node* mproj = new (C) ProjNode(divmod, DivModNode::mod_proj_num);
1283 return divmod;
1292 DivModLNode* divmod = new (C) DivModLNode(n->in(0), n->in(1), n->in(2)); local
1293 Node* dproj = new (C) ProjNode(divmod, DivModNode::div_proj_num);
1294 Node* mproj = new (C) ProjNode(divmod, DivModNode::mod_proj_num);
1295 return divmod;
H A Dcompile.cpp2809 // Replace them with a fused divmod if supported
2811 DivModINode* divmod = DivModINode::make(this, n); local
2812 d->subsume_by(divmod->div_proj(), this);
2813 n->subsume_by(divmod->mod_proj(), this);
2829 // Replace them with a fused divmod if supported
2831 DivModLNode* divmod = DivModLNode::make(this, n); local
2832 d->subsume_by(divmod->div_proj(), this);
2833 n->subsume_by(divmod->mod_proj(), this);

Completed in 414 milliseconds