hotspot/src/cpu/ppc/vm/templateTable_ppc_64.cpp
author goetz
Mon, 10 Mar 2014 12:58:02 +0100
changeset 23221 b70675ece1ce
child 24322 c2978d1578e3
permissions -rw-r--r--
8036976: PPC64: implement the template interpreter Reviewed-by: kvn, coleenp Contributed-by: axel.siebenborn@sap.com, martin.doerr@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
/*
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
     3
 * Copyright 2013, 2014 SAP AG. All rights reserved.
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
#include "asm/macroAssembler.inline.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    28
#include "interpreter/interpreter.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    29
#include "interpreter/interpreterRuntime.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    30
#include "interpreter/templateInterpreter.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    31
#include "interpreter/templateTable.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    32
#include "memory/universe.inline.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    33
#include "oops/objArrayKlass.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    34
#include "oops/oop.inline.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    35
#include "prims/methodHandles.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    36
#include "runtime/sharedRuntime.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    37
#include "runtime/stubRoutines.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    38
#include "runtime/synchronizer.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    39
#include "utilities/macros.hpp"
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    40
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    41
#ifndef CC_INTERP
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    42
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    43
#undef __
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    44
#define __ _masm->
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    45
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    46
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    47
// Misc helpers
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    48
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    49
// Do an oop store like *(base + index) = val OR *(base + offset) = val
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    50
// (only one of both variants is possible at the same time).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    51
// Index can be noreg.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    52
// Kills:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    53
//   Rbase, Rtmp
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    54
static void do_oop_store(InterpreterMacroAssembler* _masm,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    55
                         Register           Rbase,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    56
                         RegisterOrConstant offset,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    57
                         Register           Rval,         // Noreg means always null.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    58
                         Register           Rtmp1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    59
                         Register           Rtmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    60
                         Register           Rtmp3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    61
                         BarrierSet::Name   barrier,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    62
                         bool               precise,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    63
                         bool               check_null) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    64
  assert_different_registers(Rtmp1, Rtmp2, Rtmp3, Rval, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    65
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    66
  switch (barrier) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    67
#ifndef SERIALGC
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    68
    case BarrierSet::G1SATBCT:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    69
    case BarrierSet::G1SATBCTLogging:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    70
      {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    71
        // Load and record the previous value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    72
        __ g1_write_barrier_pre(Rbase, offset,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    73
                                Rtmp3, /* holder of pre_val ? */
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    74
                                Rtmp1, Rtmp2, false /* frame */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    75
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    76
        Label Lnull, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    77
        if (Rval != noreg) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    78
          if (check_null) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    79
            __ cmpdi(CCR0, Rval, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    80
            __ beq(CCR0, Lnull);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    81
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    82
          __ store_heap_oop_not_null(Rval, offset, Rbase, /*Rval must stay uncompressed.*/ Rtmp1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    83
          // Mark the card.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    84
          if (!(offset.is_constant() && offset.as_constant() == 0) && precise) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    85
            __ add(Rbase, offset, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    86
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    87
          __ g1_write_barrier_post(Rbase, Rval, Rtmp1, Rtmp2, Rtmp3, /*filtered (fast path)*/ &Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    88
          if (check_null) { __ b(Ldone); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    89
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    90
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    91
        if (Rval == noreg || check_null) { // Store null oop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    92
          Register Rnull = Rval;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    93
          __ bind(Lnull);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    94
          if (Rval == noreg) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    95
            Rnull = Rtmp1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    96
            __ li(Rnull, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    97
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    98
          if (UseCompressedOops) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
    99
            __ stw(Rnull, offset, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   100
          } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   101
            __ std(Rnull, offset, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   102
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   103
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   104
        __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   105
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   106
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   107
#endif // SERIALGC
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   108
    case BarrierSet::CardTableModRef:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   109
    case BarrierSet::CardTableExtension:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   110
      {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   111
        Label Lnull, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   112
        if (Rval != noreg) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   113
          if (check_null) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   114
            __ cmpdi(CCR0, Rval, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   115
            __ beq(CCR0, Lnull);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   116
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   117
          __ store_heap_oop_not_null(Rval, offset, Rbase, /*Rval should better stay uncompressed.*/ Rtmp1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   118
          // Mark the card.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   119
          if (!(offset.is_constant() && offset.as_constant() == 0) && precise) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   120
            __ add(Rbase, offset, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   121
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   122
          __ card_write_barrier_post(Rbase, Rval, Rtmp1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   123
          if (check_null) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   124
            __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   125
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   126
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   127
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   128
        if (Rval == noreg || check_null) { // Store null oop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   129
          Register Rnull = Rval;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   130
          __ bind(Lnull);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   131
          if (Rval == noreg) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   132
            Rnull = Rtmp1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   133
            __ li(Rnull, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   134
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   135
          if (UseCompressedOops) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   136
            __ stw(Rnull, offset, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   137
          } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   138
            __ std(Rnull, offset, Rbase);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   139
          }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   140
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   141
        __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   142
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   143
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   144
    case BarrierSet::ModRef:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   145
    case BarrierSet::Other:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   146
      ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   147
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   148
    default:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   149
      ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   150
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   151
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   152
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   153
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   154
// Platform-dependent initialization
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   155
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   156
void TemplateTable::pd_initialize() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   157
  // No ppc64 specific initialization.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   158
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   159
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   160
Address TemplateTable::at_bcp(int offset) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   161
  // Not used on ppc.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   162
  ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   163
  return Address();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   164
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   165
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   166
// Patches the current bytecode (ptr to it located in bcp)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   167
// in the bytecode stream with a new one.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   168
void TemplateTable::patch_bytecode(Bytecodes::Code new_bc, Register Rnew_bc, Register Rtemp, bool load_bc_into_bc_reg /*=true*/, int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   169
  // With sharing on, may need to test method flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   170
  if (!RewriteBytecodes) return;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   171
  Label L_patch_done;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   172
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   173
  switch (new_bc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   174
    case Bytecodes::_fast_aputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   175
    case Bytecodes::_fast_bputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   176
    case Bytecodes::_fast_cputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   177
    case Bytecodes::_fast_dputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   178
    case Bytecodes::_fast_fputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   179
    case Bytecodes::_fast_iputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   180
    case Bytecodes::_fast_lputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   181
    case Bytecodes::_fast_sputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   182
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   183
      // We skip bytecode quickening for putfield instructions when
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   184
      // the put_code written to the constant pool cache is zero.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   185
      // This is required so that every execution of this instruction
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   186
      // calls out to InterpreterRuntime::resolve_get_put to do
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   187
      // additional, required work.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   188
      assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   189
      assert(load_bc_into_bc_reg, "we use bc_reg as temp");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   190
      __ get_cache_and_index_at_bcp(Rtemp /* dst = cache */, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   191
      // Big Endian: ((*(cache+indices))>>((1+byte_no)*8))&0xFF
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   192
      __ lbz(Rnew_bc, in_bytes(ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::indices_offset()) + 7 - (1 + byte_no), Rtemp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   193
      __ cmpwi(CCR0, Rnew_bc, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   194
      __ li(Rnew_bc, (unsigned int)(unsigned char)new_bc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   195
      __ beq(CCR0, L_patch_done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   196
      // __ isync(); // acquire not needed
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   197
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   198
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   199
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   200
    default:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   201
      assert(byte_no == -1, "sanity");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   202
      if (load_bc_into_bc_reg) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   203
        __ li(Rnew_bc, (unsigned int)(unsigned char)new_bc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   204
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   205
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   206
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   207
  if (JvmtiExport::can_post_breakpoint()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   208
    Label L_fast_patch;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   209
    __ lbz(Rtemp, 0, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   210
    __ cmpwi(CCR0, Rtemp, (unsigned int)(unsigned char)Bytecodes::_breakpoint);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   211
    __ bne(CCR0, L_fast_patch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   212
    // Perform the quickening, slowly, in the bowels of the breakpoint table.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   213
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::set_original_bytecode_at), R19_method, R14_bcp, Rnew_bc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   214
    __ b(L_patch_done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   215
    __ bind(L_fast_patch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   216
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   217
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   218
  // Patch bytecode.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   219
  __ stb(Rnew_bc, 0, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   220
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   221
  __ bind(L_patch_done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   222
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   223
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   224
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   225
// Individual instructions
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   226
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   227
void TemplateTable::nop() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   228
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   229
  // Nothing to do.
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
void TemplateTable::shouldnotreachhere() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   233
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   234
  __ stop("shouldnotreachhere bytecode");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   235
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   236
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   237
void TemplateTable::aconst_null() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   238
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   239
  __ li(R17_tos, 0);
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
void TemplateTable::iconst(int value) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   243
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   244
  assert(value >= -1 && value <= 5, "");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   245
  __ li(R17_tos, value);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   246
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   247
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   248
void TemplateTable::lconst(int value) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   249
  transition(vtos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   250
  assert(value >= -1 && value <= 5, "");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   251
  __ li(R17_tos, value);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   252
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   253
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   254
void TemplateTable::fconst(int value) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   255
  transition(vtos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   256
  static float zero = 0.0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   257
  static float one  = 1.0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   258
  static float two  = 2.0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   259
  switch (value) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   260
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   261
    case 0: {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   262
      int simm16_offset = __ load_const_optimized(R11_scratch1, (address*)&zero, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   263
      __ lfs(F15_ftos, simm16_offset, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   264
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   265
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   266
    case 1: {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   267
      int simm16_offset = __ load_const_optimized(R11_scratch1, (address*)&one, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   268
      __ lfs(F15_ftos, simm16_offset, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   269
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   270
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   271
    case 2: {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   272
      int simm16_offset = __ load_const_optimized(R11_scratch1, (address*)&two, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   273
      __ lfs(F15_ftos, simm16_offset, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   274
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   275
    }
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
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   279
void TemplateTable::dconst(int value) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   280
  transition(vtos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   281
  static double zero = 0.0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   282
  static double one  = 1.0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   283
  switch (value) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   284
    case 0: {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   285
      int simm16_offset = __ load_const_optimized(R11_scratch1, (address*)&zero, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   286
      __ lfd(F15_ftos, simm16_offset, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   287
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   288
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   289
    case 1: {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   290
      int simm16_offset = __ load_const_optimized(R11_scratch1, (address*)&one, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   291
      __ lfd(F15_ftos, simm16_offset, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   292
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   293
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   294
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   295
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   296
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   297
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   298
void TemplateTable::bipush() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   299
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   300
  __ lbz(R17_tos, 1, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   301
  __ extsb(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   302
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   303
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   304
void TemplateTable::sipush() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   305
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   306
  __ get_2_byte_integer_at_bcp(1, R17_tos, InterpreterMacroAssembler::Signed);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   307
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   308
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   309
void TemplateTable::ldc(bool wide) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   310
  Register Rscratch1 = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   311
           Rscratch2 = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   312
           Rcpool    = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   313
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   314
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   315
  Label notInt, notClass, exit;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   316
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   317
  __ get_cpool_and_tags(Rcpool, Rscratch2); // Set Rscratch2 = &tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   318
  if (wide) { // Read index.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   319
    __ get_2_byte_integer_at_bcp(1, Rscratch1, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   320
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   321
    __ lbz(Rscratch1, 1, R14_bcp);
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
  const int base_offset = ConstantPool::header_size() * wordSize;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   325
  const int tags_offset = Array<u1>::base_offset_in_bytes();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   326
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   327
  // Get type from tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   328
  __ addi(Rscratch2, Rscratch2, tags_offset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   329
  __ lbzx(Rscratch2, Rscratch2, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   330
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   331
  __ cmpwi(CCR0, Rscratch2, JVM_CONSTANT_UnresolvedClass); // Unresolved class?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   332
  __ cmpwi(CCR1, Rscratch2, JVM_CONSTANT_UnresolvedClassInError); // Unresolved class in error state?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   333
  __ cror(/*CR0 eq*/2, /*CR1 eq*/4+2, /*CR0 eq*/2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   334
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   335
  // Resolved class - need to call vm to get java mirror of the class.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   336
  __ cmpwi(CCR1, Rscratch2, JVM_CONSTANT_Class);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   337
  __ crnor(/*CR0 eq*/2, /*CR1 eq*/4+2, /*CR0 eq*/2); // Neither resolved class nor unresolved case from above?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   338
  __ beq(CCR0, notClass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   339
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   340
  __ li(R4, wide ? 1 : 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   341
  call_VM(R17_tos, CAST_FROM_FN_PTR(address, InterpreterRuntime::ldc), R4);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   342
  __ push(atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   343
  __ b(exit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   344
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   345
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   346
  __ bind(notClass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   347
  __ addi(Rcpool, Rcpool, base_offset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   348
  __ sldi(Rscratch1, Rscratch1, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   349
  __ cmpdi(CCR0, Rscratch2, JVM_CONSTANT_Integer);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   350
  __ bne(CCR0, notInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   351
  __ isync(); // Order load of constant wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   352
  __ lwax(R17_tos, Rcpool, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   353
  __ push(itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   354
  __ b(exit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   355
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   356
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   357
  __ bind(notInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   358
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   359
  // String and Object are rewritten to fast_aldc
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   360
  __ cmpdi(CCR0, Rscratch2, JVM_CONSTANT_Float);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   361
  __ asm_assert_eq("unexpected type", 0x8765);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   362
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   363
  __ isync(); // Order load of constant wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   364
  __ lfsx(F15_ftos, Rcpool, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   365
  __ push(ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   366
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   367
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   368
  __ bind(exit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   369
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   370
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   371
// Fast path for caching oop constants.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   372
void TemplateTable::fast_aldc(bool wide) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   373
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   374
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   375
  int index_size = wide ? sizeof(u2) : sizeof(u1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   376
  const Register Rscratch = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   377
  Label resolved;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   378
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   379
  // We are resolved if the resolved reference cache entry contains a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   380
  // non-null object (CallSite, etc.)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   381
  __ get_cache_index_at_bcp(Rscratch, 1, index_size);  // Load index.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   382
  __ load_resolved_reference_at_index(R17_tos, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   383
  __ cmpdi(CCR0, R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   384
  __ bne(CCR0, resolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   385
  __ load_const_optimized(R3_ARG1, (int)bytecode());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   386
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   387
  address entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_ldc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   388
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   389
  // First time invocation - must resolve first.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   390
  __ call_VM(R17_tos, entry, R3_ARG1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   391
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   392
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   393
  __ bind(resolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   394
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   395
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   396
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   397
void TemplateTable::ldc2_w() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   398
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   399
  Label Llong, Lexit;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   400
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   401
  Register Rindex = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   402
           Rcpool = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   403
           Rtag   = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   404
  __ get_cpool_and_tags(Rcpool, Rtag);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   405
  __ get_2_byte_integer_at_bcp(1, Rindex, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   406
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   407
  const int base_offset = ConstantPool::header_size() * wordSize;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   408
  const int tags_offset = Array<u1>::base_offset_in_bytes();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   409
  // Get type from tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   410
  __ addi(Rcpool, Rcpool, base_offset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   411
  __ addi(Rtag, Rtag, tags_offset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   412
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   413
  __ lbzx(Rtag, Rtag, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   414
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   415
  __ sldi(Rindex, Rindex, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   416
  __ cmpdi(CCR0, Rtag, JVM_CONSTANT_Double);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   417
  __ bne(CCR0, Llong);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   418
  // A double can be placed at word-aligned locations in the constant pool.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   419
  // Check out Conversions.java for an example.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   420
  // Also ConstantPool::header_size() is 20, which makes it very difficult
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   421
  // to double-align double on the constant pool. SG, 11/7/97
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   422
  __ isync(); // Order load of constant wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   423
  __ lfdx(F15_ftos, Rcpool, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   424
  __ push(dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   425
  __ b(Lexit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   426
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   427
  __ bind(Llong);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   428
  __ isync(); // Order load of constant wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   429
  __ ldx(R17_tos, Rcpool, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   430
  __ push(ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   431
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   432
  __ bind(Lexit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   433
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   434
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   435
// Get the locals index located in the bytecode stream at bcp + offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   436
void TemplateTable::locals_index(Register Rdst, int offset) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   437
  __ lbz(Rdst, offset, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   438
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   439
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   440
void TemplateTable::iload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   441
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   442
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   443
  // Get the local value into tos
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   444
  const Register Rindex = R22_tmp2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   445
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   446
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   447
  // Rewrite iload,iload  pair into fast_iload2
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   448
  //         iload,caload pair into fast_icaload
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   449
  if (RewriteFrequentPairs) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   450
    Label Lrewrite, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   451
    Register Rnext_byte  = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   452
             Rrewrite_to = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   453
             Rscratch    = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   454
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   455
    // get next byte
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   456
    __ lbz(Rnext_byte, Bytecodes::length_for(Bytecodes::_iload), R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   457
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   458
    // if _iload, wait to rewrite to iload2. We only want to rewrite the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   459
    // last two iloads in a pair. Comparing against fast_iload means that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   460
    // the next bytecode is neither an iload or a caload, and therefore
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   461
    // an iload pair.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   462
    __ cmpwi(CCR0, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_iload);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   463
    __ beq(CCR0, Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   464
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   465
    __ cmpwi(CCR1, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_fast_iload);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   466
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_iload2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   467
    __ beq(CCR1, Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   468
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   469
    __ cmpwi(CCR0, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_caload);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   470
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_icaload);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   471
    __ beq(CCR0, Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   472
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   473
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_iload);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   474
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   475
    __ bind(Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   476
    patch_bytecode(Bytecodes::_iload, Rrewrite_to, Rscratch, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   477
    __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   478
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   479
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   480
  __ load_local_int(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   481
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   482
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   483
// Load 2 integers in a row without dispatching
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   484
void TemplateTable::fast_iload2() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   485
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   486
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   487
  __ lbz(R3_ARG1, 1, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   488
  __ lbz(R17_tos, Bytecodes::length_for(Bytecodes::_iload) + 1, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   489
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   490
  __ load_local_int(R3_ARG1, R11_scratch1, R3_ARG1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   491
  __ load_local_int(R17_tos, R12_scratch2, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   492
  __ push_i(R3_ARG1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   493
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   494
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   495
void TemplateTable::fast_iload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   496
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   497
  // Get the local value into tos
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   498
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   499
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   500
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   501
  __ load_local_int(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   502
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   503
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   504
// Load a local variable type long from locals area to TOS cache register.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   505
// Local index resides in bytecodestream.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   506
void TemplateTable::lload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   507
  transition(vtos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   508
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   509
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   510
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   511
  __ load_local_long(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   512
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   513
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   514
void TemplateTable::fload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   515
  transition(vtos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   516
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   517
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   518
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   519
  __ load_local_float(F15_ftos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   520
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   521
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   522
void TemplateTable::dload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   523
  transition(vtos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   524
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   525
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   526
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   527
  __ load_local_double(F15_ftos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   528
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   529
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   530
void TemplateTable::aload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   531
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   532
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   533
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   534
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   535
  __ load_local_ptr(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   536
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   537
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   538
void TemplateTable::locals_index_wide(Register Rdst) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   539
  // Offset is 2, not 1, because Lbcp points to wide prefix code.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   540
  __ get_2_byte_integer_at_bcp(2, Rdst, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   541
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   542
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   543
void TemplateTable::wide_iload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   544
  // Get the local value into tos.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   545
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   546
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   547
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   548
  __ load_local_int(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   549
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   550
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   551
void TemplateTable::wide_lload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   552
  transition(vtos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   553
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   554
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   555
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   556
  __ load_local_long(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   557
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   558
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   559
void TemplateTable::wide_fload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   560
  transition(vtos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   561
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   562
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   563
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   564
  __ load_local_float(F15_ftos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   565
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   566
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   567
void TemplateTable::wide_dload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   568
  transition(vtos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   569
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   570
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   571
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   572
  __ load_local_double(F15_ftos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   573
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   574
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   575
void TemplateTable::wide_aload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   576
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   577
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   578
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   579
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   580
  __ load_local_ptr(R17_tos, Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   581
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   582
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   583
void TemplateTable::iaload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   584
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   585
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   586
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   587
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   588
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   589
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerInt, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   590
  __ lwa(R17_tos, arrayOopDesc::base_offset_in_bytes(T_INT), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   591
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   592
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   593
void TemplateTable::laload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   594
  transition(itos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   595
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   596
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   597
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   598
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   599
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerLong, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   600
  __ ld(R17_tos, arrayOopDesc::base_offset_in_bytes(T_LONG), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   601
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   602
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   603
void TemplateTable::faload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   604
  transition(itos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   605
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   606
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   607
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   608
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   609
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerInt, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   610
  __ lfs(F15_ftos, arrayOopDesc::base_offset_in_bytes(T_FLOAT), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   611
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   612
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   613
void TemplateTable::daload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   614
  transition(itos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   615
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   616
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   617
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   618
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   619
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerLong, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   620
  __ lfd(F15_ftos, arrayOopDesc::base_offset_in_bytes(T_DOUBLE), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   621
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   622
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   623
void TemplateTable::aaload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   624
  transition(itos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   625
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   626
  // tos: index
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   627
  // result tos: array
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   628
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   629
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   630
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   631
  __ index_check(Rarray, R17_tos /* index */, UseCompressedOops ? 2 : LogBytesPerWord, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   632
  __ load_heap_oop(R17_tos, arrayOopDesc::base_offset_in_bytes(T_OBJECT), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   633
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   634
  //__ dcbt(R17_tos); // prefetch
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   635
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   636
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   637
void TemplateTable::baload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   638
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   639
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   640
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   641
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   642
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   643
  __ index_check(Rarray, R17_tos /* index */, 0, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   644
  __ lbz(R17_tos, arrayOopDesc::base_offset_in_bytes(T_BYTE), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   645
  __ extsb(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   646
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   647
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   648
void TemplateTable::caload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   649
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   650
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   651
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   652
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   653
                 Rtemp      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   654
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerShort, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   655
  __ lhz(R17_tos, arrayOopDesc::base_offset_in_bytes(T_CHAR), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   656
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   657
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   658
// Iload followed by caload frequent pair.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   659
void TemplateTable::fast_icaload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   660
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   661
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   662
  const Register Rload_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   663
                 Rarray     = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   664
                 Rtemp      = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   665
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   666
  locals_index(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   667
  __ load_local_int(R17_tos, Rtemp, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   668
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerShort, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   669
  __ lhz(R17_tos, arrayOopDesc::base_offset_in_bytes(T_CHAR), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   670
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   671
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   672
void TemplateTable::saload() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   673
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   674
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   675
  const Register Rload_addr = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   676
                 Rarray     = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   677
                 Rtemp      = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   678
  __ index_check(Rarray, R17_tos /* index */, LogBytesPerShort, Rtemp, Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   679
  __ lha(R17_tos, arrayOopDesc::base_offset_in_bytes(T_SHORT), Rload_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   680
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   681
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   682
void TemplateTable::iload(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   683
  transition(vtos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   684
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   685
  __ lwz(R17_tos, Interpreter::local_offset_in_bytes(n), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   686
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   687
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   688
void TemplateTable::lload(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   689
  transition(vtos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   690
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   691
  __ ld(R17_tos, Interpreter::local_offset_in_bytes(n + 1), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   692
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   693
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   694
void TemplateTable::fload(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   695
  transition(vtos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   696
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   697
  __ lfs(F15_ftos, Interpreter::local_offset_in_bytes(n), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   698
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   699
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   700
void TemplateTable::dload(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   701
  transition(vtos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   702
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   703
  __ lfd(F15_ftos, Interpreter::local_offset_in_bytes(n + 1), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   704
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   705
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   706
void TemplateTable::aload(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   707
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   708
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   709
  __ ld(R17_tos, Interpreter::local_offset_in_bytes(n), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   710
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   711
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   712
void TemplateTable::aload_0() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   713
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   714
  // According to bytecode histograms, the pairs:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   715
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   716
  // _aload_0, _fast_igetfield
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   717
  // _aload_0, _fast_agetfield
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   718
  // _aload_0, _fast_fgetfield
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   719
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   720
  // occur frequently. If RewriteFrequentPairs is set, the (slow)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   721
  // _aload_0 bytecode checks if the next bytecode is either
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   722
  // _fast_igetfield, _fast_agetfield or _fast_fgetfield and then
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   723
  // rewrites the current bytecode into a pair bytecode; otherwise it
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   724
  // rewrites the current bytecode into _0 that doesn't do
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   725
  // the pair check anymore.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   726
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   727
  // Note: If the next bytecode is _getfield, the rewrite must be
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   728
  //       delayed, otherwise we may miss an opportunity for a pair.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   729
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   730
  // Also rewrite frequent pairs
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   731
  //   aload_0, aload_1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   732
  //   aload_0, iload_1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   733
  // These bytecodes with a small amount of code are most profitable
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   734
  // to rewrite.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   735
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   736
  if (RewriteFrequentPairs) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   737
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   738
    Label Lrewrite, Ldont_rewrite;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   739
    Register Rnext_byte  = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   740
             Rrewrite_to = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   741
             Rscratch    = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   742
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   743
    // Get next byte.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   744
    __ lbz(Rnext_byte, Bytecodes::length_for(Bytecodes::_aload_0), R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   745
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   746
    // If _getfield, wait to rewrite. We only want to rewrite the last two bytecodes in a pair.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   747
    __ cmpwi(CCR0, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_getfield);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   748
    __ beq(CCR0, Ldont_rewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   749
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   750
    __ cmpwi(CCR1, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_fast_igetfield);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   751
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_iaccess_0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   752
    __ beq(CCR1, Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   753
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   754
    __ cmpwi(CCR0, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_fast_agetfield);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   755
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_aaccess_0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   756
    __ beq(CCR0, Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   757
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   758
    __ cmpwi(CCR1, Rnext_byte, (unsigned int)(unsigned char)Bytecodes::_fast_fgetfield);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   759
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_faccess_0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   760
    __ beq(CCR1, Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   761
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   762
    __ li(Rrewrite_to, (unsigned int)(unsigned char)Bytecodes::_fast_aload_0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   763
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   764
    __ bind(Lrewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   765
    patch_bytecode(Bytecodes::_aload_0, Rrewrite_to, Rscratch, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   766
    __ bind(Ldont_rewrite);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   767
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   768
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   769
  // Do actual aload_0 (must do this after patch_bytecode which might call VM and GC might change oop).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   770
  aload(0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   771
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   772
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   773
void TemplateTable::istore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   774
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   775
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   776
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   777
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   778
  __ store_local_int(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   779
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   780
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   781
void TemplateTable::lstore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   782
  transition(ltos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   783
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   784
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   785
  __ store_local_long(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   786
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   787
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   788
void TemplateTable::fstore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   789
  transition(ftos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   790
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   791
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   792
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   793
  __ store_local_float(F15_ftos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   794
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   795
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   796
void TemplateTable::dstore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   797
  transition(dtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   798
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   799
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   800
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   801
  __ store_local_double(F15_ftos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   802
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   803
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   804
void TemplateTable::astore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   805
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   806
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   807
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   808
  __ pop_ptr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   809
  __ verify_oop_or_return_address(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   810
  locals_index(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   811
  __ store_local_ptr(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   812
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   813
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   814
void TemplateTable::wide_istore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   815
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   816
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   817
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   818
  __ pop_i();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   819
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   820
  __ store_local_int(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   821
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   822
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   823
void TemplateTable::wide_lstore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   824
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   825
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   826
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   827
  __ pop_l();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   828
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   829
  __ store_local_long(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   830
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   831
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   832
void TemplateTable::wide_fstore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   833
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   834
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   835
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   836
  __ pop_f();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   837
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   838
  __ store_local_float(F15_ftos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   839
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   840
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   841
void TemplateTable::wide_dstore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   842
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   843
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   844
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   845
  __ pop_d();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   846
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   847
  __ store_local_double(F15_ftos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   848
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   849
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   850
void TemplateTable::wide_astore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   851
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   852
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   853
  const Register Rindex = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   854
  __ pop_ptr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   855
  __ verify_oop_or_return_address(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   856
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   857
  __ store_local_ptr(R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   858
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   859
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   860
void TemplateTable::iastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   861
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   862
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   863
  const Register Rindex      = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   864
                 Rstore_addr = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   865
                 Rarray      = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   866
                 Rtemp       = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   867
  __ pop_i(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   868
  __ index_check(Rarray, Rindex, LogBytesPerInt, Rtemp, Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   869
  __ stw(R17_tos, arrayOopDesc::base_offset_in_bytes(T_INT), Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   870
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   871
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   872
void TemplateTable::lastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   873
  transition(ltos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   874
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   875
  const Register Rindex      = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   876
                 Rstore_addr = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   877
                 Rarray      = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   878
                 Rtemp       = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   879
  __ pop_i(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   880
  __ index_check(Rarray, Rindex, LogBytesPerLong, Rtemp, Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   881
  __ std(R17_tos, arrayOopDesc::base_offset_in_bytes(T_LONG), Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   882
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   883
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   884
void TemplateTable::fastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   885
  transition(ftos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   886
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   887
  const Register Rindex      = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   888
                 Rstore_addr = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   889
                 Rarray      = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   890
                 Rtemp       = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   891
  __ pop_i(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   892
  __ index_check(Rarray, Rindex, LogBytesPerInt, Rtemp, Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   893
  __ stfs(F15_ftos, arrayOopDesc::base_offset_in_bytes(T_FLOAT), Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   894
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   895
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   896
void TemplateTable::dastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   897
  transition(dtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   898
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   899
  const Register Rindex      = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   900
                 Rstore_addr = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   901
                 Rarray      = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   902
                 Rtemp       = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   903
  __ pop_i(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   904
  __ index_check(Rarray, Rindex, LogBytesPerLong, Rtemp, Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   905
  __ stfd(F15_ftos, arrayOopDesc::base_offset_in_bytes(T_DOUBLE), Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   906
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   907
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   908
// Pop 3 values from the stack and...
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   909
void TemplateTable::aastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   910
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   911
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   912
  Label Lstore_ok, Lis_null, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   913
  const Register Rindex    = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   914
                 Rarray    = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   915
                 Rscratch  = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   916
                 Rscratch2 = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   917
                 Rarray_klass = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   918
                 Rarray_element_klass = Rarray_klass,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   919
                 Rvalue_klass = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   920
                 Rstore_addr = R31;    // Use register which survives VM call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   921
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   922
  __ ld(R17_tos, Interpreter::expr_offset_in_bytes(0), R15_esp); // Get value to store.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   923
  __ lwz(Rindex, Interpreter::expr_offset_in_bytes(1), R15_esp); // Get index.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   924
  __ ld(Rarray, Interpreter::expr_offset_in_bytes(2), R15_esp);  // Get array.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   925
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   926
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   927
  __ index_check_without_pop(Rarray, Rindex, UseCompressedOops ? 2 : LogBytesPerWord, Rscratch, Rstore_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   928
  // Rindex is dead!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   929
  Register Rscratch3 = Rindex;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   930
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   931
  // Do array store check - check for NULL value first.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   932
  __ cmpdi(CCR0, R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   933
  __ beq(CCR0, Lis_null);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   934
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   935
  __ load_klass(Rarray_klass, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   936
  __ load_klass(Rvalue_klass, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   937
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   938
  // Do fast instanceof cache test.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   939
  __ ld(Rarray_element_klass, in_bytes(ObjArrayKlass::element_klass_offset()), Rarray_klass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   940
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   941
  // Generate a fast subtype check. Branch to store_ok if no failure. Throw if failure.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   942
  __ gen_subtype_check(Rvalue_klass /*subklass*/, Rarray_element_klass /*superklass*/, Rscratch, Rscratch2, Rscratch3, Lstore_ok);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   943
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   944
  // Fell through: subtype check failed => throw an exception.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   945
  __ load_dispatch_table(R11_scratch1, (address*)Interpreter::_throw_ArrayStoreException_entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   946
  __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   947
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   948
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   949
  __ bind(Lis_null);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   950
  do_oop_store(_masm, Rstore_addr, arrayOopDesc::base_offset_in_bytes(T_OBJECT), noreg /* 0 */,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   951
               Rscratch, Rscratch2, Rscratch3, _bs->kind(), true /* precise */, false /* check_null */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   952
  __ profile_null_seen(Rscratch, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   953
  __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   954
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   955
  // Store is OK.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   956
  __ bind(Lstore_ok);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   957
  do_oop_store(_masm, Rstore_addr, arrayOopDesc::base_offset_in_bytes(T_OBJECT), R17_tos /* value */,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   958
               Rscratch, Rscratch2, Rscratch3, _bs->kind(), true /* precise */, false /* check_null */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   959
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   960
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   961
  // Adjust sp (pops array, index and value).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   962
  __ addi(R15_esp, R15_esp, 3 * Interpreter::stackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   963
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   964
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   965
void TemplateTable::bastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   966
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   967
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   968
  const Register Rindex   = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   969
                 Rarray   = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   970
                 Rscratch = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   971
  __ pop_i(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   972
  // tos: val
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   973
  // Rarray: array ptr (popped by index_check)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   974
  __ index_check(Rarray, Rindex, 0, Rscratch, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   975
  __ stb(R17_tos, arrayOopDesc::base_offset_in_bytes(T_BYTE), Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   976
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   977
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   978
void TemplateTable::castore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   979
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   980
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   981
  const Register Rindex   = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   982
                 Rarray   = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   983
                 Rscratch = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   984
  __ pop_i(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   985
  // tos: val
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   986
  // Rarray: array ptr (popped by index_check)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   987
  __ index_check(Rarray, Rindex, LogBytesPerShort, Rscratch, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   988
  __ sth(R17_tos, arrayOopDesc::base_offset_in_bytes(T_CHAR), Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   989
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   990
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   991
void TemplateTable::sastore() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   992
  castore();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   993
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   994
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   995
void TemplateTable::istore(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   996
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   997
  __ stw(R17_tos, Interpreter::local_offset_in_bytes(n), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   998
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
   999
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1000
void TemplateTable::lstore(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1001
  transition(ltos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1002
  __ std(R17_tos, Interpreter::local_offset_in_bytes(n + 1), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1003
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1004
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1005
void TemplateTable::fstore(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1006
  transition(ftos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1007
  __ stfs(F15_ftos, Interpreter::local_offset_in_bytes(n), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1008
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1009
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1010
void TemplateTable::dstore(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1011
  transition(dtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1012
  __ stfd(F15_ftos, Interpreter::local_offset_in_bytes(n + 1), R18_locals);
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
void TemplateTable::astore(int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1016
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1017
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1018
  __ pop_ptr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1019
  __ verify_oop_or_return_address(R17_tos, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1020
  __ std(R17_tos, Interpreter::local_offset_in_bytes(n), R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1021
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1022
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1023
void TemplateTable::pop() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1024
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1025
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1026
  __ addi(R15_esp, R15_esp, Interpreter::stackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1027
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1028
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1029
void TemplateTable::pop2() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1030
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1031
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1032
  __ addi(R15_esp, R15_esp, Interpreter::stackElementSize * 2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1033
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1034
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1035
void TemplateTable::dup() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1036
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1037
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1038
  __ ld(R11_scratch1, Interpreter::stackElementSize, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1039
  __ push_ptr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1040
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1041
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1042
void TemplateTable::dup_x1() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1043
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1044
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1045
  Register Ra = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1046
           Rb = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1047
  // stack: ..., a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1048
  __ ld(Rb, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1049
  __ ld(Ra, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1050
  __ std(Rb, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1051
  __ std(Ra, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1052
  __ push_ptr(Rb);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1053
  // stack: ..., b, a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1054
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1055
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1056
void TemplateTable::dup_x2() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1057
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1058
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1059
  Register Ra = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1060
           Rb = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1061
           Rc = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1062
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1063
  // stack: ..., a, b, c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1064
  __ ld(Rc, Interpreter::stackElementSize,     R15_esp);  // load c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1065
  __ ld(Ra, Interpreter::stackElementSize * 3, R15_esp);  // load a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1066
  __ std(Rc, Interpreter::stackElementSize * 3, R15_esp); // store c in a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1067
  __ ld(Rb, Interpreter::stackElementSize * 2, R15_esp);  // load b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1068
  // stack: ..., c, b, c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1069
  __ std(Ra, Interpreter::stackElementSize * 2, R15_esp); // store a in b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1070
  // stack: ..., c, a, c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1071
  __ std(Rb, Interpreter::stackElementSize,     R15_esp); // store b in c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1072
  __ push_ptr(Rc);                                        // push c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1073
  // stack: ..., c, a, b, c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1074
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1075
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1076
void TemplateTable::dup2() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1077
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1078
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1079
  Register Ra = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1080
           Rb = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1081
  // stack: ..., a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1082
  __ ld(Rb, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1083
  __ ld(Ra, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1084
  __ push_2ptrs(Ra, Rb);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1085
  // stack: ..., a, b, a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1086
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1087
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1088
void TemplateTable::dup2_x1() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1089
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1090
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1091
  Register Ra = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1092
           Rb = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1093
           Rc = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1094
  // stack: ..., a, b, c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1095
  __ ld(Rc, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1096
  __ ld(Rb, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1097
  __ std(Rc, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1098
  __ ld(Ra, Interpreter::stackElementSize * 3, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1099
  __ std(Ra, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1100
  __ std(Rb, Interpreter::stackElementSize * 3, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1101
  // stack: ..., b, c, a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1102
  __ push_2ptrs(Rb, Rc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1103
  // stack: ..., b, c, a, b, c
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
void TemplateTable::dup2_x2() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1107
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1108
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1109
  Register Ra = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1110
           Rb = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1111
           Rc = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1112
           Rd = R4_ARG2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1113
  // stack: ..., a, b, c, d
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1114
  __ ld(Rb, Interpreter::stackElementSize * 3, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1115
  __ ld(Rd, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1116
  __ std(Rb, Interpreter::stackElementSize,     R15_esp);  // store b in d
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1117
  __ std(Rd, Interpreter::stackElementSize * 3, R15_esp);  // store d in b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1118
  __ ld(Ra, Interpreter::stackElementSize * 4, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1119
  __ ld(Rc, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1120
  __ std(Ra, Interpreter::stackElementSize * 2, R15_esp);  // store a in c
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1121
  __ std(Rc, Interpreter::stackElementSize * 4, R15_esp);  // store c in a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1122
  // stack: ..., c, d, a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1123
  __ push_2ptrs(Rc, Rd);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1124
  // stack: ..., c, d, a, b, c, d
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1125
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1126
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1127
void TemplateTable::swap() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1128
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1129
  // stack: ..., a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1130
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1131
  Register Ra = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1132
           Rb = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1133
  // stack: ..., a, b
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1134
  __ ld(Rb, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1135
  __ ld(Ra, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1136
  __ std(Rb, Interpreter::stackElementSize * 2, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1137
  __ std(Ra, Interpreter::stackElementSize,     R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1138
  // stack: ..., b, a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1139
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1140
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1141
void TemplateTable::iop2(Operation op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1142
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1143
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1144
  Register Rscratch = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1145
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1146
  __ pop_i(Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1147
  // tos  = number of bits to shift
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1148
  // Rscratch = value to shift
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1149
  switch (op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1150
    case  add:   __ add(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1151
    case  sub:   __ sub(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1152
    case  mul:   __ mullw(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1153
    case  _and:  __ andr(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1154
    case  _or:   __ orr(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1155
    case  _xor:  __ xorr(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1156
    case  shl:   __ rldicl(R17_tos, R17_tos, 0, 64-5); __ slw(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1157
    case  shr:   __ rldicl(R17_tos, R17_tos, 0, 64-5); __ sraw(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1158
    case  ushr:  __ rldicl(R17_tos, R17_tos, 0, 64-5); __ srw(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1159
    default:     ShouldNotReachHere();
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
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1163
void TemplateTable::lop2(Operation op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1164
  transition(ltos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1165
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1166
  Register Rscratch = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1167
  __ pop_l(Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1168
  switch (op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1169
    case  add:   __ add(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1170
    case  sub:   __ sub(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1171
    case  _and:  __ andr(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1172
    case  _or:   __ orr(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1173
    case  _xor:  __ xorr(R17_tos, Rscratch, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1174
    default:     ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1175
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1176
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1177
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1178
void TemplateTable::idiv() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1179
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1180
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1181
  Label Lnormal, Lexception, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1182
  Register Rdividend = R11_scratch1; // Used by irem.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1183
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1184
  __ addi(R0, R17_tos, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1185
  __ cmplwi(CCR0, R0, 2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1186
  __ bgt(CCR0, Lnormal); // divisor <-1 or >1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1187
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1188
  __ cmpwi(CCR1, R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1189
  __ beq(CCR1, Lexception); // divisor == 0
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1190
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1191
  __ pop_i(Rdividend);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1192
  __ mullw(R17_tos, Rdividend, R17_tos); // div by +/-1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1193
  __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1194
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1195
  __ bind(Lexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1196
  __ load_dispatch_table(R11_scratch1, (address*)Interpreter::_throw_ArithmeticException_entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1197
  __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1198
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1199
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1200
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1201
  __ bind(Lnormal);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1202
  __ pop_i(Rdividend);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1203
  __ divw(R17_tos, Rdividend, R17_tos); // Can't divide minint/-1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1204
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1205
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1206
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1207
void TemplateTable::irem() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1208
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1209
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1210
  __ mr(R12_scratch2, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1211
  idiv();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1212
  __ mullw(R17_tos, R17_tos, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1213
  __ subf(R17_tos, R17_tos, R11_scratch1); // Dividend set by idiv.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1214
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1215
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1216
void TemplateTable::lmul() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1217
  transition(ltos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1218
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1219
  __ pop_l(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1220
  __ mulld(R17_tos, R11_scratch1, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1221
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1222
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1223
void TemplateTable::ldiv() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1224
  transition(ltos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1225
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1226
  Label Lnormal, Lexception, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1227
  Register Rdividend = R11_scratch1; // Used by lrem.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1228
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1229
  __ addi(R0, R17_tos, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1230
  __ cmpldi(CCR0, R0, 2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1231
  __ bgt(CCR0, Lnormal); // divisor <-1 or >1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1232
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1233
  __ cmpdi(CCR1, R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1234
  __ beq(CCR1, Lexception); // divisor == 0
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1235
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1236
  __ pop_l(Rdividend);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1237
  __ mulld(R17_tos, Rdividend, R17_tos); // div by +/-1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1238
  __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1239
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1240
  __ bind(Lexception);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1241
  __ load_dispatch_table(R11_scratch1, (address*)Interpreter::_throw_ArithmeticException_entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1242
  __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1243
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1244
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1245
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1246
  __ bind(Lnormal);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1247
  __ pop_l(Rdividend);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1248
  __ divd(R17_tos, Rdividend, R17_tos); // Can't divide minint/-1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1249
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1250
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1251
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1252
void TemplateTable::lrem() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1253
  transition(ltos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1254
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1255
  __ mr(R12_scratch2, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1256
  ldiv();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1257
  __ mulld(R17_tos, R17_tos, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1258
  __ subf(R17_tos, R17_tos, R11_scratch1); // Dividend set by ldiv.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1259
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1260
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1261
void TemplateTable::lshl() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1262
  transition(itos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1263
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1264
  __ rldicl(R17_tos, R17_tos, 0, 64-6); // Extract least significant bits.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1265
  __ pop_l(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1266
  __ sld(R17_tos, R11_scratch1, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1267
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1268
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1269
void TemplateTable::lshr() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1270
  transition(itos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1271
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1272
  __ rldicl(R17_tos, R17_tos, 0, 64-6); // Extract least significant bits.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1273
  __ pop_l(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1274
  __ srad(R17_tos, R11_scratch1, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1275
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1276
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1277
void TemplateTable::lushr() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1278
  transition(itos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1279
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1280
  __ rldicl(R17_tos, R17_tos, 0, 64-6); // Extract least significant bits.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1281
  __ pop_l(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1282
  __ srd(R17_tos, R11_scratch1, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1283
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1284
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1285
void TemplateTable::fop2(Operation op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1286
  transition(ftos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1287
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1288
  switch (op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1289
    case add: __ pop_f(F0_SCRATCH); __ fadds(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1290
    case sub: __ pop_f(F0_SCRATCH); __ fsubs(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1291
    case mul: __ pop_f(F0_SCRATCH); __ fmuls(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1292
    case div: __ pop_f(F0_SCRATCH); __ fdivs(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1293
    case rem:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1294
      __ pop_f(F1_ARG1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1295
      __ fmr(F2_ARG2, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1296
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::frem));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1297
      __ fmr(F15_ftos, F1_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1298
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1299
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1300
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1301
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1302
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1303
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1304
void TemplateTable::dop2(Operation op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1305
  transition(dtos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1306
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1307
  switch (op) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1308
    case add: __ pop_d(F0_SCRATCH); __ fadd(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1309
    case sub: __ pop_d(F0_SCRATCH); __ fsub(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1310
    case mul: __ pop_d(F0_SCRATCH); __ fmul(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1311
    case div: __ pop_d(F0_SCRATCH); __ fdiv(F15_ftos, F0_SCRATCH, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1312
    case rem:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1313
      __ pop_d(F1_ARG1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1314
      __ fmr(F2_ARG2, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1315
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::drem));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1316
      __ fmr(F15_ftos, F1_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1317
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1318
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1319
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1320
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1321
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1322
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1323
// Negate the value in the TOS cache.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1324
void TemplateTable::ineg() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1325
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1326
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1327
  __ neg(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1328
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1329
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1330
// Negate the value in the TOS cache.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1331
void TemplateTable::lneg() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1332
  transition(ltos, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1333
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1334
  __ neg(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1335
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1336
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1337
void TemplateTable::fneg() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1338
  transition(ftos, ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1339
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1340
  __ fneg(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1341
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1342
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1343
void TemplateTable::dneg() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1344
  transition(dtos, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1345
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1346
  __ fneg(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1347
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1348
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1349
// Increments a local variable in place.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1350
void TemplateTable::iinc() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1351
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1352
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1353
  const Register Rindex     = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1354
                 Rincrement = R0,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1355
                 Rvalue     = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1356
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1357
  locals_index(Rindex);              // Load locals index from bytecode stream.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1358
  __ lbz(Rincrement, 2, R14_bcp);    // Load increment from the bytecode stream.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1359
  __ extsb(Rincrement, Rincrement);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1360
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1361
  __ load_local_int(Rvalue, Rindex, Rindex); // Puts address of local into Rindex.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1362
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1363
  __ add(Rvalue, Rincrement, Rvalue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1364
  __ stw(Rvalue, 0, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1365
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1366
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1367
void TemplateTable::wide_iinc() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1368
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1369
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1370
  Register Rindex       = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1371
           Rlocals_addr = Rindex,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1372
           Rincr        = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1373
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1374
  __ get_2_byte_integer_at_bcp(4, Rincr, InterpreterMacroAssembler::Signed);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1375
  __ load_local_int(R17_tos, Rlocals_addr, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1376
  __ add(R17_tos, Rincr, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1377
  __ stw(R17_tos, 0, Rlocals_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1378
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1379
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1380
void TemplateTable::convert() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1381
  // %%%%% Factor this first part accross platforms
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1382
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1383
  TosState tos_in  = ilgl;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1384
  TosState tos_out = ilgl;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1385
  switch (bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1386
    case Bytecodes::_i2l: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1387
    case Bytecodes::_i2f: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1388
    case Bytecodes::_i2d: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1389
    case Bytecodes::_i2b: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1390
    case Bytecodes::_i2c: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1391
    case Bytecodes::_i2s: tos_in = itos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1392
    case Bytecodes::_l2i: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1393
    case Bytecodes::_l2f: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1394
    case Bytecodes::_l2d: tos_in = ltos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1395
    case Bytecodes::_f2i: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1396
    case Bytecodes::_f2l: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1397
    case Bytecodes::_f2d: tos_in = ftos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1398
    case Bytecodes::_d2i: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1399
    case Bytecodes::_d2l: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1400
    case Bytecodes::_d2f: tos_in = dtos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1401
    default             : ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1402
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1403
  switch (bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1404
    case Bytecodes::_l2i: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1405
    case Bytecodes::_f2i: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1406
    case Bytecodes::_d2i: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1407
    case Bytecodes::_i2b: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1408
    case Bytecodes::_i2c: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1409
    case Bytecodes::_i2s: tos_out = itos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1410
    case Bytecodes::_i2l: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1411
    case Bytecodes::_f2l: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1412
    case Bytecodes::_d2l: tos_out = ltos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1413
    case Bytecodes::_i2f: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1414
    case Bytecodes::_l2f: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1415
    case Bytecodes::_d2f: tos_out = ftos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1416
    case Bytecodes::_i2d: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1417
    case Bytecodes::_l2d: // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1418
    case Bytecodes::_f2d: tos_out = dtos; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1419
    default             : ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1420
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1421
  transition(tos_in, tos_out);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1422
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1423
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1424
  // Conversion
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1425
  Label done;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1426
  switch (bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1427
    case Bytecodes::_i2l:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1428
      __ extsw(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1429
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1430
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1431
    case Bytecodes::_l2i:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1432
      // Nothing to do, we'll continue to work with the lower bits.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1433
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1434
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1435
    case Bytecodes::_i2b:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1436
      __ extsb(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1437
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1438
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1439
    case Bytecodes::_i2c:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1440
      __ rldicl(R17_tos, R17_tos, 0, 64-2*8);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1441
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1442
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1443
    case Bytecodes::_i2s:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1444
      __ extsh(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1445
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1446
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1447
    case Bytecodes::_i2d:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1448
      __ extsw(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1449
    case Bytecodes::_l2d:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1450
      __ push_l_pop_d();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1451
      __ fcfid(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1452
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1453
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1454
    case Bytecodes::_i2f:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1455
      __ extsw(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1456
      __ push_l_pop_d();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1457
      if (VM_Version::has_fcfids()) { // fcfids is >= Power7 only
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1458
        // Comment: alternatively, load with sign extend could be done by lfiwax.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1459
        __ fcfids(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1460
      } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1461
        __ fcfid(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1462
        __ frsp(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1463
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1464
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1465
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1466
    case Bytecodes::_l2f:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1467
      if (VM_Version::has_fcfids()) { // fcfids is >= Power7 only
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1468
        __ push_l_pop_d();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1469
        __ fcfids(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1470
      } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1471
        // Avoid rounding problem when result should be 0x3f800001: need fixup code before fcfid+frsp.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1472
        __ mr(R3_ARG1, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1473
        __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::l2f));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1474
        __ fmr(F15_ftos, F1_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1475
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1476
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1477
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1478
    case Bytecodes::_f2d:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1479
      // empty
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1480
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1481
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1482
    case Bytecodes::_d2f:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1483
      __ frsp(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1484
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1485
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1486
    case Bytecodes::_d2i:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1487
    case Bytecodes::_f2i:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1488
      __ fcmpu(CCR0, F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1489
      __ li(R17_tos, 0); // 0 in case of NAN
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1490
      __ bso(CCR0, done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1491
      __ fctiwz(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1492
      __ push_d_pop_l();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1493
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1494
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1495
    case Bytecodes::_d2l:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1496
    case Bytecodes::_f2l:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1497
      __ fcmpu(CCR0, F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1498
      __ li(R17_tos, 0); // 0 in case of NAN
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1499
      __ bso(CCR0, done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1500
      __ fctidz(F15_ftos, F15_ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1501
      __ push_d_pop_l();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1502
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1503
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1504
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1505
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1506
  __ bind(done);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1507
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1508
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1509
// Long compare
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1510
void TemplateTable::lcmp() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1511
  transition(ltos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1512
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1513
  const Register Rscratch = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1514
  __ pop_l(Rscratch); // first operand, deeper in stack
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1515
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1516
  __ cmpd(CCR0, Rscratch, R17_tos); // compare
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1517
  __ mfcr(R17_tos); // set bit 32..33 as follows: <: 0b10, =: 0b00, >: 0b01
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1518
  __ srwi(Rscratch, R17_tos, 30);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1519
  __ srawi(R17_tos, R17_tos, 31);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1520
  __ orr(R17_tos, Rscratch, R17_tos); // set result as follows: <: -1, =: 0, >: 1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1521
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1522
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1523
// fcmpl/fcmpg and dcmpl/dcmpg bytecodes
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1524
// unordered_result == -1 => fcmpl or dcmpl
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1525
// unordered_result ==  1 => fcmpg or dcmpg
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1526
void TemplateTable::float_cmp(bool is_float, int unordered_result) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1527
  const FloatRegister Rfirst  = F0_SCRATCH,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1528
                      Rsecond = F15_ftos;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1529
  const Register Rscratch = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1530
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1531
  if (is_float) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1532
    __ pop_f(Rfirst);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1533
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1534
    __ pop_d(Rfirst);
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
  Label Lunordered, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1538
  __ fcmpu(CCR0, Rfirst, Rsecond); // compare
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1539
  if (unordered_result) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1540
    __ bso(CCR0, Lunordered);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1541
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1542
  __ mfcr(R17_tos); // set bit 32..33 as follows: <: 0b10, =: 0b00, >: 0b01
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1543
  __ srwi(Rscratch, R17_tos, 30);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1544
  __ srawi(R17_tos, R17_tos, 31);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1545
  __ orr(R17_tos, Rscratch, R17_tos); // set result as follows: <: -1, =: 0, >: 1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1546
  if (unordered_result) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1547
    __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1548
    __ bind(Lunordered);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1549
    __ load_const_optimized(R17_tos, unordered_result);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1550
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1551
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1552
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1553
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1554
// Branch_conditional which takes TemplateTable::Condition.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1555
void TemplateTable::branch_conditional(ConditionRegister crx, TemplateTable::Condition cc, Label& L, bool invert) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1556
  bool positive = false;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1557
  Assembler::Condition cond = Assembler::equal;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1558
  switch (cc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1559
    case TemplateTable::equal:         positive = true ; cond = Assembler::equal  ; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1560
    case TemplateTable::not_equal:     positive = false; cond = Assembler::equal  ; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1561
    case TemplateTable::less:          positive = true ; cond = Assembler::less   ; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1562
    case TemplateTable::less_equal:    positive = false; cond = Assembler::greater; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1563
    case TemplateTable::greater:       positive = true ; cond = Assembler::greater; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1564
    case TemplateTable::greater_equal: positive = false; cond = Assembler::less   ; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1565
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1566
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1567
  int bo = (positive != invert) ? Assembler::bcondCRbiIs1 : Assembler::bcondCRbiIs0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1568
  int bi = Assembler::bi0(crx, cond);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1569
  __ bc(bo, bi, L);
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
void TemplateTable::branch(bool is_jsr, bool is_wide) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1573
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1574
  // Note: on SPARC, we use InterpreterMacroAssembler::if_cmp also.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1575
  __ verify_thread();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1576
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1577
  const Register Rscratch1    = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1578
                 Rscratch2    = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1579
                 Rscratch3    = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1580
                 R4_counters  = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1581
                 bumped_count = R31,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1582
                 Rdisp        = R22_tmp2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1583
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1584
  __ profile_taken_branch(Rscratch1, bumped_count);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1585
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1586
  // Get (wide) offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1587
  if (is_wide) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1588
    __ get_4_byte_integer_at_bcp(1, Rdisp, InterpreterMacroAssembler::Signed);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1589
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1590
    __ get_2_byte_integer_at_bcp(1, Rdisp, InterpreterMacroAssembler::Signed);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1591
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1592
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1593
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1594
  // Handle all the JSR stuff here, then exit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1595
  // It's much shorter and cleaner than intermingling with the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1596
  // non-JSR normal-branch stuff occurring below.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1597
  if (is_jsr) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1598
    // Compute return address as bci in Otos_i.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1599
    __ ld(Rscratch1, in_bytes(Method::const_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1600
    __ addi(Rscratch2, R14_bcp, -in_bytes(ConstMethod::codes_offset()) + (is_wide ? 5 : 3));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1601
    __ subf(R17_tos, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1602
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1603
    // Bump bcp to target of JSR.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1604
    __ add(R14_bcp, Rdisp, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1605
    // Push returnAddress for "ret" on stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1606
    __ push_ptr(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1607
    // And away we go!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1608
    __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1609
    return;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1610
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1611
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1612
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1613
  // Normal (non-jsr) branch handling
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1614
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1615
  const bool increment_invocation_counter_for_backward_branches = UseCompiler && UseLoopCounter;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1616
  if (increment_invocation_counter_for_backward_branches) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1617
    //__ unimplemented("branch invocation counter");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1618
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1619
    Label Lforward;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1620
    __ add(R14_bcp, Rdisp, R14_bcp); // Add to bc addr.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1621
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1622
    // Check branch direction.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1623
    __ cmpdi(CCR0, Rdisp, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1624
    __ bgt(CCR0, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1625
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1626
    __ get_method_counters(R19_method, R4_counters, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1627
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1628
    if (TieredCompilation) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1629
      Label Lno_mdo, Loverflow;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1630
      const int increment = InvocationCounter::count_increment;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1631
      const int mask = ((1 << Tier0BackedgeNotifyFreqLog) - 1) << InvocationCounter::count_shift;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1632
      if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1633
        Register Rmdo = Rscratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1634
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1635
        // If no method data exists, go to profile_continue.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1636
        __ ld(Rmdo, in_bytes(Method::method_data_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1637
        __ cmpdi(CCR0, Rmdo, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1638
        __ beq(CCR0, Lno_mdo);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1639
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1640
        // Increment backedge counter in the MDO.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1641
        const int mdo_bc_offs = in_bytes(MethodData::backedge_counter_offset()) + in_bytes(InvocationCounter::counter_offset());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1642
        __ lwz(Rscratch2, mdo_bc_offs, Rmdo);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1643
        __ load_const_optimized(Rscratch3, mask, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1644
        __ addi(Rscratch2, Rscratch2, increment);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1645
        __ stw(Rscratch2, mdo_bc_offs, Rmdo);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1646
        __ and_(Rscratch3, Rscratch2, Rscratch3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1647
        __ bne(CCR0, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1648
        __ b(Loverflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1649
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1650
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1651
      // If there's no MDO, increment counter in method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1652
      const int mo_bc_offs = in_bytes(MethodCounters::backedge_counter_offset()) + in_bytes(InvocationCounter::counter_offset());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1653
      __ bind(Lno_mdo);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1654
      __ lwz(Rscratch2, mo_bc_offs, R4_counters);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1655
      __ load_const_optimized(Rscratch3, mask, R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1656
      __ addi(Rscratch2, Rscratch2, increment);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1657
      __ stw(Rscratch2, mo_bc_offs, R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1658
      __ and_(Rscratch3, Rscratch2, Rscratch3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1659
      __ bne(CCR0, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1660
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1661
      __ bind(Loverflow);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1662
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1663
      // Notify point for loop, pass branch bytecode.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1664
      __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::frequency_counter_overflow), R14_bcp, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1665
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1666
      // Was an OSR adapter generated?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1667
      // O0 = osr nmethod
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1668
      __ cmpdi(CCR0, R3_RET, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1669
      __ beq(CCR0, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1670
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1671
      // Has the nmethod been invalidated already?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1672
      __ lwz(R0, nmethod::entry_bci_offset(), R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1673
      __ cmpwi(CCR0, R0, InvalidOSREntryBci);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1674
      __ beq(CCR0, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1675
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1676
      // Migrate the interpreter frame off of the stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1677
      // We can use all registers because we will not return to interpreter from this point.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1678
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1679
      // Save nmethod.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1680
      const Register osr_nmethod = R31;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1681
      __ mr(osr_nmethod, R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1682
      __ set_top_ijava_frame_at_SP_as_last_Java_frame(R1_SP, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1683
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::OSR_migration_begin), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1684
      __ reset_last_Java_frame();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1685
      // OSR buffer is in ARG1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1686
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1687
      // Remove the interpreter frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1688
      __ 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
  1689
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1690
      // Jump to the osr code.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1691
      __ ld(R11_scratch1, nmethod::osr_entry_point_offset(), osr_nmethod);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1692
      __ mtlr(R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1693
      __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1694
      __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1695
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1696
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1697
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1698
      const Register invoke_ctr = Rscratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1699
      // Update Backedge branch separately from invocations.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1700
      __ increment_backedge_counter(R4_counters, invoke_ctr, Rscratch2, Rscratch3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1701
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1702
      if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1703
        __ test_invocation_counter_for_mdp(invoke_ctr, Rscratch2, Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1704
        if (UseOnStackReplacement) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1705
          __ test_backedge_count_for_osr(bumped_count, R14_bcp, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1706
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1707
      } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1708
        if (UseOnStackReplacement) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1709
          __ test_backedge_count_for_osr(invoke_ctr, R14_bcp, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1710
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1711
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1712
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1713
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1714
    __ bind(Lforward);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1715
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1716
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1717
    // Bump bytecode pointer by displacement (take the branch).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1718
    __ add(R14_bcp, Rdisp, R14_bcp); // Add to bc addr.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1719
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1720
  // Continue with bytecode @ target.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1721
  // %%%%% Like Intel, could speed things up by moving bytecode fetch to code above,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1722
  // %%%%% and changing dispatch_next to dispatch_only.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1723
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1724
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1725
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1726
// Helper function for if_cmp* methods below.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1727
// Factored out common compare and branch code.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1728
void TemplateTable::if_cmp_common(Register Rfirst, Register Rsecond, Register Rscratch1, Register Rscratch2, Condition cc, bool is_jint, bool cmp0) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1729
  Label Lnot_taken;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1730
  // Note: The condition code we get is the condition under which we
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1731
  // *fall through*! So we have to inverse the CC here.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1732
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1733
  if (is_jint) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1734
    if (cmp0) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1735
      __ cmpwi(CCR0, Rfirst, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1736
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1737
      __ cmpw(CCR0, Rfirst, Rsecond);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1738
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1739
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1740
    if (cmp0) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1741
      __ cmpdi(CCR0, Rfirst, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1742
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1743
      __ cmpd(CCR0, Rfirst, Rsecond);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1744
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1745
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1746
  branch_conditional(CCR0, cc, Lnot_taken, /*invert*/ true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1747
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1748
  // Conition is false => Jump!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1749
  branch(false, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1750
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1751
  // Condition is not true => Continue.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1752
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1753
  __ bind(Lnot_taken);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1754
  __ profile_not_taken_branch(Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1755
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1756
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1757
// Compare integer values with zero and fall through if CC holds, branch away otherwise.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1758
void TemplateTable::if_0cmp(Condition cc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1759
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1760
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1761
  if_cmp_common(R17_tos, noreg, R11_scratch1, R12_scratch2, cc, true, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1762
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1763
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1764
// Compare integer values and fall through if CC holds, branch away otherwise.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1765
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1766
// Interface:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1767
//  - Rfirst: First operand  (older stack value)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1768
//  - tos:    Second operand (younger stack value)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1769
void TemplateTable::if_icmp(Condition cc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1770
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1771
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1772
  const Register Rfirst  = R0,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1773
                 Rsecond = R17_tos;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1774
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1775
  __ pop_i(Rfirst);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1776
  if_cmp_common(Rfirst, Rsecond, R11_scratch1, R12_scratch2, cc, true, false);
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
void TemplateTable::if_nullcmp(Condition cc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1780
  transition(atos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1781
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1782
  if_cmp_common(R17_tos, noreg, R11_scratch1, R12_scratch2, cc, false, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1783
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1784
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1785
void TemplateTable::if_acmp(Condition cc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1786
  transition(atos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1787
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1788
  const Register Rfirst  = R0,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1789
                 Rsecond = R17_tos;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1790
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1791
  __ pop_ptr(Rfirst);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1792
  if_cmp_common(Rfirst, Rsecond, R11_scratch1, R12_scratch2, cc, false, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1793
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1794
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1795
void TemplateTable::ret() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1796
  locals_index(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1797
  __ load_local_ptr(R17_tos, R11_scratch1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1798
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1799
  __ profile_ret(vtos, R17_tos, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1800
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1801
  __ ld(R11_scratch1, in_bytes(Method::const_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1802
  __ add(R11_scratch1, R17_tos, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1803
  __ addi(R14_bcp, R11_scratch1, in_bytes(ConstMethod::codes_offset()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1804
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1805
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1806
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1807
void TemplateTable::wide_ret() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1808
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1809
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1810
  const Register Rindex = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1811
                 Rscratch1 = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1812
                 Rscratch2 = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1813
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1814
  locals_index_wide(Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1815
  __ load_local_ptr(R17_tos, R17_tos, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1816
  __ profile_ret(vtos, R17_tos, Rscratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1817
  // Tos now contains the bci, compute the bcp from that.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1818
  __ ld(Rscratch1, in_bytes(Method::const_offset()), R19_method);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1819
  __ addi(Rscratch2, R17_tos, in_bytes(ConstMethod::codes_offset()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1820
  __ add(R14_bcp, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1821
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1822
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1823
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1824
void TemplateTable::tableswitch() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1825
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1826
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1827
  Label Ldispatch, Ldefault_case;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1828
  Register Rlow_byte         = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1829
           Rindex            = Rlow_byte,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1830
           Rhigh_byte        = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1831
           Rdef_offset_addr  = R5_ARG3, // is going to contain address of default offset
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1832
           Rscratch1         = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1833
           Rscratch2         = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1834
           Roffset           = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1835
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1836
  // Align bcp.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1837
  __ addi(Rdef_offset_addr, R14_bcp, BytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1838
  __ clrrdi(Rdef_offset_addr, Rdef_offset_addr, log2_long((jlong)BytesPerInt));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1839
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1840
  // Load lo & hi.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1841
  __ lwz(Rlow_byte, BytesPerInt, Rdef_offset_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1842
  __ lwz(Rhigh_byte, BytesPerInt * 2, Rdef_offset_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1843
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1844
  // Check for default case (=index outside [low,high]).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1845
  __ cmpw(CCR0, R17_tos, Rlow_byte);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1846
  __ cmpw(CCR1, R17_tos, Rhigh_byte);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1847
  __ blt(CCR0, Ldefault_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1848
  __ bgt(CCR1, Ldefault_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1849
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1850
  // Lookup dispatch offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1851
  __ sub(Rindex, R17_tos, Rlow_byte);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1852
  __ extsw(Rindex, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1853
  __ profile_switch_case(Rindex, Rhigh_byte /* scratch */, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1854
  __ sldi(Rindex, Rindex, LogBytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1855
  __ addi(Rindex, Rindex, 3 * BytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1856
  __ lwax(Roffset, Rdef_offset_addr, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1857
  __ b(Ldispatch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1858
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1859
  __ bind(Ldefault_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1860
  __ profile_switch_default(Rhigh_byte, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1861
  __ lwa(Roffset, 0, Rdef_offset_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1862
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1863
  __ bind(Ldispatch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1864
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1865
  __ add(R14_bcp, Roffset, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1866
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1867
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1868
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1869
void TemplateTable::lookupswitch() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1870
  transition(itos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1871
  __ stop("lookupswitch bytecode should have been rewritten");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1872
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1873
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1874
// Table switch using linear search through cases.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1875
// Bytecode stream format:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1876
// Bytecode (1) | 4-byte padding | default offset (4) | count (4) | value/offset pair1 (8) | value/offset pair2 (8) | ...
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1877
// Note: Everything is big-endian format here. So on little endian machines, we have to revers offset and count and cmp value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1878
void TemplateTable::fast_linearswitch() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1879
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1880
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1881
  Label Lloop_entry, Lsearch_loop, Lfound, Lcontinue_execution, Ldefault_case;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1882
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1883
  Register Rcount           = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1884
           Rcurrent_pair    = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1885
           Rdef_offset_addr = R5_ARG3, // Is going to contain address of default offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1886
           Roffset          = R31,     // Might need to survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1887
           Rvalue           = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1888
           Rscratch         = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1889
           Rcmp_value       = R17_tos;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1890
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1891
  // Align bcp.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1892
  __ addi(Rdef_offset_addr, R14_bcp, BytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1893
  __ clrrdi(Rdef_offset_addr, Rdef_offset_addr, log2_long((jlong)BytesPerInt));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1894
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1895
  // Setup loop counter and limit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1896
  __ lwz(Rcount, BytesPerInt, Rdef_offset_addr);    // Load count.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1897
  __ addi(Rcurrent_pair, Rdef_offset_addr, 2 * BytesPerInt); // Rcurrent_pair now points to first pair.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1898
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1899
  // Set up search loop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1900
  __ cmpwi(CCR0, Rcount, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1901
  __ beq(CCR0, Ldefault_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1902
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1903
  __ mtctr(Rcount);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1904
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1905
  // linear table search
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1906
  __ bind(Lsearch_loop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1907
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1908
  __ lwz(Rvalue, 0, Rcurrent_pair);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1909
  __ lwa(Roffset, 1 * BytesPerInt, Rcurrent_pair);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1910
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1911
  __ cmpw(CCR0, Rvalue, Rcmp_value);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1912
  __ beq(CCR0, Lfound);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1913
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1914
  __ addi(Rcurrent_pair, Rcurrent_pair, 2 * BytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1915
  __ bdnz(Lsearch_loop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1916
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1917
  // default case
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1918
  __ bind(Ldefault_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1919
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1920
  __ lwa(Roffset, 0, Rdef_offset_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1921
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1922
    __ profile_switch_default(Rdef_offset_addr, Rcount/* scratch */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1923
    __ b(Lcontinue_execution);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1924
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1925
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1926
  // Entry found, skip Roffset bytecodes and continue.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1927
  __ bind(Lfound);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1928
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1929
    // Calc the num of the pair we hit. Careful, Rcurrent_pair points 2 ints
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1930
    // beyond the actual current pair due to the auto update load above!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1931
    __ sub(Rcurrent_pair, Rcurrent_pair, Rdef_offset_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1932
    __ addi(Rcurrent_pair, Rcurrent_pair, - 2 * BytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1933
    __ srdi(Rcurrent_pair, Rcurrent_pair, LogBytesPerInt + 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1934
    __ profile_switch_case(Rcurrent_pair, Rcount /*scratch*/, Rdef_offset_addr/*scratch*/, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1935
    __ bind(Lcontinue_execution);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1936
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1937
  __ add(R14_bcp, Roffset, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1938
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1939
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1940
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1941
// Table switch using binary search (value/offset pairs are ordered).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1942
// Bytecode stream format:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1943
// Bytecode (1) | 4-byte padding | default offset (4) | count (4) | value/offset pair1 (8) | value/offset pair2 (8) | ...
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1944
// Note: Everything is big-endian format here. So on little endian machines, we have to revers offset and count and cmp value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1945
void TemplateTable::fast_binaryswitch() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1946
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1947
  transition(itos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1948
  // Implementation using the following core algorithm: (copied from Intel)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1949
  //
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1950
  // int binary_search(int key, LookupswitchPair* array, int n) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1951
  //   // Binary search according to "Methodik des Programmierens" by
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1952
  //   // Edsger W. Dijkstra and W.H.J. Feijen, Addison Wesley Germany 1985.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1953
  //   int i = 0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1954
  //   int j = n;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1955
  //   while (i+1 < j) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1956
  //     // invariant P: 0 <= i < j <= n and (a[i] <= key < a[j] or Q)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1957
  //     // with      Q: for all i: 0 <= i < n: key < a[i]
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1958
  //     // where a stands for the array and assuming that the (inexisting)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1959
  //     // element a[n] is infinitely big.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1960
  //     int h = (i + j) >> 1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1961
  //     // i < h < j
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1962
  //     if (key < array[h].fast_match()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1963
  //       j = h;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1964
  //     } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1965
  //       i = h;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1966
  //     }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1967
  //   }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1968
  //   // R: a[i] <= key < a[i+1] or Q
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1969
  //   // (i.e., if key is within array, i is the correct index)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1970
  //   return i;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1971
  // }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1972
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1973
  // register allocation
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1974
  const Register Rkey     = R17_tos;          // already set (tosca)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1975
  const Register Rarray   = R3_ARG1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1976
  const Register Ri       = R4_ARG2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1977
  const Register Rj       = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1978
  const Register Rh       = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1979
  const Register Rscratch = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1980
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1981
  const int log_entry_size = 3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1982
  const int entry_size = 1 << log_entry_size;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1983
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1984
  Label found;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1985
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1986
  // Find Array start,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1987
  __ addi(Rarray, R14_bcp, 3 * BytesPerInt);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1988
  __ clrrdi(Rarray, Rarray, log2_long((jlong)BytesPerInt));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1989
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1990
  // initialize i & j
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1991
  __ li(Ri,0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1992
  __ lwz(Rj, -BytesPerInt, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1993
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1994
  // and start.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1995
  Label entry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1996
  __ b(entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1997
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1998
  // binary search loop
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  1999
  { Label loop;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2000
    __ bind(loop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2001
    // int h = (i + j) >> 1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2002
    __ srdi(Rh, Rh, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2003
    // if (key < array[h].fast_match()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2004
    //   j = h;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2005
    // } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2006
    //   i = h;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2007
    // }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2008
    __ sldi(Rscratch, Rh, log_entry_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2009
    __ lwzx(Rscratch, Rscratch, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2010
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2011
    // if (key < current value)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2012
    //   Rh = Rj
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2013
    // else
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2014
    //   Rh = Ri
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2015
    Label Lgreater;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2016
    __ cmpw(CCR0, Rkey, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2017
    __ bge(CCR0, Lgreater);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2018
    __ mr(Rj, Rh);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2019
    __ b(entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2020
    __ bind(Lgreater);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2021
    __ mr(Ri, Rh);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2022
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2023
    // while (i+1 < j)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2024
    __ bind(entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2025
    __ addi(Rscratch, Ri, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2026
    __ cmpw(CCR0, Rscratch, Rj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2027
    __ add(Rh, Ri, Rj); // start h = i + j >> 1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2028
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2029
    __ blt(CCR0, loop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2030
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2031
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2032
  // End of binary search, result index is i (must check again!).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2033
  Label default_case;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2034
  Label continue_execution;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2035
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2036
    __ mr(Rh, Ri);              // Save index in i for profiling.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2037
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2038
  // Ri = value offset
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2039
  __ sldi(Ri, Ri, log_entry_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2040
  __ add(Ri, Ri, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2041
  __ lwz(Rscratch, 0, Ri);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2042
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2043
  Label not_found;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2044
  // Ri = offset offset
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2045
  __ cmpw(CCR0, Rkey, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2046
  __ beq(CCR0, not_found);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2047
  // entry not found -> j = default offset
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2048
  __ lwz(Rj, -2 * BytesPerInt, Rarray);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2049
  __ b(default_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2050
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2051
  __ bind(not_found);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2052
  // entry found -> j = offset
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2053
  __ profile_switch_case(Rh, Rj, Rscratch, Rkey);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2054
  __ lwz(Rj, BytesPerInt, Ri);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2055
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2056
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2057
    __ b(continue_execution);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2058
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2059
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2060
  __ bind(default_case); // fall through (if not profiling)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2061
  __ profile_switch_default(Ri, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2062
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2063
  __ bind(continue_execution);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2064
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2065
  __ extsw(Rj, Rj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2066
  __ add(R14_bcp, Rj, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2067
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2068
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2069
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2070
void TemplateTable::_return(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2071
  transition(state, state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2072
  assert(_desc->calls_vm(),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2073
         "inconsistent calls_vm information"); // call in remove_activation
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2074
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2075
  if (_desc->bytecode() == Bytecodes::_return_register_finalizer) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2076
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2077
    Register Rscratch     = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2078
             Rklass       = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2079
             Rklass_flags = Rklass;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2080
    Label Lskip_register_finalizer;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2081
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2082
    // Check if the method has the FINALIZER flag set and call into the VM to finalize in this case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2083
    assert(state == vtos, "only valid state");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2084
    __ ld(R17_tos, 0, R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2085
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2086
    // Load klass of this obj.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2087
    __ load_klass(Rklass, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2088
    __ lwz(Rklass_flags, in_bytes(Klass::access_flags_offset()), Rklass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2089
    __ testbitdi(CCR0, R0, Rklass_flags, exact_log2(JVM_ACC_HAS_FINALIZER));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2090
    __ bfalse(CCR0, Lskip_register_finalizer);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2091
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2092
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::register_finalizer), R17_tos /* obj */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2093
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2094
    __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2095
    __ bind(Lskip_register_finalizer);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2096
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2097
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2098
  // Move the result value into the correct register and remove memory stack frame.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2099
  __ remove_activation(state, /* throw_monitor_exception */ true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2100
  // Restoration of lr done by remove_activation.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2101
  switch (state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2102
    case ltos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2103
    case btos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2104
    case ctos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2105
    case stos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2106
    case atos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2107
    case itos: __ mr(R3_RET, R17_tos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2108
    case ftos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2109
    case dtos: __ fmr(F1_RET, F15_ftos); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2110
    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
  2111
               // to get visible before the reference to the object gets stored anywhere.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2112
               __ membar(Assembler::StoreStore); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2113
    default  : ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2114
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2115
  __ blr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2116
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2117
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2118
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2119
// Constant pool cache access
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2120
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2121
// Memory ordering:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2122
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2123
// Like done in C++ interpreter, we load the fields
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2124
//   - _indices
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2125
//   - _f12_oop
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2126
// acquired, because these are asked if the cache is already resolved. We don't
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2127
// want to float loads above this check.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2128
// See also comments in ConstantPoolCacheEntry::bytecode_1(),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2129
// ConstantPoolCacheEntry::bytecode_2() and ConstantPoolCacheEntry::f1();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2130
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2131
// Call into the VM if call site is not yet resolved
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2132
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2133
// Input regs:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2134
//   - None, all passed regs are outputs.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2135
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2136
// Returns:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2137
//   - Rcache:  The const pool cache entry that contains the resolved result.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2138
//   - Rresult: Either noreg or output for f1/f2.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2139
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2140
// Kills:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2141
//   - Rscratch
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2142
void TemplateTable::resolve_cache_and_index(int byte_no, Register Rcache, Register Rscratch, size_t index_size) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2143
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2144
  __ get_cache_and_index_at_bcp(Rcache, 1, index_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2145
  Label Lresolved, Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2146
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2147
  assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2148
  // We are resolved if the indices offset contains the current bytecode.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2149
  // Big Endian:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2150
  __ lbz(Rscratch, in_bytes(ConstantPoolCache::base_offset() + ConstantPoolCacheEntry::indices_offset()) + 7 - (byte_no + 1), Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2151
  // Acquire by cmp-br-isync (see below).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2152
  __ cmpdi(CCR0, Rscratch, (int)bytecode());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2153
  __ beq(CCR0, Lresolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2154
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2155
  address entry = NULL;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2156
  switch (bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2157
    case Bytecodes::_getstatic      : // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2158
    case Bytecodes::_putstatic      : // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2159
    case Bytecodes::_getfield       : // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2160
    case Bytecodes::_putfield       : entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_get_put); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2161
    case Bytecodes::_invokevirtual  : // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2162
    case Bytecodes::_invokespecial  : // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2163
    case Bytecodes::_invokestatic   : // fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2164
    case Bytecodes::_invokeinterface: entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_invoke); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2165
    case Bytecodes::_invokehandle   : entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_invokehandle); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2166
    case Bytecodes::_invokedynamic  : entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_invokedynamic); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2167
    default                         : ShouldNotReachHere(); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2168
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2169
  __ li(R4_ARG2, (int)bytecode());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2170
  __ call_VM(noreg, entry, R4_ARG2, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2171
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2172
  // Update registers with resolved info.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2173
  __ get_cache_and_index_at_bcp(Rcache, 1, index_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2174
  __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2175
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2176
  __ bind(Lresolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2177
  __ isync(); // Order load wrt. succeeding loads.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2178
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2179
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2180
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2181
// Load the constant pool cache entry at field accesses into registers.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2182
// The Rcache and Rindex registers must be set before call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2183
// Input:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2184
//   - Rcache, Rindex
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2185
// Output:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2186
//   - Robj, Roffset, Rflags
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2187
void TemplateTable::load_field_cp_cache_entry(Register Robj,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2188
                                              Register Rcache,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2189
                                              Register Rindex /* unused on PPC64 */,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2190
                                              Register Roffset,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2191
                                              Register Rflags,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2192
                                              bool is_static = false) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2193
  assert_different_registers(Rcache, Rflags, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2194
  // assert(Rindex == noreg, "parameter not used on PPC64");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2195
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2196
  ByteSize cp_base_offset = ConstantPoolCache::base_offset();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2197
  __ ld(Rflags, in_bytes(cp_base_offset) + in_bytes(ConstantPoolCacheEntry::flags_offset()), Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2198
  __ ld(Roffset, in_bytes(cp_base_offset) + in_bytes(ConstantPoolCacheEntry::f2_offset()), Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2199
  if (is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2200
    __ ld(Robj, in_bytes(cp_base_offset) + in_bytes(ConstantPoolCacheEntry::f1_offset()), Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2201
    __ ld(Robj, in_bytes(Klass::java_mirror_offset()), Robj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2202
    // Acquire not needed here. Following access has an address dependency on this value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2203
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2204
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2205
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2206
// Load the constant pool cache entry at invokes into registers.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2207
// Resolve if necessary.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2208
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2209
// Input Registers:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2210
//   - None, bcp is used, though
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2211
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2212
// Return registers:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2213
//   - Rmethod       (f1 field or f2 if invokevirtual)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2214
//   - Ritable_index (f2 field)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2215
//   - Rflags        (flags field)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2216
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2217
// Kills:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2218
//   - R21
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2219
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2220
void TemplateTable::load_invoke_cp_cache_entry(int byte_no,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2221
                                               Register Rmethod,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2222
                                               Register Ritable_index,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2223
                                               Register Rflags,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2224
                                               bool is_invokevirtual,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2225
                                               bool is_invokevfinal,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2226
                                               bool is_invokedynamic) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2227
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2228
  ByteSize cp_base_offset = ConstantPoolCache::base_offset();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2229
  // Determine constant pool cache field offsets.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2230
  assert(is_invokevirtual == (byte_no == f2_byte), "is_invokevirtual flag redundant");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2231
  const int method_offset = in_bytes(cp_base_offset + (is_invokevirtual ? ConstantPoolCacheEntry::f2_offset() : ConstantPoolCacheEntry::f1_offset()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2232
  const int flags_offset  = in_bytes(cp_base_offset + ConstantPoolCacheEntry::flags_offset());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2233
  // Access constant pool cache fields.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2234
  const int index_offset  = in_bytes(cp_base_offset + ConstantPoolCacheEntry::f2_offset());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2235
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2236
  Register Rcache = R21_tmp1; // Note: same register as R21_sender_SP.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2237
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2238
  if (is_invokevfinal) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2239
    assert(Ritable_index == noreg, "register not used");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2240
    // Already resolved.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2241
    __ get_cache_and_index_at_bcp(Rcache, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2242
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2243
    resolve_cache_and_index(byte_no, Rcache, R0, is_invokedynamic ? sizeof(u4) : sizeof(u2));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2244
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2245
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2246
  __ ld(Rmethod, method_offset, Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2247
  __ ld(Rflags, flags_offset, Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2248
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2249
  if (Ritable_index != noreg) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2250
    __ ld(Ritable_index, index_offset, Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2251
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2252
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2253
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2254
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2255
// Field access
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2256
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2257
// Volatile variables demand their effects be made known to all CPU's
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2258
// in order. Store buffers on most chips allow reads & writes to
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2259
// reorder; the JMM's ReadAfterWrite.java test fails in -Xint mode
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2260
// without some kind of memory barrier (i.e., it's not sufficient that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2261
// the interpreter does not reorder volatile references, the hardware
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2262
// also must not reorder them).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2263
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2264
// According to the new Java Memory Model (JMM):
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2265
// (1) All volatiles are serialized wrt to each other. ALSO reads &
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2266
//     writes act as aquire & release, so:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2267
// (2) A read cannot let unrelated NON-volatile memory refs that
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2268
//     happen after the read float up to before the read. It's OK for
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2269
//     non-volatile memory refs that happen before the volatile read to
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2270
//     float down below it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2271
// (3) Similar a volatile write cannot let unrelated NON-volatile
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2272
//     memory refs that happen BEFORE the write float down to after the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2273
//     write. It's OK for non-volatile memory refs that happen after the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2274
//     volatile write to float up before it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2275
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2276
// We only put in barriers around volatile refs (they are expensive),
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2277
// not _between_ memory refs (that would require us to track the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2278
// flavor of the previous memory refs). Requirements (2) and (3)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2279
// require some barriers before volatile stores and after volatile
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2280
// loads. These nearly cover requirement (1) but miss the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2281
// volatile-store-volatile-load case.  This final case is placed after
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2282
// volatile-stores although it could just as well go before
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2283
// volatile-loads.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2284
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2285
// The registers cache and index expected to be set before call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2286
// Correct values of the cache and index registers are preserved.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2287
// Kills:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2288
//   Rcache (if has_tos)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2289
//   Rscratch
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2290
void TemplateTable::jvmti_post_field_access(Register Rcache, Register Rscratch, bool is_static, bool has_tos) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2291
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2292
  assert_different_registers(Rcache, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2293
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2294
  if (JvmtiExport::can_post_field_access()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2295
    ByteSize cp_base_offset = ConstantPoolCache::base_offset();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2296
    Label Lno_field_access_post;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2297
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2298
    // Check if post field access in enabled.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2299
    int offs = __ load_const_optimized(Rscratch, JvmtiExport::get_field_access_count_addr(), R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2300
    __ lwz(Rscratch, offs, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2301
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2302
    __ cmpwi(CCR0, Rscratch, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2303
    __ beq(CCR0, Lno_field_access_post);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2304
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2305
    // Post access enabled - do it!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2306
    __ addi(Rcache, Rcache, in_bytes(cp_base_offset));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2307
    if (is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2308
      __ li(R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2309
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2310
      if (has_tos) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2311
        // The fast bytecode versions have obj ptr in register.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2312
        // Thus, save object pointer before call_VM() clobbers it
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2313
        // put object on tos where GC wants it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2314
        __ push_ptr(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2315
      } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2316
        // Load top of stack (do not pop the value off the stack).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2317
        __ ld(R17_tos, Interpreter::expr_offset_in_bytes(0), R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2318
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2319
      __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2320
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2321
    // tos:   object pointer or NULL if static
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2322
    // cache: cache entry pointer
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2323
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_access), R17_tos, Rcache);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2324
    if (!is_static && has_tos) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2325
      // Restore object pointer.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2326
      __ pop_ptr(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2327
      __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2328
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2329
      // Cache is still needed to get class or obj.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2330
      __ get_cache_and_index_at_bcp(Rcache, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2331
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2332
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2333
    __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2334
    __ bind(Lno_field_access_post);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2335
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2336
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2337
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2338
// kills R11_scratch1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2339
void TemplateTable::pop_and_check_object(Register Roop) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2340
  Register Rtmp = R11_scratch1;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2341
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2342
  assert_different_registers(Rtmp, Roop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2343
  __ pop_ptr(Roop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2344
  // For field access must check obj.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2345
  __ null_check_throw(Roop, -1, Rtmp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2346
  __ verify_oop(Roop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2347
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2348
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2349
// PPC64: implement volatile loads as fence-store-acquire.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2350
void TemplateTable::getfield_or_static(int byte_no, bool is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2351
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2352
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2353
  Label Lacquire, Lisync;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2354
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2355
  const Register Rcache        = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2356
                 Rclass_or_obj = R22_tmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2357
                 Roffset       = R23_tmp3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2358
                 Rflags        = R31,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2359
                 Rbtable       = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2360
                 Rbc           = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2361
                 Rscratch      = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2362
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2363
  static address field_branch_table[number_of_states],
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2364
                 static_branch_table[number_of_states];
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2365
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2366
  address* branch_table = is_static ? static_branch_table : field_branch_table;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2367
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2368
  // Get field offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2369
  resolve_cache_and_index(byte_no, Rcache, Rscratch, sizeof(u2));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2370
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2371
  // JVMTI support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2372
  jvmti_post_field_access(Rcache, Rscratch, is_static, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2373
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2374
  // Load after possible GC.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2375
  load_field_cp_cache_entry(Rclass_or_obj, Rcache, noreg, Roffset, Rflags, is_static);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2376
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2377
  // Load pointer to branch table.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2378
  __ load_const_optimized(Rbtable, (address)branch_table, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2379
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2380
  // Get volatile flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2381
  __ rldicl(Rscratch, Rflags, 64-ConstantPoolCacheEntry::is_volatile_shift, 63); // Extract volatile bit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2382
  // Note: sync is needed before volatile load on PPC64.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2383
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2384
  // Check field type.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2385
  __ rldicl(Rflags, Rflags, 64-ConstantPoolCacheEntry::tos_state_shift, 64-ConstantPoolCacheEntry::tos_state_bits);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2386
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2387
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2388
  Label LFlagInvalid;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2389
  __ cmpldi(CCR0, Rflags, number_of_states);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2390
  __ bge(CCR0, LFlagInvalid);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2391
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2392
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2393
  // Load from branch table and dispatch (volatile case: one instruction ahead).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2394
  __ sldi(Rflags, Rflags, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2395
  __ cmpwi(CCR6, Rscratch, 1); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2396
  if (support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2397
    __ sldi(Rscratch, Rscratch, exact_log2(BytesPerInstWord)); // Volatile ? size of 1 instruction : 0.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2398
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2399
  __ ldx(Rbtable, Rbtable, Rflags);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2400
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2401
  // Get the obj from stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2402
  if (!is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2403
    pop_and_check_object(Rclass_or_obj); // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2404
  } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2405
    __ verify_oop(Rclass_or_obj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2406
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2407
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2408
  if (support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2409
    __ subf(Rbtable, Rscratch, Rbtable); // Point to volatile/non-volatile entry point.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2410
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2411
  __ mtctr(Rbtable);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2412
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2413
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2414
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2415
  __ bind(LFlagInvalid);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2416
  __ stop("got invalid flag", 0x654);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2417
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2418
  // __ bind(Lvtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2419
  address pc_before_fence = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2420
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2421
  assert(__ pc() - pc_before_fence == (ptrdiff_t)BytesPerInstWord, "must be single instruction");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2422
  assert(branch_table[vtos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2423
  branch_table[vtos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2424
  __ stop("vtos unexpected", 0x655);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2425
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2426
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2427
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2428
  // __ bind(Ldtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2429
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2430
  assert(branch_table[dtos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2431
  branch_table[dtos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2432
  __ lfdx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2433
  __ push(dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2434
  if (!is_static) patch_bytecode(Bytecodes::_fast_dgetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2435
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2436
    Label acquire_double;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2437
    __ beq(CCR6, acquire_double); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2438
    __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2439
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2440
    __ bind(acquire_double);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2441
    __ fcmpu(CCR0, F15_ftos, F15_ftos); // Acquire by cmp-br-isync.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2442
    __ beq_predict_taken(CCR0, Lisync);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2443
    __ b(Lisync); // In case of NAN.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2444
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2445
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2446
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2447
  // __ bind(Lftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2448
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2449
  assert(branch_table[ftos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2450
  branch_table[ftos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2451
  __ lfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2452
  __ push(ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2453
  if (!is_static) { patch_bytecode(Bytecodes::_fast_fgetfield, Rbc, Rscratch); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2454
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2455
    Label acquire_float;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2456
    __ beq(CCR6, acquire_float); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2457
    __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2458
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2459
    __ bind(acquire_float);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2460
    __ fcmpu(CCR0, F15_ftos, F15_ftos); // Acquire by cmp-br-isync.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2461
    __ beq_predict_taken(CCR0, Lisync);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2462
    __ b(Lisync); // In case of NAN.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2463
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2464
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2465
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2466
  // __ bind(Litos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2467
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2468
  assert(branch_table[itos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2469
  branch_table[itos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2470
  __ lwax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2471
  __ push(itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2472
  if (!is_static) patch_bytecode(Bytecodes::_fast_igetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2473
  __ beq(CCR6, Lacquire); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2474
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2475
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2476
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2477
  // __ bind(Lltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2478
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2479
  assert(branch_table[ltos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2480
  branch_table[ltos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2481
  __ ldx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2482
  __ push(ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2483
  if (!is_static) patch_bytecode(Bytecodes::_fast_lgetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2484
  __ beq(CCR6, Lacquire); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2485
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2486
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2487
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2488
  // __ bind(Lbtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2489
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2490
  assert(branch_table[btos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2491
  branch_table[btos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2492
  __ lbzx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2493
  __ extsb(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2494
  __ push(btos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2495
  if (!is_static) patch_bytecode(Bytecodes::_fast_bgetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2496
  __ beq(CCR6, Lacquire); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2497
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2498
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2499
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2500
  // __ bind(Lctos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2501
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2502
  assert(branch_table[ctos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2503
  branch_table[ctos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2504
  __ lhzx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2505
  __ push(ctos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2506
  if (!is_static) patch_bytecode(Bytecodes::_fast_cgetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2507
  __ beq(CCR6, Lacquire); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2508
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2509
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2510
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2511
  // __ bind(Lstos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2512
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2513
  assert(branch_table[stos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2514
  branch_table[stos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2515
  __ lhax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2516
  __ push(stos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2517
  if (!is_static) patch_bytecode(Bytecodes::_fast_sgetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2518
  __ beq(CCR6, Lacquire); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2519
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2520
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2521
  __ align(32, 28, 28); // Align load.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2522
  // __ bind(Latos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2523
  __ fence(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2524
  assert(branch_table[atos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2525
  branch_table[atos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2526
  __ load_heap_oop(R17_tos, (RegisterOrConstant)Roffset, Rclass_or_obj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2527
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2528
  __ push(atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2529
  //__ dcbt(R17_tos); // prefetch
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2530
  if (!is_static) patch_bytecode(Bytecodes::_fast_agetfield, Rbc, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2531
  __ beq(CCR6, Lacquire); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2532
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2533
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2534
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2535
  __ bind(Lacquire);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2536
  __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2537
  __ bind(Lisync);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2538
  __ isync(); // acquire
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2539
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2540
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2541
  for (int i = 0; i<number_of_states; ++i) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2542
    assert(branch_table[i], "get initialization");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2543
    //tty->print_cr("get: %s_branch_table[%d] = 0x%llx (opcode 0x%llx)",
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2544
    //              is_static ? "static" : "field", i, branch_table[i], *((unsigned int*)branch_table[i]));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2545
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2546
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2547
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2548
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2549
void TemplateTable::getfield(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2550
  getfield_or_static(byte_no, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2551
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2552
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2553
void TemplateTable::getstatic(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2554
  getfield_or_static(byte_no, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2555
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2556
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2557
// The registers cache and index expected to be set before call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2558
// The function may destroy various registers, just not the cache and index registers.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2559
void TemplateTable::jvmti_post_field_mod(Register Rcache, Register Rscratch, bool is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2560
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2561
  assert_different_registers(Rcache, Rscratch, R6_ARG4);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2562
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2563
  if (JvmtiExport::can_post_field_modification()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2564
    Label Lno_field_mod_post;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2565
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2566
    // Check if post field access in enabled.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2567
    int offs = __ load_const_optimized(Rscratch, JvmtiExport::get_field_modification_count_addr(), R0, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2568
    __ lwz(Rscratch, offs, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2569
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2570
    __ cmpwi(CCR0, Rscratch, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2571
    __ beq(CCR0, Lno_field_mod_post);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2572
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2573
    // Do the post
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2574
    ByteSize cp_base_offset = ConstantPoolCache::base_offset();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2575
    const Register Robj = Rscratch;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2576
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2577
    __ addi(Rcache, Rcache, in_bytes(cp_base_offset));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2578
    if (is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2579
      // Life is simple. Null out the object pointer.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2580
      __ li(Robj, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2581
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2582
      // In case of the fast versions, value lives in registers => put it back on tos.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2583
      int offs = Interpreter::expr_offset_in_bytes(0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2584
      Register base = R15_esp;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2585
      switch(bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2586
        case Bytecodes::_fast_aputfield: __ push_ptr(); offs+= Interpreter::stackElementSize; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2587
        case Bytecodes::_fast_iputfield: // Fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2588
        case Bytecodes::_fast_bputfield: // Fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2589
        case Bytecodes::_fast_cputfield: // Fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2590
        case Bytecodes::_fast_sputfield: __ push_i(); offs+=  Interpreter::stackElementSize; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2591
        case Bytecodes::_fast_lputfield: __ push_l(); offs+=2*Interpreter::stackElementSize; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2592
        case Bytecodes::_fast_fputfield: __ push_f(); offs+=  Interpreter::stackElementSize; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2593
        case Bytecodes::_fast_dputfield: __ push_d(); offs+=2*Interpreter::stackElementSize; break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2594
        default: {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2595
          offs = 0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2596
          base = Robj;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2597
          const Register Rflags = Robj;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2598
          Label is_one_slot;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2599
          // Life is harder. The stack holds the value on top, followed by the
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2600
          // object. We don't know the size of the value, though; it could be
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2601
          // one or two words depending on its type. As a result, we must find
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2602
          // the type to determine where the object is.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2603
          __ ld(Rflags, in_bytes(ConstantPoolCacheEntry::flags_offset()), Rcache); // Big Endian
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2604
          __ rldicl(Rflags, Rflags, 64-ConstantPoolCacheEntry::tos_state_shift, 64-ConstantPoolCacheEntry::tos_state_bits);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2605
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2606
          __ cmpwi(CCR0, Rflags, ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2607
          __ cmpwi(CCR1, Rflags, dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2608
          __ addi(base, R15_esp, Interpreter::expr_offset_in_bytes(1));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2609
          __ crnor(/*CR0 eq*/2, /*CR1 eq*/4+2, /*CR0 eq*/2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2610
          __ beq(CCR0, is_one_slot);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2611
          __ addi(base, R15_esp, Interpreter::expr_offset_in_bytes(2));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2612
          __ bind(is_one_slot);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2613
          break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2614
        }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2615
      }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2616
      __ ld(Robj, offs, base);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2617
      __ verify_oop(Robj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2618
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2619
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2620
    __ addi(R6_ARG4, R15_esp, Interpreter::expr_offset_in_bytes(0));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2621
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_modification), Robj, Rcache, R6_ARG4);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2622
    __ get_cache_and_index_at_bcp(Rcache, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2623
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2624
    // In case of the fast versions, value lives in registers => put it back on tos.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2625
    switch(bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2626
      case Bytecodes::_fast_aputfield: __ pop_ptr(); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2627
      case Bytecodes::_fast_iputfield: // Fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2628
      case Bytecodes::_fast_bputfield: // Fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2629
      case Bytecodes::_fast_cputfield: // Fall through
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2630
      case Bytecodes::_fast_sputfield: __ pop_i(); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2631
      case Bytecodes::_fast_lputfield: __ pop_l(); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2632
      case Bytecodes::_fast_fputfield: __ pop_f(); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2633
      case Bytecodes::_fast_dputfield: __ pop_d(); break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2634
      default: break; // Nothin' to do.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2635
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2636
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2637
    __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2638
    __ bind(Lno_field_mod_post);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2639
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2640
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2641
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2642
// PPC64: implement volatile stores as release-store (return bytecode contains an additional release).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2643
void TemplateTable::putfield_or_static(int byte_no, bool is_static) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2644
  Label Lvolatile;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2645
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2646
  const Register Rcache        = R5_ARG3,  // Do not use ARG1/2 (causes trouble in jvmti_post_field_mod).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2647
                 Rclass_or_obj = R31,      // Needs to survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2648
                 Roffset       = R22_tmp2, // Needs to survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2649
                 Rflags        = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2650
                 Rbtable       = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2651
                 Rscratch      = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2652
                 Rscratch2     = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2653
                 Rscratch3     = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2654
                 Rbc           = Rscratch3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2655
  const ConditionRegister CR_is_vol = CCR2; // Non-volatile condition register (survives runtime call in do_oop_store).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2656
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2657
  static address field_branch_table[number_of_states],
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2658
                 static_branch_table[number_of_states];
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2659
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2660
  address* branch_table = is_static ? static_branch_table : field_branch_table;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2661
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2662
  // Stack (grows up):
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2663
  //  value
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2664
  //  obj
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2665
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2666
  // Load the field offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2667
  resolve_cache_and_index(byte_no, Rcache, Rscratch, sizeof(u2));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2668
  jvmti_post_field_mod(Rcache, Rscratch, is_static);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2669
  load_field_cp_cache_entry(Rclass_or_obj, Rcache, noreg, Roffset, Rflags, is_static);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2670
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2671
  // Load pointer to branch table.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2672
  __ load_const_optimized(Rbtable, (address)branch_table, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2673
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2674
  // Get volatile flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2675
  __ rldicl(Rscratch, Rflags, 64-ConstantPoolCacheEntry::is_volatile_shift, 63); // Extract volatile bit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2676
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2677
  // Check the field type.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2678
  __ rldicl(Rflags, Rflags, 64-ConstantPoolCacheEntry::tos_state_shift, 64-ConstantPoolCacheEntry::tos_state_bits);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2679
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2680
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2681
  Label LFlagInvalid;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2682
  __ cmpldi(CCR0, Rflags, number_of_states);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2683
  __ bge(CCR0, LFlagInvalid);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2684
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2685
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2686
  // Load from branch table and dispatch (volatile case: one instruction ahead).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2687
  __ sldi(Rflags, Rflags, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2688
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) { __ cmpwi(CR_is_vol, Rscratch, 1); } // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2689
  __ sldi(Rscratch, Rscratch, exact_log2(BytesPerInstWord)); // Volatile? size of instruction 1 : 0.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2690
  __ ldx(Rbtable, Rbtable, Rflags);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2691
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2692
  __ subf(Rbtable, Rscratch, Rbtable); // Point to volatile/non-volatile entry point.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2693
  __ mtctr(Rbtable);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2694
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2695
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2696
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2697
  __ bind(LFlagInvalid);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2698
  __ stop("got invalid flag", 0x656);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2699
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2700
  // __ bind(Lvtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2701
  address pc_before_release = __ pc();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2702
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2703
  assert(__ pc() - pc_before_release == (ptrdiff_t)BytesPerInstWord, "must be single instruction");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2704
  assert(branch_table[vtos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2705
  branch_table[vtos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2706
  __ stop("vtos unexpected", 0x657);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2707
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2708
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2709
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2710
  // __ bind(Ldtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2711
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2712
  assert(branch_table[dtos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2713
  branch_table[dtos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2714
  __ pop(dtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2715
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2716
  __ stfdx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2717
  if (!is_static) { patch_bytecode(Bytecodes::_fast_dputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2718
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2719
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2720
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2721
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2722
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2723
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2724
  // __ bind(Lftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2725
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2726
  assert(branch_table[ftos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2727
  branch_table[ftos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2728
  __ pop(ftos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2729
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2730
  __ stfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2731
  if (!is_static) { patch_bytecode(Bytecodes::_fast_fputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2732
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2733
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2734
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2735
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2736
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2737
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2738
  // __ bind(Litos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2739
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2740
  assert(branch_table[itos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2741
  branch_table[itos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2742
  __ pop(itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2743
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2744
  __ stwx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2745
  if (!is_static) { patch_bytecode(Bytecodes::_fast_iputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2746
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2747
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2748
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2749
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2750
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2751
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2752
  // __ bind(Lltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2753
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2754
  assert(branch_table[ltos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2755
  branch_table[ltos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2756
  __ pop(ltos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2757
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2758
  __ stdx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2759
  if (!is_static) { patch_bytecode(Bytecodes::_fast_lputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2760
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2761
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2762
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2763
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2764
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2765
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2766
  // __ bind(Lbtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2767
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2768
  assert(branch_table[btos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2769
  branch_table[btos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2770
  __ pop(btos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2771
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2772
  __ stbx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2773
  if (!is_static) { patch_bytecode(Bytecodes::_fast_bputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2774
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2775
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2776
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2777
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2778
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2779
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2780
  // __ bind(Lctos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2781
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2782
  assert(branch_table[ctos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2783
  branch_table[ctos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2784
  __ pop(ctos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2785
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1..
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2786
  __ sthx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2787
  if (!is_static) { patch_bytecode(Bytecodes::_fast_cputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2788
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2789
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2790
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2791
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2792
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2793
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2794
  // __ bind(Lstos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2795
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2796
  assert(branch_table[stos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2797
  branch_table[stos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2798
  __ pop(stos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2799
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2800
  __ sthx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2801
  if (!is_static) { patch_bytecode(Bytecodes::_fast_sputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2802
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2803
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2804
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2805
  __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2806
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2807
  __ align(32, 28, 28); // Align pop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2808
  // __ bind(Latos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2809
  __ release(); // Volatile entry point (one instruction before non-volatile_entry point).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2810
  assert(branch_table[atos] == 0, "can't compute twice");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2811
  branch_table[atos] = __ pc(); // non-volatile_entry point
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2812
  __ pop(atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2813
  if (!is_static) { pop_and_check_object(Rclass_or_obj); } // kills R11_scratch1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2814
  do_oop_store(_masm, Rclass_or_obj, Roffset, R17_tos, Rscratch, Rscratch2, Rscratch3, _bs->kind(), false /* precise */, true /* check null */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2815
  if (!is_static) { patch_bytecode(Bytecodes::_fast_aputfield, Rbc, Rscratch, true, byte_no); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2816
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2817
    __ beq(CR_is_vol, Lvolatile); // Volatile?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2818
    __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2819
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2820
    __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2821
    __ bind(Lvolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2822
    __ fence();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2823
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2824
  // fallthru: __ b(Lexit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2825
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2826
#ifdef ASSERT
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2827
  for (int i = 0; i<number_of_states; ++i) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2828
    assert(branch_table[i], "put initialization");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2829
    //tty->print_cr("put: %s_branch_table[%d] = 0x%llx (opcode 0x%llx)",
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2830
    //              is_static ? "static" : "field", i, branch_table[i], *((unsigned int*)branch_table[i]));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2831
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2832
#endif
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2833
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2834
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2835
void TemplateTable::putfield(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2836
  putfield_or_static(byte_no, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2837
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2838
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2839
void TemplateTable::putstatic(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2840
  putfield_or_static(byte_no, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2841
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2842
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2843
// See SPARC. On PPC64, we have a different jvmti_post_field_mod which does the job.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2844
void TemplateTable::jvmti_post_fast_field_mod() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2845
  __ should_not_reach_here();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2846
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2847
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2848
void TemplateTable::fast_storefield(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2849
  transition(state, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2850
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2851
  const Register Rcache        = R5_ARG3,  // Do not use ARG1/2 (causes trouble in jvmti_post_field_mod).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2852
                 Rclass_or_obj = R31,      // Needs to survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2853
                 Roffset       = R22_tmp2, // Needs to survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2854
                 Rflags        = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2855
                 Rscratch      = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2856
                 Rscratch2     = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2857
                 Rscratch3     = R4_ARG2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2858
  const ConditionRegister CR_is_vol = CCR2; // Non-volatile condition register (survives runtime call in do_oop_store).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2859
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2860
  // Constant pool already resolved => Load flags and offset of field.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2861
  __ get_cache_and_index_at_bcp(Rcache, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2862
  jvmti_post_field_mod(Rcache, Rscratch, false /* not static */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2863
  load_field_cp_cache_entry(noreg, Rcache, noreg, Roffset, Rflags, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2864
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2865
  // Get the obj and the final store addr.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2866
  pop_and_check_object(Rclass_or_obj); // Kills R11_scratch1.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2867
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2868
  // Get volatile flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2869
  __ rldicl_(Rscratch, Rflags, 64-ConstantPoolCacheEntry::is_volatile_shift, 63); // Extract volatile bit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2870
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) { __ cmpdi(CR_is_vol, Rscratch, 1); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2871
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2872
    Label LnotVolatile;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2873
    __ beq(CCR0, LnotVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2874
    __ release();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2875
    __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2876
    __ bind(LnotVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2877
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2878
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2879
  // Do the store and fencing.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2880
  switch(bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2881
    case Bytecodes::_fast_aputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2882
      // Store into the field.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2883
      do_oop_store(_masm, Rclass_or_obj, Roffset, R17_tos, Rscratch, Rscratch2, Rscratch3, _bs->kind(), false /* precise */, true /* check null */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2884
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2885
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2886
    case Bytecodes::_fast_iputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2887
      __ stwx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2888
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2889
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2890
    case Bytecodes::_fast_lputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2891
      __ stdx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2892
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2893
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2894
    case Bytecodes::_fast_bputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2895
      __ stbx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2896
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2897
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2898
    case Bytecodes::_fast_cputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2899
    case Bytecodes::_fast_sputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2900
      __ sthx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2901
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2902
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2903
    case Bytecodes::_fast_fputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2904
      __ stfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2905
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2906
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2907
    case Bytecodes::_fast_dputfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2908
      __ stfdx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2909
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2910
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2911
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2912
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2913
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2914
  if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2915
    Label LVolatile;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2916
    __ beq(CR_is_vol, LVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2917
    __ dispatch_epilog(vtos, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2918
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2919
    __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2920
    __ bind(LVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2921
    __ fence();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2922
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2923
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2924
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2925
void TemplateTable::fast_accessfield(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2926
  transition(atos, state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2927
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2928
  Label LisVolatile;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2929
  ByteSize cp_base_offset = ConstantPoolCache::base_offset();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2930
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2931
  const Register Rcache        = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2932
                 Rclass_or_obj = R17_tos,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2933
                 Roffset       = R22_tmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2934
                 Rflags        = R23_tmp3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2935
                 Rscratch      = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2936
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2937
  // Constant pool already resolved. Get the field offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2938
  __ get_cache_and_index_at_bcp(Rcache, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2939
  load_field_cp_cache_entry(noreg, Rcache, noreg, Roffset, Rflags, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2940
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2941
  // JVMTI support
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2942
  jvmti_post_field_access(Rcache, Rscratch, false, true);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2943
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2944
  // Get the load address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2945
  __ null_check_throw(Rclass_or_obj, -1, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2946
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2947
  // Get volatile flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2948
  __ rldicl_(Rscratch, Rflags, 64-ConstantPoolCacheEntry::is_volatile_shift, 63); // Extract volatile bit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2949
  __ bne(CCR0, LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2950
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2951
  switch(bytecode()) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2952
    case Bytecodes::_fast_agetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2953
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2954
      __ load_heap_oop(R17_tos, (RegisterOrConstant)Roffset, Rclass_or_obj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2955
      __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2956
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2957
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2958
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2959
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2960
      __ load_heap_oop(R17_tos, (RegisterOrConstant)Roffset, Rclass_or_obj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2961
      __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2962
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2963
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2964
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2965
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2966
    case Bytecodes::_fast_igetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2967
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2968
      __ lwax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2969
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2970
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2971
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2972
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2973
      __ lwax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2974
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2975
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2976
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2977
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2978
    case Bytecodes::_fast_lgetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2979
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2980
      __ ldx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2981
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2982
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2983
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2984
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2985
      __ ldx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2986
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2987
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2988
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2989
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2990
    case Bytecodes::_fast_bgetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2991
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2992
      __ lbzx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2993
      __ extsb(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2994
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2995
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2996
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2997
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2998
      __ lbzx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  2999
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3000
      __ extsb(R17_tos, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3001
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3002
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3003
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3004
    case Bytecodes::_fast_cgetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3005
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3006
      __ lhzx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3007
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3008
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3009
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3010
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3011
      __ lhzx(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3012
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3013
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3014
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3015
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3016
    case Bytecodes::_fast_sgetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3017
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3018
      __ lhax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3019
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3020
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3021
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3022
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3023
      __ lhax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3024
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3025
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3026
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3027
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3028
    case Bytecodes::_fast_fgetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3029
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3030
      __ lfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3031
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3032
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3033
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3034
      Label Ldummy;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3035
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3036
      __ lfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3037
      __ fcmpu(CCR0, F15_ftos, F15_ftos); // Acquire by cmp-br-isync.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3038
      __ bne_predict_not_taken(CCR0, Ldummy);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3039
      __ bind(Ldummy);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3040
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3041
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3042
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3043
    case Bytecodes::_fast_dgetfield:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3044
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3045
      __ lfdx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3046
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3047
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3048
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3049
      Label Ldummy;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3050
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3051
      __ lfdx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3052
      __ fcmpu(CCR0, F15_ftos, F15_ftos); // Acquire by cmp-br-isync.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3053
      __ bne_predict_not_taken(CCR0, Ldummy);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3054
      __ bind(Ldummy);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3055
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3056
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3057
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3058
    default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3059
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3060
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3061
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3062
void TemplateTable::fast_xaccess(TosState state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3063
  transition(vtos, state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3064
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3065
  Label LisVolatile;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3066
  ByteSize cp_base_offset = ConstantPoolCache::base_offset();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3067
  const Register Rcache        = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3068
                 Rclass_or_obj = R17_tos,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3069
                 Roffset       = R22_tmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3070
                 Rflags        = R23_tmp3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3071
                 Rscratch      = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3072
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3073
  __ ld(Rclass_or_obj, 0, R18_locals);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3074
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3075
  // Constant pool already resolved. Get the field offset.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3076
  __ get_cache_and_index_at_bcp(Rcache, 2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3077
  load_field_cp_cache_entry(noreg, Rcache, noreg, Roffset, Rflags, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3078
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3079
  // JVMTI support not needed, since we switch back to single bytecode as soon as debugger attaches.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3080
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3081
  // Needed to report exception at the correct bcp.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3082
  __ addi(R14_bcp, R14_bcp, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3083
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3084
  // Get the load address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3085
  __ null_check_throw(Rclass_or_obj, -1, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3086
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3087
  // Get volatile flag.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3088
  __ rldicl_(Rscratch, Rflags, 64-ConstantPoolCacheEntry::is_volatile_shift, 63); // Extract volatile bit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3089
  __ bne(CCR0, LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3090
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3091
  switch(state) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3092
  case atos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3093
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3094
      __ load_heap_oop(R17_tos, (RegisterOrConstant)Roffset, Rclass_or_obj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3095
      __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3096
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()) - 1); // Undo bcp increment.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3097
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3098
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3099
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3100
      __ load_heap_oop(R17_tos, (RegisterOrConstant)Roffset, Rclass_or_obj);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3101
      __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3102
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3103
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3104
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3105
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3106
  case itos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3107
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3108
      __ lwax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3109
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()) - 1); // Undo bcp increment.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3110
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3111
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3112
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3113
      __ lwax(R17_tos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3114
      __ twi_0(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3115
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3116
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3117
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3118
  case ftos:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3119
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3120
      __ lfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3121
      __ dispatch_epilog(state, Bytecodes::length_for(bytecode()) - 1); // Undo bcp increment.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3122
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3123
      __ bind(LisVolatile);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3124
      Label Ldummy;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3125
      if (support_IRIW_for_not_multiple_copy_atomic_cpu) { __ fence(); }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3126
      __ lfsx(F15_ftos, Rclass_or_obj, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3127
      __ fcmpu(CCR0, F15_ftos, F15_ftos); // Acquire by cmp-br-isync.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3128
      __ bne_predict_not_taken(CCR0, Ldummy);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3129
      __ bind(Ldummy);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3130
      __ isync();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3131
      break;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3132
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3133
  default: ShouldNotReachHere();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3134
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3135
  __ addi(R14_bcp, R14_bcp, -1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3136
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3137
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3138
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3139
// Calls
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3140
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3141
// Common code for invoke
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3142
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3143
// Input:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3144
//   - byte_no
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3145
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3146
// Output:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3147
//   - Rmethod:        The method to invoke next.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3148
//   - Rret_addr:      The return address to return to.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3149
//   - Rindex:         MethodType (invokehandle) or CallSite obj (invokedynamic)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3150
//   - Rrecv:          Cache for "this" pointer, might be noreg if static call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3151
//   - Rflags:         Method flags from const pool cache.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3152
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3153
//  Kills:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3154
//   - Rscratch1
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3155
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3156
void TemplateTable::prepare_invoke(int byte_no,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3157
                                   Register Rmethod,  // linked method (or i-klass)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3158
                                   Register Rret_addr,// return address
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3159
                                   Register Rindex,   // itable index, MethodType, etc.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3160
                                   Register Rrecv,    // If caller wants to see it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3161
                                   Register Rflags,   // If caller wants to test it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3162
                                   Register Rscratch
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3163
                                   ) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3164
  // Determine flags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3165
  const Bytecodes::Code code = bytecode();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3166
  const bool is_invokeinterface  = code == Bytecodes::_invokeinterface;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3167
  const bool is_invokedynamic    = code == Bytecodes::_invokedynamic;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3168
  const bool is_invokehandle     = code == Bytecodes::_invokehandle;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3169
  const bool is_invokevirtual    = code == Bytecodes::_invokevirtual;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3170
  const bool is_invokespecial    = code == Bytecodes::_invokespecial;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3171
  const bool load_receiver       = (Rrecv != noreg);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3172
  assert(load_receiver == (code != Bytecodes::_invokestatic && code != Bytecodes::_invokedynamic), "");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3173
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3174
  assert_different_registers(Rmethod, Rindex, Rflags, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3175
  assert_different_registers(Rmethod, Rrecv, Rflags, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3176
  assert_different_registers(Rret_addr, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3177
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3178
  load_invoke_cp_cache_entry(byte_no, Rmethod, Rindex, Rflags, is_invokevirtual, false, is_invokedynamic);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3179
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3180
  // Saving of SP done in call_from_interpreter.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3181
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3182
  // Maybe push "appendix" to arguments.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3183
  if (is_invokedynamic || is_invokehandle) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3184
    Label Ldone;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3185
    __ rldicl_(R0, Rflags, 64-ConstantPoolCacheEntry::has_appendix_shift, 63);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3186
    __ beq(CCR0, Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3187
    // Push "appendix" (MethodType, CallSite, etc.).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3188
    // This must be done before we get the receiver,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3189
    // since the parameter_size includes it.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3190
    __ load_resolved_reference_at_index(Rscratch, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3191
    __ verify_oop(Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3192
    __ push_ptr(Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3193
    __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3194
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3195
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3196
  // Load receiver if needed (after appendix is pushed so parameter size is correct).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3197
  if (load_receiver) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3198
    const Register Rparam_count = Rscratch;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3199
    __ andi(Rparam_count, Rflags, ConstantPoolCacheEntry::parameter_size_mask);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3200
    __ load_receiver(Rparam_count, Rrecv);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3201
    __ verify_oop(Rrecv);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3202
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3203
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3204
  // Get return address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3205
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3206
    Register Rtable_addr = Rscratch;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3207
    Register Rret_type = Rret_addr;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3208
    address table_addr = (address) Interpreter::invoke_return_entry_table_for(code);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3209
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3210
    // Get return type. It's coded into the upper 4 bits of the lower half of the 64 bit value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3211
    __ rldicl(Rret_type, Rflags, 64-ConstantPoolCacheEntry::tos_state_shift, 64-ConstantPoolCacheEntry::tos_state_bits);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3212
    __ load_dispatch_table(Rtable_addr, (address*)table_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3213
    __ sldi(Rret_type, Rret_type, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3214
    // Get return address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3215
    __ ldx(Rret_addr, Rtable_addr, Rret_type);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3216
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3217
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3218
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3219
// Helper for virtual calls. Load target out of vtable and jump off!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3220
// Kills all passed registers.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3221
void TemplateTable::generate_vtable_call(Register Rrecv_klass, Register Rindex, Register Rret, Register Rtemp) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3222
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3223
  assert_different_registers(Rrecv_klass, Rtemp, Rret);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3224
  const Register Rtarget_method = Rindex;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3225
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3226
  // Get target method & entry point.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3227
  const int base = InstanceKlass::vtable_start_offset() * wordSize;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3228
  // Calc vtable addr scale the vtable index by 8.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3229
  __ sldi(Rindex, Rindex, exact_log2(vtableEntry::size() * wordSize));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3230
  // Load target.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3231
  __ addi(Rrecv_klass, Rrecv_klass, base + vtableEntry::method_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3232
  __ ldx(Rtarget_method, Rindex, Rrecv_klass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3233
  __ call_from_interpreter(Rtarget_method, Rret, Rrecv_klass /* scratch1 */, Rtemp /* scratch2 */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3234
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3235
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3236
// Virtual or final call. Final calls are rewritten on the fly to run through "fast_finalcall" next time.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3237
void TemplateTable::invokevirtual(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3238
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3239
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3240
  Register Rtable_addr = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3241
           Rret_type = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3242
           Rret_addr = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3243
           Rflags = R22_tmp2, // Should survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3244
           Rrecv = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3245
           Rrecv_klass = Rrecv,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3246
           Rvtableindex_or_method = R31, // Should survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3247
           Rnum_params = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3248
           Rnew_bc = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3249
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3250
  Label LnotFinal;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3251
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3252
  load_invoke_cp_cache_entry(byte_no, Rvtableindex_or_method, noreg, Rflags, /*virtual*/ true, false, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3253
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3254
  __ testbitdi(CCR0, R0, Rflags, ConstantPoolCacheEntry::is_vfinal_shift);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3255
  __ bfalse(CCR0, LnotFinal);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3256
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3257
  patch_bytecode(Bytecodes::_fast_invokevfinal, Rnew_bc, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3258
  invokevfinal_helper(Rvtableindex_or_method, Rflags, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3259
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3260
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3261
  __ bind(LnotFinal);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3262
  // Load "this" pointer (receiver).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3263
  __ rldicl(Rnum_params, Rflags, 64, 48);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3264
  __ load_receiver(Rnum_params, Rrecv);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3265
  __ verify_oop(Rrecv);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3266
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3267
  // Get return type. It's coded into the upper 4 bits of the lower half of the 64 bit value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3268
  __ rldicl(Rret_type, Rflags, 64-ConstantPoolCacheEntry::tos_state_shift, 64-ConstantPoolCacheEntry::tos_state_bits);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3269
  __ load_dispatch_table(Rtable_addr, Interpreter::invoke_return_entry_table());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3270
  __ sldi(Rret_type, Rret_type, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3271
  __ ldx(Rret_addr, Rret_type, Rtable_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3272
  __ null_check_throw(Rrecv, oopDesc::klass_offset_in_bytes(), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3273
  __ load_klass(Rrecv_klass, Rrecv);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3274
  __ verify_klass_ptr(Rrecv_klass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3275
  __ profile_virtual_call(Rrecv_klass, R11_scratch1, R12_scratch2, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3276
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3277
  generate_vtable_call(Rrecv_klass, Rvtableindex_or_method, Rret_addr, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3278
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3279
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3280
void TemplateTable::fast_invokevfinal(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3281
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3282
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3283
  assert(byte_no == f2_byte, "use this argument");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3284
  Register Rflags  = R22_tmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3285
           Rmethod = R31;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3286
  load_invoke_cp_cache_entry(byte_no, Rmethod, noreg, Rflags, /*virtual*/ true, /*is_invokevfinal*/ true, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3287
  invokevfinal_helper(Rmethod, Rflags, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3288
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3289
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3290
void TemplateTable::invokevfinal_helper(Register Rmethod, Register Rflags, Register Rscratch1, Register Rscratch2) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3291
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3292
  assert_different_registers(Rmethod, Rflags, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3293
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3294
  // Load receiver from stack slot.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3295
  Register Rrecv = Rscratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3296
  Register Rnum_params = Rrecv;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3297
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3298
  __ ld(Rnum_params, in_bytes(Method::const_offset()), Rmethod);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3299
  __ lhz(Rnum_params /* number of params */, in_bytes(ConstMethod::size_of_parameters_offset()), Rnum_params);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3300
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3301
  // Get return address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3302
  Register Rtable_addr = Rscratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3303
           Rret_addr   = Rflags,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3304
           Rret_type   = Rret_addr;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3305
  // Get return type. It's coded into the upper 4 bits of the lower half of the 64 bit value.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3306
  __ rldicl(Rret_type, Rflags, 64-ConstantPoolCacheEntry::tos_state_shift, 64-ConstantPoolCacheEntry::tos_state_bits);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3307
  __ load_dispatch_table(Rtable_addr, Interpreter::invoke_return_entry_table());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3308
  __ sldi(Rret_type, Rret_type, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3309
  __ ldx(Rret_addr, Rret_type, Rtable_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3310
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3311
  // Load receiver and receiver NULL check.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3312
  __ load_receiver(Rnum_params, Rrecv);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3313
  __ null_check_throw(Rrecv, -1, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3314
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3315
  __ profile_final_call(Rrecv, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3316
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3317
  // Do the call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3318
  __ call_from_interpreter(Rmethod, Rret_addr, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3319
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3320
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3321
void TemplateTable::invokespecial(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3322
  assert(byte_no == f1_byte, "use this argument");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3323
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3324
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3325
  Register Rtable_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3326
           Rret_addr   = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3327
           Rflags      = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3328
           Rreceiver   = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3329
           Rmethod     = R31;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3330
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3331
  prepare_invoke(byte_no, Rmethod, Rret_addr, noreg, Rreceiver, Rflags, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3332
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3333
  // Receiver NULL check.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3334
  __ null_check_throw(Rreceiver, -1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3335
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3336
  __ profile_call(R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3337
  __ call_from_interpreter(Rmethod, Rret_addr, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3338
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3339
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3340
void TemplateTable::invokestatic(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3341
  assert(byte_no == f1_byte, "use this argument");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3342
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3343
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3344
  Register Rtable_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3345
           Rret_addr   = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3346
           Rflags      = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3347
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3348
  prepare_invoke(byte_no, R19_method, Rret_addr, noreg, noreg, Rflags, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3349
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3350
  __ profile_call(R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3351
  __ call_from_interpreter(R19_method, Rret_addr, R11_scratch1, R12_scratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3352
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3353
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3354
void TemplateTable::invokeinterface_object_method(Register Rrecv_klass,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3355
                                                  Register Rret,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3356
                                                  Register Rflags,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3357
                                                  Register Rindex,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3358
                                                  Register Rtemp1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3359
                                                  Register Rtemp2) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3360
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3361
  assert_different_registers(Rindex, Rret, Rrecv_klass, Rflags, Rtemp1, Rtemp2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3362
  Label LnotFinal;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3363
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3364
  // Check for vfinal.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3365
  __ testbitdi(CCR0, R0, Rflags, ConstantPoolCacheEntry::is_vfinal_shift);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3366
  __ bfalse(CCR0, LnotFinal);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3367
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3368
  Register Rscratch = Rflags; // Rflags is dead now.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3369
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3370
  // Final call case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3371
  __ profile_final_call(Rtemp1, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3372
  // Do the final call - the index (f2) contains the method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3373
  __ call_from_interpreter(Rindex, Rret, Rscratch, Rrecv_klass /* scratch */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3374
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3375
  // Non-final callc case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3376
  __ bind(LnotFinal);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3377
  __ profile_virtual_call(Rrecv_klass, Rtemp1, Rscratch, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3378
  generate_vtable_call(Rrecv_klass, Rindex, Rret, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3379
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3380
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3381
void TemplateTable::invokeinterface(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3382
  assert(byte_no == f1_byte, "use this argument");
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3383
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3384
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3385
  const Register Rscratch1        = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3386
                 Rscratch2        = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3387
                 Rscratch3        = R9_ARG7,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3388
                 Rscratch4        = R10_ARG8,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3389
                 Rtable_addr      = Rscratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3390
                 Rinterface_klass = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3391
                 Rret_type        = R8_ARG6,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3392
                 Rret_addr        = Rret_type,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3393
                 Rindex           = R6_ARG4,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3394
                 Rreceiver        = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3395
                 Rrecv_klass      = Rreceiver,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3396
                 Rflags           = R7_ARG5;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3397
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3398
  prepare_invoke(byte_no, Rinterface_klass, Rret_addr, Rindex, Rreceiver, Rflags, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3399
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3400
  // Get receiver klass.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3401
  __ null_check_throw(Rreceiver, oopDesc::klass_offset_in_bytes(), Rscratch3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3402
  __ load_klass(Rrecv_klass, Rreceiver);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3403
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3404
  // Check corner case object method.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3405
  Label LobjectMethod;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3406
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3407
  __ testbitdi(CCR0, R0, Rflags, ConstantPoolCacheEntry::is_forced_virtual_shift);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3408
  __ btrue(CCR0, LobjectMethod);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3409
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3410
  // Fallthrough: The normal invokeinterface case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3411
  __ profile_virtual_call(Rrecv_klass, Rscratch1, Rscratch2, false);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3412
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3413
  // Find entry point to call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3414
  Label Lthrow_icc, Lthrow_ame;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3415
  // Result will be returned in Rindex.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3416
  __ mr(Rscratch4, Rrecv_klass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3417
  __ mr(Rscratch3, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3418
  __ lookup_interface_method(Rrecv_klass, Rinterface_klass, Rindex, Rindex, Rscratch1, Rscratch2, Lthrow_icc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3419
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3420
  __ cmpdi(CCR0, Rindex, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3421
  __ beq(CCR0, Lthrow_ame);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3422
  // Found entry. Jump off!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3423
  __ call_from_interpreter(Rindex, Rret_addr, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3424
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3425
  // Vtable entry was NULL => Throw abstract method error.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3426
  __ bind(Lthrow_ame);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3427
  __ mr(Rrecv_klass, Rscratch4);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3428
  __ mr(Rindex, Rscratch3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3429
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_AbstractMethodError));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3430
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3431
  // Interface was not found => Throw incompatible class change error.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3432
  __ bind(Lthrow_icc);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3433
  __ mr(Rrecv_klass, Rscratch4);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3434
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_IncompatibleClassChangeError));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3435
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3436
  __ should_not_reach_here();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3437
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3438
  // Special case of invokeinterface called for virtual method of
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3439
  // java.lang.Object. See ConstantPoolCacheEntry::set_method() for details:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3440
  // The invokeinterface was rewritten to a invokevirtual, hence we have
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3441
  // to handle this corner case. This code isn't produced by javac, but could
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3442
  // be produced by another compliant java compiler.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3443
  __ bind(LobjectMethod);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3444
  invokeinterface_object_method(Rrecv_klass, Rret_addr, Rflags, Rindex, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3445
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3446
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3447
void TemplateTable::invokedynamic(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3448
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3449
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3450
  const Register Rret_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3451
                 Rflags    = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3452
                 Rmethod   = R22_tmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3453
                 Rscratch1 = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3454
                 Rscratch2 = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3455
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3456
  if (!EnableInvokeDynamic) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3457
    // We should not encounter this bytecode if !EnableInvokeDynamic.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3458
    // The verifier will stop it. However, if we get past the verifier,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3459
    // this will stop the thread in a reasonable way, without crashing the JVM.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3460
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_IncompatibleClassChangeError));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3461
    // The call_VM checks for exception, so we should never return here.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3462
    __ should_not_reach_here();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3463
    return;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3464
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3465
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3466
  prepare_invoke(byte_no, Rmethod, Rret_addr, Rscratch1, noreg, Rflags, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3467
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3468
  // Profile this call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3469
  __ profile_call(Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3470
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3471
  // Off we go. With the new method handles, we don't jump to a method handle
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3472
  // entry any more. Instead, we pushed an "appendix" in prepare invoke, which happens
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3473
  // to be the callsite object the bootstrap method returned. This is passed to a
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3474
  // "link" method which does the dispatch (Most likely just grabs the MH stored
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3475
  // inside the callsite and does an invokehandle).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3476
  __ call_from_interpreter(Rmethod, Rret_addr, Rscratch1 /* scratch1 */, Rscratch2 /* scratch2 */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3477
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3478
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3479
void TemplateTable::invokehandle(int byte_no) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3480
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3481
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3482
  const Register Rret_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3483
                 Rflags    = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3484
                 Rrecv     = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3485
                 Rmethod   = R22_tmp2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3486
                 Rscratch1 = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3487
                 Rscratch2 = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3488
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3489
  if (!EnableInvokeDynamic) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3490
    // Rewriter does not generate this bytecode.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3491
    __ should_not_reach_here();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3492
    return;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3493
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3494
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3495
  prepare_invoke(byte_no, Rmethod, Rret_addr, Rscratch1, Rrecv, Rflags, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3496
  __ verify_method_ptr(Rmethod);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3497
  __ null_check_throw(Rrecv, -1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3498
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3499
  __ profile_final_call(Rrecv, Rscratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3500
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3501
  // Still no call from handle => We call the method handle interpreter here.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3502
  __ call_from_interpreter(Rmethod, Rret_addr, Rscratch1 /* scratch1 */, Rscratch2 /* scratch2 */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3503
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3504
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3505
// =============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3506
// Allocation
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3507
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3508
// Puts allocated obj ref onto the expression stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3509
void TemplateTable::_new() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3510
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3511
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3512
  Label Lslow_case,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3513
        Ldone,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3514
        Linitialize_header,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3515
        Lallocate_shared,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3516
        Linitialize_object;  // Including clearing the fields.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3517
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3518
  const Register RallocatedObject = R17_tos,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3519
                 RinstanceKlass   = R9_ARG7,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3520
                 Rscratch         = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3521
                 Roffset          = R8_ARG6,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3522
                 Rinstance_size   = Roffset,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3523
                 Rcpool           = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3524
                 Rtags            = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3525
                 Rindex           = R5_ARG3;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3526
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3527
  const bool allow_shared_alloc = Universe::heap()->supports_inline_contig_alloc() && !CMSIncrementalMode;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3528
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3529
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3530
  // Check if fast case is possible.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3531
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3532
  // Load pointers to const pool and const pool's tags array.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3533
  __ get_cpool_and_tags(Rcpool, Rtags);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3534
  // Load index of constant pool entry.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3535
  __ get_2_byte_integer_at_bcp(1, Rindex, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3536
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3537
  if (UseTLAB) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3538
    // Make sure the class we're about to instantiate has been resolved
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3539
    // This is done before loading instanceKlass to be consistent with the order
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3540
    // how Constant Pool is updated (see ConstantPoolCache::klass_at_put).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3541
    __ addi(Rtags, Rtags, Array<u1>::base_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3542
    __ lbzx(Rtags, Rindex, Rtags);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3543
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3544
    __ cmpdi(CCR0, Rtags, JVM_CONSTANT_Class);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3545
    __ bne(CCR0, Lslow_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3546
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3547
    // Get instanceKlass (load from Rcpool + sizeof(ConstantPool) + Rindex*BytesPerWord).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3548
    __ sldi(Roffset, Rindex, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3549
    __ addi(Rscratch, Rcpool, sizeof(ConstantPool));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3550
    __ isync(); // Order load of instance Klass wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3551
    __ ldx(RinstanceKlass, Roffset, Rscratch);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3552
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3553
    // Make sure klass is fully initialized and get instance_size.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3554
    __ lbz(Rscratch, in_bytes(InstanceKlass::init_state_offset()), RinstanceKlass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3555
    __ lwz(Rinstance_size, in_bytes(Klass::layout_helper_offset()), RinstanceKlass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3556
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3557
    __ cmpdi(CCR1, Rscratch, InstanceKlass::fully_initialized);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3558
    // Make sure klass does not have has_finalizer, or is abstract, or interface or java/lang/Class.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3559
    __ andi_(R0, Rinstance_size, Klass::_lh_instance_slow_path_bit); // slow path bit equals 0?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3560
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3561
    __ crnand(/*CR0 eq*/2, /*CR1 eq*/4+2, /*CR0 eq*/2); // slow path bit set or not fully initialized?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3562
    __ beq(CCR0, Lslow_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3563
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3564
    // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3565
    // Fast case:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3566
    // Allocate the instance.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3567
    // 1) Try to allocate in the TLAB.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3568
    // 2) If fail, and the TLAB is not full enough to discard, allocate in the shared Eden.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3569
    // 3) If the above fails (or is not applicable), go to a slow case (creates a new TLAB, etc.).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3570
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3571
    Register RoldTopValue = RallocatedObject; // Object will be allocated here if it fits.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3572
    Register RnewTopValue = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3573
    Register RendValue    = R7_ARG5;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3574
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3575
    // Check if we can allocate in the TLAB.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3576
    __ ld(RoldTopValue, in_bytes(JavaThread::tlab_top_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3577
    __ ld(RendValue,    in_bytes(JavaThread::tlab_end_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3578
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3579
    __ add(RnewTopValue, Rinstance_size, RoldTopValue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3580
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3581
    // If there is enough space, we do not CAS and do not clear.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3582
    __ cmpld(CCR0, RnewTopValue, RendValue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3583
    __ bgt(CCR0, allow_shared_alloc ? Lallocate_shared : Lslow_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3584
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3585
    __ std(RnewTopValue, in_bytes(JavaThread::tlab_top_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3586
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3587
    if (ZeroTLAB) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3588
      // The fields have already been cleared.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3589
      __ b(Linitialize_header);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3590
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3591
      // Initialize both the header and fields.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3592
      __ b(Linitialize_object);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3593
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3594
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3595
    // Fall through: TLAB was too small.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3596
    if (allow_shared_alloc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3597
      Register RtlabWasteLimitValue = R10_ARG8;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3598
      Register RfreeValue = RnewTopValue;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3599
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3600
      __ bind(Lallocate_shared);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3601
      // Check if tlab should be discarded (refill_waste_limit >= free).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3602
      __ ld(RtlabWasteLimitValue, in_bytes(JavaThread::tlab_refill_waste_limit_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3603
      __ subf(RfreeValue, RoldTopValue, RendValue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3604
      __ srdi(RfreeValue, RfreeValue, LogHeapWordSize); // in dwords
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3605
      __ cmpld(CCR0, RtlabWasteLimitValue, RfreeValue);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3606
      __ bge(CCR0, Lslow_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3607
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3608
      // Increment waste limit to prevent getting stuck on this slow path.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3609
      __ addi(RtlabWasteLimitValue, RtlabWasteLimitValue, (int)ThreadLocalAllocBuffer::refill_waste_limit_increment());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3610
      __ std(RtlabWasteLimitValue, in_bytes(JavaThread::tlab_refill_waste_limit_offset()), R16_thread);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3611
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3612
    // else: No allocation in the shared eden. // fallthru: __ b(Lslow_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3613
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3614
  // else: Always go the slow path.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3615
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3616
  // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3617
  // slow case
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3618
  __ bind(Lslow_case);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3619
  call_VM(R17_tos, CAST_FROM_FN_PTR(address, InterpreterRuntime::_new), Rcpool, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3620
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3621
  if (UseTLAB) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3622
    __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3623
    // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3624
    // Init1: Zero out newly allocated memory.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3625
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3626
    if (!ZeroTLAB || allow_shared_alloc) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3627
      // Clear object fields.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3628
      __ bind(Linitialize_object);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3629
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3630
      // Initialize remaining object fields.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3631
      Register Rbase = Rtags;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3632
      __ addi(Rinstance_size, Rinstance_size, 7 - (int)sizeof(oopDesc));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3633
      __ addi(Rbase, RallocatedObject, sizeof(oopDesc));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3634
      __ srdi(Rinstance_size, Rinstance_size, 3);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3635
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3636
      // Clear out object skipping header. Takes also care of the zero length case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3637
      __ clear_memory_doubleword(Rbase, Rinstance_size);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3638
      // fallthru: __ b(Linitialize_header);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3639
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3640
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3641
    // --------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3642
    // Init2: Initialize the header: mark, klass
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3643
    __ bind(Linitialize_header);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3644
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3645
    // Init mark.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3646
    if (UseBiasedLocking) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3647
      __ ld(Rscratch, in_bytes(Klass::prototype_header_offset()), RinstanceKlass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3648
    } else {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3649
      __ load_const_optimized(Rscratch, markOopDesc::prototype(), R0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3650
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3651
    __ std(Rscratch, oopDesc::mark_offset_in_bytes(), RallocatedObject);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3652
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3653
    // Init klass.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3654
    __ store_klass_gap(RallocatedObject);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3655
    __ store_klass(RallocatedObject, RinstanceKlass, Rscratch); // klass (last for cms)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3656
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3657
    // Check and trigger dtrace event.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3658
    {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3659
      SkipIfEqualZero skip_if(_masm, Rscratch, &DTraceAllocProbes);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3660
      __ push(atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3661
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3662
      __ pop(atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3663
    }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3664
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3665
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3666
  // continue
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3667
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3668
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3669
  // Must prevent reordering of stores for object initialization with stores that publish the new object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3670
  __ membar(Assembler::StoreStore);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3671
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3672
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3673
void TemplateTable::newarray() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3674
  transition(itos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3675
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3676
  __ lbz(R4, 1, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3677
  __ extsw(R5, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3678
  call_VM(R17_tos, CAST_FROM_FN_PTR(address, InterpreterRuntime::newarray), R4, R5 /* size */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3679
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3680
  // Must prevent reordering of stores for object initialization with stores that publish the new object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3681
  __ membar(Assembler::StoreStore);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3682
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3683
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3684
void TemplateTable::anewarray() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3685
  transition(itos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3686
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3687
  __ get_constant_pool(R4);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3688
  __ get_2_byte_integer_at_bcp(1, R5, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3689
  __ extsw(R6, R17_tos); // size
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3690
  call_VM(R17_tos, CAST_FROM_FN_PTR(address, InterpreterRuntime::anewarray), R4 /* pool */, R5 /* index */, R6 /* size */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3691
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3692
  // Must prevent reordering of stores for object initialization with stores that publish the new object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3693
  __ membar(Assembler::StoreStore);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3694
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3695
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3696
// Allocate a multi dimensional array
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3697
void TemplateTable::multianewarray() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3698
  transition(vtos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3699
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3700
  Register Rptr = R31; // Needs to survive C call.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3701
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3702
  // Put ndims * wordSize into frame temp slot
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3703
  __ lbz(Rptr, 3, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3704
  __ sldi(Rptr, Rptr, Interpreter::logStackElementSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3705
  // Esp points past last_dim, so set to R4 to first_dim address.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3706
  __ add(R4, Rptr, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3707
  call_VM(R17_tos, CAST_FROM_FN_PTR(address, InterpreterRuntime::multianewarray), R4 /* first_size_address */);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3708
  // Pop all dimensions off the stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3709
  __ add(R15_esp, Rptr, R15_esp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3710
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3711
  // Must prevent reordering of stores for object initialization with stores that publish the new object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3712
  __ membar(Assembler::StoreStore);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3713
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3714
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3715
void TemplateTable::arraylength() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3716
  transition(atos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3717
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3718
  Label LnoException;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3719
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3720
  __ null_check_throw(R17_tos, arrayOopDesc::length_offset_in_bytes(), R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3721
  __ lwa(R17_tos, arrayOopDesc::length_offset_in_bytes(), R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3722
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3723
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3724
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3725
// Typechecks
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3726
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3727
void TemplateTable::checkcast() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3728
  transition(atos, atos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3729
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3730
  Label Ldone, Lis_null, Lquicked, Lresolved;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3731
  Register Roffset         = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3732
           RobjKlass       = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3733
           RspecifiedKlass = R6_ARG4, // Generate_ClassCastException_verbose_handler will expect this register.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3734
           Rcpool          = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3735
           Rtags           = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3736
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3737
  // Null does not pass.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3738
  __ cmpdi(CCR0, R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3739
  __ beq(CCR0, Lis_null);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3740
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3741
  // Get constant pool tag to find out if the bytecode has already been "quickened".
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3742
  __ get_cpool_and_tags(Rcpool, Rtags);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3743
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3744
  __ get_2_byte_integer_at_bcp(1, Roffset, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3745
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3746
  __ addi(Rtags, Rtags, Array<u1>::base_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3747
  __ lbzx(Rtags, Rtags, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3748
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3749
  __ cmpdi(CCR0, Rtags, JVM_CONSTANT_Class);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3750
  __ beq(CCR0, Lquicked);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3751
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3752
  // Call into the VM to "quicken" instanceof.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3753
  __ push_ptr();  // for GC
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3754
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::quicken_io_cc));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3755
  __ get_vm_result_2(RspecifiedKlass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3756
  __ pop_ptr();   // Restore receiver.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3757
  __ b(Lresolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3758
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3759
  // Extract target class from constant pool.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3760
  __ bind(Lquicked);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3761
  __ sldi(Roffset, Roffset, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3762
  __ addi(Rcpool, Rcpool, sizeof(ConstantPool));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3763
  __ isync(); // Order load of specified Klass wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3764
  __ ldx(RspecifiedKlass, Rcpool, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3765
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3766
  // Do the checkcast.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3767
  __ bind(Lresolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3768
  // Get value klass in RobjKlass.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3769
  __ load_klass(RobjKlass, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3770
  // Generate a fast subtype check. Branch to cast_ok if no failure. Return 0 if failure.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3771
  __ gen_subtype_check(RobjKlass, RspecifiedKlass, /*3 temp regs*/ Roffset, Rcpool, Rtags, /*target if subtype*/ Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3772
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3773
  // Not a subtype; so must throw exception
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3774
  // Target class oop is in register R6_ARG4 == RspecifiedKlass by convention.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3775
  __ load_dispatch_table(R11_scratch1, (address*)Interpreter::_throw_ClassCastException_entry);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3776
  __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3777
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3778
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3779
  // Profile the null case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3780
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3781
  __ bind(Lis_null);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3782
  __ profile_null_seen(R11_scratch1, Rtags); // Rtags used as scratch.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3783
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3784
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3785
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3786
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3787
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3788
// Output:
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3789
//   - tos == 0: Obj was null or not an instance of class.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3790
//   - tos == 1: Obj was an instance of class.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3791
void TemplateTable::instanceof() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3792
  transition(atos, itos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3793
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3794
  Label Ldone, Lis_null, Lquicked, Lresolved;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3795
  Register Roffset         = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3796
           RobjKlass       = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3797
           RspecifiedKlass = R6_ARG4, // Generate_ClassCastException_verbose_handler will expect the value in this register.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3798
           Rcpool          = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3799
           Rtags           = R12_scratch2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3800
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3801
  // Null does not pass.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3802
  __ cmpdi(CCR0, R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3803
  __ beq(CCR0, Lis_null);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3804
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3805
  // Get constant pool tag to find out if the bytecode has already been "quickened".
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3806
  __ get_cpool_and_tags(Rcpool, Rtags);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3807
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3808
  __ get_2_byte_integer_at_bcp(1, Roffset, InterpreterMacroAssembler::Unsigned);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3809
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3810
  __ addi(Rtags, Rtags, Array<u1>::base_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3811
  __ lbzx(Rtags, Rtags, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3812
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3813
  __ cmpdi(CCR0, Rtags, JVM_CONSTANT_Class);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3814
  __ beq(CCR0, Lquicked);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3815
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3816
  // Call into the VM to "quicken" instanceof.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3817
  __ push_ptr();  // for GC
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3818
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::quicken_io_cc));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3819
  __ get_vm_result_2(RspecifiedKlass);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3820
  __ pop_ptr();   // Restore receiver.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3821
  __ b(Lresolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3822
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3823
  // Extract target class from constant pool.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3824
  __ bind(Lquicked);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3825
  __ sldi(Roffset, Roffset, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3826
  __ addi(Rcpool, Rcpool, sizeof(ConstantPool));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3827
  __ isync(); // Order load of specified Klass wrt. tags.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3828
  __ ldx(RspecifiedKlass, Rcpool, Roffset);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3829
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3830
  // Do the checkcast.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3831
  __ bind(Lresolved);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3832
  // Get value klass in RobjKlass.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3833
  __ load_klass(RobjKlass, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3834
  // Generate a fast subtype check. Branch to cast_ok if no failure. Return 0 if failure.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3835
  __ li(R17_tos, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3836
  __ gen_subtype_check(RobjKlass, RspecifiedKlass, /*3 temp regs*/ Roffset, Rcpool, Rtags, /*target if subtype*/ Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3837
  __ li(R17_tos, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3838
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3839
  if (ProfileInterpreter) {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3840
    __ b(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3841
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3842
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3843
  // Profile the null case.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3844
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3845
  __ bind(Lis_null);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3846
  __ profile_null_seen(Rcpool, Rtags); // Rcpool and Rtags used as scratch.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3847
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3848
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3849
  __ bind(Ldone);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3850
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3851
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3852
// =============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3853
// Breakpoints
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3854
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3855
void TemplateTable::_breakpoint() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3856
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3857
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3858
  // Get the unpatched byte code.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3859
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::get_original_bytecode_at), R19_method, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3860
  __ mr(R31, R3_RET);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3861
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3862
  // Post the breakpoint event.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3863
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::_breakpoint), R19_method, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3864
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3865
  // Complete the execution of original bytecode.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3866
  __ dispatch_Lbyte_code(vtos, R31, Interpreter::normal_table(vtos));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3867
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3868
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3869
// =============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3870
// Exceptions
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3871
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3872
void TemplateTable::athrow() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3873
  transition(atos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3874
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3875
  // Exception oop is in tos
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3876
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3877
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3878
  __ null_check_throw(R17_tos, -1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3879
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3880
  // Throw exception interpreter entry expects exception oop to be in R3.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3881
  __ mr(R3_RET, R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3882
  __ load_dispatch_table(R11_scratch1, (address*)Interpreter::throw_exception_entry());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3883
  __ mtctr(R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3884
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3885
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3886
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3887
// =============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3888
// Synchronization
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3889
// Searches the basic object lock list on the stack for a free slot
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3890
// and uses it to lock the obect in tos.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3891
//
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3892
// Recursive locking is enabled by exiting the search if the same
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3893
// object is already found in the list. Thus, a new basic lock obj lock
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3894
// is allocated "higher up" in the stack and thus is found first
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3895
// at next monitor exit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3896
void TemplateTable::monitorenter() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3897
  transition(atos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3898
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3899
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3900
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3901
  Register Rcurrent_monitor  = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3902
           Rcurrent_obj      = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3903
           Robj_to_lock      = R17_tos,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3904
           Rscratch1         = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3905
           Rscratch2         = R4_ARG2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3906
           Rscratch3         = R5_ARG3,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3907
           Rcurrent_obj_addr = R6_ARG4;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3908
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3909
  // ------------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3910
  // Null pointer exception.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3911
  __ null_check_throw(Robj_to_lock, -1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3912
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3913
  // Try to acquire a lock on the object.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3914
  // Repeat until succeeded (i.e., until monitorenter returns true).
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3915
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3916
  // ------------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3917
  // Find a free slot in the monitor block.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3918
  Label Lfound, Lexit, Lallocate_new;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3919
  ConditionRegister found_free_slot = CCR0,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3920
                    found_same_obj  = CCR1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3921
                    reached_limit   = CCR6;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3922
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3923
    Label Lloop, Lentry;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3924
    Register Rlimit = Rcurrent_monitor;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3925
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3926
    // Set up search loop - start with topmost monitor.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3927
    __ add(Rcurrent_obj_addr, BasicObjectLock::obj_offset_in_bytes(), R26_monitor);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3928
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3929
    __ ld(Rlimit, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3930
    __ addi(Rlimit, Rlimit, - (frame::ijava_state_size + frame::interpreter_frame_monitor_size_in_bytes() - BasicObjectLock::obj_offset_in_bytes())); // Monitor base
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3931
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3932
    // Check if any slot is present => short cut to allocation if not.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3933
    __ cmpld(reached_limit, Rcurrent_obj_addr, Rlimit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3934
    __ bgt(reached_limit, Lallocate_new);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3935
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3936
    // Pre-load topmost slot.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3937
    __ ld(Rcurrent_obj, 0, Rcurrent_obj_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3938
    __ addi(Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size() * wordSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3939
    // The search loop.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3940
    __ bind(Lloop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3941
    // Found free slot?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3942
    __ cmpdi(found_free_slot, Rcurrent_obj, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3943
    // Is this entry for same obj? If so, stop the search and take the found
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3944
    // free slot or allocate a new one to enable recursive locking.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3945
    __ cmpd(found_same_obj, Rcurrent_obj, Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3946
    __ cmpld(reached_limit, Rcurrent_obj_addr, Rlimit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3947
    __ beq(found_free_slot, Lexit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3948
    __ beq(found_same_obj, Lallocate_new);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3949
    __ bgt(reached_limit, Lallocate_new);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3950
    // Check if last allocated BasicLockObj reached.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3951
    __ ld(Rcurrent_obj, 0, Rcurrent_obj_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3952
    __ addi(Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size() * wordSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3953
    // Next iteration if unchecked BasicObjectLocks exist on the stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3954
    __ b(Lloop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3955
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3956
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3957
  // ------------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3958
  // Check if we found a free slot.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3959
  __ bind(Lexit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3960
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3961
  __ addi(Rcurrent_monitor, Rcurrent_obj_addr, -(frame::interpreter_frame_monitor_size() * wordSize) - BasicObjectLock::obj_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3962
  __ addi(Rcurrent_obj_addr, Rcurrent_obj_addr, - frame::interpreter_frame_monitor_size() * wordSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3963
  __ b(Lfound);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3964
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3965
  // We didn't find a free BasicObjLock => allocate one.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3966
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3967
  __ bind(Lallocate_new);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3968
  __ add_monitor_to_stack(false, Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3969
  __ mr(Rcurrent_monitor, R26_monitor);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3970
  __ addi(Rcurrent_obj_addr, R26_monitor, BasicObjectLock::obj_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3971
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3972
  // ------------------------------------------------------------------------------
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3973
  // We now have a slot to lock.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3974
  __ bind(Lfound);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3975
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3976
  // Increment bcp to point to the next bytecode, so exception handling for async. exceptions work correctly.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3977
  // The object has already been poped from the stack, so the expression stack looks correct.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3978
  __ addi(R14_bcp, R14_bcp, 1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3979
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3980
  __ std(Robj_to_lock, 0, Rcurrent_obj_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3981
  __ lock_object(Rcurrent_monitor, Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3982
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3983
  // Check if there's enough space on the stack for the monitors after locking.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3984
  Label Lskip_stack_check;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3985
  // Optimization: If the monitors stack section is less then a std page size (4K) don't run
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3986
  // the stack check. There should be enough shadow pages to fit that in.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3987
  __ ld(Rscratch3, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3988
  __ sub(Rscratch3, Rscratch3, R26_monitor);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3989
  __ cmpdi(CCR0, Rscratch3, 4*K);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3990
  __ blt(CCR0, Lskip_stack_check);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3991
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3992
  DEBUG_ONLY(__ untested("stack overflow check during monitor enter");)
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3993
  __ li(Rscratch1, 0);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3994
  __ generate_stack_overflow_check_with_compare_and_throw(Rscratch1, Rscratch2);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3995
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3996
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3997
  __ bind(Lskip_stack_check);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3998
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  3999
  // The bcp has already been incremented. Just need to dispatch to next instruction.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4000
  __ dispatch_next(vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4001
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4002
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4003
void TemplateTable::monitorexit() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4004
  transition(atos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4005
  __ verify_oop(R17_tos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4006
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4007
  Register Rcurrent_monitor  = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4008
           Rcurrent_obj      = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4009
           Robj_to_lock      = R17_tos,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4010
           Rcurrent_obj_addr = R3_ARG1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4011
           Rlimit            = R4_ARG2;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4012
  Label Lfound, Lillegal_monitor_state;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4013
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4014
  // Check corner case: unbalanced monitorEnter / Exit.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4015
  __ ld(Rlimit, 0, R1_SP);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4016
  __ addi(Rlimit, Rlimit, - (frame::ijava_state_size + frame::interpreter_frame_monitor_size_in_bytes())); // Monitor base
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4017
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4018
  // Null pointer check.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4019
  __ null_check_throw(Robj_to_lock, -1, R11_scratch1);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4020
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4021
  __ cmpld(CCR0, R26_monitor, Rlimit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4022
  __ bgt(CCR0, Lillegal_monitor_state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4023
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4024
  // Find the corresponding slot in the monitors stack section.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4025
  {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4026
    Label Lloop;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4027
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4028
    // Start with topmost monitor.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4029
    __ addi(Rcurrent_obj_addr, R26_monitor, BasicObjectLock::obj_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4030
    __ addi(Rlimit, Rlimit, BasicObjectLock::obj_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4031
    __ ld(Rcurrent_obj, 0, Rcurrent_obj_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4032
    __ addi(Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size() * wordSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4033
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4034
    __ bind(Lloop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4035
    // Is this entry for same obj?
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4036
    __ cmpd(CCR0, Rcurrent_obj, Robj_to_lock);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4037
    __ beq(CCR0, Lfound);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4038
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4039
    // Check if last allocated BasicLockObj reached.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4040
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4041
    __ ld(Rcurrent_obj, 0, Rcurrent_obj_addr);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4042
    __ cmpld(CCR0, Rcurrent_obj_addr, Rlimit);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4043
    __ addi(Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size() * wordSize);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4044
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4045
    // Next iteration if unchecked BasicObjectLocks exist on the stack.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4046
    __ ble(CCR0, Lloop);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4047
  }
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4048
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4049
  // Fell through without finding the basic obj lock => throw up!
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4050
  __ bind(Lillegal_monitor_state);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4051
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4052
  __ should_not_reach_here();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4053
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4054
  __ align(32, 12);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4055
  __ bind(Lfound);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4056
  __ addi(Rcurrent_monitor, Rcurrent_obj_addr,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4057
          -(frame::interpreter_frame_monitor_size() * wordSize) - BasicObjectLock::obj_offset_in_bytes());
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4058
  __ unlock_object(Rcurrent_monitor);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4059
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4060
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4061
// ============================================================================
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4062
// Wide bytecodes
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4063
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4064
// Wide instructions. Simply redirects to the wide entry point for that instruction.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4065
void TemplateTable::wide() {
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4066
  transition(vtos, vtos);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4067
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4068
  const Register Rtable = R11_scratch1,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4069
                 Rindex = R12_scratch2,
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4070
                 Rtmp   = R0;
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4071
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4072
  __ lbz(Rindex, 1, R14_bcp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4073
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4074
  __ load_dispatch_table(Rtable, Interpreter::_wentry_point);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4075
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4076
  __ slwi(Rindex, Rindex, LogBytesPerWord);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4077
  __ ldx(Rtmp, Rtable, Rindex);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4078
  __ mtctr(Rtmp);
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4079
  __ bctr();
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4080
  // Note: the bcp increment step is part of the individual wide bytecode implementations.
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4081
}
b70675ece1ce 8036976: PPC64: implement the template interpreter
goetz
parents:
diff changeset
  4082
#endif // !CC_INTERP