hotspot/src/cpu/ppc/vm/templateInterpreter_ppc.cpp
author goetz
Mon, 13 Jul 2015 09:44:38 +0200
changeset 31861 7efea6fae96b
parent 30303 c703c89fddbf
child 31865 c3edfbc8f5ac
permissions -rw-r--r--
8131048: ppc: implement CRC32 intrinsic Reviewed-by: kvn, simonis Contributed-by: lutz.schmidt@sap.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     1
/*
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
     2
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
     3
 * Copyright 2013, 2015 SAP AG. All rights reserved.
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     5
 *
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     8
 * published by the Free Software Foundation.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     9
 *
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    14
 * accompanied this code).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    15
 *
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    19
 *
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    22
 * questions.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    23
 *
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    24
 */
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    25
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    26
#include "precompiled.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    27
#ifndef CC_INTERP
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    28
#include "asm/macroAssembler.inline.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    29
#include "interpreter/bytecodeHistogram.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    30
#include "interpreter/interpreter.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    31
#include "interpreter/interpreterGenerator.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    32
#include "interpreter/interpreterRuntime.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24349
diff changeset
    33
#include "interpreter/interp_masm.hpp"
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    34
#include "interpreter/templateTable.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    35
#include "oops/arrayOop.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    36
#include "oops/methodData.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    37
#include "oops/method.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    38
#include "oops/oop.inline.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    39
#include "prims/jvmtiExport.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    40
#include "prims/jvmtiThreadState.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    41
#include "runtime/arguments.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    42
#include "runtime/deoptimization.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    43
#include "runtime/frame.inline.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    44
#include "runtime/sharedRuntime.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    45
#include "runtime/stubRoutines.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    46
#include "runtime/synchronizer.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    47
#include "runtime/timer.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    48
#include "runtime/vframeArray.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    49
#include "utilities/debug.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    50
#include "utilities/macros.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    51
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    52
#undef __
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    53
#define __ _masm->
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    54
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    55
#ifdef PRODUCT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    56
#define BLOCK_COMMENT(str) /* nothing */
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    57
#else
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    58
#define BLOCK_COMMENT(str) __ block_comment(str)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    59
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    60
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
    61
#define BIND(label)        __ bind(label); BLOCK_COMMENT(#label ":")
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    62
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    63
//-----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    64
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    65
// Actually we should never reach here since we do stack overflow checks before pushing any frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    66
address TemplateInterpreterGenerator::generate_StackOverflowError_handler() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    67
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    68
  __ unimplemented("generate_StackOverflowError_handler");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    69
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    70
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    71
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    72
address TemplateInterpreterGenerator::generate_ArrayIndexOutOfBounds_handler(const char* name) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    73
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    74
  __ empty_expression_stack();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    75
  __ load_const_optimized(R4_ARG2, (address) name);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    76
  // Index is in R17_tos.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    77
  __ mr(R5_ARG3, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    78
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_ArrayIndexOutOfBoundsException));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    79
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    80
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    81
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    82
#if 0
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    83
// Call special ClassCastException constructor taking object to cast
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    84
// and target class as arguments.
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
    85
