src/share/vm/adlc/output_c.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8031320_9 Cdiff src/share/vm/adlc/output_c.cpp

src/share/vm/adlc/output_c.cpp

Print this page

        

*** 1580,1589 **** --- 1580,1591 ---- fprintf(fp, " ((MachIfNode*)n%d)->_fcnt = _fcnt;\n",cnt); } if( node->is_ideal_fastlock() && new_inst->is_ideal_fastlock() ) { fprintf(fp, " ((MachFastLockNode*)n%d)->_counters = _counters;\n",cnt); + fprintf(fp, " ((MachFastLockNode*)n%d)->_rtmcounters = _rtmcounters;\n",cnt); + fprintf(fp, " ((MachFastLockNode*)n%d)->_stackrtmcounters = _stackrtmcounters;\n",cnt); } // Fill in the bottom_type where requested if (node->captures_bottom_type(_globalNames) && new_inst->captures_bottom_type(_globalNames)) {
*** 3961,3970 **** --- 3963,3974 ---- fprintf(fp_cpp, "%s node->_prob = _leaf->as_If()->_prob;\n", indent); fprintf(fp_cpp, "%s node->_fcnt = _leaf->as_If()->_fcnt;\n", indent); } if( inst->is_ideal_fastlock() ) { fprintf(fp_cpp, "%s node->_counters = _leaf->as_FastLock()->counters();\n", indent); + fprintf(fp_cpp, "%s node->_rtmcounters = _leaf->as_FastLock()->rtmcounters();\n", indent); + fprintf(fp_cpp, "%s node->_stackrtmcounters = _leaf->as_FastLock()->stackrtmcounters();\n", indent); } } //---------------------------declare_cisc_version------------------------------
src/share/vm/adlc/output_c.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File