comparison src/share/vm/code/nmethod.cpp @ 17780:606acabe7b5c

8031320: Use Intel RTM instructions for locks Summary: Use RTM for inflated locks and stack locks. Reviewed-by: iveresov, twisti, roland, dcubed
author kvn
date Thu, 20 Mar 2014 17:49:27 -0700
parents df832bd8edb9
children 62c54fcc0a35
comparison
equal deleted inserted replaced
17778:a48e16541e6b 17780:606acabe7b5c
479 _jmethod_id = NULL; 479 _jmethod_id = NULL;
480 _osr_link = NULL; 480 _osr_link = NULL;
481 _scavenge_root_link = NULL; 481 _scavenge_root_link = NULL;
482 _scavenge_root_state = 0; 482 _scavenge_root_state = 0;
483 _compiler = NULL; 483 _compiler = NULL;
484 484 #if INCLUDE_RTM_OPT
485 _rtm_state = NoRTM;
486 #endif
485 #ifdef HAVE_DTRACE_H 487 #ifdef HAVE_DTRACE_H
486 _trap_offset = 0; 488 _trap_offset = 0;
487 #endif // def HAVE_DTRACE_H 489 #endif // def HAVE_DTRACE_H
488 } 490 }
489 491