hotspot/src/cpu/zero/vm/bytecodeInterpreter_zero.cpp
author mikael
Fri, 06 May 2016 13:00:21 -0700
changeset 38209 b2a58604e046
parent 38074 8475fdc6dcc3
permissions -rw-r--r--
8156088: Reintegrate 8153892: Handle unsafe access error directly in signal handler instead of going through a stub Reviewed-by: stuefe, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     1
/*
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
     2
 * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     3
 * Copyright 2008 Red Hat, Inc.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     5
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     8
 * published by the Free Software Foundation.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
     9
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    14
 * accompanied this code).
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    15
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    19
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    22
 * questions.
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    23
 *
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    24
 */
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    25
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "asm/assembler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "interpreter/bytecodeInterpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "interpreter/bytecodeInterpreter.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "interpreter/interpreterRuntime.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    32
#include "oops/methodData.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    33
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "runtime/synchronizer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "runtime/vframeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "utilities/debug.hpp"
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    42
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    43
#ifdef CC_INTERP
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    44
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    45
const char *BytecodeInterpreter::name_of_field_at_address(address addr) {
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    46
#define DO(member) {if (addr == (address) &(member)) return XSTR(member);}
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    47
  DO(_thread);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    48
  DO(_bcp);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    49
  DO(_locals);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    50
  DO(_constants);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    51
  DO(_method);
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35479
diff changeset
    52
  DO(_mirror);
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    53
  DO(_mdx);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    54
  DO(_stack);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    55
  DO(_msg);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    56
  DO(_result);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    57
  DO(_prev_link);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    58
  DO(_oop_temp);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    59
  DO(_stack_base);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    60
  DO(_stack_limit);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    61
  DO(_monitor_base);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    62
  DO(_self_link);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    63
#undef DO
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    64
  if (addr > (address) &_result && addr < (address) (&_result + 1))
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    65
    return "_result)";
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    66
  return NULL;
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    67
}
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
    68
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    69
void BytecodeInterpreter::layout_interpreterState(interpreterState istate,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    70
                                                  frame*    caller,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    71
                                                  frame*    current,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    72
                                                  Method* method,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    73
                                                  intptr_t* locals,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    74
                                                  intptr_t* stack,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    75
                                                  intptr_t* stack_base,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    76
                                                  intptr_t* monitor_base,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    77
                                                  intptr_t* frame_bottom,
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    78
                                                  bool      is_top_frame) {
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    79
  istate->set_locals(locals);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    80
  istate->set_method(method);
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35479
diff changeset
    81
  istate->set_mirror(method->method_holder()->java_mirror());
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    82
  istate->set_self_link(istate);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    83
  istate->set_prev_link(NULL);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    84
  // thread will be set by a hacky repurposing of frame::patch_pc()
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    85
  // bcp will be set by vframeArrayElement::unpack_on_stack()
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    86
  istate->set_constants(method->constants()->cache());
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    87
  istate->set_msg(BytecodeInterpreter::method_resume);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    88
  istate->set_bcp_advance(0);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    89
  istate->set_oop_temp(NULL);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    90
  istate->set_mdx(NULL);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    91
  if (caller->is_interpreted_frame()) {
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    92
    interpreterState prev = caller->get_interpreterState();
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    93
    prev->set_callee(method);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    94
    if (*prev->bcp() == Bytecodes::_invokeinterface)
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    95
      prev->set_bcp_advance(5);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    96
    else
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    97
      prev->set_bcp_advance(3);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    98
  }
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
    99
  istate->set_callee(NULL);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
   100
  istate->set_monitor_base((BasicObjectLock *) monitor_base);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
   101
  istate->set_stack_base(stack_base);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
   102
  istate->set_stack(stack);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
   103
  istate->set_stack_limit(stack_base - method->max_stack() - 1);
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
   104
}
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 13728
diff changeset
   105
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
   106
#endif // CC_INTERP