comparison src/share/vm/interpreter/interpreter.cpp @ 1644:2a47bd84841f

6965184: possible races in make_not_entrant_or_zombie Reviewed-by: kvn
author never
date Thu, 08 Jul 2010 14:29:44 -0700
parents 136b78722a08
children 126ea7725993
comparison
equal deleted inserted replaced
1635:a693e51ac197 1644:2a47bd84841f
97 #ifndef PRODUCT 97 #ifndef PRODUCT
98 if (TraceBytecodes) BytecodeTracer::set_closure(BytecodeTracer::std_closure()); 98 if (TraceBytecodes) BytecodeTracer::set_closure(BytecodeTracer::std_closure());
99 #endif // PRODUCT 99 #endif // PRODUCT
100 // need to hit every safepoint in order to call zapping routine 100 // need to hit every safepoint in order to call zapping routine
101 // register the interpreter 101 // register the interpreter
102 VTune::register_stub(
103 "Interpreter",
104 AbstractInterpreter::code()->code_start(),
105 AbstractInterpreter::code()->code_end()
106 );
107 Forte::register_stub( 102 Forte::register_stub(
108 "Interpreter", 103 "Interpreter",
109 AbstractInterpreter::code()->code_start(), 104 AbstractInterpreter::code()->code_start(),
110 AbstractInterpreter::code()->code_end() 105 AbstractInterpreter::code()->code_end()
111 ); 106 );