1 /*
   2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "interpreter/bytecodeInterpreter.hpp"
  27 #include "interpreter/cppInterpreterGenerator.hpp"
  28 #include "interpreter/interpreter.hpp"
  29 #include "interpreter/interpreterRuntime.hpp"
  30 #include "logging/log.hpp"
  31 
  32 #ifdef CC_INTERP
  33 
  34 #ifdef ZERO
  35 # include "entry_zero.hpp"
  36 #else
  37 #error "Only Zero CppInterpreter is supported"
  38 #endif
  39 
  40 void CppInterpreter::initialize() {
  41   if (_code != NULL) return;
  42   AbstractInterpreter::initialize();
  43 
  44   // generate interpreter
  45   { ResourceMark rm;
  46     TraceTime timer("Interpreter generation",
  47                     log_is_enabled(Info, startuptime),
  48                     LogTag::_startuptime);
  49     int code_size = InterpreterCodeSize;
  50     NOT_PRODUCT(code_size *= 4;)  // debug uses extra interpreter code space
  51     _code = new StubQueue(new InterpreterCodeletInterface, code_size, NULL,
  52                            "Interpreter");
  53     CppInterpreterGenerator g(_code);
  54     if (PrintInterpreter) print();
  55   }
  56 
  57   // Allow c++ interpreter to do one initialization now that switches are set, etc.
  58   BytecodeInterpreter start_msg(BytecodeInterpreter::initialize);
  59   if (JvmtiExport::can_post_interpreter_events())
  60     BytecodeInterpreter::runWithChecks(&start_msg);
  61   else
  62     BytecodeInterpreter::run(&start_msg);
  63 }
  64 
  65 
  66 void CppInterpreter::invoke_method(Method* method, address entry_point, TRAPS) {
  67   ((ZeroEntry *) entry_point)->invoke(method, THREAD);
  68 }
  69 
  70 void CppInterpreter::invoke_osr(Method* method,
  71                                 address   entry_point,
  72                                 address   osr_buf,
  73                                 TRAPS) {
  74   ((ZeroEntry *) entry_point)->invoke_osr(method, osr_buf, THREAD);
  75 }
  76 
  77 
  78 
  79 InterpreterCodelet* CppInterpreter::codelet_containing(address pc) {
  80   // FIXME: I'm pretty sure _code is null and this is never called, which is why it's copied.
  81   return (InterpreterCodelet*)_code->stub_containing(pc);
  82 }
  83 
  84 #endif // CC_INTERP