address TemplateInterpreterGenerator::generate_ClassCastException_verbose_handler() {
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    86
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    87
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    88
  // Expression stack must be empty before entering the VM if an
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    89
  // exception happened.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    90
  __ empty_expression_stack();
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
    91
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    92
  // Thread will be loaded to R3_ARG1.
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
    93
  // Target class oop is in register R5_ARG3 by convention!
28187
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
    94
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_ClassCastException_verbose), R17_tos, R5_ARG3);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    95
  // Above call must not return here since exception pending.
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
    96
  DEBUG_ONLY(__ should_not_reach_here();)
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    97
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    98
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    99
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   100
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   101
address TemplateInterpreterGenerator::generate_ClassCastException_handler() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   102
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   103
  // Expression stack must be empty before entering the VM if an
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   104
  // exception happened.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   105
  __ empty_expression_stack();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   106
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   107
  // Load exception object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   108
  // Thread will be loaded to R3_ARG1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   109
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_ClassCastException), R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   110
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   111
  // Above call must not return here since exception pending.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   112
  __ should_not_reach_here();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   113
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   114
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   115
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   116
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   117
address TemplateInterpreterGenerator::generate_exception_handler_common(const char* name, const char* message, bool pass_oop) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   118
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   119
  //__ untested("generate_exception_handler_common");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   120
  Register Rexception = R17_tos;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   121
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   122
  // Expression stack must be empty before entering the VM if an exception happened.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   123
  __ empty_expression_stack();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   124
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   125
  __ load_const_optimized(R4_ARG2, (address) name, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   126
  if (pass_oop) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   127
    __ mr(R5_ARG3, Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   128
    __ call_VM(Rexception, CAST_FROM_FN_PTR(address, InterpreterRuntime::create_klass_exception), false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   129
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   130
    __ load_const_optimized(R5_ARG3, (address) message, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   131
    __ call_VM(Rexception, CAST_FROM_FN_PTR(address, InterpreterRuntime::create_exception), false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   132
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   133
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   134
  // Throw exception.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   135
  __ mr(R3_ARG1, Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   136
  __ load_const_optimized(R11_scratch1, Interpreter::throw_exception_entry(), R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   137
  __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   138
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   139
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   140
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   141
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   142
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   143
address TemplateInterpreterGenerator::generate_continuation_for(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   144
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   145
  __ unimplemented("generate_continuation_for");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   146
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   147
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   148
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   149
// This entry is returned to when a call returns to the interpreter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   150
// When we arrive here, we expect that the callee stack frame is already popped.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   151
address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, int step, size_t index_size) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   152
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   153
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   154
  // Move the value out of the return register back to the TOS cache of current frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   155
  switch (state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   156
    case ltos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   157
    case btos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   158
    case ctos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   159
    case stos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   160
    case atos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   161
    case itos: __ mr(R17_tos, R3_RET); break;   // RET -> TOS cache
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   162
    case ftos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   163
    case dtos: __ fmr(F15_ftos, F1_RET); break; // TOS cache -> GR_FRET
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   164
    case vtos: break;                           // Nothing to do, this was a void return.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   165
    default  : ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   166
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   167
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   168
  __ restore_interpreter_state(R11_scratch1); // Sets R11_scratch1 = fp.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   169
  __ ld(R12_scratch2, _ijava_state_neg(top_frame_sp), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   170
  __ resize_frame_absolute(R12_scratch2, R11_scratch1, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   171
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   172
  // Compiled code destroys templateTableBase, reload.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   173
  __ load_const_optimized(R25_templateTableBase, (address)Interpreter::dispatch_table((TosState)0), R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   174
28187
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
   175
  if (state == atos) {
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
   176
    __ profile_return_type(R3_RET, R11_scratch1, R12_scratch2);
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
   177
  }
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
   178
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   179
  const Register cache = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   180
  const Register size  = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   181
  __ get_cache_and_index_at_bcp(cache, 1, index_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   182
25916
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   183
  // Get least significant byte of 64 bit value:
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   184
#if defined(VM_LITTLE_ENDIAN)
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   185
  __ lbz(size, in_bytes(ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::flags_offset()), cache);
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   186
#else
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   187
  __ lbz(size, in_bytes(ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::flags_offset()) + 7, cache);
25916
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   188
#endif
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   189
  __ sldi(size, size, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   190
  __ add(R15_esp, R15_esp, size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   191
  __ dispatch_next(state, step);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   192
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   193
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   194
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   195
address TemplateInterpreterGenerator::generate_deopt_entry_for(TosState state, int step) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   196
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   197
  // If state != vtos, we're returning from a native method, which put it's result
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   198
  // into the result register. So move the value out of the return register back
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   199
  // to the TOS cache of current frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   200
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   201
  switch (state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   202
    case ltos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   203
    case btos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   204
    case ctos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   205
    case stos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   206
    case atos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   207
    case itos: __ mr(R17_tos, R3_RET); break;   // GR_RET -> TOS cache
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   208
    case ftos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   209
    case dtos: __ fmr(F15_ftos, F1_RET); break; // TOS cache -> GR_FRET
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   210
    case vtos: break;                           // Nothing to do, this was a void return.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   211
    default  : ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   212
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   213
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   214
  // Load LcpoolCache @@@ should be already set!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   215
  __ get_constant_pool_cache(R27_constPoolCache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   216
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   217
  // Handle a pending exception, fall through if none.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   218
  __ check_and_forward_exception(R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   219
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   220
  // Start executing bytecodes.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   221
  __ dispatch_next(state, step);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   222
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   223
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   224
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   225
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   226
// A result handler converts the native result into java format.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   227
// Use the shared code between c++ and template interpreter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   228
address TemplateInterpreterGenerator::generate_result_handler_for(BasicType type) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   229
  return AbstractInterpreterGenerator::generate_result_handler_for(type);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   230
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   231
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   232
address TemplateInterpreterGenerator::generate_safept_entry_for(TosState state, address runtime_entry) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   233
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   234
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   235
  __ push(state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   236
  __ call_VM(noreg, runtime_entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   237
  __ dispatch_via(vtos, Interpreter::_normal_table.table_for(vtos));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   238
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   239
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   240
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   241
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   242
// Helpers for commoning out cases in the various type of method entries.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   243
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   244
// Increment invocation count & check for overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   245
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   246
// Note: checking for negative value instead of overflow
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   247
//       so we have a 'sticky' overflow test.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   248
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   249
void TemplateInterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   250
  // Note: In tiered we increment either counters in method or in MDO depending if we're profiling or not.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   251
  Register Rscratch1   = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   252
  Register Rscratch2   = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   253
  Register R3_counters = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   254
  Label done;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   255
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   256
  if (TieredCompilation) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   257
    const int increment = InvocationCounter::count_increment;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   258
    const int mask = ((1 << Tier0InvokeNotifyFreqLog) - 1) << InvocationCounter::count_shift;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   259
    Label no_mdo;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   260
    if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   261
      const Register Rmdo = Rscratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   262
      // If no method data exists, go to profile_continue.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   263
      __ ld(Rmdo, in_bytes(Method::method_data_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   264
      __ cmpdi(CCR0, Rmdo, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   265
      __ beq(CCR0, no_mdo);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   266
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   267
      // Increment backedge counter in the MDO.
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   268
      const int mdo_bc_offs = in_bytes(MethodData::backedge_counter_offset()) + in_bytes(InvocationCounter::counter_offset());
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   269
      __ lwz(Rscratch2, mdo_bc_offs, Rmdo);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   270
      __ addi(Rscratch2, Rscratch2, increment);
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   271
      __ stw(Rscratch2, mdo_bc_offs, Rmdo);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   272
      __ load_const_optimized(Rscratch1, mask, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   273
      __ and_(Rscratch1, Rscratch2, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   274
      __ bne(CCR0, done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   275
      __ b(*overflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   276
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   277
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   278
    // Increment counter in MethodCounters*.
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   279
    const int mo_bc_offs = in_bytes(MethodCounters::backedge_counter_offset()) + in_bytes(InvocationCounter::counter_offset());
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   280
    __ bind(no_mdo);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   281
    __ get_method_counters(R19_method, R3_counters, done);
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   282
    __ lwz(Rscratch2, mo_bc_offs, R3_counters);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   283
    __ addi(Rscratch2, Rscratch2, increment);
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   284
    __ stw(Rscratch2, mo_bc_offs, R3_counters);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   285
    __ load_const_optimized(Rscratch1, mask, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   286
    __ and_(Rscratch1, Rscratch2, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   287
    __ beq(CCR0, *overflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   288
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   289
    __ bind(done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   290
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   291
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   292
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   293
    // Update standard invocation counters.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   294
    Register Rsum_ivc_bec = R4_ARG2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   295
    __ get_method_counters(R19_method, R3_counters, done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   296
    __ increment_invocation_counter(R3_counters, Rsum_ivc_bec, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   297
    // Increment interpreter invocation counter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   298
    if (ProfileInterpreter) {  // %%% Merge this into methodDataOop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   299
      __ lwz(R12_scratch2, in_bytes(MethodCounters::interpreter_invocation_counter_offset()), R3_counters);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   300
      __ addi(R12_scratch2, R12_scratch2, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   301
      __ stw(R12_scratch2, in_bytes(MethodCounters::interpreter_invocation_counter_offset()), R3_counters);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   302
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   303
    // Check if we must create a method data obj.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   304
    if (ProfileInterpreter && profile_method != NULL) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   305
      const Register profile_limit = Rscratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   306
      int pl_offs = __ load_const_optimized(profile_limit, &InvocationCounter::InterpreterProfileLimit, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   307
      __ lwz(profile_limit, pl_offs, profile_limit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   308
      // Test to see if we should create a method data oop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   309
      __ cmpw(CCR0, Rsum_ivc_bec, profile_limit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   310
      __ blt(CCR0, *profile_method_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   311
      // If no method data exists, go to profile_method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   312
      __ test_method_data_pointer(*profile_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   313
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   314
    // Finally check for counter overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   315
    if (overflow) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   316
      const Register invocation_limit = Rscratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   317
      int il_offs = __ load_const_optimized(invocation_limit, &InvocationCounter::InterpreterInvocationLimit, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   318
      __ lwz(invocation_limit, il_offs, invocation_limit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   319
      assert(4 == sizeof(InvocationCounter::InterpreterInvocationLimit), "unexpected field size");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   320
      __ cmpw(CCR0, Rsum_ivc_bec, invocation_limit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   321
      __ bge(CCR0, *overflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   322
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   323
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   324
    __ bind(done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   325
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   326
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   327
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   328
// Generate code to initiate compilation on invocation counter overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   329
void TemplateInterpreterGenerator::generate_counter_overflow(Label& continue_entry) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   330
  // Generate code to initiate compilation on the counter overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   331
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   332
  // InterpreterRuntime::frequency_counter_overflow takes one arguments,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   333
  // which indicates if the counter overflow occurs at a backwards branch (NULL bcp)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   334
  // We pass zero in.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   335
  // The call returns the address of the verified entry point for the method or NULL
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   336
  // if the compilation did not complete (either went background or bailed out).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   337
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   338
  // Unlike the C++ interpreter above: Check exceptions!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   339
  // Assumption: Caller must set the flag "do_not_unlock_if_sychronized" if the monitor of a sync'ed
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   340
  // method has not yet been created. Thus, no unlocking of a non-existing monitor can occur.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   341
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   342
  __ li(R4_ARG2, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   343
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::frequency_counter_overflow), R4_ARG2, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   344
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   345
  // Returns verified_entry_point or NULL.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   346
  // We ignore it in any case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   347
  __ b(continue_entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   348
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   349
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   350
void TemplateInterpreterGenerator::generate_stack_overflow_check(Register Rmem_frame_size, Register Rscratch1) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   351
  assert_different_registers(Rmem_frame_size, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   352
  __ generate_stack_overflow_check_with_compare_and_throw(Rmem_frame_size, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   353
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   354
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   355
void TemplateInterpreterGenerator::unlock_method(bool check_exceptions) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   356
  __ unlock_object(R26_monitor, check_exceptions);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   357
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   358
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   359
// Lock the current method, interpreter register window must be set up!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   360
void TemplateInterpreterGenerator::lock_method(Register Rflags, Register Rscratch1, Register Rscratch2, bool flags_preloaded) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   361
  const Register Robj_to_lock = Rscratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   362
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   363
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   364
    if (!flags_preloaded) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   365
      __ lwz(Rflags, method_(access_flags));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   366
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   367
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   368
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   369
    // Check if methods needs synchronization.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   370
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   371
      Label Lok;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   372
      __ testbitdi(CCR0, R0, Rflags, JVM_ACC_SYNCHRONIZED_BIT);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   373
      __ btrue(CCR0,Lok);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   374
      __ stop("method doesn't need synchronization");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   375
      __ bind(Lok);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   376
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   377
#endif // ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   378
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   379
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   380
  // Get synchronization object to Rscratch2.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   381
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   382
    const int mirror_offset = in_bytes(Klass::java_mirror_offset());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   383
    Label Lstatic;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   384
    Label Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   385
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   386
    __ testbitdi(CCR0, R0, Rflags, JVM_ACC_STATIC_BIT);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   387
    __ btrue(CCR0, Lstatic);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   388
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   389
    // Non-static case: load receiver obj from stack and we're done.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   390
    __ ld(Robj_to_lock, R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   391
    __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   392
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   393
    __ bind(Lstatic); // Static case: Lock the java mirror
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   394
    __ ld(Robj_to_lock, in_bytes(Method::const_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   395
    __ ld(Robj_to_lock, in_bytes(ConstMethod::constants_offset()), Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   396
    __ ld(Robj_to_lock, ConstantPool::pool_holder_offset_in_bytes(), Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   397
    __ ld(Robj_to_lock, mirror_offset, Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   398
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   399
    __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   400
    __ verify_oop(Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   401
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   402
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   403
  // Got the oop to lock => execute!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   404
  __ add_monitor_to_stack(true, Rscratch1, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   405
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   406
  __ std(Robj_to_lock, BasicObjectLock::obj_offset_in_bytes(), R26_monitor);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   407
  __ lock_object(R26_monitor, Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   408
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   409
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   410
// Generate a fixed interpreter frame for pure interpreter
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   411
// and I2N native transition frames.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   412
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   413
// Before (stack grows downwards):
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   414
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   415
//         |  ...         |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   416
//         |------------- |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   417
//         |  java arg0   |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   418
//         |  ...         |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   419
//         |  java argn   |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   420
//         |              |   <-   R15_esp
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   421
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   422
//         |--------------|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   423
//         | abi_112      |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   424
//         |              |   <-   R1_SP
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   425
//         |==============|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   426
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   427
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   428
// After:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   429
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   430
//         |  ...         |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   431
//         |  java arg0   |<-   R18_locals
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   432
//         |  ...         |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   433
//         |  java argn   |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   434
//         |--------------|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   435
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   436
//         |  java locals |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   437
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   438
//         |--------------|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   439
//         |  abi_48      |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   440
//         |==============|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   441
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   442
//         |   istate     |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   443
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   444
//         |--------------|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   445
//         |   monitor    |<-   R26_monitor
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   446
//         |--------------|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   447
//         |              |<-   R15_esp
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   448
//         | expression   |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   449
//         | stack        |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   450
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   451
//         |--------------|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   452
//         |              |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   453
//         | abi_112      |<-   R1_SP
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   454
//         |==============|
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   455
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   456
// The top most frame needs an abi space of 112 bytes. This space is needed,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   457
// since we call to c. The c function may spill their arguments to the caller
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   458
// frame. When we call to java, we don't need these spill slots. In order to save
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   459
// space on the stack, we resize the caller. However, java local reside in
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   460
// the caller frame and the frame has to be increased. The frame_size for the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   461
// current frame was calculated based on max_stack as size for the expression
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   462
// stack. At the call, just a part of the expression stack might be used.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   463
// We don't want to waste this space and cut the frame back accordingly.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   464
// The resulting amount for resizing is calculated as follows:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   465
// resize =   (number_of_locals - number_of_arguments) * slot_size
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   466
//          + (R1_SP - R15_esp) + 48
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   467
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   468
// The size for the callee frame is calculated:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   469
// framesize = 112 + max_stack + monitor + state_size
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   470
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   471
// maxstack:   Max number of slots on the expression stack, loaded from the method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   472
// monitor:    We statically reserve room for one monitor object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   473
// state_size: We save the current state of the interpreter to this area.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   474
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   475
void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call, Register Rsize_of_parameters, Register Rsize_of_locals) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   476
  Register parent_frame_resize = R6_ARG4, // Frame will grow by this number of bytes.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   477
           top_frame_size      = R7_ARG5,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   478
           Rconst_method       = R8_ARG6;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   479
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   480
  assert_different_registers(Rsize_of_parameters, Rsize_of_locals, parent_frame_resize, top_frame_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   481
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   482
  __ ld(Rconst_method, method_(const));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   483
  __ lhz(Rsize_of_parameters /* number of params */,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   484
         in_bytes(ConstMethod::size_of_parameters_offset()), Rconst_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   485
  if (native_call) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   486
    // If we're calling a native method, we reserve space for the worst-case signature
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   487
    // handler varargs vector, which is max(Argument::n_register_parameters, parameter_count+2).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   488
    // We add two slots to the parameter_count, one for the jni
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   489
    // environment and one for a possible native mirror.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   490
    Label skip_native_calculate_max_stack;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   491
    __ addi(top_frame_size, Rsize_of_parameters, 2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   492
    __ cmpwi(CCR0, top_frame_size, Argument::n_register_parameters);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   493
    __ bge(CCR0, skip_native_calculate_max_stack);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   494
    __ li(top_frame_size, Argument::n_register_parameters);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   495
    __ bind(skip_native_calculate_max_stack);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   496
    __ sldi(Rsize_of_parameters, Rsize_of_parameters, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   497
    __ sldi(top_frame_size, top_frame_size, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   498
    __ sub(parent_frame_resize, R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   499
    assert(Rsize_of_locals == noreg, "Rsize_of_locals not initialized"); // Only relevant value is Rsize_of_parameters.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   500
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   501
    __ lhz(Rsize_of_locals /* number of params */, in_bytes(ConstMethod::size_of_locals_offset()), Rconst_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   502
    __ sldi(Rsize_of_parameters, Rsize_of_parameters, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   503
    __ sldi(Rsize_of_locals, Rsize_of_locals, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   504
    __ lhz(top_frame_size, in_bytes(ConstMethod::max_stack_offset()), Rconst_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   505
    __ sub(R11_scratch1, Rsize_of_locals, Rsize_of_parameters); // >=0
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   506
    __ sub(parent_frame_resize, R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   507
    __ sldi(top_frame_size, top_frame_size, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   508
    __ add(parent_frame_resize, parent_frame_resize, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   509
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   510
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   511
  // Compute top frame size.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   512
  __ addi(top_frame_size, top_frame_size, frame::abi_reg_args_size + frame::ijava_state_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   513
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   514
  // Cut back area between esp and max_stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   515
  __ addi(parent_frame_resize, parent_frame_resize, frame::abi_minframe_size - Interpreter::stackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   516
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   517
  __ round_to(top_frame_size, frame::alignment_in_bytes);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   518
  __ round_to(parent_frame_resize, frame::alignment_in_bytes);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   519
  // parent_frame_resize = (locals-parameters) - (ESP-SP-ABI48) Rounded to frame alignment size.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   520
  // Enlarge by locals-parameters (not in case of native_call), shrink by ESP-SP-ABI48.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   521
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   522
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   523
    // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   524
    // Stack overflow check
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   525
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   526
    Label cont;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   527
    __ add(R11_scratch1, parent_frame_resize, top_frame_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   528
    generate_stack_overflow_check(R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   529
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   530
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   531
  // Set up interpreter state registers.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   532
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   533
  __ add(R18_locals, R15_esp, Rsize_of_parameters);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   534
  __ ld(R27_constPoolCache, in_bytes(ConstMethod::constants_offset()), Rconst_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   535
  __ ld(R27_constPoolCache, ConstantPool::cache_offset_in_bytes(), R27_constPoolCache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   536
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   537
  // Set method data pointer.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   538
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   539
    Label zero_continue;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   540
    __ ld(R28_mdx, method_(method_data));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   541
    __ cmpdi(CCR0, R28_mdx, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   542
    __ beq(CCR0, zero_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   543
    __ addi(R28_mdx, R28_mdx, in_bytes(MethodData::data_offset()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   544
    __ bind(zero_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   545
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   546
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   547
  if (native_call) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   548
    __ li(R14_bcp, 0); // Must initialize.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   549
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   550
    __ add(R14_bcp, in_bytes(ConstMethod::codes_offset()), Rconst_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   551
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   552
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   553
  // Resize parent frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   554
  __ mflr(R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   555
  __ neg(parent_frame_resize, parent_frame_resize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   556
  __ resize_frame(parent_frame_resize, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   557
  __ std(R12_scratch2, _abi(lr), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   558
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   559
  __ addi(R26_monitor, R1_SP, - frame::ijava_state_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   560
  __ addi(R15_esp, R26_monitor, - Interpreter::stackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   561
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   562
  // Store values.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   563
  // R15_esp, R14_bcp, R26_monitor, R28_mdx are saved at java calls
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   564
  // in InterpreterMacroAssembler::call_from_interpreter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   565
  __ std(R19_method, _ijava_state_neg(method), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   566
  __ std(R21_sender_SP, _ijava_state_neg(sender_sp), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   567
  __ std(R27_constPoolCache, _ijava_state_neg(cpoolCache), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   568
  __ std(R18_locals, _ijava_state_neg(locals), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   569
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   570
  // Note: esp, bcp, monitor, mdx live in registers. Hence, the correct version can only
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   571
  // be found in the frame after save_interpreter_state is done. This is always true
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   572
  // for non-top frames. But when a signal occurs, dumping the top frame can go wrong,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   573
  // because e.g. frame::interpreter_frame_bcp() will not access the correct value
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   574
  // (Enhanced Stack Trace).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   575
  // The signal handler does not save the interpreter state into the frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   576
  __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   577
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   578
  // Fill remaining slots with constants.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   579
  __ load_const_optimized(R11_scratch1, 0x5afe);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   580
  __ load_const_optimized(R12_scratch2, 0xdead);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   581
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   582
  // We have to initialize some frame slots for native calls (accessed by GC).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   583
  if (native_call) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   584
    __ std(R26_monitor, _ijava_state_neg(monitors), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   585
    __ std(R14_bcp, _ijava_state_neg(bcp), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   586
    if (ProfileInterpreter) { __ std(R28_mdx, _ijava_state_neg(mdx), R1_SP); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   587
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   588
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   589
  else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   590
    __ std(R12_scratch2, _ijava_state_neg(monitors), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   591
    __ std(R12_scratch2, _ijava_state_neg(bcp), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   592
    __ std(R12_scratch2, _ijava_state_neg(mdx), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   593
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   594
  __ std(R11_scratch1, _ijava_state_neg(ijava_reserved), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   595
  __ std(R12_scratch2, _ijava_state_neg(esp), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   596
  __ std(R12_scratch2, _ijava_state_neg(lresult), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   597
  __ std(R12_scratch2, _ijava_state_neg(fresult), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   598
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   599
  __ subf(R12_scratch2, top_frame_size, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   600
  __ std(R0, _ijava_state_neg(oop_tmp), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   601
  __ std(R12_scratch2, _ijava_state_neg(top_frame_sp), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   602
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   603
  // Push top frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   604
  __ push_frame(top_frame_size, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   605
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   606
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   607
// End of helpers
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   608
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   609
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   610
// Support abs and sqrt like in compiler.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   611
// For others we can use a normal (native) entry.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   612
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   613
inline bool math_entry_available(AbstractInterpreter::MethodKind kind) {
30303
c703c89fddbf 8077838: Recent developments for ppc.
goetz
parents: 28472
diff changeset
   614
  if (!InlineIntrinsics) return false;
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   615
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   616
  return ((kind==Interpreter::java_lang_math_sqrt && VM_Version::has_fsqrt()) ||
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   617
          (kind==Interpreter::java_lang_math_abs));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   618
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   619
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   620
address TemplateInterpreterGenerator::generate_math_entry(AbstractInterpreter::MethodKind kind) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   621
  if (!math_entry_available(kind)) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   622
    NOT_PRODUCT(__ should_not_reach_here();)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   623
    return Interpreter::entry_for_kind(Interpreter::zerolocals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   624
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   625
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   626
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   627
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   628
  __ lfd(F1_RET, Interpreter::stackElementSize, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   629
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   630
  // Pop c2i arguments (if any) off when we return.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   631
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   632
  __ ld(R9_ARG7, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   633
  __ ld(R10_ARG8, 0, R21_sender_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   634
  __ cmpd(CCR0, R9_ARG7, R10_ARG8);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   635
  __ asm_assert_eq("backlink", 0x545);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   636
#endif // ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   637
  __ mr(R1_SP, R21_sender_SP); // Cut the stack back to where the caller started.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   638
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   639
  if (kind == Interpreter::java_lang_math_sqrt) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   640
    __ fsqrt(F1_RET, F1_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   641
  } else if (kind == Interpreter::java_lang_math_abs) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   642
    __ fabs(F1_RET, F1_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   643
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   644
    ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   645
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   646
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   647
  // And we're done.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   648
  __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   649
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   650
  __ flush();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   651
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   652
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   653
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   654
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   655
// Interpreter stub for calling a native method. (asm interpreter)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   656
// This sets up a somewhat different looking stack for calling the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   657
// native method than the typical interpreter frame setup.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   658
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   659
// On entry:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   660
//   R19_method    - method
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   661
//   R16_thread    - JavaThread*
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   662
//   R15_esp       - intptr_t* sender tos
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   663
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   664
//   abstract stack (grows up)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   665
//     [  IJava (caller of JNI callee)  ]  <-- ASP
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   666
//        ...
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   667
address TemplateInterpreterGenerator::generate_native_entry(bool synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   668
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   669
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   670
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   671
  const bool inc_counter = UseCompiler || CountCompiledCalls;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   672
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   673
  // -----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   674
  // Allocate a new frame that represents the native callee (i2n frame).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   675
  // This is not a full-blown interpreter frame, but in particular, the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   676
  // following registers are valid after this:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   677
  // - R19_method
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   678
  // - R18_local (points to start of argumuments to native function)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   679
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   680
  //   abstract stack (grows up)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   681
  //     [  IJava (caller of JNI callee)  ]  <-- ASP
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   682
  //        ...
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   683
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   684
  const Register signature_handler_fd = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   685
  const Register pending_exception    = R0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   686
  const Register result_handler_addr  = R31;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   687
  const Register native_method_fd     = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   688
  const Register access_flags         = R22_tmp2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   689
  const Register active_handles       = R11_scratch1; // R26_monitor saved to state.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   690
  const Register sync_state           = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   691
  const Register sync_state_addr      = sync_state;   // Address is dead after use.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   692
  const Register suspend_flags        = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   693
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   694
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   695
  // Allocate new frame and initialize interpreter state.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   696
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   697
  Label exception_return;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   698
  Label exception_return_sync_check;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   699
  Label stack_overflow_return;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   700
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   701
  // Generate new interpreter state and jump to stack_overflow_return in case of
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   702
  // a stack overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   703
  //generate_compute_interpreter_state(stack_overflow_return);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   704
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   705
  Register size_of_parameters = R22_tmp2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   706
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   707
  generate_fixed_frame(true, size_of_parameters, noreg /* unused */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   708
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   709
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   710
  // Increment invocation counter. On overflow, entry to JNI method
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   711
  // will be compiled.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   712
  Label invocation_counter_overflow, continue_after_compile;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   713
  if (inc_counter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   714
    if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   715
      // Since at this point in the method invocation the exception handler
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   716
      // would try to exit the monitor of synchronized methods which hasn't
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   717
      // been entered yet, we set the thread local variable
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   718
      // _do_not_unlock_if_synchronized to true. If any exception was thrown by
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   719
      // runtime, exception handling i.e. unlock_if_synchronized_method will
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   720
      // check this thread local flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   721
      // This flag has two effects, one is to force an unwind in the topmost
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   722
      // interpreter frame and not perform an unlock while doing so.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   723
      __ li(R0, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   724
      __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   725
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   726
    generate_counter_incr(&invocation_counter_overflow, NULL, NULL);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   727
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
   728
    BIND(continue_after_compile);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   729
    // Reset the _do_not_unlock_if_synchronized flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   730
    if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   731
      __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   732
      __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   733
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   734
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   735
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   736
  // access_flags = method->access_flags();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   737
  // Load access flags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   738
  assert(access_flags->is_nonvolatile(),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   739
         "access_flags must be in a non-volatile register");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   740
  // Type check.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   741
  assert(4 == sizeof(AccessFlags), "unexpected field size");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   742
  __ lwz(access_flags, method_(access_flags));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   743
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   744
  // We don't want to reload R19_method and access_flags after calls
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   745
  // to some helper functions.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   746
  assert(R19_method->is_nonvolatile(),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   747
         "R19_method must be a non-volatile register");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   748
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   749
  // Check for synchronized methods. Must happen AFTER invocation counter
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   750
  // check, so method is not locked if counter overflows.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   751
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   752
  if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   753
    lock_method(access_flags, R11_scratch1, R12_scratch2, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   754
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   755
    // Update monitor in state.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   756
    __ ld(R11_scratch1, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   757
    __ std(R26_monitor, _ijava_state_neg(monitors), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   758
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   759
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   760
  // jvmti/jvmpi support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   761
  __ notify_method_entry();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   762
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   763
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   764
  // Get and call the signature handler.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   765
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   766
  __ ld(signature_handler_fd, method_(signature_handler));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   767
  Label call_signature_handler;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   768
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   769
  __ cmpdi(CCR0, signature_handler_fd, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   770
  __ bne(CCR0, call_signature_handler);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   771
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   772
  // Method has never been called. Either generate a specialized
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   773
  // handler or point to the slow one.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   774
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   775
  // Pass parameter 'false' to avoid exception check in call_VM.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   776
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::prepare_native_call), R19_method, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   777
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   778
  // Check for an exception while looking up the target method. If we
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   779
  // incurred one, bail.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   780
  __ ld(pending_exception, thread_(pending_exception));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   781
  __ cmpdi(CCR0, pending_exception, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   782
  __ bne(CCR0, exception_return_sync_check); // Has pending exception.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   783
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   784
  // Reload signature handler, it may have been created/assigned in the meanwhile.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   785
  __ ld(signature_handler_fd, method_(signature_handler));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   786
  __ twi_0(signature_handler_fd); // Order wrt. load of klass mirror and entry point (isync is below).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   787
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
   788
  BIND(call_signature_handler);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   789
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   790
  // Before we call the signature handler we push a new frame to
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   791
  // protect the interpreter frame volatile registers when we return
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   792
  // from jni but before we can get back to Java.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   793
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   794
  // First set the frame anchor while the SP/FP registers are
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   795
  // convenient and the slow signature handler can use this same frame
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   796
  // anchor.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   797
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   798
  // We have a TOP_IJAVA_FRAME here, which belongs to us.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   799
  __ set_top_ijava_frame_at_SP_as_last_Java_frame(R1_SP, R12_scratch2/*tmp*/);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   800
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   801
  // Now the interpreter frame (and its call chain) have been
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   802
  // invalidated and flushed. We are now protected against eager
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   803
  // being enabled in native code. Even if it goes eager the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   804
  // registers will be reloaded as clean and we will invalidate after
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   805
  // the call so no spurious flush should be possible.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   806
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   807
  // Call signature handler and pass locals address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   808
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   809
  // Our signature handlers copy required arguments to the C stack
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   810
  // (outgoing C args), R3_ARG1 to R10_ARG8, and FARG1 to FARG13.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   811
  __ mr(R3_ARG1, R18_locals);
25916
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   812
#if !defined(ABI_ELFv2)
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   813
  __ ld(signature_handler_fd, 0, signature_handler_fd);
25916
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   814
#endif
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   815
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   816
  __ call_stub(signature_handler_fd);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   817
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   818
  // Remove the register parameter varargs slots we allocated in
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   819
  // compute_interpreter_state. SP+16 ends up pointing to the ABI
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   820
  // outgoing argument area.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   821
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   822
  // Not needed on PPC64.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   823
  //__ add(SP, SP, Argument::n_register_parameters*BytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   824
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   825
  assert(result_handler_addr->is_nonvolatile(), "result_handler_addr must be in a non-volatile register");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   826
  // Save across call to native method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   827
  __ mr(result_handler_addr, R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   828
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   829
  __ isync(); // Acquire signature handler before trying to fetch the native entry point and klass mirror.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   830
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   831
  // Set up fixed parameters and call the native method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   832
  // If the method is static, get mirror into R4_ARG2.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   833
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   834
    Label method_is_not_static;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   835
    // Access_flags is non-volatile and still, no need to restore it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   836
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   837
    // Restore access flags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   838
    __ testbitdi(CCR0, R0, access_flags, JVM_ACC_STATIC_BIT);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   839
    __ bfalse(CCR0, method_is_not_static);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   840
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   841
    // constants = method->constants();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   842
    __ ld(R11_scratch1, in_bytes(Method::const_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   843
    __ ld(R11_scratch1, in_bytes(ConstMethod::constants_offset()), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   844
    // pool_holder = method->constants()->pool_holder();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   845
    __ ld(R11_scratch1/*pool_holder*/, ConstantPool::pool_holder_offset_in_bytes(),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   846
          R11_scratch1/*constants*/);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   847
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   848
    const int mirror_offset = in_bytes(Klass::java_mirror_offset());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   849
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   850
    // mirror = pool_holder->klass_part()->java_mirror();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   851
    __ ld(R0/*mirror*/, mirror_offset, R11_scratch1/*pool_holder*/);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   852
    // state->_native_mirror = mirror;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   853
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   854
    __ ld(R11_scratch1, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   855
    __ std(R0/*mirror*/, _ijava_state_neg(oop_tmp), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   856
    // R4_ARG2 = &state->_oop_temp;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   857
    __ addi(R4_ARG2, R11_scratch1, _ijava_state_neg(oop_tmp));
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
   858
    BIND(method_is_not_static);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   859
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   860
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   861
  // At this point, arguments have been copied off the stack into
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   862
  // their JNI positions. Oops are boxed in-place on the stack, with
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   863
  // handles copied to arguments. The result handler address is in a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   864
  // register.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   865
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   866
  // Pass JNIEnv address as first parameter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   867
  __ addir(R3_ARG1, thread_(jni_environment));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   868
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   869
  // Load the native_method entry before we change the thread state.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   870
  __ ld(native_method_fd, method_(native_function));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   871
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   872
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   873
  // Transition from _thread_in_Java to _thread_in_native. As soon as
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   874
  // we make this change the safepoint code needs to be certain that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   875
  // the last Java frame we established is good. The pc in that frame
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   876
  // just needs to be near here not an actual return address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   877
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   878
  // We use release_store_fence to update values like the thread state, where
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   879
  // we don't want the current thread to continue until all our prior memory
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   880
  // accesses (including the new thread state) are visible to other threads.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   881
  __ li(R0, _thread_in_native);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   882
  __ release();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   883
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   884
  // TODO PPC port assert(4 == JavaThread::sz_thread_state(), "unexpected field size");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   885
  __ stw(R0, thread_(thread_state));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   886
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   887
  if (UseMembar) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   888
    __ fence();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   889
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   890
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   891
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   892
  // Call the native method. Argument registers must not have been
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   893
  // overwritten since "__ call_stub(signature_handler);" (except for
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   894
  // ARG1 and ARG2 for static methods).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   895
  __ call_c(native_method_fd);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   896
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   897
  __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   898
  __ ld(R11_scratch1, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   899
  __ std(R3_RET, _ijava_state_neg(lresult), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   900
  __ stfd(F1_RET, _ijava_state_neg(fresult), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   901
  __ std(R0/*mirror*/, _ijava_state_neg(oop_tmp), R11_scratch1); // reset
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   902
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   903
  // Note: C++ interpreter needs the following here:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   904
  // The frame_manager_lr field, which we use for setting the last
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   905
  // java frame, gets overwritten by the signature handler. Restore
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   906
  // it now.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   907
  //__ get_PC_trash_LR(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   908
  //__ std(R11_scratch1, _top_ijava_frame_abi(frame_manager_lr), R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   909
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   910
  // Because of GC R19_method may no longer be valid.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   911
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   912
  // Block, if necessary, before resuming in _thread_in_Java state.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   913
  // In order for GC to work, don't clear the last_Java_sp until after
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   914
  // blocking.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   915
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   916
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   917
  // Switch thread to "native transition" state before reading the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   918
  // synchronization state. This additional state is necessary
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   919
  // because reading and testing the synchronization state is not
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   920
  // atomic w.r.t. GC, as this scenario demonstrates: Java thread A,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   921
  // in _thread_in_native state, loads _not_synchronized and is
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   922
  // preempted. VM thread changes sync state to synchronizing and
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   923
  // suspends threads for GC. Thread A is resumed to finish this
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   924
  // native method, but doesn't block here since it didn't see any
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   925
  // synchronization in progress, and escapes.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   926
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   927
  // We use release_store_fence to update values like the thread state, where
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   928
  // we don't want the current thread to continue until all our prior memory
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   929
  // accesses (including the new thread state) are visible to other threads.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   930
  __ li(R0/*thread_state*/, _thread_in_native_trans);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   931
  __ release();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   932
  __ stw(R0/*thread_state*/, thread_(thread_state));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   933
  if (UseMembar) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   934
    __ fence();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   935
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   936
  // Write serialization page so that the VM thread can do a pseudo remote
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   937
  // membar. We use the current thread pointer to calculate a thread
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   938
  // specific offset to write to within the page. This minimizes bus
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   939
  // traffic due to cache line collision.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   940
  else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   941
    __ serialize_memory(R16_thread, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   942
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   943
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   944
  // Now before we return to java we must look for a current safepoint
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   945
  // (a new safepoint can not start since we entered native_trans).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   946
  // We must check here because a current safepoint could be modifying
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   947
  // the callers registers right this moment.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   948
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   949
  // Acquire isn't strictly necessary here because of the fence, but
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   950
  // sync_state is declared to be volatile, so we do it anyway
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   951
  // (cmp-br-isync on one path, release (same as acquire on PPC64) on the other path).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   952
  int sync_state_offs = __ load_const_optimized(sync_state_addr, SafepointSynchronize::address_of_state(), /*temp*/R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   953
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   954
  // TODO PPC port assert(4 == SafepointSynchronize::sz_state(), "unexpected field size");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   955
  __ lwz(sync_state, sync_state_offs, sync_state_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   956
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   957
  // TODO PPC port assert(4 == Thread::sz_suspend_flags(), "unexpected field size");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   958
  __ lwz(suspend_flags, thread_(suspend_flags));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   959
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   960
  Label sync_check_done;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   961
  Label do_safepoint;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   962
  // No synchronization in progress nor yet synchronized.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   963
  __ cmpwi(CCR0, sync_state, SafepointSynchronize::_not_synchronized);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   964
  // Not suspended.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   965
  __ cmpwi(CCR1, suspend_flags, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   966
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   967
  __ bne(CCR0, do_safepoint);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   968
  __ beq(CCR1, sync_check_done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   969
  __ bind(do_safepoint);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   970
  __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   971
  // Block. We do the call directly and leave the current
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   972
  // last_Java_frame setup undisturbed. We must save any possible
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   973
  // native result across the call. No oop is present.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   974
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   975
  __ mr(R3_ARG1, R16_thread);
25916
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   976
#if defined(ABI_ELFv2)
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   977
  __ call_c(CAST_FROM_FN_PTR(address, JavaThread::check_special_condition_for_native_trans),
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   978
            relocInfo::none);
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   979
#else
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   980
  __ call_c(CAST_FROM_FN_PTR(FunctionDescriptor*, JavaThread::check_special_condition_for_native_trans),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   981
            relocInfo::none);
25916
c5c22fab48fd 8050942: PPC64: implement template interpreter for ppc64le
kvn
parents: 25715
diff changeset
   982
#endif
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   983
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   984
  __ bind(sync_check_done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   985
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   986
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   987
  // <<<<<< Back in Interpreter Frame >>>>>
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   988
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   989
  // We are in thread_in_native_trans here and back in the normal
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   990
  // interpreter frame. We don't have to do anything special about
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   991
  // safepoints and we can switch to Java mode anytime we are ready.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   992
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   993
  // Note: frame::interpreter_frame_result has a dependency on how the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   994
  // method result is saved across the call to post_method_exit. For
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   995
  // native methods it assumes that the non-FPU/non-void result is
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   996
  // saved in _native_lresult and a FPU result in _native_fresult. If
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   997
  // this changes then the interpreter_frame_result implementation
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   998
  // will need to be updated too.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   999
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1000
  // On PPC64, we have stored the result directly after the native call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1001
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1002
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1003
  // Back in Java
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1004
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1005
  // We use release_store_fence to update values like the thread state, where
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1006
  // we don't want the current thread to continue until all our prior memory
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1007
  // accesses (including the new thread state) are visible to other threads.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1008
  __ li(R0/*thread_state*/, _thread_in_Java);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1009
  __ release();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1010
  __ stw(R0/*thread_state*/, thread_(thread_state));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1011
  if (UseMembar) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1012
    __ fence();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1013
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1014
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1015
  __ reset_last_Java_frame();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1016
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1017
  // Jvmdi/jvmpi support. Whether we've got an exception pending or
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1018
  // not, and whether unlocking throws an exception or not, we notify
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1019
  // on native method exit. If we do have an exception, we'll end up
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1020
  // in the caller's context to handle it, so if we don't do the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1021
  // notify here, we'll drop it on the floor.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1022
  __ notify_method_exit(true/*native method*/,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1023
                        ilgl /*illegal state (not used for native methods)*/,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1024
                        InterpreterMacroAssembler::NotifyJVMTI,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1025
                        false /*check_exceptions*/);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1026
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1027
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1028
  // Handle exceptions
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1029
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1030
  if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1031
    // Don't check for exceptions since we're still in the i2n frame. Do that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1032
    // manually afterwards.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1033
    unlock_method(false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1034
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1035
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1036
  // Reset active handles after returning from native.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1037
  // thread->active_handles()->clear();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1038
  __ ld(active_handles, thread_(active_handles));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1039
  // TODO PPC port assert(4 == JNIHandleBlock::top_size_in_bytes(), "unexpected field size");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1040
  __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1041
  __ stw(R0, JNIHandleBlock::top_offset_in_bytes(), active_handles);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1042
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1043
  Label exception_return_sync_check_already_unlocked;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1044
  __ ld(R0/*pending_exception*/, thread_(pending_exception));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1045
  __ cmpdi(CCR0, R0/*pending_exception*/, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1046
  __ bne(CCR0, exception_return_sync_check_already_unlocked);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1047
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1048
  //-----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1049
  // No exception pending.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1050
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1051
  // Move native method result back into proper registers and return.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1052
  // Invoke result handler (may unbox/promote).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1053
  __ ld(R11_scratch1, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1054
  __ ld(R3_RET, _ijava_state_neg(lresult), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1055
  __ lfd(F1_RET, _ijava_state_neg(fresult), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1056
  __ call_stub(result_handler_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1057
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1058
  __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*return_pc*/ R0, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1059
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1060
  // Must use the return pc which was loaded from the caller's frame
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1061
  // as the VM uses return-pc-patching for deoptimization.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1062
  __ mtlr(R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1063
  __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1064
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1065
  //-----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1066
  // An exception is pending. We call into the runtime only if the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1067
  // caller was not interpreted. If it was interpreted the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1068
  // interpreter will do the correct thing. If it isn't interpreted
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1069
  // (call stub/compiled code) we will change our return and continue.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1070
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1071
  BIND(exception_return_sync_check);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1072
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1073
  if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1074
    // Don't check for exceptions since we're still in the i2n frame. Do that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1075
    // manually afterwards.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1076
    unlock_method(false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1077
  }
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1078
  BIND(exception_return_sync_check_already_unlocked);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1079
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1080
  const Register return_pc = R31;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1081
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1082
  __ ld(return_pc, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1083
  __ ld(return_pc, _abi(lr), return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1084
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1085
  // Get the address of the exception handler.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1086
  __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1087
                  R16_thread,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1088
                  return_pc /* return pc */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1089
  __ merge_frames(/*top_frame_sp*/ R21_sender_SP, noreg, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1090
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1091
  // Load the PC of the the exception handler into LR.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1092
  __ mtlr(R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1093
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1094
  // Load exception into R3_ARG1 and clear pending exception in thread.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1095
  __ ld(R3_ARG1/*exception*/, thread_(pending_exception));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1096
  __ li(R4_ARG2, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1097
  __ std(R4_ARG2, thread_(pending_exception));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1098
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1099
  // Load the original return pc into R4_ARG2.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1100
  __ mr(R4_ARG2/*issuing_pc*/, return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1101
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1102
  // Return to exception handler.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1103
  __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1104
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1105
  //=============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1106
  // Counter overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1107
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1108
  if (inc_counter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1109
    // Handle invocation counter overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1110
    __ bind(invocation_counter_overflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1111
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1112
    generate_counter_overflow(continue_after_compile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1113
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1114
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1115
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1116
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1117
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1118
// Generic interpreted method entry to (asm) interpreter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1119
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1120
address TemplateInterpreterGenerator::generate_normal_entry(bool synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1121
  bool inc_counter = UseCompiler || CountCompiledCalls;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1122
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1123
  // Generate the code to allocate the interpreter stack frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1124
  Register Rsize_of_parameters = R4_ARG2, // Written by generate_fixed_frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1125
           Rsize_of_locals     = R5_ARG3; // Written by generate_fixed_frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1126
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1127
  generate_fixed_frame(false, Rsize_of_parameters, Rsize_of_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1128
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1129
#ifdef FAST_DISPATCH
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1130
  __ unimplemented("Fast dispatch in generate_normal_entry");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1131
#if 0
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1132
  __ set((intptr_t)Interpreter::dispatch_table(), IdispatchTables);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1133
  // Set bytecode dispatch table base.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1134
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1135
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1136
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1137
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1138
  // Zero out non-parameter locals.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1139
  // Note: *Always* zero out non-parameter locals as Sparc does. It's not
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1140
  // worth to ask the flag, just do it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1141
  Register Rslot_addr = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1142
           Rnum       = R7_ARG5;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1143
  Label Lno_locals, Lzero_loop;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1144
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1145
  // Set up the zeroing loop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1146
  __ subf(Rnum, Rsize_of_parameters, Rsize_of_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1147
  __ subf(Rslot_addr, Rsize_of_parameters, R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1148
  __ srdi_(Rnum, Rnum, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1149
  __ beq(CCR0, Lno_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1150
  __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1151
  __ mtctr(Rnum);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1152
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1153
  // The zero locals loop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1154
  __ bind(Lzero_loop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1155
  __ std(R0, 0, Rslot_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1156
  __ addi(Rslot_addr, Rslot_addr, -Interpreter::stackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1157
  __ bdnz(Lzero_loop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1158
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1159
  __ bind(Lno_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1160
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1161
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1162
  // Counter increment and overflow check.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1163
  Label invocation_counter_overflow,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1164
        profile_method,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1165
        profile_method_continue;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1166
  if (inc_counter || ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1167
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1168
    Register Rdo_not_unlock_if_synchronized_addr = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1169
    if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1170
      // Since at this point in the method invocation the exception handler
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1171
      // would try to exit the monitor of synchronized methods which hasn't
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1172
      // been entered yet, we set the thread local variable
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1173
      // _do_not_unlock_if_synchronized to true. If any exception was thrown by
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1174
      // runtime, exception handling i.e. unlock_if_synchronized_method will
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1175
      // check this thread local flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1176
      // This flag has two effects, one is to force an unwind in the topmost
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1177
      // interpreter frame and not perform an unlock while doing so.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1178
      __ li(R0, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1179
      __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1180
    }
28187
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1181
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1182
    // Argument and return type profiling.
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1183
    __ profile_parameters_type(R3_ARG1, R4_ARG2, R5_ARG3, R6_ARG4);
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1184
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1185
    // Increment invocation counter and check for overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1186
    if (inc_counter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1187
      generate_counter_incr(&invocation_counter_overflow, &profile_method, &profile_method_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1188
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1189
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1190
    __ bind(profile_method_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1191
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1192
    // Reset the _do_not_unlock_if_synchronized flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1193
    if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1194
      __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1195
      __ stb(R0, in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1196
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1197
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1198
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1199
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1200
  // Locking of synchronized methods. Must happen AFTER invocation_counter
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1201
  // check and stack overflow check, so method is not locked if overflows.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1202
  if (synchronized) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1203
    lock_method(R3_ARG1, R4_ARG2, R5_ARG3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1204
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1205
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1206
  else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1207
    Label Lok;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1208
    __ lwz(R0, in_bytes(Method::access_flags_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1209
    __ andi_(R0, R0, JVM_ACC_SYNCHRONIZED);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1210
    __ asm_assert_eq("method needs synchronization", 0x8521);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1211
    __ bind(Lok);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1212
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1213
#endif // ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1214
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1215
  __ verify_thread();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1216
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1217
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1218
  // JVMTI support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1219
  __ notify_method_entry();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1220
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1221
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1222
  // Start executing instructions.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1223
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1224
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1225
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1226
  // Out of line counter overflow and MDO creation code.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1227
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1228
    // We have decided to profile this method in the interpreter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1229
    __ bind(profile_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1230
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1231
    __ set_method_data_pointer_for_bcp();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1232
    __ b(profile_method_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1233
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1234
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1235
  if (inc_counter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1236
    // Handle invocation counter overflow.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1237
    __ bind(invocation_counter_overflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1238
    generate_counter_overflow(profile_method_continue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1239
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1240
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1241
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1242
31861
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1243
// CRC32 Intrinsics.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1244
//
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1245
// Contract on scratch and work registers.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1246
// =======================================
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1247
//
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1248
// On ppc, the register set {R2..R12} is available in the interpreter as scratch/work registers.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1249
// You should, however, keep in mind that {R3_ARG1..R10_ARG8} is the C-ABI argument register set.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1250
// You can't rely on these registers across calls.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1251
//
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1252
// The generators for CRC32_update and for CRC32_updateBytes use the
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1253
// scratch/work register set internally, passing the work registers
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1254
// as arguments to the MacroAssembler emitters as required.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1255
//
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1256
// R3_ARG1..R6_ARG4 are preset to hold the incoming java arguments.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1257
// Their contents is not constant but may change according to the requirements
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1258
// of the emitted code.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1259
//
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1260
// All other registers from the scratch/work register set are used "internally"
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1261
// and contain garbage (i.e. unpredictable values) once blr() is reached.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1262
// Basically, only R3_RET contains a defined value which is the function result.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1263
//
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1264
/**
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1265
 * Method entry for static native methods:
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1266
 *   int java.util.zip.CRC32.update(int crc, int b)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1267
 */
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1268
address InterpreterGenerator::generate_CRC32_update_entry() {
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1269
  address start = __ pc();  // Remember stub start address (is rtn value).
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1270
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1271
  if (UseCRC32Intrinsics) {
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1272
    Label slow_path;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1273
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1274
    // Safepoint check
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1275
    const Register sync_state = R11_scratch1;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1276
    int sync_state_offs = __ load_const_optimized(sync_state, SafepointSynchronize::address_of_state(), /*temp*/R0, true);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1277
    __ lwz(sync_state, sync_state_offs, sync_state);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1278
    __ cmpwi(CCR0, sync_state, SafepointSynchronize::_not_synchronized);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1279
    __ bne(CCR0, slow_path);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1280
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1281
    // We don't generate local frame and don't align stack because
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1282
    // we not even call stub code (we generate the code inline)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1283
    // and there is no safepoint on this path.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1284
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1285
    // Load java parameters.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1286
    // R15_esp is callers operand stack pointer, i.e. it points to the parameters.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1287
    const Register argP    = R15_esp;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1288
    const Register crc     = R3_ARG1;  // crc value
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1289
    const Register data    = R4_ARG2;  // address of java byte value (kernel_crc32 needs address)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1290
    const Register dataLen = R5_ARG3;  // source data len (1 byte). Not used because calling the single-byte emitter.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1291
    const Register table   = R6_ARG4;  // address of crc32 table
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1292
    const Register tmp     = dataLen;  // Reuse unused len register to show we don't actually need a separate tmp here.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1293
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1294
    BLOCK_COMMENT("CRC32_update {");
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1295
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1296
    // Arguments are reversed on java expression stack
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1297
#ifdef VM_LITTLE_ENDIAN
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1298
    __ addi(data, argP, 0+1*wordSize); // (stack) address of byte value. Emitter expects address, not value.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1299
                                       // Being passed as an int, the single byte is at offset +0.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1300
#else
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1301
    __ addi(data, argP, 3+1*wordSize); // (stack) address of byte value. Emitter expects address, not value.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1302
                                       // Being passed from java as an int, the single byte is at offset +3.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1303
#endif
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1304
    __ lwz(crc,  2*wordSize, argP);    // Current crc state, zero extend to 64 bit to have a clean register.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1305
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1306
    StubRoutines::ppc64::generate_load_crc_table_addr(_masm, table);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1307
    __ kernel_crc32_singleByte(crc, data, dataLen, table, tmp);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1308
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1309
    // Restore caller sp for c2i case and return.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1310
    __ mr(R1_SP, R21_sender_SP); // Cut the stack back to where the caller started.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1311
    __ blr();
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1312
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1313
    // Generate a vanilla native entry as the slow path.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1314
    BLOCK_COMMENT("} CRC32_update");
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1315
    BIND(slow_path);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1316
  }
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1317
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1318
  (void) generate_native_entry(false);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1319
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1320
  return start;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1321
}
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1322
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1323
// CRC32 Intrinsics.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1324
/**
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1325
 * Method entry for static native methods:
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1326
 *   int java.util.zip.CRC32.updateBytes(     int crc, byte[] b,  int off, int len)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1327
 *   int java.util.zip.CRC32.updateByteBuffer(int crc, long* buf, int off, int len)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1328
 */
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1329
address InterpreterGenerator::generate_CRC32_updateBytes_entry(AbstractInterpreter::MethodKind kind) {
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1330
  address start = __ pc();  // Remember stub start address (is rtn value).
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1331
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1332
  if (UseCRC32Intrinsics) {
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1333
    Label slow_path;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1334
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1335
    // Safepoint check
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1336
    const Register sync_state = R11_scratch1;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1337
    int sync_state_offs = __ load_const_optimized(sync_state, SafepointSynchronize::address_of_state(), /*temp*/R0, true);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1338
    __ lwz(sync_state, sync_state_offs, sync_state);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1339
    __ cmpwi(CCR0, sync_state, SafepointSynchronize::_not_synchronized);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1340
    __ bne(CCR0, slow_path);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1341
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1342
    // We don't generate local frame and don't align stack because
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1343
    // we not even call stub code (we generate the code inline)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1344
    // and there is no safepoint on this path.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1345
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1346
    // Load parameters.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1347
    // Z_esp is callers operand stack pointer, i.e. it points to the parameters.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1348
    const Register argP    = R15_esp;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1349
    const Register crc     = R3_ARG1;  // crc value
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1350
    const Register data    = R4_ARG2;  // address of java byte array
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1351
    const Register dataLen = R5_ARG3;  // source data len
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1352
    const Register table   = R6_ARG4;  // address of crc32 table
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1353
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1354
    const Register t0      = R9;       // scratch registers for crc calculation
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1355
    const Register t1      = R10;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1356
    const Register t2      = R11;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1357
    const Register t3      = R12;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1358
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1359
    const Register tc0     = R2;       // registers to hold pre-calculated column addresses
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1360
    const Register tc1     = R7;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1361
    const Register tc2     = R8;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1362
    const Register tc3     = table;    // table address is reconstructed at the end of kernel_crc32_* emitters
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1363
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1364
    const Register tmp     = t0;       // Only used very locally to calculate byte buffer address.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1365
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1366
    // Arguments are reversed on java expression stack.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1367
    // Calculate address of start element.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1368
    if (kind == Interpreter::java_util_zip_CRC32_updateByteBuffer) { // Used for "updateByteBuffer direct".
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1369
      BLOCK_COMMENT("CRC32_updateByteBuffer {");
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1370
      // crc     @ (SP + 5W) (32bit)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1371
      // buf     @ (SP + 3W) (64bit ptr to long array)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1372
      // off     @ (SP + 2W) (32bit)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1373
      // dataLen @ (SP + 1W) (32bit)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1374
      // data = buf + off
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1375
      __ ld(  data,    3*wordSize, argP);  // start of byte buffer
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1376
      __ lwa( tmp,     2*wordSize, argP);  // byte buffer offset
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1377
      __ lwa( dataLen, 1*wordSize, argP);  // #bytes to process
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1378
      __ lwz( crc,     5*wordSize, argP);  // current crc state
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1379
      __ add( data, data, tmp);            // Add byte buffer offset.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1380
    } else {                                                         // Used for "updateBytes update".
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1381
      BLOCK_COMMENT("CRC32_updateBytes {");
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1382
      // crc     @ (SP + 4W) (32bit)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1383
      // buf     @ (SP + 3W) (64bit ptr to byte array)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1384
      // off     @ (SP + 2W) (32bit)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1385
      // dataLen @ (SP + 1W) (32bit)
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1386
      // data = buf + off + base_offset
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1387
      __ ld(  data,    3*wordSize, argP);  // start of byte buffer
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1388
      __ lwa( tmp,     2*wordSize, argP);  // byte buffer offset
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1389
      __ lwa( dataLen, 1*wordSize, argP);  // #bytes to process
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1390
      __ add( data, data, tmp);            // add byte buffer offset
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1391
      __ lwz( crc,     4*wordSize, argP);  // current crc state
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1392
      __ addi(data, data, arrayOopDesc::base_offset_in_bytes(T_BYTE));
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1393
    }
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1394
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1395
    StubRoutines::ppc64::generate_load_crc_table_addr(_masm, table);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1396
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1397
    // Performance measurements show the 1word and 2word variants to be almost equivalent,
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1398
    // with very light advantages for the 1word variant. We chose the 1word variant for
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1399
    // code compactness.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1400
    __ kernel_crc32_1word(crc, data, dataLen, table, t0, t1, t2, t3, tc0, tc1, tc2, tc3);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1401
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1402
    // Restore caller sp for c2i case and return.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1403
    __ mr(R1_SP, R21_sender_SP); // Cut the stack back to where the caller started.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1404
    __ blr();
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1405
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1406
    // Generate a vanilla native entry as the slow path.
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1407
    BLOCK_COMMENT("} CRC32_updateBytes(Buffer)");
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1408
    BIND(slow_path);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1409
  }
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1410
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1411
  (void) generate_native_entry(false);
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1412
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1413
  return start;
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1414
}
7efea6fae96b 8131048: ppc: implement CRC32 intrinsic
goetz
parents: 30303
diff changeset
  1415
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1416
// These should never be compiled since the interpreter will prefer
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1417
// the compiled version to the intrinsic version.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1418
bool AbstractInterpreter::can_be_compiled(methodHandle m) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1419
  return !math_entry_available(method_kind(m));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1420
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1421
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1422
// How much stack a method activation needs in stack slots.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1423
// We must calc this exactly like in generate_fixed_frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1424
// Note: This returns the conservative size assuming maximum alignment.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1425
int AbstractInterpreter::size_top_interpreter_activation(Method* method) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1426
  const int max_alignment_size = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1427
  const int abi_scratch = frame::abi_reg_args_size;
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1428
  return method->max_locals() + method->max_stack() +
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1429
         frame::interpreter_frame_monitor_size() + max_alignment_size + abi_scratch;
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1430
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1431
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1432
// Returns number of stackElementWords needed for the interpreter frame with the
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1433
// given sections.
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1434
// This overestimates the stack by one slot in case of alignments.
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1435
int AbstractInterpreter::size_activation(int max_stack,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1436
                                         int temps,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1437
                                         int extra_args,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1438
                                         int monitors,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1439
                                         int callee_params,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1440
                                         int callee_locals,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1441
                                         bool is_top_frame) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1442
  // Note: This calculation must exactly parallel the frame setup
25950
b5c40ed1d349 8003426: Remove UseFastAccessors and UseFastEmptyMethods except for zero
coleenp
parents: 25916
diff changeset
  1443
  // in InterpreterGenerator::generate_fixed_frame.
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1444
  assert(Interpreter::stackElementWords == 1, "sanity");
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1445
  const int max_alignment_space = StackAlignmentInBytes / Interpreter::stackElementSize;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1446
  const int abi_scratch = is_top_frame ? (frame::abi_reg_args_size / Interpreter::stackElementSize) :
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1447
                                         (frame::abi_minframe_size / Interpreter::stackElementSize);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1448
  const int size =
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1449
    max_stack                                                +
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1450
    (callee_locals - callee_params)                          +
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1451
    monitors * frame::interpreter_frame_monitor_size()       +
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1452
    max_alignment_space                                      +
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1453
    abi_scratch                                              +
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1454
    frame::ijava_state_size / Interpreter::stackElementSize;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1455
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1456
  // Fixed size of an interpreter frame, align to 16-byte.
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1457
  return (size & -2);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1458
}
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1459
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1460
// Fills a sceletal interpreter frame generated during deoptimizations.
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1461
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1462
// Parameters:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1463
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1464
// interpreter_frame != NULL:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1465
//   set up the method, locals, and monitors.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1466
//   The frame interpreter_frame, if not NULL, is guaranteed to be the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1467
//   right size, as determined by a previous call to this method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1468
//   It is also guaranteed to be walkable even though it is in a skeletal state
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1469
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1470
// is_top_frame == true:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1471
//   We're processing the *oldest* interpreter frame!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1472
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1473
// pop_frame_extra_args:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1474
//   If this is != 0 we are returning to a deoptimized frame by popping
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1475
//   off the callee frame. We want to re-execute the call that called the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1476
//   callee interpreted, but since the return to the interpreter would pop
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1477
//   the arguments off advance the esp by dummy popframe_extra_args slots.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1478
//   Popping off those will establish the stack layout as it was before the call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1479
//
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1480
void AbstractInterpreter::layout_activation(Method* method,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1481
                                            int tempcount,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1482
                                            int popframe_extra_args,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1483
                                            int moncount,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1484
                                            int caller_actual_parameters,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1485
                                            int callee_param_count,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1486
                                            int callee_locals_count,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1487
                                            frame* caller,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1488
                                            frame* interpreter_frame,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1489
                                            bool is_top_frame,
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1490
                                            bool is_bottom_frame) {
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1491
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1492
  const int abi_scratch = is_top_frame ? (frame::abi_reg_args_size / Interpreter::stackElementSize) :
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1493
                                         (frame::abi_minframe_size / Interpreter::stackElementSize);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1494
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1495
  intptr_t* locals_base  = (caller->is_interpreted_frame()) ?
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1496
    caller->interpreter_frame_esp() + caller_actual_parameters :
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1497
    caller->sp() + method->max_locals() - 1 + (frame::abi_minframe_size / Interpreter::stackElementSize) ;
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1498
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1499
  intptr_t* monitor_base = caller->sp() - frame::ijava_state_size / Interpreter::stackElementSize ;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1500
  intptr_t* monitor      = monitor_base - (moncount * frame::interpreter_frame_monitor_size());
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1501
  intptr_t* esp_base     = monitor - 1;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1502
  intptr_t* esp          = esp_base - tempcount - popframe_extra_args;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1503
  intptr_t* sp           = (intptr_t *) (((intptr_t) (esp_base - callee_locals_count + callee_param_count - method->max_stack()- abi_scratch)) & -StackAlignmentInBytes);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1504
  intptr_t* sender_sp    = caller->sp() + (frame::abi_minframe_size - frame::abi_reg_args_size) / Interpreter::stackElementSize;
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1505
  intptr_t* top_frame_sp = is_top_frame ? sp : sp + (frame::abi_minframe_size - frame::abi_reg_args_size) / Interpreter::stackElementSize;
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1506
24018
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1507
  interpreter_frame->interpreter_frame_set_method(method);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1508
  interpreter_frame->interpreter_frame_set_locals(locals_base);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1509
  interpreter_frame->interpreter_frame_set_cpcache(method->constants()->cache());
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1510
  interpreter_frame->interpreter_frame_set_esp(esp);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1511
  interpreter_frame->interpreter_frame_set_monitor_end((BasicObjectLock *)monitor);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1512
  interpreter_frame->interpreter_frame_set_top_frame_sp(top_frame_sp);
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1513
  if (!is_bottom_frame) {
77b156916bab 8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents: 23522
diff changeset
  1514
    interpreter_frame->interpreter_frame_set_sender_sp(sender_sp);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1515
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1516
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1517
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1518
// =============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1519
// Exceptions
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1520
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1521
void TemplateInterpreterGenerator::generate_throw_exception() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1522
  Register Rexception    = R17_tos,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1523
           Rcontinuation = R3_RET;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1524
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1525
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1526
  // Entry point if an method returns with a pending exception (rethrow).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1527
  Interpreter::_rethrow_exception_entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1528
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1529
    __ restore_interpreter_state(R11_scratch1); // Sets R11_scratch1 = fp.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1530
    __ ld(R12_scratch2, _ijava_state_neg(top_frame_sp), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1531
    __ resize_frame_absolute(R12_scratch2, R11_scratch1, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1532
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1533
    // Compiled code destroys templateTableBase, reload.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1534
    __ load_const_optimized(R25_templateTableBase, (address)Interpreter::dispatch_table((TosState)0), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1535
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1536
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1537
  // Entry point if a interpreted method throws an exception (throw).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1538
  Interpreter::_throw_exception_entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1539
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1540
    __ mr(Rexception, R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1541
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1542
    __ verify_thread();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1543
    __ verify_oop(Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1544
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1545
    // Expression stack must be empty before entering the VM in case of an exception.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1546
    __ empty_expression_stack();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1547
    // Find exception handler address and preserve exception oop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1548
    // Call C routine to find handler and jump to it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1549
    __ call_VM(Rexception, CAST_FROM_FN_PTR(address, InterpreterRuntime::exception_handler_for_exception), Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1550
    __ mtctr(Rcontinuation);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1551
    // Push exception for exception handler bytecodes.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1552
    __ push_ptr(Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1553
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1554
    // Jump to exception handler (may be remove activation entry!).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1555
    __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1556
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1557
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1558
  // If the exception is not handled in the current frame the frame is
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1559
  // removed and the exception is rethrown (i.e. exception
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1560
  // continuation is _rethrow_exception).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1561
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1562
  // Note: At this point the bci is still the bxi for the instruction
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1563
  // which caused the exception and the expression stack is
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1564
  // empty. Thus, for any VM calls at this point, GC will find a legal
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1565
  // oop map (with empty expression stack).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1566
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1567
  // In current activation
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1568
  // tos: exception
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1569
  // bcp: exception bcp
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1570
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1571
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1572
  // JVMTI PopFrame support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1573
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1574
  Interpreter::_remove_activation_preserving_args_entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1575
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1576
    // Set the popframe_processing bit in popframe_condition indicating that we are
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1577
    // currently handling popframe, so that call_VMs that may happen later do not
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1578
    // trigger new popframe handling cycles.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1579
    __ lwz(R11_scratch1, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1580
    __ ori(R11_scratch1, R11_scratch1, JavaThread::popframe_processing_bit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1581
    __ stw(R11_scratch1, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1582
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1583
    // Empty the expression stack, as in normal exception handling.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1584
    __ empty_expression_stack();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1585
    __ unlock_if_synchronized_method(vtos, /* throw_monitor_exception */ false, /* install_monitor_exception */ false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1586
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1587
    // Check to see whether we are returning to a deoptimized frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1588
    // (The PopFrame call ensures that the caller of the popped frame is
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1589
    // either interpreted or compiled and deoptimizes it if compiled.)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1590
    // Note that we don't compare the return PC against the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1591
    // deoptimization blob's unpack entry because of the presence of
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1592
    // adapter frames in C2.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1593
    Label Lcaller_not_deoptimized;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1594
    Register return_pc = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1595
    __ ld(return_pc, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1596
    __ ld(return_pc, _abi(lr), return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1597
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::interpreter_contains), return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1598
    __ cmpdi(CCR0, R3_RET, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1599
    __ bne(CCR0, Lcaller_not_deoptimized);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1600
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1601
    // The deoptimized case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1602
    // In this case, we can't call dispatch_next() after the frame is
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1603
    // popped, but instead must save the incoming arguments and restore
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1604
    // them after deoptimization has occurred.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1605
    __ ld(R4_ARG2, in_bytes(Method::const_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1606
    __ lhz(R4_ARG2 /* number of params */, in_bytes(ConstMethod::size_of_parameters_offset()), R4_ARG2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1607
    __ slwi(R4_ARG2, R4_ARG2, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1608
    __ addi(R5_ARG3, R18_locals, Interpreter::stackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1609
    __ subf(R5_ARG3, R4_ARG2, R5_ARG3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1610
    // Save these arguments.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1611
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, Deoptimization::popframe_preserve_args), R16_thread, R4_ARG2, R5_ARG3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1612
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1613
    // Inform deoptimization that it is responsible for restoring these arguments.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1614
    __ load_const_optimized(R11_scratch1, JavaThread::popframe_force_deopt_reexecution_bit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1615
    __ stw(R11_scratch1, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1616
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1617
    // Return from the current method into the deoptimization blob. Will eventually
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1618
    // end up in the deopt interpeter entry, deoptimization prepared everything that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1619
    // we will reexecute the call that called us.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1620
    __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*reload return_pc*/ return_pc, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1621
    __ mtlr(return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1622
    __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1623
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1624
    // The non-deoptimized case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1625
    __ bind(Lcaller_not_deoptimized);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1626
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1627
    // Clear the popframe condition flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1628
    __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1629
    __ stw(R0, in_bytes(JavaThread::popframe_condition_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1630
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1631
    // Get out of the current method and re-execute the call that called us.
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1632
    __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*return_pc*/ noreg, R11_scratch1, R12_scratch2);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1633
    __ restore_interpreter_state(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1634
    __ ld(R12_scratch2, _ijava_state_neg(top_frame_sp), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1635
    __ resize_frame_absolute(R12_scratch2, R11_scratch1, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1636
    if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1637
      __ set_method_data_pointer_for_bcp();
28187
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1638
      __ ld(R11_scratch1, 0, R1_SP);
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1639
      __ std(R28_mdx, _ijava_state_neg(mdx), R11_scratch1);
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1640
    }
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1641
#if INCLUDE_JVMTI
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1642
    Label L_done;
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1643
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1644
    __ lbz(R11_scratch1, 0, R14_bcp);
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1645
    __ cmpwi(CCR0, R11_scratch1, Bytecodes::_invokestatic);
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1646
    __ bne(CCR0, L_done);
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1647
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1648
    // The member name argument must be restored if _invokestatic is re-executed after a PopFrame call.
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1649
    // Detect such a case in the InterpreterRuntime function and return the member name argument, or NULL.
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1650
    __ ld(R4_ARG2, 0, R18_locals);
28187
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1651
    __ MacroAssembler::call_VM(R4_ARG2, CAST_FROM_FN_PTR(address, InterpreterRuntime::member_name_arg_or_null), R4_ARG2, R19_method, R14_bcp, false);
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1652
    __ restore_interpreter_state(R11_scratch1, /*bcp_and_mdx_only*/ true);
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1653
    __ cmpdi(CCR0, R4_ARG2, 0);
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1654
    __ beq(CCR0, L_done);
28187
fc19df82d6ee 8066964: ppc64: argument and return type profiling, fix problem with popframe
goetz
parents: 25950
diff changeset
  1655
    __ std(R4_ARG2, wordSize, R15_esp);
24349
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1656
    __ bind(L_done);
d8f40e5b392d 8042309: Some bugfixes for the ppc64 port.
goetz
parents: 24018
diff changeset
  1657
#endif // INCLUDE_JVMTI
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1658
    __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1659
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1660
  // end of JVMTI PopFrame support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1661
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1662
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1663
  // Remove activation exception entry.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1664
  // This is jumped to if an interpreted method can't handle an exception itself
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1665
  // (we come from the throw/rethrow exception entry above). We're going to call
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1666
  // into the VM to find the exception handler in the caller, pop the current
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1667
  // frame and return the handler we calculated.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1668
  Interpreter::_remove_activation_entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1669
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1670
    __ pop_ptr(Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1671
    __ verify_thread();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1672
    __ verify_oop(Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1673
    __ std(Rexception, in_bytes(JavaThread::vm_result_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1674
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1675
    __ unlock_if_synchronized_method(vtos, /* throw_monitor_exception */ false, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1676
    __ notify_method_exit(false, vtos, InterpreterMacroAssembler::SkipNotifyJVMTI, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1677
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1678
    __ get_vm_result(Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1679
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1680
    // We are done with this activation frame; find out where to go next.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1681
    // The continuation point will be an exception handler, which expects
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1682
    // the following registers set up:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1683
    //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1684
    // RET:  exception oop
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1685
    // ARG2: Issuing PC (see generate_exception_blob()), only used if the caller is compiled.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1686
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1687
    Register return_pc = R31; // Needs to survive the runtime call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1688
    __ ld(return_pc, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1689
    __ ld(return_pc, _abi(lr), return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1690
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), R16_thread, return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1691
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1692
    // Remove the current activation.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1693
    __ merge_frames(/*top_frame_sp*/ R21_sender_SP, /*return_pc*/ noreg, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1694
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1695
    __ mr(R4_ARG2, return_pc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1696
    __ mtlr(R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1697
    __ mr(R3_RET, Rexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1698
    __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1699
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1700
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1701
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1702
// JVMTI ForceEarlyReturn support.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1703
// Returns "in the middle" of a method with a "fake" return value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1704
address TemplateInterpreterGenerator::generate_earlyret_entry_for(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1705
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1706
  Register Rscratch1 = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1707
           Rscratch2 = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1708
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1709
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1710
  __ empty_expression_stack();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1711
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1712
  __ load_earlyret_value(state, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1713
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1714
  __ ld(Rscratch1, in_bytes(JavaThread::jvmti_thread_state_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1715
  // Clear the earlyret state.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1716
  __ li(R0, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1717
  __ stw(R0, in_bytes(JvmtiThreadState::earlyret_state_offset()), Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1718
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1719
  __ remove_activation(state, false, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1720
  // Copied from TemplateTable::_return.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1721
  // Restoration of lr done by remove_activation.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1722
  switch (state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1723
    case ltos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1724
    case btos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1725
    case ctos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1726
    case stos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1727
    case atos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1728
    case itos: __ mr(R3_RET, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1729
    case ftos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1730
    case dtos: __ fmr(F1_RET, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1731
    case vtos: // This might be a constructor. Final fields (and volatile fields on PPC64) need
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1732
               // to get visible before the reference to the object gets stored anywhere.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1733
               __ membar(Assembler::StoreStore); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1734
    default  : ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1735
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1736
  __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1737
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1738
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1739
} // end of ForceEarlyReturn support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1740
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1741
//-----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1742
// Helper for vtos entry point generation
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1743
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1744
void TemplateInterpreterGenerator::set_vtos_entry_points(Template* t,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1745
                                                         address& bep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1746
                                                         address& cep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1747
                                                         address& sep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1748
                                                         address& aep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1749
                                                         address& iep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1750
                                                         address& lep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1751
                                                         address& fep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1752
                                                         address& dep,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1753
                                                         address& vep) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1754
  assert(t->is_valid() && t->tos_in() == vtos, "illegal template");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1755
  Label L;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1756
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1757
  aep = __ pc();  __ push_ptr();  __ b(L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1758
  fep = __ pc();  __ push_f();    __ b(L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1759
  dep = __ pc();  __ push_d();    __ b(L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1760
  lep = __ pc();  __ push_l();    __ b(L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1761
  __ align(32, 12, 24); // align L
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1762
  bep = cep = sep =
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1763
  iep = __ pc();  __ push_i();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1764
  vep = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1765
  __ bind(L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1766
  generate_and_dispatch(t);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1767
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1768
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1769
//-----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1770
// Generation of individual instructions
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1771
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1772
// helpers for generate_and_dispatch
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1773
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1774
InterpreterGenerator::InterpreterGenerator(StubQueue* code)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1775
  : TemplateInterpreterGenerator(code) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1776
  generate_all(); // Down here so it can be "virtual".
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1777
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1778
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1779
//-----------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1780
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1781
// Non-product code
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1782
#ifndef PRODUCT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1783
address TemplateInterpreterGenerator::generate_trace_code(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1784
  //__ flush_bundle();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1785
  address entry = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1786
23522
217a6a90aad3 8038201: Clean up misleading usage of malloc() in init_system_properties_values()
goetz
parents: 23221
diff changeset
  1787
  const char *bname = NULL;
23221
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1788
  uint tsize = 0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1789
  switch(state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1790
  case ftos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1791
    bname = "trace_code_ftos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1792
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1793
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1794
  case btos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1795
    bname = "trace_code_btos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1796
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1797
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1798
  case ctos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1799
    bname = "trace_code_ctos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1800
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1801
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1802
  case stos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1803
    bname = "trace_code_stos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1804
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1805
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1806
  case itos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1807
    bname = "trace_code_itos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1808
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1809
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1810
  case ltos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1811
    bname = "trace_code_ltos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1812
    tsize = 3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1813
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1814
  case atos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1815
    bname = "trace_code_atos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1816
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1817
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1818
  case vtos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1819
    // Note: In case of vtos, the topmost of stack value could be a int or doubl
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1820
    // In case of a double (2 slots) we won't see the 2nd stack value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1821
    // Maybe we simply should print the topmost 3 stack slots to cope with the problem.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1822
    bname = "trace_code_vtos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1823
    tsize = 2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1824
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1825
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1826
  case dtos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1827
    bname = "trace_code_dtos {";
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1828
    tsize = 3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1829
    break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1830
  default:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1831
    ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1832
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1833
  BLOCK_COMMENT(bname);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1834
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1835
  // Support short-cut for TraceBytecodesAt.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1836
  // Don't call into the VM if we don't want to trace to speed up things.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1837
  Label Lskip_vm_call;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1838
  if (TraceBytecodesAt > 0 && TraceBytecodesAt < max_intx) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1839
    int offs1 = __ load_const_optimized(R11_scratch1, (address) &TraceBytecodesAt, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1840
    int offs2 = __ load_const_optimized(R12_scratch2, (address) &BytecodeCounter::_counter_value, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1841
    __ ld(R11_scratch1, offs1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1842
    __ lwa(R12_scratch2, offs2, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1843
    __ cmpd(CCR0, R12_scratch2, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1844
    __ blt(CCR0, Lskip_vm_call);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1845
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1846
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1847
  __ push(state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1848
  // Load 2 topmost expression stack values.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1849
  __ ld(R6_ARG4, tsize*Interpreter::stackElementSize, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1850
  __ ld(R5_ARG3, Interpreter::stackElementSize, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1851
  __ mflr(R31);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1852
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::trace_bytecode), /* unused */ R4_ARG2, R5_ARG3, R6_ARG4, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1853
  __ mtlr(R31);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1854
  __ pop(state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1855
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1856
  if (TraceBytecodesAt > 0 && TraceBytecodesAt < max_intx) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1857
    __ bind(Lskip_vm_call);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1858
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1859
  __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1860
  BLOCK_COMMENT("} trace_code");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1861
  return entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1862
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1863
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1864
void TemplateInterpreterGenerator::count_bytecode() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1865
  int offs = __ load_const_optimized(R11_scratch1, (address) &BytecodeCounter::_counter_value, R12_scratch2, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1866
  __ lwz(R12_scratch2, offs, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1867
  __ addi(R12_scratch2, R12_scratch2, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1868
  __ stw(R12_scratch2, offs, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1869
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1870
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1871
void TemplateInterpreterGenerator::histogram_bytecode(Template* t) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1872
  int offs = __ load_const_optimized(R11_scratch1, (address) &BytecodeHistogram::_counters[t->bytecode()], R12_scratch2, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1873
  __ lwz(R12_scratch2, offs, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1874
  __ addi(R12_scratch2, R12_scratch2, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1875
  __ stw(R12_scratch2, offs, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1876
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1877
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1878
void TemplateInterpreterGenerator::histogram_bytecode_pair(Template* t) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1879
  const Register addr = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1880
                 tmp  = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1881
  // Get index, shift out old bytecode, bring in new bytecode, and store it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1882
  // _index = (_index >> log2_number_of_codes) |
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1883
  //          (bytecode << log2_number_of_codes);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1884
  int offs1 = __ load_const_optimized(addr, (address)&BytecodePairHistogram::_index, tmp, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1885
  __ lwz(tmp, offs1, addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1886
  __ srwi(tmp, tmp, BytecodePairHistogram::log2_number_of_codes);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1887
  __ ori(tmp, tmp, ((int) t->bytecode()) << BytecodePairHistogram::log2_number_of_codes);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1888
  __ stw(tmp, offs1, addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1889
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1890
  // Bump bucket contents.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1891
  // _counters[_index] ++;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1892
  int offs2 = __ load_const_optimized(addr, (address)&BytecodePairHistogram::_counters, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1893
  __ sldi(tmp, tmp, LogBytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1894
  __ add(addr, tmp, addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1895
  __ lwz(tmp, offs2, addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1896
  __ addi(tmp, tmp, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1897
  __ stw(tmp, offs2, addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1898
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1899
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1900
void TemplateInterpreterGenerator::trace_bytecode(Template* t) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1901
  // Call a little run-time stub to avoid blow-up for each bytecode.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1902
  // The run-time runtime saves the right registers, depending on
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1903
  // the tosca in-state for the given template.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1904
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1905
  assert(Interpreter::trace_code(t->tos_in()) != NULL,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1906
         "entry must have been generated");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1907
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1908
  // Note: we destroy LR here.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1909
  __ bl(Interpreter::trace_code(t->tos_in()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1910
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1911
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1912
void TemplateInterpreterGenerator::stop_interpreter_at() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1913
  Label L;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1914
  int offs1 = __ load_const_optimized(R11_scratch1, (address) &StopInterpreterAt, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1915
  int offs2 = __ load_const_optimized(R12_scratch2, (address) &BytecodeCounter::_counter_value, R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1916
  __ ld(R11_scratch1, offs1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1917
  __ lwa(R12_scratch2, offs2, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1918
  __ cmpd(CCR0, R12_scratch2, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1919
  __ bne(CCR0, L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1920
  __ illtrap();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1921
  __ bind(L);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1922
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1923
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1924
#endif // !PRODUCT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1925
#endif // !CC_INTERP