src/share/vm/interpreter/cppInterpreter.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/interpreter/cppInterpreter.cpp	Mon Feb 15 17:04:26 2016
--- new/src/share/vm/interpreter/cppInterpreter.cpp	Mon Feb 15 17:04:26 2016

*** 25,34 **** --- 25,35 ---- #include "precompiled.hpp" #include "interpreter/bytecodeInterpreter.hpp" #include "interpreter/cppInterpreterGenerator.hpp" #include "interpreter/interpreter.hpp" #include "interpreter/interpreterRuntime.hpp" + #include "runtime/logTimer.hpp" #ifdef CC_INTERP #ifdef ZERO # include "entry_zero.hpp"
*** 40,50 **** --- 41,51 ---- if (_code != NULL) return; AbstractInterpreter::initialize(); // generate interpreter { ResourceMark rm; ! TraceTime timer("Interpreter generation", TraceStartupTime); ! TraceStartupTime timer("Interpreter generation"); int code_size = InterpreterCodeSize; NOT_PRODUCT(code_size *= 4;) // debug uses extra interpreter code space _code = new StubQueue(new InterpreterCodeletInterface, code_size, NULL, "Interpreter"); CppInterpreterGenerator g(_code);

src/share/vm/interpreter/cppInterpreter.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File