hotspot/src/share/vm/interpreter/cppInterpreter.cpp
author coleenp
Tue, 12 Jan 2016 13:14:41 -0500
changeset 35479 62c12ca7a45e
parent 35214 d86005e0b4c2
child 36178 9739f8c767da
permissions -rw-r--r--
8146410: Interpreter functions are declared and defined in the wrong files Summary: Moved functions to the correct files. Reviewed-by: goetz, aph, twisti, mockner
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2534
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2534
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2534
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "interpreter/bytecodeInterpreter.hpp"
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    27
#include "interpreter/cppInterpreterGenerator.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "interpreter/interpreterRuntime.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#ifdef CC_INTERP
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    32
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    33
#ifdef ZERO
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    34
# include "entry_zero.hpp"
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    35
#else
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    36
#error "Only Zero CppInterpreter is supported"
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    37
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
void CppInterpreter::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  if (_code != NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  AbstractInterpreter::initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // generate interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  { ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    TraceTime timer("Interpreter generation", TraceStartupTime);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    int code_size = InterpreterCodeSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    NOT_PRODUCT(code_size *= 4;)  // debug uses extra interpreter code space
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _code = new StubQueue(new InterpreterCodeletInterface, code_size, NULL,
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35214
diff changeset
    49
                           "Interpreter");
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    50
    CppInterpreterGenerator g(_code);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    if (PrintInterpreter) print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Allow c++ interpreter to do one initialization now that switches are set, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  BytecodeInterpreter start_msg(BytecodeInterpreter::initialize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  if (JvmtiExport::can_post_interpreter_events())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    BytecodeInterpreter::runWithChecks(&start_msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    BytecodeInterpreter::run(&start_msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    63
void CppInterpreter::invoke_method(Method* method, address entry_point, TRAPS) {
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    64
  ((ZeroEntry *) entry_point)->invoke(method, THREAD);
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    65
}
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    66
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    67
void CppInterpreter::invoke_osr(Method* method,
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    68
                                address   entry_point,
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    69
                                address   osr_buf,
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    70
                                TRAPS) {
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    71
  ((ZeroEntry *) entry_point)->invoke_osr(method, osr_buf, THREAD);
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    72
}
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    73
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
35214
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    76
InterpreterCodelet* CppInterpreter::codelet_containing(address pc) {
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    77
  // FIXME: I'm pretty sure _code is null and this is never called, which is why it's copied.
d86005e0b4c2 8074457: Remove the non-Zero CPP Interpreter
coleenp
parents: 25950
diff changeset
    78
  return (InterpreterCodelet*)_code->stub_containing(pc);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
#endif // CC_INTERP