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

src/share/vm/interpreter/cppInterpreter.cpp

Print this page

        

*** 25,34 **** --- 25,35 ---- #include "precompiled.hpp" #include "interpreter/bytecodeInterpreter.hpp" #include "interpreter/cppInterpreterGenerator.hpp" #include "interpreter/interpreter.hpp" #include "interpreter/interpreterRuntime.hpp" + #include "logging/log.hpp" #ifdef CC_INTERP #ifdef ZERO # include "entry_zero.hpp"
*** 40,50 **** if (_code != NULL) return; AbstractInterpreter::initialize(); // generate interpreter { ResourceMark rm; ! TraceTime timer("Interpreter generation", TraceStartupTime); 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); --- 41,53 ---- if (_code != NULL) return; AbstractInterpreter::initialize(); // generate interpreter { ResourceMark rm; ! TraceTime timer("Interpreter generation", ! log_is_enabled(Info, startuptime), ! LogTag::_startuptime); 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