< prev index next >

src/share/vm/opto/divnode.cpp

Print this page

        

*** 1309,1319 **** return divmod; } //------------------------------match------------------------------------------ // return result(s) along with their RegMask info ! Node *DivModINode::match( const ProjNode *proj, const Matcher *match ) { uint ideal_reg = proj->ideal_reg(); RegMask rm; if (proj->_con == div_proj_num) { rm = match->divI_proj_mask(); } else { --- 1309,1319 ---- return divmod; } //------------------------------match------------------------------------------ // return result(s) along with their RegMask info ! Node *DivModINode::match(const ProjNode *proj, const Matcher *match, const RegMask* mask) { uint ideal_reg = proj->ideal_reg(); RegMask rm; if (proj->_con == div_proj_num) { rm = match->divI_proj_mask(); } else {
*** 1324,1334 **** } //------------------------------match------------------------------------------ // return result(s) along with their RegMask info ! Node *DivModLNode::match( const ProjNode *proj, const Matcher *match ) { uint ideal_reg = proj->ideal_reg(); RegMask rm; if (proj->_con == div_proj_num) { rm = match->divL_proj_mask(); } else { --- 1324,1334 ---- } //------------------------------match------------------------------------------ // return result(s) along with their RegMask info ! Node *DivModLNode::match(const ProjNode *proj, const Matcher *match, const RegMask* mask) { uint ideal_reg = proj->ideal_reg(); RegMask rm; if (proj->_con == div_proj_num) { rm = match->divL_proj_mask(); } else {
< prev index next >