src/hotspot/cpu/x86/templateTable_x86.cpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57777 90ead0febf56
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53746
bdccafc038a2 8217998: Remove method_type field associated with the appendix field of an indy or method handle call
lfoltan
parents: 53101
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    25
#include "precompiled.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13961
diff changeset
    26
#include "asm/macroAssembler.hpp"
51056
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50735
diff changeset
    27
#include "compiler/disassembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    28
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    29
#include "interpreter/interpreterRuntime.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 24322
diff changeset
    30
#include "interpreter/interp_masm.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    31
#include "interpreter/templateTable.hpp"
49359
59f6547e151f 8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents: 49347
diff changeset
    32
#include "memory/universe.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    33
#include "oops/methodData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    34
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    35
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    36
#include "prims/methodHandles.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49455
diff changeset
    37
#include "runtime/frame.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49368
diff changeset
    38
#include "runtime/safepointMechanism.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    39
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    40
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    41
#include "runtime/synchronizer.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14626
diff changeset
    42
#include "utilities/macros.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
51056
3ddf41505d54 8204267: Generate comments in -XX:+PrintInterpreter to link to source code
iklam
parents: 50735
diff changeset
    44
#define __ Disassembler::hook<InterpreterMacroAssembler>(__FILE__, __LINE__, _masm)->
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    46
// Global Register Names
34651
07b1cc0f6040 8144534: Refactor templateInterpreter and templateInterpreterGenerator functions
coleenp
parents: 33794
diff changeset
    47
static const Register rbcp     = LP64_ONLY(r13) NOT_LP64(rsi);
07b1cc0f6040 8144534: Refactor templateInterpreter and templateInterpreterGenerator functions
coleenp
parents: 33794
diff changeset
    48
static const Register rlocals  = LP64_ONLY(r14) NOT_LP64(rdi);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    49
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// Platform-dependent initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
void TemplateTable::pd_initialize() {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    52
  // No x86 specific initialization
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    55
// Address Computation: local variables
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
static inline Address iaddress(int n) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    57
  return Address(rlocals, Interpreter::local_offset_in_bytes(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
static inline Address laddress(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  return iaddress(n + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    64
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    65
static inline Address haddress(int n) {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    66
  return iaddress(n + 0);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    67
}
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    68
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    69
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
static inline Address faddress(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return iaddress(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
static inline Address daddress(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return laddress(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
static inline Address aaddress(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  return iaddress(n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
static inline Address iaddress(Register r) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    83
  return Address(rlocals, r, Address::times_ptr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
static inline Address laddress(Register r) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    87
  return Address(rlocals, r, Address::times_ptr, Interpreter::local_offset_in_bytes(1));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    90
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    91
static inline Address haddress(Register r)       {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    92
  return Address(rlocals, r, Interpreter::stackElementScale(), Interpreter::local_offset_in_bytes(0));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    93
}
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    94
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
    95
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
static inline Address faddress(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  return iaddress(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
static inline Address daddress(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return laddress(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
static inline Address aaddress(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  return iaddress(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   108
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   109
// expression stack
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   110
// (Note: Must not use symmetric equivalents at_rsp_m1/2 since they store
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   111
// data beyond the rsp which is potentially unsafe in an MT environment;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   112
// an interrupt may overwrite that data.)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   113
static inline Address at_rsp   () {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  return Address(rsp, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// At top of Java expression stack which may be different than esp().  It
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// isn't for category 1 objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
static inline Address at_tos   () {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  return Address(rsp,  Interpreter::expr_offset_in_bytes(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
static inline Address at_tos_p1() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  return Address(rsp,  Interpreter::expr_offset_in_bytes(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
static inline Address at_tos_p2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  return Address(rsp,  Interpreter::expr_offset_in_bytes(2));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// Condition conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
static Assembler::Condition j_not(TemplateTable::Condition cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  switch (cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  case TemplateTable::equal        : return Assembler::notEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  case TemplateTable::not_equal    : return Assembler::equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  case TemplateTable::less         : return Assembler::greaterEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  case TemplateTable::less_equal   : return Assembler::greater;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  case TemplateTable::greater      : return Assembler::lessEqual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  case TemplateTable::greater_equal: return Assembler::less;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  return Assembler::zero;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   146
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// Miscelaneous helper routines
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   148
// Store an oop (or NULL) at the address described by obj.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   149
// If val == noreg this means store a NULL
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   150
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   151
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   152
static void do_oop_store(InterpreterMacroAssembler* _masm,
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   153
                         Address dst,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   154
                         Register val,
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   155
                         DecoratorSet decorators = 0) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   156
  assert(val == noreg || val == rax, "parameter is just for looks");
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   157
  __ store_heap_oop(dst, val, rdx, rbx, decorators);
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   158
}
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   159
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   160
static void do_oop_load(InterpreterMacroAssembler* _masm,
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   161
                        Address src,
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   162
                        Register dst,
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   163
                        DecoratorSet decorators = 0) {
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   164
  __ load_heap_oop(dst, src, rdx, rbx, decorators);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   165
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
Address TemplateTable::at_bcp(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  assert(_desc->uses_bcp(), "inconsistent uses_bcp information");
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   169
  return Address(rbcp, offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   172
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   173
void TemplateTable::patch_bytecode(Bytecodes::Code bc, Register bc_reg,
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   174
                                   Register temp_reg, bool load_bc_into_bc_reg/*=true*/,
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   175
                                   int byte_no) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   176
  if (!RewriteBytecodes)  return;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   177
  Label L_patch_done;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   178
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   179
  switch (bc) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   180
  case Bytecodes::_fast_aputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   181
  case Bytecodes::_fast_bputfield:
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
   182
  case Bytecodes::_fast_zputfield:
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   183
  case Bytecodes::_fast_cputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   184
  case Bytecodes::_fast_dputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   185
  case Bytecodes::_fast_fputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   186
  case Bytecodes::_fast_iputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   187
  case Bytecodes::_fast_lputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   188
  case Bytecodes::_fast_sputfield:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   189
    {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   190
      // We skip bytecode quickening for putfield instructions when
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   191
      // the put_code written to the constant pool cache is zero.
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   192
      // This is required so that every execution of this instruction
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   193
      // calls out to InterpreterRuntime::resolve_get_put to do
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   194
      // additional, required work.
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   195
      assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range");
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   196
      assert(load_bc_into_bc_reg, "we use bc_reg as temp");
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   197
      __ get_cache_and_index_and_bytecode_at_bcp(temp_reg, bc_reg, temp_reg, byte_no, 1);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   198
      __ movl(bc_reg, bc);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   199
      __ cmpl(temp_reg, (int) 0);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   200
      __ jcc(Assembler::zero, L_patch_done);  // don't patch
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   201
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   202
    break;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   203
  default:
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   204
    assert(byte_no == -1, "sanity");
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   205
    // the pair bytecodes have already done the load.
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   206
    if (load_bc_into_bc_reg) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   207
      __ movl(bc_reg, bc);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   208
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  }
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   210
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  if (JvmtiExport::can_post_breakpoint()) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   212
    Label L_fast_patch;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    // if a breakpoint is present we can't rewrite the stream directly
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   214
    __ movzbl(temp_reg, at_bcp(0));
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   215
    __ cmpl(temp_reg, Bytecodes::_breakpoint);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   216
    __ jcc(Assembler::notEqual, L_fast_patch);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   217
    __ get_method(temp_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    // Let breakpoint table handling rewrite to quicker bytecode
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   219
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::set_original_bytecode_at), temp_reg, rbcp, bc_reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
#ifndef ASSERT
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   221
    __ jmpb(L_patch_done);
4478
c3a8af0fc6b0 6829192: JSR 292 needs to support 64-bit x86
twisti
parents: 4102
diff changeset
   222
#else
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   223
    __ jmp(L_patch_done);
4478
c3a8af0fc6b0 6829192: JSR 292 needs to support 64-bit x86
twisti
parents: 4102
diff changeset
   224
#endif
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   225
    __ bind(L_fast_patch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   227
4478
c3a8af0fc6b0 6829192: JSR 292 needs to support 64-bit x86
twisti
parents: 4102
diff changeset
   228
#ifdef ASSERT
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   229
  Label L_okay;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   230
  __ load_unsigned_byte(temp_reg, at_bcp(0));
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   231
  __ cmpl(temp_reg, (int) Bytecodes::java_code(bc));
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   232
  __ jcc(Assembler::equal, L_okay);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   233
  __ cmpl(temp_reg, bc_reg);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   234
  __ jcc(Assembler::equal, L_okay);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  __ stop("patching the wrong bytecode");
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   236
  __ bind(L_okay);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
#endif
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   238
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // patch bytecode
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   240
  __ movb(at_bcp(0), bc_reg);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
   241
  __ bind(L_patch_done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// Individual instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   245
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
void TemplateTable::nop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // nothing to do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void TemplateTable::shouldnotreachhere() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  __ stop("shouldnotreachhere bytecode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
void TemplateTable::aconst_null() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  transition(vtos, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  __ xorl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
void TemplateTable::iconst(int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  if (value == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
    __ xorl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    __ movl(rax, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
void TemplateTable::lconst(int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  transition(vtos, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (value == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    __ xorl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    __ movl(rax, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   277
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   278
  assert(value >= 0, "check this code");
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   279
  __ xorptr(rdx, rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   280
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   283
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   284
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
void TemplateTable::fconst(int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  transition(vtos, ftos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   287
  if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   288
    static float one = 1.0f, two = 2.0f;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   289
    switch (value) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   290
    case 0:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   291
      __ xorps(xmm0, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   292
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   293
    case 1:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   294
      __ movflt(xmm0, ExternalAddress((address) &one));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   295
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   296
    case 2:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   297
      __ movflt(xmm0, ExternalAddress((address) &two));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   298
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   299
    default:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   300
      ShouldNotReachHere();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   301
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   302
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   303
  } else {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   304
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    ShouldNotReachHere();
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   306
#else
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   307
           if (value == 0) { __ fldz();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   308
    } else if (value == 1) { __ fld1();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   309
    } else if (value == 2) { __ fld1(); __ fld1(); __ faddp(); // should do a better solution here
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   310
    } else                 { ShouldNotReachHere();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   311
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   312
#endif // _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
void TemplateTable::dconst(int value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  transition(vtos, dtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   318
  if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   319
    static double one = 1.0;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   320
    switch (value) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   321
    case 0:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   322
      __ xorpd(xmm0, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   323
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   324
    case 1:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   325
      __ movdbl(xmm0, ExternalAddress((address) &one));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   326
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   327
    default:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   328
      ShouldNotReachHere();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   329
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   330
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   331
  } else {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   332
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    ShouldNotReachHere();
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   334
#else
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   335
           if (value == 0) { __ fldz();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   336
    } else if (value == 1) { __ fld1();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   337
    } else                 { ShouldNotReachHere();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   338
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   339
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
void TemplateTable::bipush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  __ load_signed_byte(rax, at_bcp(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
void TemplateTable::sipush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  transition(vtos, itos);
2148
09c7f703773b 6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents: 2131
diff changeset
   350
  __ load_unsigned_short(rax, at_bcp(1));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  __ bswapl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  __ sarl(rax, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
void TemplateTable::ldc(bool wide) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  transition(vtos, vtos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   357
  Register rarg = NOT_LP64(rcx) LP64_ONLY(c_rarg1);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   358
  Label call_ldc, notFloat, notClass, notInt, Done;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  if (wide) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    __ get_unsigned_2_byte_index_at_bcp(rbx, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    __ load_unsigned_byte(rbx, at_bcp(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  __ get_cpool_and_tags(rcx, rax);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   367
  const int base_offset = ConstantPool::header_size() * wordSize;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   368
  const int tags_offset = Array<u1>::base_offset_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // get type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  __ movzbl(rdx, Address(rax, rbx, Address::times_1, tags_offset));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // unresolved class - get the resolved class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  __ cmpl(rdx, JVM_CONSTANT_UnresolvedClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  __ jccb(Assembler::equal, call_ldc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // unresolved class in error state - call into runtime to throw the error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // from the first resolution attempt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  __ cmpl(rdx, JVM_CONSTANT_UnresolvedClassInError);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  __ jccb(Assembler::equal, call_ldc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // resolved class - need to call vm to get java mirror of the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  __ cmpl(rdx, JVM_CONSTANT_Class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  __ jcc(Assembler::notEqual, notClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  __ bind(call_ldc);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   387
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   388
  __ movl(rarg, wide);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   389
  call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::ldc), rarg);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   390
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   391
  __ push(atos);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  __ bind(notClass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  __ cmpl(rdx, JVM_CONSTANT_Float);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  __ jccb(Assembler::notEqual, notFloat);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   397
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // ftos
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   399
  __ load_float(Address(rcx, rbx, Address::times_ptr, base_offset));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   400
  __ push(ftos);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  __ bind(notFloat);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   404
  __ cmpl(rdx, JVM_CONSTANT_Integer);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   405
  __ jccb(Assembler::notEqual, notInt);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   406
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   407
  // itos
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   408
  __ movl(rax, Address(rcx, rbx, Address::times_ptr, base_offset));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   409
  __ push(itos);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   410
  __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   411
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   412
  // assume the tag is for condy; if not, the VM runtime will tell us
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   413
  __ bind(notInt);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   414
  condy_helper(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   415
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  __ bind(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   419
// Fast path for caching oop constants.
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   420
void TemplateTable::fast_aldc(bool wide) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   421
  transition(vtos, atos);
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   422
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   423
  Register result = rax;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   424
  Register tmp = rdx;
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   425
  Register rarg = NOT_LP64(rcx) LP64_ONLY(c_rarg1);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   426
  int index_size = wide ? sizeof(u2) : sizeof(u1);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   427
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   428
  Label resolved;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   429
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   430
  // We are resolved if the resolved reference cache entry contains a
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   431
  // non-null object (String, MethodType, etc.)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   432
  assert_different_registers(result, tmp);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   433
  __ get_cache_index_at_bcp(tmp, 1, index_size);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   434
  __ load_resolved_reference_at_index(result, tmp);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   435
  __ testptr(result, result);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   436
  __ jcc(Assembler::notZero, resolved);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   437
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   438
  address entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_ldc);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   439
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   440
  // first time invocation - must resolve first
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   441
  __ movl(rarg, (int)bytecode());
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   442
  __ call_VM(result, entry, rarg);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   443
  __ bind(resolved);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   444
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   445
  { // Check for the null sentinel.
49987
e4b3cc56e2b2 8189916: Dynamic Constant support for Sparc
lfoltan
parents: 49748
diff changeset
   446
    // If we just called the VM, it already did the mapping for us,
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   447
    // but it's harmless to retry.
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   448
    Label notNull;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   449
    ExternalAddress null_sentinel((address)Universe::the_null_sentinel_addr());
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   450
    __ movptr(tmp, null_sentinel);
51967
933b0abb2211 8211241: Missing obj equals in TemplateTable::fast_aldc
rkennke
parents: 51816
diff changeset
   451
    __ cmpoop(tmp, result);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   452
    __ jccb(Assembler::notEqual, notNull);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   453
    __ xorptr(result, result);  // NULL object reference
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   454
    __ bind(notNull);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   455
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   456
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   457
  if (VerifyOops) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   458
    __ verify_oop(result);
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   459
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   460
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5702
diff changeset
   461
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
void TemplateTable::ldc2_w() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  transition(vtos, vtos);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   464
  Label notDouble, notLong, Done;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  __ get_unsigned_2_byte_index_at_bcp(rbx, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  __ get_cpool_and_tags(rcx, rax);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   468
  const int base_offset = ConstantPool::header_size() * wordSize;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   469
  const int tags_offset = Array<u1>::base_offset_in_bytes();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // get type
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   472
  __ movzbl(rdx, Address(rax, rbx, Address::times_1, tags_offset));
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   473
  __ cmpl(rdx, JVM_CONSTANT_Double);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   474
  __ jccb(Assembler::notEqual, notDouble);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   475
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // dtos
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   477
  __ load_double(Address(rcx, rbx, Address::times_ptr, base_offset));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   478
  __ push(dtos);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   479
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   480
  __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   481
  __ bind(notDouble);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   482
  __ cmpl(rdx, JVM_CONSTANT_Long);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   483
  __ jccb(Assembler::notEqual, notLong);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   484
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // ltos
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   486
  __ movptr(rax, Address(rcx, rbx, Address::times_ptr, base_offset + 0 * wordSize));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   487
  NOT_LP64(__ movptr(rdx, Address(rcx, rbx, Address::times_ptr, base_offset + 1 * wordSize)));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   488
  __ push(ltos);
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   489
  __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   490
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   491
  __ bind(notLong);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   492
  condy_helper(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  __ bind(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   497
void TemplateTable::condy_helper(Label& Done) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   498
  const Register obj = rax;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   499
  const Register off = rbx;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   500
  const Register flags = rcx;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   501
  const Register rarg = NOT_LP64(rcx) LP64_ONLY(c_rarg1);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   502
  __ movl(rarg, (int)bytecode());
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   503
  call_VM(obj, CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_ldc), rarg);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   504
#ifndef _LP64
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   505
  // borrow rdi from locals
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   506
  __ get_thread(rdi);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   507
  __ get_vm_result_2(flags, rdi);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   508
  __ restore_locals();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   509
#else
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   510
  __ get_vm_result_2(flags, r15_thread);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   511
#endif
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   512
  // VMr = obj = base address to find primitive value to push
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   513
  // VMr2 = flags = (tos, off) using format of CPCE::_flags
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   514
  __ movl(off, flags);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   515
  __ andl(off, ConstantPoolCacheEntry::field_index_mask);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   516
  const Address field(obj, off, Address::times_1, 0*wordSize);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   517
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   518
  // What sort of thing are we loading?
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   519
  __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   520
  __ andl(flags, ConstantPoolCacheEntry::tos_state_mask);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   521
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   522
  switch (bytecode()) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   523
  case Bytecodes::_ldc:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   524
  case Bytecodes::_ldc_w:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   525
    {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   526
      // tos in (itos, ftos, stos, btos, ctos, ztos)
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   527
      Label notInt, notFloat, notShort, notByte, notChar, notBool;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   528
      __ cmpl(flags, itos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   529
      __ jcc(Assembler::notEqual, notInt);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   530
      // itos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   531
      __ movl(rax, field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   532
      __ push(itos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   533
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   534
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   535
      __ bind(notInt);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   536
      __ cmpl(flags, ftos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   537
      __ jcc(Assembler::notEqual, notFloat);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   538
      // ftos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   539
      __ load_float(field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   540
      __ push(ftos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   541
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   542
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   543
      __ bind(notFloat);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   544
      __ cmpl(flags, stos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   545
      __ jcc(Assembler::notEqual, notShort);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   546
      // stos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   547
      __ load_signed_short(rax, field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   548
      __ push(stos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   549
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   550
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   551
      __ bind(notShort);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   552
      __ cmpl(flags, btos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   553
      __ jcc(Assembler::notEqual, notByte);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   554
      // btos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   555
      __ load_signed_byte(rax, field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   556
      __ push(btos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   557
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   558
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   559
      __ bind(notByte);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   560
      __ cmpl(flags, ctos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   561
      __ jcc(Assembler::notEqual, notChar);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   562
      // ctos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   563
      __ load_unsigned_short(rax, field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   564
      __ push(ctos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   565
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   566
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   567
      __ bind(notChar);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   568
      __ cmpl(flags, ztos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   569
      __ jcc(Assembler::notEqual, notBool);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   570
      // ztos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   571
      __ load_signed_byte(rax, field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   572
      __ push(ztos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   573
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   574
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   575
      __ bind(notBool);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   576
      break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   577
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   578
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   579
  case Bytecodes::_ldc2_w:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   580
    {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   581
      Label notLong, notDouble;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   582
      __ cmpl(flags, ltos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   583
      __ jcc(Assembler::notEqual, notLong);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   584
      // ltos
53101
e15792cdcc00 8206107: [x86_32] jck tests for ldc2_w bytecode fail
bulasevich
parents: 51996
diff changeset
   585
      // Loading high word first because movptr clobbers rax
e15792cdcc00 8206107: [x86_32] jck tests for ldc2_w bytecode fail
bulasevich
parents: 51996
diff changeset
   586
      NOT_LP64(__ movptr(rdx, field.plus_disp(4)));
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   587
      __ movptr(rax, field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   588
      __ push(ltos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   589
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   590
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   591
      __ bind(notLong);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   592
      __ cmpl(flags, dtos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   593
      __ jcc(Assembler::notEqual, notDouble);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   594
      // dtos
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   595
      __ load_double(field);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   596
      __ push(dtos);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   597
      __ jmp(Done);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   598
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   599
      __ bind(notDouble);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   600
      break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   601
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   602
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   603
  default:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   604
    ShouldNotReachHere();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   605
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   606
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   607
  __ stop("bad ldc/condy");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   608
}
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 48608
diff changeset
   609
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
void TemplateTable::locals_index(Register reg, int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  __ load_unsigned_byte(reg, at_bcp(offset));
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   612
  __ negptr(reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
void TemplateTable::iload() {
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   616
  iload_internal();
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   617
}
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   618
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   619
void TemplateTable::nofast_iload() {
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   620
  iload_internal(may_not_rewrite);
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   621
}
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   622
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   623
void TemplateTable::iload_internal(RewriteControl rc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  transition(vtos, itos);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   625
  if (RewriteFrequentPairs && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    Label rewrite, done;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   627
    const Register bc = LP64_ONLY(c_rarg3) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   628
    LP64_ONLY(assert(rbx != bc, "register damaged"));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    // get next byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    __ load_unsigned_byte(rbx,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
                          at_bcp(Bytecodes::length_for(Bytecodes::_iload)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    // if _iload, wait to rewrite to iload2.  We only want to rewrite the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    // last two iloads in a pair.  Comparing against fast_iload means that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    // the next bytecode is neither an iload or a caload, and therefore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    // an iload pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    __ cmpl(rbx, Bytecodes::_iload);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    __ jcc(Assembler::equal, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    __ cmpl(rbx, Bytecodes::_fast_iload);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    __ movl(bc, Bytecodes::_fast_iload2);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   642
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    __ jccb(Assembler::equal, rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    // if _caload, rewrite to fast_icaload
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    __ cmpl(rbx, Bytecodes::_caload);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    __ movl(bc, Bytecodes::_fast_icaload);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    __ jccb(Assembler::equal, rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    // rewrite so iload doesn't check again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    __ movl(bc, Bytecodes::_fast_iload);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    // rewrite
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    // bc: fast bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    __ bind(rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    patch_bytecode(Bytecodes::_iload, bc, rbx, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    __ bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  // Get the local value into tos
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  locals_index(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  __ movl(rax, iaddress(rbx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
void TemplateTable::fast_iload2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  locals_index(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  __ movl(rax, iaddress(rbx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  __ push(itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  locals_index(rbx, 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  __ movl(rax, iaddress(rbx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
void TemplateTable::fast_iload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  locals_index(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  __ movl(rax, iaddress(rbx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
void TemplateTable::lload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  transition(vtos, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  locals_index(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   683
  __ movptr(rax, laddress(rbx));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   684
  NOT_LP64(__ movl(rdx, haddress(rbx)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
void TemplateTable::fload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  transition(vtos, ftos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  locals_index(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   690
  __ load_float(faddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
void TemplateTable::dload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  transition(vtos, dtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  locals_index(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   696
  __ load_double(daddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
void TemplateTable::aload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  transition(vtos, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  locals_index(rbx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   702
  __ movptr(rax, aaddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
void TemplateTable::locals_index_wide(Register reg) {
21515
ec29f0abf481 8027252: Crash in interpreter because get_unsigned_2_byte_index_at_bcp reads 4 bytes
mgerdin
parents: 20702
diff changeset
   706
  __ load_unsigned_short(reg, at_bcp(2));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  __ bswapl(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  __ shrl(reg, 16);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   709
  __ negptr(reg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
void TemplateTable::wide_iload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  locals_index_wide(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  __ movl(rax, iaddress(rbx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
void TemplateTable::wide_lload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  transition(vtos, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  locals_index_wide(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   721
  __ movptr(rax, laddress(rbx));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   722
  NOT_LP64(__ movl(rdx, haddress(rbx)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
void TemplateTable::wide_fload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  transition(vtos, ftos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  locals_index_wide(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   728
  __ load_float(faddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
void TemplateTable::wide_dload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  transition(vtos, dtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  locals_index_wide(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   734
  __ load_double(daddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
void TemplateTable::wide_aload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  transition(vtos, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  locals_index_wide(rbx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   740
  __ movptr(rax, aaddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
void TemplateTable::index_check(Register array, Register index) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   744
  // Pop ptr into array
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   745
  __ pop_ptr(array);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   746
  index_check_without_pop(array, index);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   747
}
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   748
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   749
void TemplateTable::index_check_without_pop(Register array, Register index) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  // destroys rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  // check array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  __ null_check(array, arrayOopDesc::length_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  // sign extend index for use by indexed load
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   754
  __ movl2ptr(index, index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  // check index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  __ cmpl(index, Address(array, arrayOopDesc::length_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  if (index != rbx) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   758
    // ??? convention: move aberrant index into rbx for exception message
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    assert(rbx != array, "different registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    __ movl(rbx, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  }
50094
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49987
diff changeset
   762
  Label skip;
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49987
diff changeset
   763
  __ jccb(Assembler::below, skip);
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49987
diff changeset
   764
  // Pass array to create more detailed exceptions.
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49987
diff changeset
   765
  __ mov(NOT_LP64(rax) LP64_ONLY(c_rarg1), array);
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49987
diff changeset
   766
  __ jump(ExternalAddress(Interpreter::_throw_ArrayIndexOutOfBoundsException_entry));
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49987
diff changeset
   767
  __ bind(skip);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
void TemplateTable::iaload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  transition(itos, itos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   772
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   775
  __ access_load_at(T_INT, IN_HEAP | IS_ARRAY, rax,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   776
                    Address(rdx, rax, Address::times_4,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   777
                            arrayOopDesc::base_offset_in_bytes(T_INT)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   778
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
void TemplateTable::laload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  transition(itos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   783
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  index_check(rdx, rax); // kills rbx
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   786
  NOT_LP64(__ mov(rbx, rax));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   787
  // rbx,: index
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   788
  __ access_load_at(T_LONG, IN_HEAP | IS_ARRAY, noreg /* ltos */,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   789
                    Address(rdx, rbx, Address::times_8,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   790
                            arrayOopDesc::base_offset_in_bytes(T_LONG)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   791
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   794
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   795
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
void TemplateTable::faload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  transition(itos, ftos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   798
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   801
  __ access_load_at(T_FLOAT, IN_HEAP | IS_ARRAY, noreg /* ftos */,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   802
                    Address(rdx, rax,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   803
                            Address::times_4,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   804
                            arrayOopDesc::base_offset_in_bytes(T_FLOAT)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   805
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
void TemplateTable::daload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  transition(itos, dtos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   810
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   813
  __ access_load_at(T_DOUBLE, IN_HEAP | IS_ARRAY, noreg /* dtos */,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   814
                    Address(rdx, rax,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   815
                            Address::times_8,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   816
                            arrayOopDesc::base_offset_in_bytes(T_DOUBLE)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   817
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
void TemplateTable::aaload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  transition(itos, atos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   822
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  index_check(rdx, rax); // kills rbx
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   825
  do_oop_load(_masm,
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   826
              Address(rdx, rax,
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   827
                      UseCompressedOops ? Address::times_4 : Address::times_ptr,
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   828
                      arrayOopDesc::base_offset_in_bytes(T_OBJECT)),
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
   829
              rax,
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   830
              IS_ARRAY);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
void TemplateTable::baload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  transition(itos, itos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   835
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   838
  __ access_load_at(T_BYTE, IN_HEAP | IS_ARRAY, rax,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   839
                    Address(rdx, rax, Address::times_1, arrayOopDesc::base_offset_in_bytes(T_BYTE)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   840
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
void TemplateTable::caload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  transition(itos, itos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   845
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   848
  __ access_load_at(T_CHAR, IN_HEAP | IS_ARRAY, rax,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   849
                    Address(rdx, rax, Address::times_2, arrayOopDesc::base_offset_in_bytes(T_CHAR)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   850
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
// iload followed by caload frequent pair
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
void TemplateTable::fast_icaload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  // load index out of locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  locals_index(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  __ movl(rax, iaddress(rbx));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   860
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   863
  __ access_load_at(T_CHAR, IN_HEAP | IS_ARRAY, rax,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   864
                    Address(rdx, rax, Address::times_2, arrayOopDesc::base_offset_in_bytes(T_CHAR)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   865
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   868
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
void TemplateTable::saload() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  transition(itos, itos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   871
  // rax: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // rdx: array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  index_check(rdx, rax); // kills rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
   874
  __ access_load_at(T_SHORT, IN_HEAP | IS_ARRAY, rax,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   875
                    Address(rdx, rax, Address::times_2, arrayOopDesc::base_offset_in_bytes(T_SHORT)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
   876
                    noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
void TemplateTable::iload(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  transition(vtos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  __ movl(rax, iaddress(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
void TemplateTable::lload(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  transition(vtos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   886
  __ movptr(rax, laddress(n));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   887
  NOT_LP64(__ movptr(rdx, haddress(n)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
void TemplateTable::fload(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  transition(vtos, ftos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   892
  __ load_float(faddress(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
void TemplateTable::dload(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  transition(vtos, dtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
   897
  __ load_double(daddress(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
void TemplateTable::aload(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  transition(vtos, atos);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   902
  __ movptr(rax, aaddress(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
void TemplateTable::aload_0() {
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   906
  aload_0_internal();
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   907
}
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   908
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   909
void TemplateTable::nofast_aload_0() {
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   910
  aload_0_internal(may_not_rewrite);
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   911
}
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   912
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   913
void TemplateTable::aload_0_internal(RewriteControl rc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  transition(vtos, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  // According to bytecode histograms, the pairs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  // _aload_0, _fast_igetfield
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  // _aload_0, _fast_agetfield
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  // _aload_0, _fast_fgetfield
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  // occur frequently. If RewriteFrequentPairs is set, the (slow)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  // _aload_0 bytecode checks if the next bytecode is either
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  // _fast_igetfield, _fast_agetfield or _fast_fgetfield and then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  // rewrites the current bytecode into a pair bytecode; otherwise it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  // rewrites the current bytecode into _fast_aload_0 that doesn't do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  // the pair check anymore.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  // Note: If the next bytecode is _getfield, the rewrite must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  //       delayed, otherwise we may miss an opportunity for a pair.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  // Also rewrite frequent pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  //   aload_0, aload_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  //   aload_0, iload_1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  // These bytecodes with a small amount of code are most profitable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  // to rewrite
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
   936
  if (RewriteFrequentPairs && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    Label rewrite, done;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   938
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   939
    const Register bc = LP64_ONLY(c_rarg3) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   940
    LP64_ONLY(assert(rbx != bc, "register damaged"));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   941
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    // get next byte
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   943
    __ load_unsigned_byte(rbx, at_bcp(Bytecodes::length_for(Bytecodes::_aload_0)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    // if _getfield then wait with rewrite
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    __ cmpl(rbx, Bytecodes::_getfield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    __ jcc(Assembler::equal, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
40627
88c9f4b74b8f 8037138: x86: problem with JVMTI breakpoint
coleenp
parents: 37480
diff changeset
   949
    // if _igetfield then rewrite to _fast_iaccess_0
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   950
    assert(Bytecodes::java_code(Bytecodes::_fast_iaccess_0) == Bytecodes::_aload_0, "fix bytecode definition");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    __ cmpl(rbx, Bytecodes::_fast_igetfield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    __ movl(bc, Bytecodes::_fast_iaccess_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    __ jccb(Assembler::equal, rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
40627
88c9f4b74b8f 8037138: x86: problem with JVMTI breakpoint
coleenp
parents: 37480
diff changeset
   955
    // if _agetfield then rewrite to _fast_aaccess_0
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   956
    assert(Bytecodes::java_code(Bytecodes::_fast_aaccess_0) == Bytecodes::_aload_0, "fix bytecode definition");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    __ cmpl(rbx, Bytecodes::_fast_agetfield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    __ movl(bc, Bytecodes::_fast_aaccess_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    __ jccb(Assembler::equal, rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
40627
88c9f4b74b8f 8037138: x86: problem with JVMTI breakpoint
coleenp
parents: 37480
diff changeset
   961
    // if _fgetfield then rewrite to _fast_faccess_0
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   962
    assert(Bytecodes::java_code(Bytecodes::_fast_faccess_0) == Bytecodes::_aload_0, "fix bytecode definition");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    __ cmpl(rbx, Bytecodes::_fast_fgetfield);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    __ movl(bc, Bytecodes::_fast_faccess_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    __ jccb(Assembler::equal, rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    // else rewrite to _fast_aload0
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   968
    assert(Bytecodes::java_code(Bytecodes::_fast_aload_0) == Bytecodes::_aload_0, "fix bytecode definition");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
    __ movl(bc, Bytecodes::_fast_aload_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    // rewrite
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    // bc: fast bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
    __ bind(rewrite);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
    patch_bytecode(Bytecodes::_aload_0, bc, rbx, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    __ bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  }
40627
88c9f4b74b8f 8037138: x86: problem with JVMTI breakpoint
coleenp
parents: 37480
diff changeset
   978
88c9f4b74b8f 8037138: x86: problem with JVMTI breakpoint
coleenp
parents: 37480
diff changeset
   979
  // Do actual aload_0 (must do this after patch_bytecode which might call VM and GC might change oop).
88c9f4b74b8f 8037138: x86: problem with JVMTI breakpoint
coleenp
parents: 37480
diff changeset
   980
  aload(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
void TemplateTable::istore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  locals_index(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  __ movl(iaddress(rbx), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   989
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
void TemplateTable::lstore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  transition(ltos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  locals_index(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   993
  __ movptr(laddress(rbx), rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
   994
  NOT_LP64(__ movptr(haddress(rbx), rdx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
void TemplateTable::fstore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  transition(ftos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  locals_index(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1000
  __ store_float(faddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
void TemplateTable::dstore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  transition(dtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  locals_index(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1006
  __ store_double(daddress(rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
void TemplateTable::astore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  transition(vtos, vtos);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1011
  __ pop_ptr(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  locals_index(rbx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1013
  __ movptr(aaddress(rbx), rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
void TemplateTable::wide_istore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  __ pop_i();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  locals_index_wide(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  __ movl(iaddress(rbx), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
void TemplateTable::wide_lstore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  transition(vtos, vtos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1025
  NOT_LP64(__ pop_l(rax, rdx));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1026
  LP64_ONLY(__ pop_l());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  locals_index_wide(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1028
  __ movptr(laddress(rbx), rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1029
  NOT_LP64(__ movl(haddress(rbx), rdx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
void TemplateTable::wide_fstore() {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1033
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  transition(vtos, vtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1035
  __ pop_f(xmm0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  locals_index_wide(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
  __ movflt(faddress(rbx), xmm0);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1038
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1039
  wide_istore();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1040
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
void TemplateTable::wide_dstore() {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1044
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  transition(vtos, vtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1046
  __ pop_d(xmm0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  locals_index_wide(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  __ movdbl(daddress(rbx), xmm0);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1049
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1050
  wide_lstore();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1051
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
void TemplateTable::wide_astore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  transition(vtos, vtos);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1056
  __ pop_ptr(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  locals_index_wide(rbx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1058
  __ movptr(aaddress(rbx), rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
void TemplateTable::iastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  __ pop_i(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1064
  // rax: value
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1065
  // rbx: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  // rdx: array
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1067
  index_check(rdx, rbx); // prefer index in rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1068
  __ access_store_at(T_INT, IN_HEAP | IS_ARRAY,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1069
                     Address(rdx, rbx, Address::times_4,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1070
                             arrayOopDesc::base_offset_in_bytes(T_INT)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1071
                     rax, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
void TemplateTable::lastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  transition(ltos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  __ pop_i(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1077
  // rax,: low(value)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1078
  // rcx: array
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1079
  // rdx: high(value)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1080
  index_check(rcx, rbx);  // prefer index in rbx,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1081
  // rbx,: index
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1082
  __ access_store_at(T_LONG, IN_HEAP | IS_ARRAY,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1083
                     Address(rcx, rbx, Address::times_8,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1084
                             arrayOopDesc::base_offset_in_bytes(T_LONG)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1085
                     noreg /* ltos */, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1088
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
void TemplateTable::fastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  transition(ftos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  __ pop_i(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1092
  // value is in UseSSE >= 1 ? xmm0 : ST(0)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1093
  // rbx:  index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  // rdx:  array
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1095
  index_check(rdx, rbx); // prefer index in rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1096
  __ access_store_at(T_FLOAT, IN_HEAP | IS_ARRAY,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1097
                     Address(rdx, rbx, Address::times_4,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1098
                             arrayOopDesc::base_offset_in_bytes(T_FLOAT)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1099
                     noreg /* ftos */, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
void TemplateTable::dastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  transition(dtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  __ pop_i(rbx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1105
  // value is in UseSSE >= 2 ? xmm0 : ST(0)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1106
  // rbx:  index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  // rdx:  array
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1108
  index_check(rdx, rbx); // prefer index in rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1109
  __ access_store_at(T_DOUBLE, IN_HEAP | IS_ARRAY,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1110
                     Address(rdx, rbx, Address::times_8,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1111
                             arrayOopDesc::base_offset_in_bytes(T_DOUBLE)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1112
                     noreg /* dtos */, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
void TemplateTable::aastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  Label is_null, ok_is_subtype, done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  // stack: ..., array, index, value
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1119
  __ movptr(rax, at_tos());    // value
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  __ movl(rcx, at_tos_p1()); // index
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1121
  __ movptr(rdx, at_tos_p2()); // array
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1122
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1123
  Address element_address(rdx, rcx,
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1124
                          UseCompressedOops? Address::times_4 : Address::times_ptr,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1125
                          arrayOopDesc::base_offset_in_bytes(T_OBJECT));
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1126
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1127
  index_check_without_pop(rdx, rcx);     // kills rbx
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1128
  __ testptr(rax, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  __ jcc(Assembler::zero, is_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  // Move subklass into rbx
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1132
  __ load_klass(rbx, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  // Move superklass into rax
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1134
  __ load_klass(rax, rdx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1135
  __ movptr(rax, Address(rax,
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13743
diff changeset
  1136
                         ObjArrayKlass::element_klass_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  // Generate subtype check.  Blows rcx, rdi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  // Superklass in rax.  Subklass in rbx.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  __ gen_subtype_check(rbx, ok_is_subtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  // Come here on failure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  // object is at TOS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  __ jump(ExternalAddress(Interpreter::_throw_ArrayStoreException_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  // Come here on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  __ bind(ok_is_subtype);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1148
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1149
  // Get the value we will store
1394
apetrusenko
parents: 1066 1388
diff changeset
  1150
  __ movptr(rax, at_tos());
50106
24151f48582b 8202016: Use obj+offset in interpreter array access
rkennke
parents: 50094
diff changeset
  1151
  __ movl(rcx, at_tos_p1()); // index
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1152
  // Now store using the appropriate barrier
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1153
  do_oop_store(_masm, element_address, rax, IS_ARRAY);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  __ jmp(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  // Have a NULL in rax, rdx=array, ecx=index.  Store NULL at ary[idx]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  __ bind(is_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  __ profile_null_seen(rbx);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1159
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
  1160
  // Store a NULL
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1161
  do_oop_store(_masm, element_address, noreg, IS_ARRAY);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  // Pop stack arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  __ bind(done);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1165
  __ addptr(rsp, 3 * Interpreter::stackElementSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
void TemplateTable::bastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  __ pop_i(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1171
  // rax: value
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1172
  // rbx: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  // rdx: array
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1174
  index_check(rdx, rbx); // prefer index in rbx
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1175
  // Need to check whether array is boolean or byte
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1176
  // since both types share the bastore bytecode.
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1177
  __ load_klass(rcx, rdx);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1178
  __ movl(rcx, Address(rcx, Klass::layout_helper_offset()));
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1179
  int diffbit = Klass::layout_helper_boolean_diffbit();
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1180
  __ testl(rcx, diffbit);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1181
  Label L_skip;
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1182
  __ jccb(Assembler::zero, L_skip);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1183
  __ andl(rax, 1);  // if it is a T_BOOLEAN array, mask the stored value to 0/1
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  1184
  __ bind(L_skip);
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1185
  __ access_store_at(T_BYTE, IN_HEAP | IS_ARRAY,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1186
                     Address(rdx, rbx,Address::times_1,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1187
                             arrayOopDesc::base_offset_in_bytes(T_BYTE)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1188
                     rax, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
void TemplateTable::castore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  __ pop_i(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1194
  // rax: value
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1195
  // rbx: index
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  // rdx: array
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1197
  index_check(rdx, rbx);  // prefer index in rbx
50728
9375184cec98 8205459: Rename Access API flag decorators
kbarrett
parents: 50693
diff changeset
  1198
  __ access_store_at(T_CHAR, IN_HEAP | IS_ARRAY,
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1199
                     Address(rdx, rbx, Address::times_2,
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1200
                             arrayOopDesc::base_offset_in_bytes(T_CHAR)),
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  1201
                     rax, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1204
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
void TemplateTable::sastore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  castore();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
void TemplateTable::istore(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
  __ movl(iaddress(n), rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
void TemplateTable::lstore(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  transition(ltos, vtos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1216
  __ movptr(laddress(n), rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1217
  NOT_LP64(__ movptr(haddress(n), rdx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
void TemplateTable::fstore(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  transition(ftos, vtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1222
  __ store_float(faddress(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
void TemplateTable::dstore(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  transition(dtos, vtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1227
  __ store_double(daddress(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1230
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
void TemplateTable::astore(int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  transition(vtos, vtos);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1233
  __ pop_ptr(rax);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1234
  __ movptr(aaddress(n), rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
void TemplateTable::pop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  transition(vtos, vtos);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1239
  __ addptr(rsp, Interpreter::stackElementSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
void TemplateTable::pop2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
  transition(vtos, vtos);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1244
  __ addptr(rsp, 2 * Interpreter::stackElementSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1247
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
void TemplateTable::dup() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  transition(vtos, vtos);
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1250
  __ load_ptr(0, rax);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1251
  __ push_ptr(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  // stack: ..., a, a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
void TemplateTable::dup_x1() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  // stack: ..., a, b
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1258
  __ load_ptr( 0, rax);  // load b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1259
  __ load_ptr( 1, rcx);  // load a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1260
  __ store_ptr(1, rax);  // store b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1261
  __ store_ptr(0, rcx);  // store a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1262
  __ push_ptr(rax);      // push b
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  // stack: ..., b, a, b
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
void TemplateTable::dup_x2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
  // stack: ..., a, b, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1269
  __ load_ptr( 0, rax);  // load c
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1270
  __ load_ptr( 2, rcx);  // load a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1271
  __ store_ptr(2, rax);  // store c in a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1272
  __ push_ptr(rax);      // push c
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
  // stack: ..., c, b, c, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1274
  __ load_ptr( 2, rax);  // load b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1275
  __ store_ptr(2, rcx);  // store a in b
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
  // stack: ..., c, a, c, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1277
  __ store_ptr(1, rax);  // store b in c
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  // stack: ..., c, a, b, c
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
void TemplateTable::dup2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  // stack: ..., a, b
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1284
  __ load_ptr(1, rax);  // load a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1285
  __ push_ptr(rax);     // push a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1286
  __ load_ptr(1, rax);  // load b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1287
  __ push_ptr(rax);     // push b
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  // stack: ..., a, b, a, b
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
void TemplateTable::dup2_x1() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  // stack: ..., a, b, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1295
  __ load_ptr( 0, rcx);  // load c
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1296
  __ load_ptr( 1, rax);  // load b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1297
  __ push_ptr(rax);      // push b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1298
  __ push_ptr(rcx);      // push c
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  // stack: ..., a, b, c, b, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1300
  __ store_ptr(3, rcx);  // store c in b
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
  // stack: ..., a, c, c, b, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1302
  __ load_ptr( 4, rcx);  // load a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1303
  __ store_ptr(2, rcx);  // store a in 2nd c
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  // stack: ..., a, c, a, b, c
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1305
  __ store_ptr(4, rax);  // store b in a
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  // stack: ..., b, c, a, b, c
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
void TemplateTable::dup2_x2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
  // stack: ..., a, b, c, d
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1312
  __ load_ptr( 0, rcx);  // load d
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1313
  __ load_ptr( 1, rax);  // load c
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1314
  __ push_ptr(rax);      // push c
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1315
  __ push_ptr(rcx);      // push d
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  // stack: ..., a, b, c, d, c, d
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1317
  __ load_ptr( 4, rax);  // load b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1318
  __ store_ptr(2, rax);  // store b in d
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1319
  __ store_ptr(4, rcx);  // store d in b
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  // stack: ..., a, d, c, b, c, d
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1321
  __ load_ptr( 5, rcx);  // load a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1322
  __ load_ptr( 3, rax);  // load c
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1323
  __ store_ptr(3, rcx);  // store a in c
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1324
  __ store_ptr(5, rax);  // store c in a
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  // stack: ..., c, d, a, b, c, d
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
void TemplateTable::swap() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  // stack: ..., a, b
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1331
  __ load_ptr( 1, rcx);  // load a
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1332
  __ load_ptr( 0, rax);  // load b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1333
  __ store_ptr(0, rcx);  // store a in b
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1334
  __ store_ptr(1, rax);  // store b in a
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  // stack: ..., b, a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
void TemplateTable::iop2(Operation op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  transition(itos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  switch (op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  case add  :                    __ pop_i(rdx); __ addl (rax, rdx); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  case sub  : __ movl(rdx, rax); __ pop_i(rax); __ subl (rax, rdx); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  case mul  :                    __ pop_i(rdx); __ imull(rax, rdx); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
  case _and :                    __ pop_i(rdx); __ andl (rax, rdx); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
  case _or  :                    __ pop_i(rdx); __ orl  (rax, rdx); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  case _xor :                    __ pop_i(rdx); __ xorl (rax, rdx); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  case shl  : __ movl(rcx, rax); __ pop_i(rax); __ shll (rax);      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  case shr  : __ movl(rcx, rax); __ pop_i(rax); __ sarl (rax);      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  case ushr : __ movl(rcx, rax); __ pop_i(rax); __ shrl (rax);      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  default   : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
void TemplateTable::lop2(Operation op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  transition(ltos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1356
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  switch (op) {
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1358
  case add  :                    __ pop_l(rdx); __ addptr(rax, rdx); break;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1359
  case sub  : __ mov(rdx, rax);  __ pop_l(rax); __ subptr(rax, rdx); break;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1360
  case _and :                    __ pop_l(rdx); __ andptr(rax, rdx); break;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1361
  case _or  :                    __ pop_l(rdx); __ orptr (rax, rdx); break;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1362
  case _xor :                    __ pop_l(rdx); __ xorptr(rax, rdx); break;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 5055
diff changeset
  1363
  default   : ShouldNotReachHere();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1365
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1366
  __ pop_l(rbx, rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1367
  switch (op) {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1368
    case add  : __ addl(rax, rbx); __ adcl(rdx, rcx); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1369
    case sub  : __ subl(rbx, rax); __ sbbl(rcx, rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1370
                __ mov (rax, rbx); __ mov (rdx, rcx); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1371
    case _and : __ andl(rax, rbx); __ andl(rdx, rcx); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1372
    case _or  : __ orl (rax, rbx); __ orl (rdx, rcx); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1373
    case _xor : __ xorl(rax, rbx); __ xorl(rdx, rcx); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1374
    default   : ShouldNotReachHere();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1375
  }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1376
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
void TemplateTable::idiv() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
  transition(itos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  __ movl(rcx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  __ pop_i(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1383
  // Note: could xor rax and ecx and compare with (-1 ^ min_int). If
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  //       they are not equal, one could do a normal division (no correction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
  //       needed), which may speed up this implementation for the common case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  //       (see also JVM spec., p.243 & p.271)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  __ corrected_idivl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
void TemplateTable::irem() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  transition(itos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  __ movl(rcx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  __ pop_i(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1394
  // Note: could xor rax and ecx and compare with (-1 ^ min_int). If
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
  //       they are not equal, one could do a normal division (no correction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
  //       needed), which may speed up this implementation for the common case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
  //       (see also JVM spec., p.243 & p.271)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
  __ corrected_idivl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
  __ movl(rax, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
void TemplateTable::lmul() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
  transition(ltos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1404
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  __ pop_l(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  __ imulq(rax, rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1407
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1408
  __ pop_l(rbx, rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1409
  __ push(rcx); __ push(rbx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1410
  __ push(rdx); __ push(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1411
  __ lmul(2 * wordSize, 0);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1412
  __ addptr(rsp, 4 * wordSize);  // take off temporaries
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1413
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
void TemplateTable::ldiv() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
  transition(ltos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1418
#ifdef _LP64
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1419
  __ mov(rcx, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
  __ pop_l(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
  // generate explicit div0 check
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
  __ testq(rcx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  __ jump_cc(Assembler::zero,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
             ExternalAddress(Interpreter::_throw_ArithmeticException_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  // Note: could xor rax and rcx and compare with (-1 ^ min_int). If
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
  //       they are not equal, one could do a normal division (no correction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  //       needed), which may speed up this implementation for the common case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
  //       (see also JVM spec., p.243 & p.271)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  __ corrected_idivq(rcx); // kills rbx
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1430
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1431
  __ pop_l(rbx, rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1432
  __ push(rcx); __ push(rbx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1433
  __ push(rdx); __ push(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1434
  // check if y = 0
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1435
  __ orl(rax, rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1436
  __ jump_cc(Assembler::zero,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1437
             ExternalAddress(Interpreter::_throw_ArithmeticException_entry));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1438
  __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::ldiv));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1439
  __ addptr(rsp, 4 * wordSize);  // take off temporaries
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1440
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
void TemplateTable::lrem() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  transition(ltos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1445
#ifdef _LP64
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1446
  __ mov(rcx, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  __ pop_l(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
  __ testq(rcx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  __ jump_cc(Assembler::zero,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
             ExternalAddress(Interpreter::_throw_ArithmeticException_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
  // Note: could xor rax and rcx and compare with (-1 ^ min_int). If
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
  //       they are not equal, one could do a normal division (no correction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
  //       needed), which may speed up this implementation for the common case.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
  //       (see also JVM spec., p.243 & p.271)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
  __ corrected_idivq(rcx); // kills rbx
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  1456
  __ mov(rax, rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1457
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1458
  __ pop_l(rbx, rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1459
  __ push(rcx); __ push(rbx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1460
  __ push(rdx); __ push(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1461
  // check if y = 0
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1462
  __ orl(rax, rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1463
  __ jump_cc(Assembler::zero,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1464
             ExternalAddress(Interpreter::_throw_ArithmeticException_entry));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1465
  __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::lrem));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1466
  __ addptr(rsp, 4 * wordSize);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1467
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
void TemplateTable::lshl() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
  transition(itos, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  __ movl(rcx, rax);                             // get shift count
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1473
  #ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  __ pop_l(rax);                                 // get shift value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  __ shlq(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1476
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1477
  __ pop_l(rax, rdx);                            // get shift value
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1478
  __ lshl(rdx, rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1479
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
void TemplateTable::lshr() {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1483
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
  transition(itos, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
  __ movl(rcx, rax);                             // get shift count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  __ pop_l(rax);                                 // get shift value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
  __ sarq(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1488
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1489
  transition(itos, ltos);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1490
  __ mov(rcx, rax);                              // get shift count
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1491
  __ pop_l(rax, rdx);                            // get shift value
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1492
  __ lshr(rdx, rax, true);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1493
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
void TemplateTable::lushr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
  transition(itos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1498
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
  __ movl(rcx, rax);                             // get shift count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
  __ pop_l(rax);                                 // get shift value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
  __ shrq(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1502
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1503
  __ mov(rcx, rax);                              // get shift count
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1504
  __ pop_l(rax, rdx);                            // get shift value
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1505
  __ lshr(rdx, rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1506
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
void TemplateTable::fop2(Operation op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
  transition(ftos, ftos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1511
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1512
  if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1513
    switch (op) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1514
    case add:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1515
      __ addss(xmm0, at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1516
      __ addptr(rsp, Interpreter::stackElementSize);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1517
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1518
    case sub:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1519
      __ movflt(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1520
      __ pop_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1521
      __ subss(xmm0, xmm1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1522
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1523
    case mul:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1524
      __ mulss(xmm0, at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1525
      __ addptr(rsp, Interpreter::stackElementSize);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1526
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1527
    case div:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1528
      __ movflt(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1529
      __ pop_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1530
      __ divss(xmm0, xmm1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1531
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1532
    case rem:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1533
      // On x86_64 platforms the SharedRuntime::frem method is called to perform the
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1534
      // modulo operation. The frem method calls the function
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1535
      // double fmod(double x, double y) in math.h. The documentation of fmod states:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1536
      // "If x or y is a NaN, a NaN is returned." without specifying what type of NaN
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1537
      // (signalling or quiet) is returned.
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1538
      //
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1539
      // On x86_32 platforms the FPU is used to perform the modulo operation. The
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1540
      // reason is that on 32-bit Windows the sign of modulo operations diverges from
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1541
      // what is considered the standard (e.g., -0.0f % -3.14f is 0.0f (and not -0.0f).
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1542
      // The fprem instruction used on x86_32 is functionally equivalent to
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1543
      // SharedRuntime::frem in that it returns a NaN.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1544
#ifdef _LP64
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1545
      __ movflt(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1546
      __ pop_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1547
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::frem), 2);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1548
#else
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1549
      __ push_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1550
      __ pop_f();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1551
      __ fld_s(at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1552
      __ fremr(rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1553
      __ f2ieee();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1554
      __ pop(rax);  // pop second operand off the stack
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1555
      __ push_f();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1556
      __ pop_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1557
#endif
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1558
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1559
    default:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1560
      ShouldNotReachHere();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1561
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1562
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1563
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1564
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
    ShouldNotReachHere();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1566
#else
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1567
    switch (op) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1568
    case add: __ fadd_s (at_rsp());                break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1569
    case sub: __ fsubr_s(at_rsp());                break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1570
    case mul: __ fmul_s (at_rsp());                break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1571
    case div: __ fdivr_s(at_rsp());                break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1572
    case rem: __ fld_s  (at_rsp()); __ fremr(rax); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1573
    default : ShouldNotReachHere();
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1574
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1575
    __ f2ieee();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1576
    __ pop(rax);  // pop second operand off the stack
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1577
#endif // _LP64
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1578
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
void TemplateTable::dop2(Operation op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
  transition(dtos, dtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1583
  if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1584
    switch (op) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1585
    case add:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1586
      __ addsd(xmm0, at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1587
      __ addptr(rsp, 2 * Interpreter::stackElementSize);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1588
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1589
    case sub:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1590
      __ movdbl(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1591
      __ pop_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1592
      __ subsd(xmm0, xmm1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1593
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1594
    case mul:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1595
      __ mulsd(xmm0, at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1596
      __ addptr(rsp, 2 * Interpreter::stackElementSize);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1597
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1598
    case div:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1599
      __ movdbl(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1600
      __ pop_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1601
      __ divsd(xmm0, xmm1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1602
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1603
    case rem:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1604
      // Similar to fop2(), the modulo operation is performed using the
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1605
      // SharedRuntime::drem method (on x86_64 platforms) or using the
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1606
      // FPU (on x86_32 platforms) for the same reasons as mentioned in fop2().
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1607
#ifdef _LP64
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1608
      __ movdbl(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1609
      __ pop_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1610
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::drem), 2);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1611
#else
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1612
      __ push_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1613
      __ pop_d();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1614
      __ fld_d(at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1615
      __ fremr(rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1616
      __ d2ieee();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1617
      __ pop(rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1618
      __ pop(rdx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1619
      __ push_d();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1620
      __ pop_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1621
#endif
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1622
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1623
    default:
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1624
      ShouldNotReachHere();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1625
      break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1626
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1627
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1628
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
    ShouldNotReachHere();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1630
#else
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1631
    switch (op) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1632
    case add: __ fadd_d (at_rsp());                break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1633
    case sub: __ fsubr_d(at_rsp());                break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1634
    case mul: {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1635
      Label L_strict;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1636
      Label L_join;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1637
      const Address access_flags      (rcx, Method::access_flags_offset());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1638
      __ get_method(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1639
      __ movl(rcx, access_flags);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1640
      __ testl(rcx, JVM_ACC_STRICT);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1641
      __ jccb(Assembler::notZero, L_strict);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1642
      __ fmul_d (at_rsp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1643
      __ jmpb(L_join);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1644
      __ bind(L_strict);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1645
      __ fld_x(ExternalAddress(StubRoutines::addr_fpu_subnormal_bias1()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1646
      __ fmulp();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1647
      __ fmul_d (at_rsp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1648
      __ fld_x(ExternalAddress(StubRoutines::addr_fpu_subnormal_bias2()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1649
      __ fmulp();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1650
      __ bind(L_join);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1651
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1652
    }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1653
    case div: {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1654
      Label L_strict;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1655
      Label L_join;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1656
      const Address access_flags      (rcx, Method::access_flags_offset());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1657
      __ get_method(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1658
      __ movl(rcx, access_flags);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1659
      __ testl(rcx, JVM_ACC_STRICT);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1660
      __ jccb(Assembler::notZero, L_strict);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1661
      __ fdivr_d(at_rsp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1662
      __ jmp(L_join);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1663
      __ bind(L_strict);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1664
      __ fld_x(ExternalAddress(StubRoutines::addr_fpu_subnormal_bias1()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1665
      __ fmul_d (at_rsp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1666
      __ fdivrp();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1667
      __ fld_x(ExternalAddress(StubRoutines::addr_fpu_subnormal_bias2()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1668
      __ fmulp();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1669
      __ bind(L_join);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1670
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1671
    }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1672
    case rem: __ fld_d  (at_rsp()); __ fremr(rax); break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1673
    default : ShouldNotReachHere();
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1674
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1675
    __ d2ieee();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1676
    // Pop double precision number from rsp.
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1677
    __ pop(rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1678
    __ pop(rdx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1679
#endif
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1680
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
void TemplateTable::ineg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  transition(itos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
  __ negl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
void TemplateTable::lneg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
  transition(ltos, ltos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1690
  LP64_ONLY(__ negq(rax));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1691
  NOT_LP64(__ lneg(rdx, rax));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
// Note: 'double' and 'long long' have 32-bits alignment on x86.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
static jlong* double_quadword(jlong *adr, jlong lo, jlong hi) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
  // Use the expression (adr)&(~0xF) to provide 128-bits aligned address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
  // of 128-bits operands for SSE instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
  jlong *operand = (jlong*)(((intptr_t)adr)&((intptr_t)(~0xF)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
  // Store the value to a 128-bits operand.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
  operand[0] = lo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
  operand[1] = hi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
  return operand;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
// Buffer for 128-bits masks used by SSE instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
static jlong float_signflip_pool[2*2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
static jlong double_signflip_pool[2*2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
void TemplateTable::fneg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
  transition(ftos, ftos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1711
  if (UseSSE >= 1) {
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33160
diff changeset
  1712
    static jlong *float_signflip  = double_quadword(&float_signflip_pool[1],  CONST64(0x8000000080000000),  CONST64(0x8000000080000000));
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1713
    __ xorps(xmm0, ExternalAddress((address) float_signflip));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1714
  } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1715
    LP64_ONLY(ShouldNotReachHere());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1716
    NOT_LP64(__ fchs());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1717
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
void TemplateTable::dneg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
  transition(dtos, dtos);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1722
  if (UseSSE >= 2) {
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33160
diff changeset
  1723
    static jlong *double_signflip =
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 33160
diff changeset
  1724
      double_quadword(&double_signflip_pool[1], CONST64(0x8000000000000000), CONST64(0x8000000000000000));
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1725
    __ xorpd(xmm0, ExternalAddress((address) double_signflip));
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1726
  } else {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1727
#ifdef _LP64
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1728
    ShouldNotReachHere();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1729
#else
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1730
    __ fchs();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1731
#endif
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1732
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
void TemplateTable::iinc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
  __ load_signed_byte(rdx, at_bcp(2)); // get constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
  locals_index(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
  __ addl(iaddress(rbx), rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
void TemplateTable::wide_iinc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
  __ movl(rdx, at_bcp(4)); // get constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
  locals_index_wide(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
  __ bswapl(rdx); // swap bytes & sign-extend constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
  __ sarl(rdx, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
  __ addl(iaddress(rbx), rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  // Note: should probably use only one movl to get both
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  //       the index and the constant -> fix this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
void TemplateTable::convert() {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1754
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
  // Checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
    TosState tos_in  = ilgl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
    TosState tos_out = ilgl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
    switch (bytecode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
    case Bytecodes::_i2l: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
    case Bytecodes::_i2f: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
    case Bytecodes::_i2d: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
    case Bytecodes::_i2b: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
    case Bytecodes::_i2c: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
    case Bytecodes::_i2s: tos_in = itos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
    case Bytecodes::_l2i: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
    case Bytecodes::_l2f: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
    case Bytecodes::_l2d: tos_in = ltos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
    case Bytecodes::_f2i: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
    case Bytecodes::_f2l: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
    case Bytecodes::_f2d: tos_in = ftos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
    case Bytecodes::_d2i: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
    case Bytecodes::_d2l: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
    case Bytecodes::_d2f: tos_in = dtos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
    default             : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
    switch (bytecode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
    case Bytecodes::_l2i: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
    case Bytecodes::_f2i: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
    case Bytecodes::_d2i: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
    case Bytecodes::_i2b: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
    case Bytecodes::_i2c: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
    case Bytecodes::_i2s: tos_out = itos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
    case Bytecodes::_i2l: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
    case Bytecodes::_f2l: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
    case Bytecodes::_d2l: tos_out = ltos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
    case Bytecodes::_i2f: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
    case Bytecodes::_l2f: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
    case Bytecodes::_d2f: tos_out = ftos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
    case Bytecodes::_i2d: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
    case Bytecodes::_l2d: // fall through
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
    case Bytecodes::_f2d: tos_out = dtos; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
    default             : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
    transition(tos_in, tos_out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
  static const int64_t is_nan = 0x8000000000000000L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
  // Conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
  switch (bytecode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
  case Bytecodes::_i2l:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
    __ movslq(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
  case Bytecodes::_i2f:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
    __ cvtsi2ssl(xmm0, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
  case Bytecodes::_i2d:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
    __ cvtsi2sdl(xmm0, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
  case Bytecodes::_i2b:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
    __ movsbl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
  case Bytecodes::_i2c:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
    __ movzwl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
  case Bytecodes::_i2s:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
    __ movswl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
  case Bytecodes::_l2i:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
    __ movl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
  case Bytecodes::_l2f:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
    __ cvtsi2ssq(xmm0, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
  case Bytecodes::_l2d:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
    __ cvtsi2sdq(xmm0, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
  case Bytecodes::_f2i:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
    __ cvttss2sil(rax, xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
    __ cmpl(rax, 0x80000000); // NaN or overflow/underflow?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
    __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::f2i), 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
  case Bytecodes::_f2l:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
    __ cvttss2siq(rax, xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
    // NaN or overflow/underflow?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
    __ cmp64(rax, ExternalAddress((address) &is_nan));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
    __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::f2l), 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
  case Bytecodes::_f2d:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
    __ cvtss2sd(xmm0, xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
  case Bytecodes::_d2i:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
    __ cvttsd2sil(rax, xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
    __ cmpl(rax, 0x80000000); // NaN or overflow/underflow?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
    __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::d2i), 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
  case Bytecodes::_d2l:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
    Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
    __ cvttsd2siq(rax, xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
    // NaN or overflow/underflow?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
    __ cmp64(rax, ExternalAddress((address) &is_nan));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
    __ jcc(Assembler::notEqual, L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
    __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::d2l), 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
    __ bind(L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
  case Bytecodes::_d2f:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
    __ cvtsd2ss(xmm0, xmm0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
  }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1882
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1883
  // Checking
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1884
#ifdef ASSERT
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1885
  { TosState tos_in  = ilgl;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1886
    TosState tos_out = ilgl;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1887
    switch (bytecode()) {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1888
      case Bytecodes::_i2l: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1889
      case Bytecodes::_i2f: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1890
      case Bytecodes::_i2d: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1891
      case Bytecodes::_i2b: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1892
      case Bytecodes::_i2c: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1893
      case Bytecodes::_i2s: tos_in = itos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1894
      case Bytecodes::_l2i: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1895
      case Bytecodes::_l2f: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1896
      case Bytecodes::_l2d: tos_in = ltos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1897
      case Bytecodes::_f2i: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1898
      case Bytecodes::_f2l: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1899
      case Bytecodes::_f2d: tos_in = ftos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1900
      case Bytecodes::_d2i: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1901
      case Bytecodes::_d2l: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1902
      case Bytecodes::_d2f: tos_in = dtos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1903
      default             : ShouldNotReachHere();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1904
    }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1905
    switch (bytecode()) {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1906
      case Bytecodes::_l2i: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1907
      case Bytecodes::_f2i: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1908
      case Bytecodes::_d2i: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1909
      case Bytecodes::_i2b: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1910
      case Bytecodes::_i2c: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1911
      case Bytecodes::_i2s: tos_out = itos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1912
      case Bytecodes::_i2l: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1913
      case Bytecodes::_f2l: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1914
      case Bytecodes::_d2l: tos_out = ltos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1915
      case Bytecodes::_i2f: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1916
      case Bytecodes::_l2f: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1917
      case Bytecodes::_d2f: tos_out = ftos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1918
      case Bytecodes::_i2d: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1919
      case Bytecodes::_l2d: // fall through
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1920
      case Bytecodes::_f2d: tos_out = dtos; break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1921
      default             : ShouldNotReachHere();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1922
    }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1923
    transition(tos_in, tos_out);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1924
  }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1925
#endif // ASSERT
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1926
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1927
  // Conversion
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1928
  // (Note: use push(rcx)/pop(rcx) for 1/2-word stack-ptr manipulation)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1929
  switch (bytecode()) {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1930
    case Bytecodes::_i2l:
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1931
      __ extend_sign(rdx, rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1932
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1933
    case Bytecodes::_i2f:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1934
      if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1935
        __ cvtsi2ssl(xmm0, rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1936
      } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1937
        __ push(rax);          // store int on tos
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1938
        __ fild_s(at_rsp());   // load int to ST0
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1939
        __ f2ieee();           // truncate to float size
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1940
        __ pop(rcx);           // adjust rsp
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1941
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1942
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1943
    case Bytecodes::_i2d:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1944
      if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1945
        __ cvtsi2sdl(xmm0, rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1946
      } else {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1947
      __ push(rax);          // add one slot for d2ieee()
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1948
      __ push(rax);          // store int on tos
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1949
      __ fild_s(at_rsp());   // load int to ST0
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1950
      __ d2ieee();           // truncate to double size
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1951
      __ pop(rcx);           // adjust rsp
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1952
      __ pop(rcx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1953
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1954
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1955
    case Bytecodes::_i2b:
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1956
      __ shll(rax, 24);      // truncate upper 24 bits
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1957
      __ sarl(rax, 24);      // and sign-extend byte
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1958
      LP64_ONLY(__ movsbl(rax, rax));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1959
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1960
    case Bytecodes::_i2c:
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1961
      __ andl(rax, 0xFFFF);  // truncate upper 16 bits
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1962
      LP64_ONLY(__ movzwl(rax, rax));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1963
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1964
    case Bytecodes::_i2s:
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1965
      __ shll(rax, 16);      // truncate upper 16 bits
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1966
      __ sarl(rax, 16);      // and sign-extend short
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1967
      LP64_ONLY(__ movswl(rax, rax));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1968
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1969
    case Bytecodes::_l2i:
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1970
      /* nothing to do */
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1971
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1972
    case Bytecodes::_l2f:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1973
      // On 64-bit platforms, the cvtsi2ssq instruction is used to convert
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1974
      // 64-bit long values to floats. On 32-bit platforms it is not possible
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1975
      // to use that instruction with 64-bit operands, therefore the FPU is
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1976
      // used to perform the conversion.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1977
      __ push(rdx);          // store long on tos
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1978
      __ push(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1979
      __ fild_d(at_rsp());   // load long to ST0
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1980
      __ f2ieee();           // truncate to float size
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1981
      __ pop(rcx);           // adjust rsp
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1982
      __ pop(rcx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1983
      if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1984
        __ push_f();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1985
        __ pop_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1986
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1987
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1988
    case Bytecodes::_l2d:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1989
      // On 32-bit platforms the FPU is used for conversion because on
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1990
      // 32-bit platforms it is not not possible to use the cvtsi2sdq
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1991
      // instruction with 64-bit operands.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1992
      __ push(rdx);          // store long on tos
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1993
      __ push(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1994
      __ fild_d(at_rsp());   // load long to ST0
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1995
      __ d2ieee();           // truncate to double size
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1996
      __ pop(rcx);           // adjust rsp
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  1997
      __ pop(rcx);
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1998
      if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  1999
        __ push_d();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2000
        __ pop_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2001
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2002
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2003
    case Bytecodes::_f2i:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2004
      // SharedRuntime::f2i does not differentiate between sNaNs and qNaNs
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2005
      // as it returns 0 for any NaN.
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2006
      if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2007
        __ push_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2008
      } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2009
        __ push(rcx);          // reserve space for argument
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2010
        __ fstp_s(at_rsp());   // pass float argument on stack
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2011
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2012
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::f2i), 1);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2013
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2014
    case Bytecodes::_f2l:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2015
      // SharedRuntime::f2l does not differentiate between sNaNs and qNaNs
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2016
      // as it returns 0 for any NaN.
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2017
      if (UseSSE >= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2018
       __ push_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2019
      } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2020
        __ push(rcx);          // reserve space for argument
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2021
        __ fstp_s(at_rsp());   // pass float argument on stack
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2022
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2023
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::f2l), 1);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2024
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2025
    case Bytecodes::_f2d:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2026
      if (UseSSE < 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2027
        /* nothing to do */
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2028
      } else if (UseSSE == 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2029
        __ push_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2030
        __ pop_f();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2031
      } else { // UseSSE >= 2
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2032
        __ cvtss2sd(xmm0, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2033
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2034
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2035
    case Bytecodes::_d2i:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2036
      if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2037
        __ push_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2038
      } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2039
        __ push(rcx);          // reserve space for argument
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2040
        __ push(rcx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2041
        __ fstp_d(at_rsp());   // pass double argument on stack
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2042
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2043
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::d2i), 2);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2044
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2045
    case Bytecodes::_d2l:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2046
      if (UseSSE >= 2) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2047
        __ push_d(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2048
      } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2049
        __ push(rcx);          // reserve space for argument
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2050
        __ push(rcx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2051
        __ fstp_d(at_rsp());   // pass double argument on stack
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2052
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2053
      __ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::d2l), 2);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2054
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2055
    case Bytecodes::_d2f:
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2056
      if (UseSSE <= 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2057
        __ push(rcx);          // reserve space for f2ieee()
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2058
        __ f2ieee();           // truncate to float size
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2059
        __ pop(rcx);           // adjust rsp
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2060
        if (UseSSE == 1) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2061
          // The cvtsd2ss instruction is not available if UseSSE==1, therefore
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2062
          // the conversion is performed using the FPU in this case.
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2063
          __ push_f();
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2064
          __ pop_f(xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2065
        }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2066
      } else { // UseSSE >= 2
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2067
        __ cvtsd2ss(xmm0, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2068
      }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2069
      break;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2070
    default             :
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2071
      ShouldNotReachHere();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2072
  }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2073
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
void TemplateTable::lcmp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
  transition(ltos, itos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2078
#ifdef _LP64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
  __ pop_l(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
  __ cmpq(rdx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
  __ movl(rax, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
  __ jccb(Assembler::less, done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
  __ setb(Assembler::notEqual, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
  __ movzbl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
  __ bind(done);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2087
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2088
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2089
  // y = rdx:rax
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2090
  __ pop_l(rbx, rcx);             // get x = rcx:rbx
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2091
  __ lcmp2int(rcx, rbx, rdx, rax);// rcx := cmp(x, y)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2092
  __ mov(rax, rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2093
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
void TemplateTable::float_cmp(bool is_float, int unordered_result) {
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2097
  if ((is_float && UseSSE >= 1) ||
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2098
      (!is_float && UseSSE >= 2)) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2099
    Label done;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2100
    if (is_float) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2101
      // XXX get rid of pop here, use ... reg, mem32
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2102
      __ pop_f(xmm1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2103
      __ ucomiss(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2104
    } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2105
      // XXX get rid of pop here, use ... reg, mem64
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2106
      __ pop_d(xmm1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2107
      __ ucomisd(xmm1, xmm0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2108
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2109
    if (unordered_result < 0) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2110
      __ movl(rax, -1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2111
      __ jccb(Assembler::parity, done);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2112
      __ jccb(Assembler::below, done);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2113
      __ setb(Assembler::notEqual, rdx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2114
      __ movzbl(rax, rdx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2115
    } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2116
      __ movl(rax, 1);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2117
      __ jccb(Assembler::parity, done);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2118
      __ jccb(Assembler::above, done);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2119
      __ movl(rax, 0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2120
      __ jccb(Assembler::equal, done);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2121
      __ decrementl(rax);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2122
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2123
    __ bind(done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
  } else {
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2125
#ifdef _LP64
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2126
    ShouldNotReachHere();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2127
#else
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2128
    if (is_float) {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2129
      __ fld_s(at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2130
    } else {
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2131
      __ fld_d(at_rsp());
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2132
      __ pop(rdx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2133
    }
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2134
    __ pop(rcx);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2135
    __ fcmp2int(rax, unordered_result < 0);
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  2136
#endif // _LP64
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2137
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
void TemplateTable::branch(bool is_jsr, bool is_wide) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
  __ get_method(rcx); // rcx holds method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
  __ profile_taken_branch(rax, rbx); // rax holds updated MDP, rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
                                     // holds bumped taken count
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2145
  const ByteSize be_offset = MethodCounters::backedge_counter_offset() +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
                             InvocationCounter::counter_offset();
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2147
  const ByteSize inv_offset = MethodCounters::invocation_counter_offset() +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
                              InvocationCounter::counter_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
  // Load up edx with the branch displacement
21515
ec29f0abf481 8027252: Crash in interpreter because get_unsigned_2_byte_index_at_bcp reads 4 bytes
mgerdin
parents: 20702
diff changeset
  2151
  if (is_wide) {
ec29f0abf481 8027252: Crash in interpreter because get_unsigned_2_byte_index_at_bcp reads 4 bytes
mgerdin
parents: 20702
diff changeset
  2152
    __ movl(rdx, at_bcp(1));
ec29f0abf481 8027252: Crash in interpreter because get_unsigned_2_byte_index_at_bcp reads 4 bytes
mgerdin
parents: 20702
diff changeset
  2153
  } else {
ec29f0abf481 8027252: Crash in interpreter because get_unsigned_2_byte_index_at_bcp reads 4 bytes
mgerdin
parents: 20702
diff changeset
  2154
    __ load_signed_short(rdx, at_bcp(1));
ec29f0abf481 8027252: Crash in interpreter because get_unsigned_2_byte_index_at_bcp reads 4 bytes
mgerdin
parents: 20702
diff changeset
  2155
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
  __ bswapl(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
  if (!is_wide) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
    __ sarl(rdx, 16);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
  }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2161
  LP64_ONLY(__ movl2ptr(rdx, rdx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
  // Handle all the JSR stuff here, then exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
  // It's much shorter and cleaner than intermingling with the non-JSR
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1394
diff changeset
  2165
  // normal-branch stuff occurring below.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
  if (is_jsr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
    // Pre-load the next target bytecode into rbx
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2168
    __ load_unsigned_byte(rbx, Address(rbcp, rdx, Address::times_1, 0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
    // compute return address as bci in rax
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2171
    __ lea(rax, at_bcp((is_wide ? 5 : 3) -
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2172
                        in_bytes(ConstMethod::codes_offset())));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2173
    __ subptr(rax, Address(rcx, Method::const_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
    // Adjust the bcp in r13 by the displacement in rdx
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2175
    __ addptr(rbcp, rdx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
    // jsr returns atos that is not an oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
    __ push_i(rax);
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2178
    __ dispatch_only(vtos, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
  // Normal (non-jsr) branch handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
  // Adjust the bcp in r13 by the displacement in rdx
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2185
  __ addptr(rbcp, rdx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
  assert(UseLoopCounter || !UseOnStackReplacement,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
         "on-stack-replacement requires loop counters");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  Label backedge_counter_overflow;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
  Label profile_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
  Label dispatch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
  if (UseLoopCounter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
    // increment backedge counter for backward branches
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
    // rax: MDO
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2195
    // rbx: MDO bumped taken-count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
    // rcx: method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
    // rdx: target offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
    // r13: target bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
    // r14: locals pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
    __ testl(rdx, rdx);             // check if forward or backward branch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
    __ jcc(Assembler::positive, dispatch); // count only if backward branch
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2202
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2203
    // check if MethodCounters exists
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2204
    Label has_counters;
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2205
    __ movptr(rax, Address(rcx, Method::method_counters_offset()));
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2206
    __ testptr(rax, rax);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2207
    __ jcc(Assembler::notZero, has_counters);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2208
    __ push(rdx);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2209
    __ push(rcx);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2210
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::build_method_counters),
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2211
               rcx);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2212
    __ pop(rcx);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2213
    __ pop(rdx);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2214
    __ movptr(rax, Address(rcx, Method::method_counters_offset()));
32355
a8f8c456bca5 8133557: Missing test before a branch when checking for MethodCounters in TemplateTable::branch() on x86
coleenp
parents: 30132
diff changeset
  2215
    __ testptr(rax, rax);
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2216
    __ jcc(Assembler::zero, dispatch);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2217
    __ bind(has_counters);
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2218
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2219
    if (TieredCompilation) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2220
      Label no_mdo;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2221
      int increment = InvocationCounter::count_increment;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2222
      if (ProfileInterpreter) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2223
        // Are we profiling?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2224
        __ movptr(rbx, Address(rcx, in_bytes(Method::method_data_offset())));
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2225
        __ testptr(rbx, rbx);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2226
        __ jccb(Assembler::zero, no_mdo);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2227
        // Increment the MDO backedge counter
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2228
        const Address mdo_backedge_counter(rbx, in_bytes(MethodData::backedge_counter_offset()) +
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2229
                                           in_bytes(InvocationCounter::counter_offset()));
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27625
diff changeset
  2230
        const Address mask(rbx, in_bytes(MethodData::backedge_mask_offset()));
51178
416a76fe8067 8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents: 51056
diff changeset
  2231
        __ increment_mask_and_jump(mdo_backedge_counter, increment, mask, rax, false, Assembler::zero,
416a76fe8067 8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents: 51056
diff changeset
  2232
                                   UseOnStackReplacement ? &backedge_counter_overflow : NULL);
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2233
        __ jmp(dispatch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
      }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2235
      __ bind(no_mdo);
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2236
      // Increment backedge counter in MethodCounters*
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2237
      __ movptr(rcx, Address(rcx, Method::method_counters_offset()));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2238
      const Address mask(rcx, in_bytes(MethodCounters::backedge_mask_offset()));
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2239
      __ increment_mask_and_jump(Address(rcx, be_offset), increment, mask,
51178
416a76fe8067 8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents: 51056
diff changeset
  2240
                                 rax, false, Assembler::zero,
416a76fe8067 8206075: On x86, assert on unbound assembler Labels used as branch targets
kvn
parents: 51056
diff changeset
  2241
                                 UseOnStackReplacement ? &backedge_counter_overflow : NULL);
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27625
diff changeset
  2242
    } else { // not TieredCompilation
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2243
      // increment counter
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2244
      __ movptr(rcx, Address(rcx, Method::method_counters_offset()));
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2245
      __ movl(rax, Address(rcx, be_offset));        // load backedge counter
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2246
      __ incrementl(rax, InvocationCounter::count_increment); // increment counter
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2247
      __ movl(Address(rcx, be_offset), rax);        // store counter
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2248
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2249
      __ movl(rax, Address(rcx, inv_offset));    // load invocation counter
17000
11bf92e571a2 8010862: The Method counter fields used for profiling can be allocated lazily.
jiangli
parents: 15482
diff changeset
  2250
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2251
      __ andl(rax, InvocationCounter::count_mask_value); // and the status bits
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2252
      __ addl(rax, Address(rcx, be_offset));        // add both counters
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2253
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2254
      if (ProfileInterpreter) {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2255
        // Test to see if we should create a method data oop
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27625
diff changeset
  2256
        __ cmp32(rax, Address(rcx, in_bytes(MethodCounters::interpreter_profile_limit_offset())));
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2257
        __ jcc(Assembler::less, dispatch);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2258
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2259
        // if no method data exists, go to profile method
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2260
        __ test_method_data_pointer(rax, profile_method);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2261
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2262
        if (UseOnStackReplacement) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2263
          // check for overflow against rbx which is the MDO taken count
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27625
diff changeset
  2264
          __ cmp32(rbx, Address(rcx, in_bytes(MethodCounters::interpreter_backward_branch_limit_offset())));
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2265
          __ jcc(Assembler::below, dispatch);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2266
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2267
          // When ProfileInterpreter is on, the backedge_count comes
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2268
          // from the MethodData*, which value does not get reset on
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2269
          // the call to frequency_counter_overflow().  To avoid
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2270
          // excessive calls to the overflow routine while the method is
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2271
          // being compiled, add a second test to make sure the overflow
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2272
          // function is called only once every overflow_frequency.
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2273
          const int overflow_frequency = 1024;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2274
          __ andl(rbx, overflow_frequency - 1);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2275
          __ jcc(Assembler::zero, backedge_counter_overflow);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2276
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2277
        }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2278
      } else {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2279
        if (UseOnStackReplacement) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2280
          // check for overflow against rax, which is the sum of the
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2281
          // counters
28650
772aaab2582f 8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents: 27625
diff changeset
  2282
          __ cmp32(rax, Address(rcx, in_bytes(MethodCounters::interpreter_backward_branch_limit_offset())));
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2283
          __ jcc(Assembler::aboveEqual, backedge_counter_overflow);
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2284
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  2285
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    __ bind(dispatch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
  // Pre-load the next target bytecode into rbx
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2292
  __ load_unsigned_byte(rbx, Address(rbcp, 0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
  // continue with the bytecode @ target
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2295
  // rax: return bci for jsr's, unused otherwise
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2296
  // rbx: target bytecode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  // r13: target bcp
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2298
  __ dispatch_only(vtos, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
  if (UseLoopCounter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
      // Out-of-line code to allocate method data oop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
      __ bind(profile_method);
7889
02144432d0e1 4930919: race condition in MDO creation at back branch locations
iveresov
parents: 7401
diff changeset
  2304
      __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
02144432d0e1 4930919: race condition in MDO creation at back branch locations
iveresov
parents: 7401
diff changeset
  2305
      __ set_method_data_pointer_for_bcp();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
      __ jmp(dispatch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
    if (UseOnStackReplacement) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
      // invocation counter overflow
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
      __ bind(backedge_counter_overflow);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2312
      __ negptr(rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2313
      __ addptr(rdx, rbcp); // branch bcp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
      // IcoResult frequency_counter_overflow([JavaThread*], address branch_bcp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
      __ call_VM(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
                 CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
                                  InterpreterRuntime::frequency_counter_overflow),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
                 rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
      // rax: osr nmethod (osr ok) or NULL (osr not possible)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
      // rdx: scratch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
      // r14: locals pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
      // r13: bcp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2324
      __ testptr(rax, rax);                        // test result
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
      __ jcc(Assembler::zero, dispatch);         // no osr if null
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
      // nmethod may have been invalidated (VM may block upon call_VM return)
26705
fca1785e7084 8048721: -XX:+PrintCompilation prints negative bci for non entrant OSR methods
thartmann
parents: 25715
diff changeset
  2327
      __ cmpb(Address(rax, nmethod::state_offset()), nmethod::in_use);
fca1785e7084 8048721: -XX:+PrintCompilation prints negative bci for non entrant OSR methods
thartmann
parents: 25715
diff changeset
  2328
      __ jcc(Assembler::notEqual, dispatch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
43980
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2330
      // We have the address of an on stack replacement routine in rax.
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2331
      // In preparation of invoking it, first we must migrate the locals
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2332
      // and monitors from off the interpreter frame on the stack.
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2333
      // Ensure to save the osr nmethod over the migration call,
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2334
      // it will be preserved in rbx.
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2335
      __ mov(rbx, rax);
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2336
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2337
      NOT_LP64(__ get_thread(rcx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
      call_VM(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::OSR_migration_begin));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2341
      // rax is OSR buffer, move it to expected parameter location
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2342
      LP64_ONLY(__ mov(j_rarg0, rax));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2343
      NOT_LP64(__ mov(rcx, rax));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
      // We use j_rarg definitions here so that registers don't conflict as parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
      // registers change across platforms as we are in the midst of a calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
      // sequence to the OSR nmethod and we don't want collision. These are NOT parameters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2348
      const Register retaddr   = LP64_ONLY(j_rarg2) NOT_LP64(rdi);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2349
      const Register sender_sp = LP64_ONLY(j_rarg1) NOT_LP64(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2350
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
      // pop the interpreter frame
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2352
      __ movptr(sender_sp, Address(rbp, frame::interpreter_frame_sender_sp_offset * wordSize)); // get sender sp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
      __ leave();                                // remove frame anchor
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2354
      __ pop(retaddr);                           // get return address
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2355
      __ mov(rsp, sender_sp);                   // set sp to sender sp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
      // Ensure compiled code always sees stack at proper alignment
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2357
      __ andptr(rsp, -(StackAlignmentInBytes));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
      // unlike x86 we need no specialized return from compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
      // to the interpreter or the call stub.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
      // push the return address
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2363
      __ push(retaddr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
      // and begin the OSR nmethod
43980
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 40627
diff changeset
  2366
      __ jmp(Address(rbx, nmethod::osr_entry_point_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
void TemplateTable::if_0cmp(Condition cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
  // assume branch is more often taken than not (loops use backward branches)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
  Label not_taken;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
  __ testl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
  __ jcc(j_not(cc), not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
  branch(false, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
  __ bind(not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
  __ profile_not_taken_branch(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
void TemplateTable::if_icmp(Condition cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
  // assume branch is more often taken than not (loops use backward branches)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
  Label not_taken;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
  __ pop_i(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
  __ cmpl(rdx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
  __ jcc(j_not(cc), not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
  branch(false, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
  __ bind(not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
  __ profile_not_taken_branch(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
void TemplateTable::if_nullcmp(Condition cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
  transition(atos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
  // assume branch is more often taken than not (loops use backward branches)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
  Label not_taken;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2398
  __ testptr(rax, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
  __ jcc(j_not(cc), not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
  branch(false, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
  __ bind(not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
  __ profile_not_taken_branch(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
void TemplateTable::if_acmp(Condition cc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
  transition(atos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
  // assume branch is more often taken than not (loops use backward branches)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
  Label not_taken;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
  __ pop_ptr(rdx);
47683
f433d49aceb4 8184914: Use MacroAssembler::cmpoop() consistently when comparing heap objects
rkennke
parents: 47580
diff changeset
  2410
  __ cmpoop(rdx, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
  __ jcc(j_not(cc), not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
  branch(false, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
  __ bind(not_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
  __ profile_not_taken_branch(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
void TemplateTable::ret() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
  locals_index(rbx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2420
  LP64_ONLY(__ movslq(rbx, iaddress(rbx))); // get return bci, compute return bcp
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2421
  NOT_LP64(__ movptr(rbx, iaddress(rbx)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
  __ profile_ret(rbx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
  __ get_method(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2424
  __ movptr(rbcp, Address(rax, Method::const_offset()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2425
  __ lea(rbcp, Address(rbcp, rbx, Address::times_1,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2426
                      ConstMethod::codes_offset()));
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2427
  __ dispatch_next(vtos, 0, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
void TemplateTable::wide_ret() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
  locals_index_wide(rbx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2433
  __ movptr(rbx, aaddress(rbx)); // get return bci, compute return bcp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
  __ profile_ret(rbx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
  __ get_method(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2436
  __ movptr(rbcp, Address(rax, Method::const_offset()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2437
  __ lea(rbcp, Address(rbcp, rbx, Address::times_1, ConstMethod::codes_offset()));
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2438
  __ dispatch_next(vtos, 0, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
void TemplateTable::tableswitch() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
  Label default_case, continue_execution;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
  transition(itos, vtos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2444
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2445
  // align r13/rsi
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2446
  __ lea(rbx, at_bcp(BytesPerInt));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2447
  __ andptr(rbx, -BytesPerInt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
  // load lo & hi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
  __ movl(rcx, Address(rbx, BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2450
  __ movl(rdx, Address(rbx, 2 * BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
  __ bswapl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
  __ bswapl(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
  // check against lo & hi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
  __ cmpl(rax, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
  __ jcc(Assembler::less, default_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
  __ cmpl(rax, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
  __ jcc(Assembler::greater, default_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
  // lookup dispatch offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
  __ subl(rax, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
  __ movl(rdx, Address(rbx, rax, Address::times_4, 3 * BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
  __ profile_switch_case(rax, rbx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
  // continue execution
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
  __ bind(continue_execution);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
  __ bswapl(rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2465
  LP64_ONLY(__ movl2ptr(rdx, rdx));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2466
  __ load_unsigned_byte(rbx, Address(rbcp, rdx, Address::times_1));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2467
  __ addptr(rbcp, rdx);
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2468
  __ dispatch_only(vtos, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
  // handle default
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
  __ bind(default_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
  __ profile_switch_default(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
  __ movl(rdx, Address(rbx, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
  __ jmp(continue_execution);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
void TemplateTable::lookupswitch() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
  transition(itos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
  __ stop("lookupswitch bytecode should have been rewritten");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
void TemplateTable::fast_linearswitch() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
  Label loop_entry, loop, found, continue_execution;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
  // bswap rax so we can avoid bswapping the table entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
  __ bswapl(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
  // align r13
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2487
  __ lea(rbx, at_bcp(BytesPerInt)); // btw: should be able to get rid of
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2488
                                    // this instruction (change offsets
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2489
                                    // below)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2490
  __ andptr(rbx, -BytesPerInt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
  // set counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
  __ movl(rcx, Address(rbx, BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
  __ bswapl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
  __ jmpb(loop_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
  // table search
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
  __ bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
  __ cmpl(rax, Address(rbx, rcx, Address::times_8, 2 * BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
  __ jcc(Assembler::equal, found);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
  __ bind(loop_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
  __ decrementl(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
  __ jcc(Assembler::greaterEqual, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
  // default case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
  __ profile_switch_default(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
  __ movl(rdx, Address(rbx, 0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
  __ jmp(continue_execution);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
  // entry found -> get offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
  __ bind(found);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
  __ movl(rdx, Address(rbx, rcx, Address::times_8, 3 * BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
  __ profile_switch_case(rcx, rax, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
  // continue execution
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
  __ bind(continue_execution);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
  __ bswapl(rdx);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2513
  __ movl2ptr(rdx, rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2514
  __ load_unsigned_byte(rbx, Address(rbcp, rdx, Address::times_1));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2515
  __ addptr(rbcp, rdx);
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2516
  __ dispatch_only(vtos, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
void TemplateTable::fast_binaryswitch() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  transition(itos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
  // Implementation using the following core algorithm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
  // int binary_search(int key, LookupswitchPair* array, int n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
  //   // Binary search according to "Methodik des Programmierens" by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
  //   // Edsger W. Dijkstra and W.H.J. Feijen, Addison Wesley Germany 1985.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
  //   int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
  //   int j = n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
  //   while (i+1 < j) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
  //     // invariant P: 0 <= i < j <= n and (a[i] <= key < a[j] or Q)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
  //     // with      Q: for all i: 0 <= i < n: key < a[i]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
  //     // where a stands for the array and assuming that the (inexisting)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
  //     // element a[n] is infinitely big.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
  //     int h = (i + j) >> 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
  //     // i < h < j
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
  //     if (key < array[h].fast_match()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
  //       j = h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
  //     } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
  //       i = h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
  //     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
  //   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
  //   // R: a[i] <= key < a[i+1] or Q
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
  //   // (i.e., if key is within array, i is the correct index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
  //   return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
  // Register allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
  const Register key   = rax; // already set (tosca)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
  const Register array = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
  const Register i     = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
  const Register j     = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
  const Register h     = rdi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
  const Register temp  = rsi;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
  // Find array start
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2555
  NOT_LP64(__ save_bcp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2556
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2557
  __ lea(array, at_bcp(3 * BytesPerInt)); // btw: should be able to
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2558
                                          // get rid of this
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2559
                                          // instruction (change
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2560
                                          // offsets below)
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2561
  __ andptr(array, -BytesPerInt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
  // Initialize i & j
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
  __ xorl(i, i);                            // i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
  __ movl(j, Address(array, -BytesPerInt)); // j = length(array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
  // Convert j into native byteordering
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
  __ bswapl(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
  // And start
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
  Label entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
  __ jmp(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
  // binary search loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
    Label loop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
    __ bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
    // int h = (i + j) >> 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
    __ leal(h, Address(i, j, Address::times_1)); // h = i + j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
    __ sarl(h, 1);                               // h = (i + j) >> 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
    // if (key < array[h].fast_match()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    //   j = h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
    // } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
    //   i = h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
    // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
    // Convert array[h].match to native byte-ordering before compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
    __ movl(temp, Address(array, h, Address::times_8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
    __ bswapl(temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
    __ cmpl(key, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
    // j = h if (key <  array[h].fast_match())
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2591
    __ cmov32(Assembler::less, j, h);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
    // i = h if (key >= array[h].fast_match())
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2593
    __ cmov32(Assembler::greaterEqual, i, h);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
    // while (i+1 < j)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
    __ bind(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
    __ leal(h, Address(i, 1)); // i+1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
    __ cmpl(h, j);             // i+1 < j
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
    __ jcc(Assembler::less, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
  // end of binary search, result index is i (must check again!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
  Label default_case;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
  // Convert array[i].match to native byte-ordering before compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
  __ movl(temp, Address(array, i, Address::times_8));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
  __ bswapl(temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
  __ cmpl(key, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
  __ jcc(Assembler::notEqual, default_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
  // entry found -> j = offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
  __ movl(j , Address(array, i, Address::times_8, BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
  __ profile_switch_case(i, key, array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
  __ bswapl(j);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2613
  LP64_ONLY(__ movslq(j, j));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2614
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2615
  NOT_LP64(__ restore_bcp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2616
  NOT_LP64(__ restore_locals());                           // restore rdi
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2617
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2618
  __ load_unsigned_byte(rbx, Address(rbcp, j, Address::times_1));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2619
  __ addptr(rbcp, j);
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2620
  __ dispatch_only(vtos, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
  // default case -> j = default offset
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
  __ bind(default_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
  __ profile_switch_default(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
  __ movl(j, Address(array, -2 * BytesPerInt));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
  __ bswapl(j);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2627
  LP64_ONLY(__ movslq(j, j));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2628
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2629
  NOT_LP64(__ restore_bcp());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2630
  NOT_LP64(__ restore_locals());
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2631
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2632
  __ load_unsigned_byte(rbx, Address(rbcp, j, Address::times_1));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2633
  __ addptr(rbcp, j);
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2634
  __ dispatch_only(vtos, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
void TemplateTable::_return(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
  transition(state, state);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2639
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
  assert(_desc->calls_vm(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
         "inconsistent calls_vm information"); // call in remove_activation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
  if (_desc->bytecode() == Bytecodes::_return_register_finalizer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
    assert(state == vtos, "only valid state");
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2645
    Register robj = LP64_ONLY(c_rarg1) NOT_LP64(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2646
    __ movptr(robj, aaddress(0));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2647
    __ load_klass(rdi, robj);
11430
718fc06da49a 7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents: 10265
diff changeset
  2648
    __ movl(rdi, Address(rdi, Klass::access_flags_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
    __ testl(rdi, JVM_ACC_HAS_FINALIZER);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
    Label skip_register_finalizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
    __ jcc(Assembler::zero, skip_register_finalizer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2653
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::register_finalizer), robj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
    __ bind(skip_register_finalizer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2658
  if (SafepointMechanism::uses_thread_local_poll() && _desc->bytecode() != Bytecodes::_return_register_finalizer) {
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2659
    Label no_safepoint;
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2660
    NOT_PRODUCT(__ block_comment("Thread-local Safepoint poll"));
49027
8dc742d9bbab 8195112: x86 (32 bit): implementation for Thread-local handshakes
mdoerr
parents: 48826
diff changeset
  2661
#ifdef _LP64
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2662
    __ testb(Address(r15_thread, Thread::polling_page_offset()), SafepointMechanism::poll_bit());
49027
8dc742d9bbab 8195112: x86 (32 bit): implementation for Thread-local handshakes
mdoerr
parents: 48826
diff changeset
  2663
#else
8dc742d9bbab 8195112: x86 (32 bit): implementation for Thread-local handshakes
mdoerr
parents: 48826
diff changeset
  2664
    const Register thread = rdi;
8dc742d9bbab 8195112: x86 (32 bit): implementation for Thread-local handshakes
mdoerr
parents: 48826
diff changeset
  2665
    __ get_thread(thread);
8dc742d9bbab 8195112: x86 (32 bit): implementation for Thread-local handshakes
mdoerr
parents: 48826
diff changeset
  2666
    __ testb(Address(thread, Thread::polling_page_offset()), SafepointMechanism::poll_bit());
8dc742d9bbab 8195112: x86 (32 bit): implementation for Thread-local handshakes
mdoerr
parents: 48826
diff changeset
  2667
#endif
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2668
    __ jcc(Assembler::zero, no_safepoint);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2669
    __ push(state);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2670
    __ call_VM(noreg, CAST_FROM_FN_PTR(address,
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2671
                                    InterpreterRuntime::at_safepoint));
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2672
    __ pop(state);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2673
    __ bind(no_safepoint);
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2674
  }
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47690
diff changeset
  2675
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2676
  // Narrow result if state is itos but result type is smaller.
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2677
  // Need to narrow in the return bytecode rather than in generate_return_entry
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2678
  // since compiled code callers expect the result to already be narrowed.
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2679
  if (state == itos) {
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2680
    __ narrow(rax);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2681
  }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2682
  __ remove_activation(state, rbcp);
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2683
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2684
  __ jmp(rbcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
// Volatile variables demand their effects be made known to all CPU's
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
// in order.  Store buffers on most chips allow reads & writes to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
// reorder; the JMM's ReadAfterWrite.java test fails in -Xint mode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
// without some kind of memory barrier (i.e., it's not sufficient that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
// the interpreter does not reorder volatile references, the hardware
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
// also must not reorder them).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
// According to the new Java Memory Model (JMM):
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
// (1) All volatiles are serialized wrt to each other.  ALSO reads &
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
//     writes act as aquire & release, so:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
// (2) A read cannot let unrelated NON-volatile memory refs that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
//     happen after the read float up to before the read.  It's OK for
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
//     non-volatile memory refs that happen before the volatile read to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
//     float down below it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
// (3) Similar a volatile write cannot let unrelated NON-volatile
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
//     memory refs that happen BEFORE the write float down to after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
//     write.  It's OK for non-volatile memory refs that happen after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
//     volatile write to float up before it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
// We only put in barriers around volatile refs (they are expensive),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
// not _between_ memory refs (that would require us to track the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
// flavor of the previous memory refs).  Requirements (2) and (3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
// require some barriers before volatile stores and after volatile
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
// loads.  These nearly cover requirement (1) but miss the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
// volatile-store-volatile-load case.  This final case is placed after
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
// volatile-stores although it could just as well go before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
// volatile-loads.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2715
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2716
void TemplateTable::volatile_barrier(Assembler::Membar_mask_bits order_constraint ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
  // Helper function to insert a is-volatile test and memory barrier
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2718
  __ membar(order_constraint);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2721
void TemplateTable::resolve_cache_and_index(int byte_no,
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2722
                                            Register cache,
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2723
                                            Register index,
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2724
                                            size_t index_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
  const Register temp = rbx;
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2726
  assert_different_registers(cache, index, temp);
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2727
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2728
  Label L_clinit_barrier_slow;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
  Label resolved;
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2730
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2731
  Bytecodes::Code code = bytecode();
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2732
  switch (code) {
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2733
  case Bytecodes::_nofast_getfield: code = Bytecodes::_getfield; break;
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2734
  case Bytecodes::_nofast_putfield: code = Bytecodes::_putfield; break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46427
diff changeset
  2735
  default: break;
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2736
  }
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2737
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2738
  assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range");
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2739
  __ get_cache_and_index_and_bytecode_at_bcp(cache, index, temp, byte_no, 1, index_size);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2740
  __ cmpl(temp, code);  // have we resolved this bytecode?
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2741
  __ jcc(Assembler::equal, resolved);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
  // resolve first time through
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2744
  // Class initialization barrier slow path lands here as well.
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2745
  __ bind(L_clinit_barrier_slow);
30132
1f788eb36811 8076492: Make common code from template interpreter code
coleenp
parents: 30120
diff changeset
  2746
  address entry = CAST_FROM_FN_PTR(address, InterpreterRuntime::resolve_from_cache);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2747
  __ movl(temp, code);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
  __ call_VM(noreg, entry, temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
  // Update registers with resolved info
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2750
  __ get_cache_and_index_at_bcp(cache, index, 1, index_size);
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2751
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
  __ bind(resolved);
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2753
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2754
  // Class initialization barrier for static methods
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2755
  if (VM_Version::supports_fast_class_init_checks() && bytecode() == Bytecodes::_invokestatic) {
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2756
    const Register method = temp;
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2757
    const Register klass  = temp;
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2758
    const Register thread = LP64_ONLY(r15_thread) NOT_LP64(noreg);
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2759
    assert(thread != noreg, "x86_32 not supported");
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2760
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2761
    __ load_resolved_method_at_index(byte_no, method, cache, index);
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2762
    __ load_method_holder(klass, method);
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2763
    __ clinit_barrier(klass, thread, NULL /*L_fast_path*/, &L_clinit_barrier_slow);
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2764
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2767
// The cache and index registers must be set before call
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
void TemplateTable::load_field_cp_cache_entry(Register obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
                                              Register cache,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
                                              Register index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
                                              Register off,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
                                              Register flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
                                              bool is_static = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
  assert_different_registers(cache, index, flags, off);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2776
  ByteSize cp_base_offset = ConstantPoolCache::base_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
  // Field offset
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2778
  __ movptr(off, Address(cache, index, Address::times_ptr,
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2779
                         in_bytes(cp_base_offset +
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2780
                                  ConstantPoolCacheEntry::f2_offset())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
  // Flags
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2782
  __ movl(flags, Address(cache, index, Address::times_ptr,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
                         in_bytes(cp_base_offset +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
                                  ConstantPoolCacheEntry::flags_offset())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
  // klass overwrite register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
  if (is_static) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2788
    __ movptr(obj, Address(cache, index, Address::times_ptr,
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2789
                           in_bytes(cp_base_offset +
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  2790
                                    ConstantPoolCacheEntry::f1_offset())));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2791
    const int mirror_offset = in_bytes(Klass::java_mirror_offset());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2792
    __ movptr(obj, Address(obj, mirror_offset));
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
  2793
    __ resolve_oop_handle(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
void TemplateTable::load_invoke_cp_cache_entry(int byte_no,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
                                               Register method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
                                               Register itable_index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
                                               Register flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
                                               bool is_invokevirtual,
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2802
                                               bool is_invokevfinal, /*unused*/
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2803
                                               bool is_invokedynamic) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
  // setup registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
  const Register cache = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
  const Register index = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
  assert_different_registers(method, flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
  assert_different_registers(method, cache, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
  assert_different_registers(itable_index, flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
  assert_different_registers(itable_index, cache, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
  // determine constant pool cache field offsets
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2812
  assert(is_invokevirtual == (byte_no == f2_byte), "is_invokevirtual flag redundant");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2813
  const int flags_offset = in_bytes(ConstantPoolCache::base_offset() +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
                                    ConstantPoolCacheEntry::flags_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
  // access constant pool cache fields
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2816
  const int index_offset = in_bytes(ConstantPoolCache::base_offset() +
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
                                    ConstantPoolCacheEntry::f2_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  2819
  size_t index_size = (is_invokedynamic ? sizeof(u4) : sizeof(u2));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2820
  resolve_cache_and_index(byte_no, cache, index, index_size);
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  2821
  __ load_resolved_method_at_index(byte_no, method, cache, index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2822
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
  if (itable_index != noreg) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2824
    // pick up itable or appendix index from f2 also:
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2825
    __ movptr(itable_index, Address(cache, index, Address::times_ptr, index_offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
  }
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  2827
  __ movl(flags, Address(cache, index, Address::times_ptr, flags_offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2830
// The registers cache and index expected to be set before call.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
// Correct values of the cache and index registers are preserved.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2832
void TemplateTable::jvmti_post_field_access(Register cache,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2833
                                            Register index,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2834
                                            bool is_static,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2835
                                            bool has_tos) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
  if (JvmtiExport::can_post_field_access()) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2837
    // Check to see if a field access watch has been set before we take
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2838
    // the time to call into the VM.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
    Label L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
    assert_different_registers(cache, index, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
    __ mov32(rax, ExternalAddress((address) JvmtiExport::get_field_access_count_addr()));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2842
    __ testl(rax,rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
    __ jcc(Assembler::zero, L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
    // cache entry pointer
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2846
    __ addptr(cache, in_bytes(ConstantPoolCache::base_offset()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2847
    __ shll(index, LogBytesPerWord);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2848
    __ addptr(cache, index);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
    if (is_static) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2850
      __ xorptr(rax, rax);      // NULL object reference
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
    } else {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2852
      __ pop(atos);         // Get the object
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2853
      __ verify_oop(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2854
      __ push(atos);        // Restore stack state
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
    }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2856
    // rax,:   object pointer or NULL
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2857
    // cache: cache entry pointer
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2858
    __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_access),
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2859
               rax, cache);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
    __ get_cache_and_index_at_bcp(cache, index, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2861
    __ bind(L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2862
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
void TemplateTable::pop_and_check_object(Register r) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2866
  __ pop_ptr(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2867
  __ null_check(r);  // for field access must check obj.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
  __ verify_oop(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2871
void TemplateTable::getfield_or_static(int byte_no, bool is_static, RewriteControl rc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
  const Register cache = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
  const Register index = rdx;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2876
  const Register obj   = LP64_ONLY(c_rarg3) NOT_LP64(rcx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
  const Register off   = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
  const Register flags = rax;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2879
  const Register bc    = LP64_ONLY(c_rarg3) NOT_LP64(rcx); // uses same reg as obj, so don't mix them
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2880
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  2881
  resolve_cache_and_index(byte_no, cache, index, sizeof(u2));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
  jvmti_post_field_access(cache, index, is_static, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
  load_field_cp_cache_entry(obj, cache, index, off, flags, is_static);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2885
  if (!is_static) pop_and_check_object(obj);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2886
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2887
  const Address field(obj, off, Address::times_1, 0*wordSize);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2888
51756
4bd35a5ec694 8210676: Remove some unused Label variables
mikael
parents: 51633
diff changeset
  2889
  Label Done, notByte, notBool, notInt, notShort, notChar, notLong, notFloat, notObj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2891
  __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2892
  // Make sure we don't need to mask edx after the above shift
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
  assert(btos == 0, "change code, btos != 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  2895
  __ andl(flags, ConstantPoolCacheEntry::tos_state_mask);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2896
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
  __ jcc(Assembler::notZero, notByte);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
  // btos
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2899
  __ access_load_at(T_BYTE, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
  __ push(btos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2902
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
    patch_bytecode(Bytecodes::_fast_bgetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
  __ bind(notByte);
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2908
  __ cmpl(flags, ztos);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2909
  __ jcc(Assembler::notEqual, notBool);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2910
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2911
  // ztos (same code as btos)
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2912
  __ access_load_at(T_BOOLEAN, IN_HEAP, rax, field, noreg, noreg);
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2913
  __ push(ztos);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2914
  // Rewrite bytecode to be faster
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2915
  if (!is_static && rc == may_rewrite) {
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2916
    // use btos rewriting, no truncating to t/f bit is needed for getfield.
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2917
    patch_bytecode(Bytecodes::_fast_bgetfield, bc, rbx);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2918
  }
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2919
  __ jmp(Done);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2920
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  2921
  __ bind(notBool);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
  __ cmpl(flags, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
  __ jcc(Assembler::notEqual, notObj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
  // atos
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
  2925
  do_oop_load(_masm, field, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
  __ push(atos);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2927
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
    patch_bytecode(Bytecodes::_fast_agetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
  __ bind(notObj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
  __ cmpl(flags, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
  __ jcc(Assembler::notEqual, notInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
  // itos
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2936
  __ access_load_at(T_INT, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
  __ push(itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2939
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
    patch_bytecode(Bytecodes::_fast_igetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2944
  __ bind(notInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
  __ cmpl(flags, ctos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
  __ jcc(Assembler::notEqual, notChar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
  // ctos
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2948
  __ access_load_at(T_CHAR, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
  __ push(ctos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2951
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2952
    patch_bytecode(Bytecodes::_fast_cgetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2953
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2954
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
  __ bind(notChar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
  __ cmpl(flags, stos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
  __ jcc(Assembler::notEqual, notShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
  // stos
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2960
  __ access_load_at(T_SHORT, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
  __ push(stos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2963
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
    patch_bytecode(Bytecodes::_fast_sgetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
  __ bind(notShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
  __ cmpl(flags, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
  __ jcc(Assembler::notEqual, notLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
  // ltos
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2972
    // Generate code as if volatile (x86_32).  There just aren't enough registers to
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2973
    // save that information and this code is faster than the test.
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2974
  __ access_load_at(T_LONG, IN_HEAP | MO_RELAXED, noreg /* ltos */, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
  __ push(ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2976
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2977
  LP64_ONLY(if (!is_static && rc == may_rewrite) patch_bytecode(Bytecodes::_fast_lgetfield, bc, rbx));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2978
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2979
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2980
  __ bind(notLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2981
  __ cmpl(flags, ftos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2982
  __ jcc(Assembler::notEqual, notFloat);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2983
  // ftos
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  2984
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  2985
  __ access_load_at(T_FLOAT, IN_HEAP, noreg /* ftos */, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
  __ push(ftos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  2988
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
    patch_bytecode(Bytecodes::_fast_fgetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
  __ bind(notFloat);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
#ifdef ASSERT
51756
4bd35a5ec694 8210676: Remove some unused Label variables
mikael
parents: 51633
diff changeset
  2995
  Label notDouble;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
  __ cmpl(flags, dtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
  __ jcc(Assembler::notEqual, notDouble);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
  // dtos
54921
be1cbfd81ea1 8223472: volatile long field corruption on x86_32
bulasevich
parents: 53746
diff changeset
  3000
  // MO_RELAXED: for the case of volatile field, in fact it adds no extra work for the underlying implementation
be1cbfd81ea1 8223472: volatile long field corruption on x86_32
bulasevich
parents: 53746
diff changeset
  3001
  __ access_load_at(T_DOUBLE, IN_HEAP | MO_RELAXED, noreg /* dtos */, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
  __ push(dtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
  // Rewrite bytecode to be faster
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3004
  if (!is_static && rc == may_rewrite) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
    patch_bytecode(Bytecodes::_fast_dgetfield, bc, rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3007
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3008
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
  __ bind(notDouble);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3011
  __ stop("Bad state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
  __ bind(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
  // [jk] not needed currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3016
  // volatile_barrier(Assembler::Membar_mask_bits(Assembler::LoadLoad |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
  //                                              Assembler::LoadStore));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3020
void TemplateTable::getfield(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3021
  getfield_or_static(byte_no, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3022
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3023
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3024
void TemplateTable::nofast_getfield(int byte_no) {
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3025
  getfield_or_static(byte_no, false, may_not_rewrite);
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3026
}
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3027
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
void TemplateTable::getstatic(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3029
  getfield_or_static(byte_no, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3030
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3031
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3032
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3033
// The registers cache and index expected to be set before call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3034
// The function may destroy various registers, just not the cache and index registers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
void TemplateTable::jvmti_post_field_mod(Register cache, Register index, bool is_static) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3036
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3037
  const Register robj = LP64_ONLY(c_rarg2)   NOT_LP64(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3038
  const Register RBX  = LP64_ONLY(c_rarg1)   NOT_LP64(rbx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3039
  const Register RCX  = LP64_ONLY(c_rarg3)   NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3040
  const Register RDX  = LP64_ONLY(rscratch1) NOT_LP64(rdx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3041
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3042
  ByteSize cp_base_offset = ConstantPoolCache::base_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3044
  if (JvmtiExport::can_post_field_modification()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3045
    // Check to see if a field modification watch has been set before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3046
    // we take the time to call into the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
    Label L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
    assert_different_registers(cache, index, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
    __ mov32(rax, ExternalAddress((address)JvmtiExport::get_field_modification_count_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
    __ testl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
    __ jcc(Assembler::zero, L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3053
    __ get_cache_and_index_at_bcp(robj, RDX, 1);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3054
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3056
    if (is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3057
      // Life is simple.  Null out the object pointer.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3058
      __ xorl(RBX, RBX);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3059
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3061
      // Life is harder. The stack holds the value on top, followed by
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3062
      // the object.  We don't know the size of the value, though; it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3063
      // could be one or two words depending on its type. As a result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3064
      // we must find the type to determine where the object is.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3065
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3066
      Label two_word, valsize_known;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3067
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3068
      __ movl(RCX, Address(robj, RDX,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3069
                           Address::times_ptr,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3070
                           in_bytes(cp_base_offset +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3071
                                     ConstantPoolCacheEntry::flags_offset())));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3072
      NOT_LP64(__ mov(rbx, rsp));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3073
      __ shrl(RCX, ConstantPoolCacheEntry::tos_state_shift);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3074
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3075
      // Make sure we don't need to mask rcx after the above shift
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3076
      ConstantPoolCacheEntry::verify_tos_state_shift();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3077
#ifdef _LP64
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3078
      __ movptr(c_rarg1, at_tos_p1());  // initially assume a one word jvalue
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
      __ cmpl(c_rarg3, ltos);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3080
      __ cmovptr(Assembler::equal,
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3081
                 c_rarg1, at_tos_p2()); // ltos (two word jvalue)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
      __ cmpl(c_rarg3, dtos);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3083
      __ cmovptr(Assembler::equal,
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3084
                 c_rarg1, at_tos_p2()); // dtos (two word jvalue)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3085
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3086
      __ cmpl(rcx, ltos);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3087
      __ jccb(Assembler::equal, two_word);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3088
      __ cmpl(rcx, dtos);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3089
      __ jccb(Assembler::equal, two_word);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3090
      __ addptr(rbx, Interpreter::expr_offset_in_bytes(1)); // one word jvalue (not ltos, dtos)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3091
      __ jmpb(valsize_known);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3092
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3093
      __ bind(two_word);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3094
      __ addptr(rbx, Interpreter::expr_offset_in_bytes(2)); // two words jvalue
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3095
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3096
      __ bind(valsize_known);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3097
      // setup object pointer
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3098
      __ movptr(rbx, Address(rbx, 0));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3099
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3100
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
    // cache entry pointer
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3102
    __ addptr(robj, in_bytes(cp_base_offset));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3103
    __ shll(RDX, LogBytesPerWord);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3104
    __ addptr(robj, RDX);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3105
    // object (tos)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3106
    __ mov(RCX, rsp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
    // c_rarg1: object pointer set up above (NULL if static)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
    // c_rarg2: cache entry pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
    // c_rarg3: jvalue object on the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
    __ call_VM(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
               CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
                                InterpreterRuntime::post_field_modification),
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3113
               RBX, robj, RCX);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
    __ get_cache_and_index_at_bcp(cache, index, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
    __ bind(L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3118
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3119
void TemplateTable::putfield_or_static(int byte_no, bool is_static, RewriteControl rc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3122
  const Register cache = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
  const Register index = rdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
  const Register obj   = rcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
  const Register off   = rbx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
  const Register flags = rax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3128
  resolve_cache_and_index(byte_no, cache, index, sizeof(u2));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3129
  jvmti_post_field_mod(cache, index, is_static);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
  load_field_cp_cache_entry(obj, cache, index, off, flags, is_static);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3132
  // [jk] not needed currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3133
  // volatile_barrier(Assembler::Membar_mask_bits(Assembler::LoadStore |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3134
  //                                              Assembler::StoreStore));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
  Label notVolatile, Done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
  __ movl(rdx, flags);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3138
  __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
  __ andl(rdx, 0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
51816
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3141
  // Check for volatile store
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3142
  __ testl(rdx, rdx);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3143
  __ jcc(Assembler::zero, notVolatile);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3144
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3145
  putfield_or_static_helper(byte_no, is_static, rc, obj, off, flags);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3146
  volatile_barrier(Assembler::Membar_mask_bits(Assembler::StoreLoad |
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3147
                                               Assembler::StoreStore));
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3148
  __ jmp(Done);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3149
  __ bind(notVolatile);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3150
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3151
  putfield_or_static_helper(byte_no, is_static, rc, obj, off, flags);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3152
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3153
  __ bind(Done);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3154
}
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3155
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3156
void TemplateTable::putfield_or_static_helper(int byte_no, bool is_static, RewriteControl rc,
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3157
                                              Register obj, Register off, Register flags) {
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3158
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3159
  // field addresses
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3160
  const Address field(obj, off, Address::times_1, 0*wordSize);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3161
  NOT_LP64( const Address hi(obj, off, Address::times_1, 1*wordSize);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3162
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3163
  Label notByte, notBool, notInt, notShort, notChar,
51756
4bd35a5ec694 8210676: Remove some unused Label variables
mikael
parents: 51633
diff changeset
  3164
        notLong, notFloat, notObj;
51816
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3165
  Label Done;
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3166
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3167
  const Register bc    = LP64_ONLY(c_rarg3) NOT_LP64(rcx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3168
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3169
  __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
  assert(btos == 0, "change code, btos != 0");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3172
  __ andl(flags, ConstantPoolCacheEntry::tos_state_mask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3173
  __ jcc(Assembler::notZero, notByte);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3174
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
  // btos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3176
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3177
    __ pop(btos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3178
    if (!is_static) pop_and_check_object(obj);
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3179
    __ access_store_at(T_BYTE, IN_HEAP, field, rax, noreg, noreg);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3180
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3181
      patch_bytecode(Bytecodes::_fast_bputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3182
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3183
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3186
  __ bind(notByte);
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3187
  __ cmpl(flags, ztos);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3188
  __ jcc(Assembler::notEqual, notBool);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3189
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3190
  // ztos
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3191
  {
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3192
    __ pop(ztos);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3193
    if (!is_static) pop_and_check_object(obj);
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3194
    __ access_store_at(T_BOOLEAN, IN_HEAP, field, rax, noreg, noreg);
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3195
    if (!is_static && rc == may_rewrite) {
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3196
      patch_bytecode(Bytecodes::_fast_zputfield, bc, rbx, true, byte_no);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3197
    }
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3198
    __ jmp(Done);
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3199
  }
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3200
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3201
  __ bind(notBool);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
  __ cmpl(flags, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
  __ jcc(Assembler::notEqual, notObj);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3204
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
  // atos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3206
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3207
    __ pop(atos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3208
    if (!is_static) pop_and_check_object(obj);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3209
    // Store into the field
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
  3210
    do_oop_store(_masm, field, rax);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3211
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3212
      patch_bytecode(Bytecodes::_fast_aputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3213
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3214
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3217
  __ bind(notObj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
  __ cmpl(flags, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3219
  __ jcc(Assembler::notEqual, notInt);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3220
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3221
  // itos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3222
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3223
    __ pop(itos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3224
    if (!is_static) pop_and_check_object(obj);
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3225
    __ access_store_at(T_INT, IN_HEAP, field, rax, noreg, noreg);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3226
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3227
      patch_bytecode(Bytecodes::_fast_iputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3228
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3229
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3230
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3231
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
  __ bind(notInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3233
  __ cmpl(flags, ctos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3234
  __ jcc(Assembler::notEqual, notChar);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3235
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
  // ctos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3237
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3238
    __ pop(ctos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3239
    if (!is_static) pop_and_check_object(obj);
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3240
    __ access_store_at(T_CHAR, IN_HEAP, field, rax, noreg, noreg);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3241
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3242
      patch_bytecode(Bytecodes::_fast_cputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3243
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3244
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
  __ bind(notChar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
  __ cmpl(flags, stos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
  __ jcc(Assembler::notEqual, notShort);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3250
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
  // stos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3252
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3253
    __ pop(stos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3254
    if (!is_static) pop_and_check_object(obj);
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3255
    __ access_store_at(T_SHORT, IN_HEAP, field, rax, noreg, noreg);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3256
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3257
      patch_bytecode(Bytecodes::_fast_sputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3258
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3259
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
  __ bind(notShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
  __ cmpl(flags, ltos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
  __ jcc(Assembler::notEqual, notLong);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3265
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
  // ltos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3267
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3268
    __ pop(ltos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3269
    if (!is_static) pop_and_check_object(obj);
54921
be1cbfd81ea1 8223472: volatile long field corruption on x86_32
bulasevich
parents: 53746
diff changeset
  3270
    // MO_RELAXED: generate atomic store for the case of volatile field (important for x86_32)
be1cbfd81ea1 8223472: volatile long field corruption on x86_32
bulasevich
parents: 53746
diff changeset
  3271
    __ access_store_at(T_LONG, IN_HEAP | MO_RELAXED, field, noreg /* ltos*/, noreg, noreg);
51816
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3272
#ifdef _LP64
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3273
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3274
      patch_bytecode(Bytecodes::_fast_lputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3275
    }
51816
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3276
#endif // _LP64
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3277
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
  __ bind(notLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3281
  __ cmpl(flags, ftos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
  __ jcc(Assembler::notEqual, notFloat);
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3283
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
  // ftos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3285
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3286
    __ pop(ftos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3287
    if (!is_static) pop_and_check_object(obj);
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3288
    __ access_store_at(T_FLOAT, IN_HEAP, field, noreg /* ftos */, noreg, noreg);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3289
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3290
      patch_bytecode(Bytecodes::_fast_fputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3291
    }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3292
    __ jmp(Done);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3293
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
  __ bind(notFloat);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
#ifdef ASSERT
51756
4bd35a5ec694 8210676: Remove some unused Label variables
mikael
parents: 51633
diff changeset
  3297
  Label notDouble;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
  __ cmpl(flags, dtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
  __ jcc(Assembler::notEqual, notDouble);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
#endif
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3301
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3302
  // dtos
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3303
  {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3304
    __ pop(dtos);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3305
    if (!is_static) pop_and_check_object(obj);
54921
be1cbfd81ea1 8223472: volatile long field corruption on x86_32
bulasevich
parents: 53746
diff changeset
  3306
    // MO_RELAXED: for the case of volatile field, in fact it adds no extra work for the underlying implementation
be1cbfd81ea1 8223472: volatile long field corruption on x86_32
bulasevich
parents: 53746
diff changeset
  3307
    __ access_store_at(T_DOUBLE, IN_HEAP | MO_RELAXED, field, noreg /* dtos */, noreg, noreg);
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3308
    if (!is_static && rc == may_rewrite) {
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3309
      patch_bytecode(Bytecodes::_fast_dputfield, bc, rbx, true, byte_no);
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10008
diff changeset
  3310
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
  __ jmp(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
  __ bind(notDouble);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
  __ stop("Bad state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
  __ bind(Done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
void TemplateTable::putfield(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
  putfield_or_static(byte_no, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
30117
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3327
void TemplateTable::nofast_putfield(int byte_no) {
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3328
  putfield_or_static(byte_no, false, may_not_rewrite);
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3329
}
cce2cdac56dc 8074345: Enable RewriteBytecodes when VM runs with CDS
minqi
parents: 29461
diff changeset
  3330
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
void TemplateTable::putstatic(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
  putfield_or_static(byte_no, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
void TemplateTable::jvmti_post_fast_field_mod() {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3336
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3337
  const Register scratch = LP64_ONLY(c_rarg3) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3338
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
  if (JvmtiExport::can_post_field_modification()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
    // Check to see if a field modification watch has been set before
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
    // we take the time to call into the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
    Label L2;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3343
    __ mov32(scratch, ExternalAddress((address)JvmtiExport::get_field_modification_count_addr()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3344
    __ testl(scratch, scratch);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
    __ jcc(Assembler::zero, L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
    __ pop_ptr(rbx);                  // copy the object pointer from tos
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
    __ verify_oop(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
    __ push_ptr(rbx);                 // put the object pointer back on tos
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3349
    // Save tos values before call_VM() clobbers them. Since we have
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3350
    // to do it for every data type, we use the saved values as the
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3351
    // jvalue object.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3352
    switch (bytecode()) {          // load values into the jvalue object
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3353
    case Bytecodes::_fast_aputfield: __ push_ptr(rax); break;
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3354
    case Bytecodes::_fast_bputfield: // fall through
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3355
    case Bytecodes::_fast_zputfield: // fall through
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
    case Bytecodes::_fast_sputfield: // fall through
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3357
    case Bytecodes::_fast_cputfield: // fall through
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3358
    case Bytecodes::_fast_iputfield: __ push_i(rax); break;
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  3359
    case Bytecodes::_fast_dputfield: __ push(dtos); break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  3360
    case Bytecodes::_fast_fputfield: __ push(ftos); break;
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3361
    case Bytecodes::_fast_lputfield: __ push_l(rax); break;
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3362
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3364
      ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3365
    }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3366
    __ mov(scratch, rsp);             // points to jvalue on the stack
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
    // access constant pool cache entry
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3368
    LP64_ONLY(__ get_cache_entry_pointer_at_bcp(c_rarg2, rax, 1));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3369
    NOT_LP64(__ get_cache_entry_pointer_at_bcp(rax, rdx, 1));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3370
    __ verify_oop(rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
    // rbx: object pointer copied above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3372
    // c_rarg2: cache entry pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
    // c_rarg3: jvalue object on the stack
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3374
    LP64_ONLY(__ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_modification), rbx, c_rarg2, c_rarg3));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3375
    NOT_LP64(__ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_modification), rbx, rax, rcx));
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3376
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3377
    switch (bytecode()) {             // restore tos values
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3378
    case Bytecodes::_fast_aputfield: __ pop_ptr(rax); break;
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3379
    case Bytecodes::_fast_bputfield: // fall through
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3380
    case Bytecodes::_fast_zputfield: // fall through
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3381
    case Bytecodes::_fast_sputfield: // fall through
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3382
    case Bytecodes::_fast_cputfield: // fall through
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3383
    case Bytecodes::_fast_iputfield: __ pop_i(rax); break;
32391
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  3384
    case Bytecodes::_fast_dputfield: __ pop(dtos); break;
01e2f5e916c7 8076373: In 32-bit VM interpreter and compiled code process NaN values differently
zmajo
parents: 30132
diff changeset
  3385
    case Bytecodes::_fast_fputfield: __ pop(ftos); break;
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3386
    case Bytecodes::_fast_lputfield: __ pop_l(rax); break;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46427
diff changeset
  3387
    default: break;
12366
76be8878c0cd 7158988: jvm crashes while debugging on x86_32 and x86_64
coleenp
parents: 11439
diff changeset
  3388
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
    __ bind(L2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3390
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3393
void TemplateTable::fast_storefield(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3394
  transition(state, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3395
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3396
  ByteSize base = ConstantPoolCache::base_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
  jvmti_post_fast_field_mod();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
  // access constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
  __ get_cache_and_index_at_bcp(rcx, rbx, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3403
  // test for volatile with rdx but rdx is tos register for lputfield.
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3404
  __ movl(rdx, Address(rcx, rbx, Address::times_ptr,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
                       in_bytes(base +
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
                                ConstantPoolCacheEntry::flags_offset())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
  // replace index with field offset from cache entry
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3409
  __ movptr(rbx, Address(rcx, rbx, Address::times_ptr,
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3410
                         in_bytes(base + ConstantPoolCacheEntry::f2_offset())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
  // [jk] not needed currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
  // volatile_barrier(Assembler::Membar_mask_bits(Assembler::LoadStore |
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
  //                                              Assembler::StoreStore));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
51816
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3416
  Label notVolatile, Done;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3417
  __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
  __ andl(rdx, 0x1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
  // Get object from stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
  pop_and_check_object(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
  // field address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3424
  const Address field(rcx, rbx, Address::times_1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
51816
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3426
  // Check for volatile store
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3427
  __ testl(rdx, rdx);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3428
  __ jcc(Assembler::zero, notVolatile);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3429
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3430
  fast_storefield_helper(field, rax);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3431
  volatile_barrier(Assembler::Membar_mask_bits(Assembler::StoreLoad |
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3432
                                               Assembler::StoreStore));
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3433
  __ jmp(Done);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3434
  __ bind(notVolatile);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3435
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3436
  fast_storefield_helper(field, rax);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3437
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3438
  __ bind(Done);
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3439
}
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3440
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3441
void TemplateTable::fast_storefield_helper(Address field, Register rax) {
1fd0f300d4b7 8202201: All oop stores in the x64 interpreter are treated as volatile when using G1
coleenp
parents: 51756
diff changeset
  3442
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
  // access field
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
  switch (bytecode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
  case Bytecodes::_fast_aputfield:
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
  3446
    do_oop_store(_masm, field, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
  case Bytecodes::_fast_lputfield:
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3449
#ifdef _LP64
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3450
    __ access_store_at(T_LONG, IN_HEAP, field, noreg /* ltos */, noreg, noreg);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3451
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3452
  __ stop("should not be rewritten");
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3453
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
  case Bytecodes::_fast_iputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3456
    __ access_store_at(T_INT, IN_HEAP, field, rax, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
    break;
37480
291ee208fb72 8132051: Better byte behavior
coleenp
parents: 35214
diff changeset
  3458
  case Bytecodes::_fast_zputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3459
    __ access_store_at(T_BOOLEAN, IN_HEAP, field, rax, noreg, noreg);
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3460
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
  case Bytecodes::_fast_bputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3462
    __ access_store_at(T_BYTE, IN_HEAP, field, rax, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
  case Bytecodes::_fast_sputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3465
    __ access_store_at(T_SHORT, IN_HEAP, field, rax, noreg, noreg);
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3466
    break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
  case Bytecodes::_fast_cputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3468
    __ access_store_at(T_CHAR, IN_HEAP, field, rax, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3469
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
  case Bytecodes::_fast_fputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3471
    __ access_store_at(T_FLOAT, IN_HEAP, field, noreg /* ftos*/, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
  case Bytecodes::_fast_dputfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3474
    __ access_store_at(T_DOUBLE, IN_HEAP, field, noreg /* dtos*/, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
void TemplateTable::fast_accessfield(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
  transition(atos, state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
  // Do the JVMTI work here to avoid disturbing the register state below
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
  if (JvmtiExport::can_post_field_access()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
    // Check to see if a field access watch has been set before we
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
    // take the time to call into the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
    Label L1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
    __ mov32(rcx, ExternalAddress((address) JvmtiExport::get_field_access_count_addr()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
    __ testl(rcx, rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
    __ jcc(Assembler::zero, L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
    // access constant pool cache entry
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3493
    LP64_ONLY(__ get_cache_entry_pointer_at_bcp(c_rarg2, rcx, 1));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3494
    NOT_LP64(__ get_cache_entry_pointer_at_bcp(rcx, rdx, 1));
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3495
    __ verify_oop(rax);
7401
ebde7415b521 6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
coleenp
parents: 7397
diff changeset
  3496
    __ push_ptr(rax);  // save object pointer before call_VM() clobbers it
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3497
    LP64_ONLY(__ mov(c_rarg1, rax));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
    // c_rarg1: object pointer copied above
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
    // c_rarg2: cache entry pointer
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3500
    LP64_ONLY(__ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_access), c_rarg1, c_rarg2));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3501
    NOT_LP64(__ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_field_access), rax, rcx));
7401
ebde7415b521 6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
coleenp
parents: 7397
diff changeset
  3502
    __ pop_ptr(rax); // restore object pointer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
    __ bind(L1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
  // access constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
  __ get_cache_and_index_at_bcp(rcx, rbx, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
  // replace index with field offset from cache entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
  // [jk] not needed currently
51996
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3510
  // __ movl(rdx, Address(rcx, rbx, Address::times_8,
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3511
  //                      in_bytes(ConstantPoolCache::base_offset() +
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3512
  //                               ConstantPoolCacheEntry::flags_offset())));
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3513
  // __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3514
  // __ andl(rdx, 0x1);
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3515
  //
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3516
  __ movptr(rbx, Address(rcx, rbx, Address::times_ptr,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3517
                         in_bytes(ConstantPoolCache::base_offset() +
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3518
                                  ConstantPoolCacheEntry::f2_offset())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
  // rax: object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
  __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
  __ null_check(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
  Address field(rax, rbx, Address::times_1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
  // access field
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
  switch (bytecode()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
  case Bytecodes::_fast_agetfield:
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
  3528
    do_oop_load(_masm, field, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
    __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
  case Bytecodes::_fast_lgetfield:
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3532
#ifdef _LP64
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3533
    __ access_load_at(T_LONG, IN_HEAP, noreg /* ltos */, field, noreg, noreg);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3534
#else
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3535
  __ stop("should not be rewritten");
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3536
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
  case Bytecodes::_fast_igetfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3539
    __ access_load_at(T_INT, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
  case Bytecodes::_fast_bgetfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3542
    __ access_load_at(T_BYTE, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
  case Bytecodes::_fast_sgetfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3545
    __ access_load_at(T_SHORT, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
  case Bytecodes::_fast_cgetfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3548
    __ access_load_at(T_CHAR, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
  case Bytecodes::_fast_fgetfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3551
    __ access_load_at(T_FLOAT, IN_HEAP, noreg /* ftos */, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
  case Bytecodes::_fast_dgetfield:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3554
    __ access_load_at(T_DOUBLE, IN_HEAP, noreg /* dtos */, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
  // [jk] not needed currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
  //   Label notVolatile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
  //   __ testl(rdx, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
  //   __ jcc(Assembler::zero, notVolatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
  //   __ membar(Assembler::LoadLoad);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
  //   __ bind(notVolatile);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
void TemplateTable::fast_xaccess(TosState state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
  transition(vtos, state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
  // get receiver
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3571
  __ movptr(rax, aaddress(0));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
  // access constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
  __ get_cache_and_index_at_bcp(rcx, rdx, 2);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3574
  __ movptr(rbx,
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3575
            Address(rcx, rdx, Address::times_ptr,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3576
                    in_bytes(ConstantPoolCache::base_offset() +
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3577
                             ConstantPoolCacheEntry::f2_offset())));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
  // make sure exception is reported in correct bcp range (getfield is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
  // next instruction)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3580
  __ increment(rbcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
  __ null_check(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3582
  const Address field = Address(rax, rbx, Address::times_1, 0*wordSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
  switch (state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
  case itos:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3585
    __ access_load_at(T_INT, IN_HEAP, rax, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
  case atos:
49748
6a880e576856 8199417: Modularize interpreter GC barriers
eosterlund
parents: 49480
diff changeset
  3588
    do_oop_load(_masm, field, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
    __ verify_oop(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
  case ftos:
50418
c35f0c531c6c 8200623: Primitive heap access for interpreter BarrierSetAssembler/x86
rkennke
parents: 50106
diff changeset
  3592
    __ access_load_at(T_FLOAT, IN_HEAP, noreg /* ftos */, field, noreg, noreg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
  // [jk] not needed currently
51996
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3599
  // Label notVolatile;
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3600
  // __ movl(rdx, Address(rcx, rdx, Address::times_8,
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3601
  //                      in_bytes(ConstantPoolCache::base_offset() +
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3602
  //                               ConstantPoolCacheEntry::flags_offset())));
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3603
  // __ shrl(rdx, ConstantPoolCacheEntry::is_volatile_shift);
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3604
  // __ testl(rdx, 0x1);
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3605
  // __ jcc(Assembler::zero, notVolatile);
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3606
  // __ membar(Assembler::LoadLoad);
84743156e780 8188764: Obsolete AssumeMP and then remove all support for non-MP builds
dholmes
parents: 51967
diff changeset
  3607
  // __ bind(notVolatile);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3609
  __ decrement(rbcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
// Calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
void TemplateTable::count_calls(Register method, Register temp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
  // implemented elsewhere
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3620
void TemplateTable::prepare_invoke(int byte_no,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3621
                                   Register method,  // linked method (or i-klass)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3622
                                   Register index,   // itable index, MethodType, etc.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3623
                                   Register recv,    // if caller wants to see it
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3624
                                   Register flags    // if caller wants to test it
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3625
                                   ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
  // determine flags
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3627
  const Bytecodes::Code code = bytecode();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
  const bool is_invokeinterface  = code == Bytecodes::_invokeinterface;
4478
c3a8af0fc6b0 6829192: JSR 292 needs to support 64-bit x86
twisti
parents: 4102
diff changeset
  3629
  const bool is_invokedynamic    = code == Bytecodes::_invokedynamic;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3630
  const bool is_invokehandle     = code == Bytecodes::_invokehandle;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
  const bool is_invokevirtual    = code == Bytecodes::_invokevirtual;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
  const bool is_invokespecial    = code == Bytecodes::_invokespecial;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3633
  const bool load_receiver       = (recv  != noreg);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3634
  const bool save_flags          = (flags != noreg);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3635
  assert(load_receiver == (code != Bytecodes::_invokestatic && code != Bytecodes::_invokedynamic), "");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3636
  assert(save_flags    == (is_invokeinterface || is_invokevirtual), "need flags for vfinal");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3637
  assert(flags == noreg || flags == rdx, "");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3638
  assert(recv  == noreg || recv  == rcx, "");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3639
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
  // setup registers & access constant pool cache
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3641
  if (recv  == noreg)  recv  = rcx;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3642
  if (flags == noreg)  flags = rdx;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
  assert_different_registers(method, index, recv, flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
  // save 'interpreter return address'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
  __ save_bcp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3647
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  3648
  load_invoke_cp_cache_entry(byte_no, method, index, flags, is_invokevirtual, false, is_invokedynamic);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3650
  // maybe push appendix to arguments (just before return address)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3651
  if (is_invokedynamic || is_invokehandle) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3652
    Label L_no_push;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3653
    __ testl(flags, (1 << ConstantPoolCacheEntry::has_appendix_shift));
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3654
    __ jcc(Assembler::zero, L_no_push);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3655
    // Push the appendix as a trailing parameter.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3656
    // This must be done before we get the receiver,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3657
    // since the parameter_size includes it.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3658
    __ push(rbx);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3659
    __ mov(rbx, index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3660
    __ load_resolved_reference_at_index(index, rbx);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3661
    __ pop(rbx);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3662
    __ push(index);  // push appendix (MethodType, CallSite, etc.)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3663
    __ bind(L_no_push);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3664
  }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3665
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3666
  // load receiver if needed (after appendix is pushed so parameter size is correct)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3667
  // Note: no return address pushed yet
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
  if (load_receiver) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
    __ movl(recv, flags);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3670
    __ andl(recv, ConstantPoolCacheEntry::parameter_size_mask);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3671
    const int no_return_pc_pushed_yet = -1;  // argument slot correction before we push return address
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3672
    const int receiver_is_at_end      = -1;  // back off one slot to get receiver
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3673
    Address recv_addr = __ argument_address(recv, no_return_pc_pushed_yet + receiver_is_at_end);
5055
743f38c6e179 6932091: JSR 292 x86 code cleanup
twisti
parents: 4889
diff changeset
  3674
    __ movptr(recv, recv_addr);
743f38c6e179 6932091: JSR 292 x86 code cleanup
twisti
parents: 4889
diff changeset
  3675
    __ verify_oop(recv);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
  if (save_flags) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3679
    __ movl(rbcp, flags);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3681
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
  // compute return type
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3683
  __ shrl(flags, ConstantPoolCacheEntry::tos_state_shift);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3684
  // Make sure we don't need to mask flags after the above shift
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3685
  ConstantPoolCacheEntry::verify_tos_state_shift();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
  // load return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
  {
21198
dd647e8d1d72 8026328: Setting a breakpoint on invokedynamic crashes the JVM
twisti
parents: 20702
diff changeset
  3688
    const address table_addr = (address) Interpreter::invoke_return_entry_table_for(code);
4478
c3a8af0fc6b0 6829192: JSR 292 needs to support 64-bit x86
twisti
parents: 4102
diff changeset
  3689
    ExternalAddress table(table_addr);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3690
    LP64_ONLY(__ lea(rscratch1, table));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3691
    LP64_ONLY(__ movptr(flags, Address(rscratch1, flags, Address::times_ptr)));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3692
    NOT_LP64(__ movptr(flags, ArrayAddress(table, Address(noreg, flags, Address::times_ptr))));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
  // push return address
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  3696
  __ push(flags);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3698
  // Restore flags value from the constant pool cache, and restore rsi
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
  // for later null checks.  r13 is the bytecode pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
  if (save_flags) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3701
    __ movl(flags, rbcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
    __ restore_bcp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3704
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
void TemplateTable::invokevirtual_helper(Register index,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
                                         Register recv,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
                                         Register flags) {
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  3709
  // Uses temporary registers rax, rdx
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6176
diff changeset
  3710
  assert_different_registers(index, recv, rax, rdx);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3711
  assert(index == rbx, "");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3712
  assert(recv  == rcx, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3713
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3714
  // Test for an invoke of a final method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3715
  Label notFinal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3716
  __ movl(rax, flags);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3717
  __ andl(rax, (1 << ConstantPoolCacheEntry::is_vfinal_shift));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3718
  __ jcc(Assembler::zero, notFinal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
  const Register method = index;  // method must be rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3721
  assert(method == rbx,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3722
         "Method* must be rbx for interpreter calling convention");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3723
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
  // do the call - the index is actually the method to call
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3725
  // that is, f2 is a vtable index if !is_vfinal, else f2 is a Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
  // It's final, need a null check here!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
  __ null_check(recv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
  // profile this call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3731
  __ profile_final_call(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3732
  __ profile_arguments_type(rax, method, rbcp, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
  __ jump_from_interpreted(method, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
  __ bind(notFinal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3738
  // get receiver klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3739
  __ null_check(recv, oopDesc::klass_offset_in_bytes());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3740
  __ load_klass(rax, recv);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3742
  // profile this call
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3743
  __ profile_virtual_call(rax, rlocals, rdx);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3744
  // get target Method* & entry point
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3745
  __ lookup_virtual_method(rax, index, method);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32599
diff changeset
  3746
  __ profile_called_method(method, rdx, rbcp);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32599
diff changeset
  3747
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3748
  __ profile_arguments_type(rdx, method, rbcp, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
  __ jump_from_interpreted(method, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
void TemplateTable::invokevirtual(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
  transition(vtos, vtos);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  3754
  assert(byte_no == f2_byte, "use this argument");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3755
  prepare_invoke(byte_no,
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3756
                 rbx,    // method or vtable index
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3757
                 noreg,  // unused itable index
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3758
                 rcx, rdx); // recv, flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3759
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
  // rbx: index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
  // rcx: receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
  // rdx: flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
  invokevirtual_helper(rbx, rcx, rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
void TemplateTable::invokespecial(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
  transition(vtos, vtos);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  3769
  assert(byte_no == f1_byte, "use this argument");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3770
  prepare_invoke(byte_no, rbx, noreg,  // get f1 Method*
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3771
                 rcx);  // get receiver also for null check
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3772
  __ verify_oop(rcx);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3773
  __ null_check(rcx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
  __ profile_call(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3776
  __ profile_arguments_type(rax, rbx, rbcp, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
  __ jump_from_interpreted(rbx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
void TemplateTable::invokestatic(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
  transition(vtos, vtos);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  3782
  assert(byte_no == f1_byte, "use this argument");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3783
  prepare_invoke(byte_no, rbx);  // get f1 Method*
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3784
  // do the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
  __ profile_call(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3786
  __ profile_arguments_type(rax, rbx, rbcp, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
  __ jump_from_interpreted(rbx, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3790
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
void TemplateTable::fast_invokevfinal(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
  transition(vtos, vtos);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  3793
  assert(byte_no == f2_byte, "use this argument");
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3794
  __ stop("fast_invokevfinal not used on x86");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3795
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3796
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3797
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
void TemplateTable::invokeinterface(int byte_no) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
  transition(vtos, vtos);
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5419
diff changeset
  3800
  assert(byte_no == f1_byte, "use this argument");
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3801
  prepare_invoke(byte_no, rax, rbx,  // get f1 Klass*, f2 Method*
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3802
                 rcx, rdx); // recv, flags
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3803
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3804
  // rax: reference klass (from f1) if interface method
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3805
  // rbx: method (from f2)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
  // rcx: receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
  // rdx: flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3809
  // First check for Object case, then private interface method,
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3810
  // then regular interface method.
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3811
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
  // Special case of invokeinterface called for virtual method of
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3813
  // java.lang.Object.  See cpCache.cpp for details.
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3814
  Label notObjectMethod;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3815
  __ movl(rlocals, rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3816
  __ andl(rlocals, (1 << ConstantPoolCacheEntry::is_forced_virtual_shift));
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3817
  __ jcc(Assembler::zero, notObjectMethod);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
  invokevirtual_helper(rbx, rcx, rdx);
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3819
  // no return from above
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3820
  __ bind(notObjectMethod);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3821
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3822
  Label no_such_interface; // for receiver subtype check
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3823
  Register recvKlass; // used for exception processing
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3824
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3825
  // Check for private method invocation - indicated by vfinal
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3826
  Label notVFinal;
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3827
  __ movl(rlocals, rdx);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3828
  __ andl(rlocals, (1 << ConstantPoolCacheEntry::is_vfinal_shift));
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3829
  __ jcc(Assembler::zero, notVFinal);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3830
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3831
  // Get receiver klass into rlocals - also a null check
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3832
  __ null_check(rcx, oopDesc::klass_offset_in_bytes());
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3833
  __ load_klass(rlocals, rcx);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3834
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3835
  Label subtype;
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3836
  __ check_klass_subtype(rlocals, rax, rbcp, subtype);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3837
  // If we get here the typecheck failed
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3838
  recvKlass = rdx;
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3839
  __ mov(recvKlass, rlocals); // shuffle receiver class for exception use
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3840
  __ jmp(no_such_interface);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3841
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3842
  __ bind(subtype);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3843
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3844
  // do the call - rbx is actually the method to call
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3845
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3846
  __ profile_final_call(rdx);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3847
  __ profile_arguments_type(rdx, rbx, rbcp, true);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3848
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3849
  __ jump_from_interpreted(rbx, rdx);
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3850
  // no return from above
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3851
  __ bind(notVFinal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
  // Get receiver klass into rdx - also a null check
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3854
  __ restore_locals();  // restore r14
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3855
  __ null_check(rcx, oopDesc::klass_offset_in_bytes());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  3856
  __ load_klass(rdx, rcx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3858
  Label no_such_method;
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3859
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3860
  // Preserve method for throw_AbstractMethodErrorVerbose.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3861
  __ mov(rcx, rbx);
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3862
  // Receiver subtype check against REFC.
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3863
  // Superklass in rax. Subklass in rdx. Blows rcx, rdi.
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3864
  __ lookup_interface_method(// inputs: rec. class, interface, itable index
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3865
                             rdx, rax, noreg,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3866
                             // outputs: scan temp. reg, scan temp. reg
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3867
                             rbcp, rlocals,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3868
                             no_such_interface,
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3869
                             /*return_method=*/false);
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3870
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
  // profile this call
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3872
  __ restore_bcp(); // rbcp was destroyed by receiver type check
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3873
  __ profile_virtual_call(rdx, rbcp, rlocals);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3875
  // Get declaring interface class from method, and itable index
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  3876
  __ load_method_holder(rax, rbx);
48557
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3877
  __ movl(rbx, Address(rbx, Method::itable_index_offset()));
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3878
  __ subl(rbx, Method::itable_index_max);
2e867226b914 8174962: Better interface invocations
vlivanov
parents: 47916
diff changeset
  3879
  __ negl(rbx);
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3880
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3881
  // Preserve recvKlass for throw_AbstractMethodErrorVerbose.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3882
  __ mov(rlocals, rdx);
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3883
  __ lookup_interface_method(// inputs: rec. class, interface, itable index
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3884
                             rlocals, rax, rbx,
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3885
                             // outputs: method, scan temp. reg
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3886
                             rbx, rbcp,
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3887
                             no_such_interface);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3888
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3889
  // rbx: Method* to call
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3890
  // rcx: receiver
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3891
  // Check for abstract method error
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3892
  // Note: This should be done more efficiently via a throw_abstract_method_error
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3893
  //       interpreter entry point and a conditional jump to it in case of a null
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3894
  //       method.
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3895
  __ testptr(rbx, rbx);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3896
  __ jcc(Assembler::zero, no_such_method);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3897
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32599
diff changeset
  3898
  __ profile_called_method(rbx, rbcp, rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3899
  __ profile_arguments_type(rdx, rbx, rbcp, true);
20702
bbe0fcde6e13 8023657: New type profiling points: arguments to call
roland
parents: 17003
diff changeset
  3900
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3901
  // do the call
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3902
  // rcx: receiver
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3903
  // rbx,: Method*
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3904
  __ jump_from_interpreted(rbx, rdx);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3905
  __ should_not_reach_here();
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3906
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3907
  // exception handling code follows...
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3908
  // note: must restore interpreter registers to canonical
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3909
  //       state for exception handling to work correctly!
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3910
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3911
  __ bind(no_such_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
  // throw exception
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3913
  __ pop(rbx);           // pop return address (pushed by prepare_invoke)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3914
  __ restore_bcp();      // rbcp must be correct for exception handler   (was destroyed)
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3915
  __ restore_locals();   // make sure locals pointer is correct as well (was destroyed)
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3916
  // Pass arguments for generating a verbose error message.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3917
#ifdef _LP64
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3918
  recvKlass = c_rarg1;
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3919
  Register method    = c_rarg2;
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3920
  if (recvKlass != rdx) { __ movq(recvKlass, rdx); }
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3921
  if (method != rcx)    { __ movq(method, rcx);    }
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3922
#else
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50728
diff changeset
  3923
  recvKlass = rdx;
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3924
  Register method    = rcx;
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3925
#endif
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3926
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_AbstractMethodErrorVerbose),
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3927
             recvKlass, method);
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3928
  // The call_VM checks for exception, so we should never return here.
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3929
  __ should_not_reach_here();
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3930
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3931
  __ bind(no_such_interface);
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3932
  // throw exception
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3933
  __ pop(rbx);           // pop return address (pushed by prepare_invoke)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3934
  __ restore_bcp();      // rbcp must be correct for exception handler   (was destroyed)
2149
3d362637b307 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 2148
diff changeset
  3935
  __ restore_locals();   // make sure locals pointer is correct as well (was destroyed)
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3936
  // Pass arguments for generating a verbose error message.
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3937
  LP64_ONLY( if (recvKlass != rdx) { __ movq(recvKlass, rdx); } )
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3938
  __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_IncompatibleClassChangeErrorVerbose),
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49359
diff changeset
  3939
             recvKlass, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
  // the call_VM checks for exception, so we should never return here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
  __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3944
void TemplateTable::invokehandle(int byte_no) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3945
  transition(vtos, vtos);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3946
  assert(byte_no == f1_byte, "use this argument");
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3947
  const Register rbx_method = rbx;
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3948
  const Register rax_mtype  = rax;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3949
  const Register rcx_recv   = rcx;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3950
  const Register rdx_flags  = rdx;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3951
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3952
  prepare_invoke(byte_no, rbx_method, rax_mtype, rcx_recv);
13743
154102966e74 7196681: NPG: Some JSR 292 tests crash in Windows exception handler
coleenp
parents: 13728
diff changeset
  3953
  __ verify_method_ptr(rbx_method);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3954
  __ verify_oop(rcx_recv);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3955
  __ null_check(rcx_recv);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3956
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3957
  // rax: MethodType object (from cpool->resolved_references[f1], if necessary)
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3958
  // rbx: MH.invokeExact_MT method (from f2)
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3959
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3960
  // Note:  rax_mtype is already pushed (if necessary) by prepare_invoke
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3961
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3962
  // FIXME: profile the LambdaForm also
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3963
  __ profile_final_call(rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3964
  __ profile_arguments_type(rdx, rbx_method, rbcp, true);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3965
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3966
  __ jump_from_interpreted(rbx_method, rdx);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3967
}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3968
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2149
diff changeset
  3969
void TemplateTable::invokedynamic(int byte_no) {
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2149
diff changeset
  3970
  transition(vtos, vtos);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  3971
  assert(byte_no == f1_byte, "use this argument");
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2149
diff changeset
  3972
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3973
  const Register rbx_method   = rbx;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3974
  const Register rax_callsite = rax;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3975
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3976
  prepare_invoke(byte_no, rbx_method, rax_callsite);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3977
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13743
diff changeset
  3978
  // rax: CallSite object (from cpool->resolved_references[f1])
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3979
  // rbx: MH.linkToCallSite method (from f2)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3980
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3981
  // Note:  rax_callsite is already pushed by prepare_invoke
6772
2563324665d5 6829194: JSR 292 needs to support compressed oops
twisti
parents: 6453
diff changeset
  3982
9328
144894b3384b 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 9324
diff changeset
  3983
  // %%% should make a type profile for any invokedynamic that takes a ref argument
144894b3384b 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 9324
diff changeset
  3984
  // profile this call
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3985
  __ profile_call(rbcp);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  3986
  __ profile_arguments_type(rdx, rbx_method, rbcp, false);
9328
144894b3384b 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 9324
diff changeset
  3987
144894b3384b 6993078: JSR 292 too many pushes: Lesp points into register window
twisti
parents: 9324
diff changeset
  3988
  __ verify_oop(rax_callsite);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3989
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12366
diff changeset
  3990
  __ jump_from_interpreted(rbx_method, rdx);
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2149
diff changeset
  3991
}
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2149
diff changeset
  3992
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
// Allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
void TemplateTable::_new() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
  transition(vtos, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
  __ get_unsigned_2_byte_index_at_bcp(rdx, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
  Label slow_case;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4000
  Label slow_case_no_pop;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
  Label done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4002
  Label initialize_header;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4003
  Label initialize_object;  // including clearing the fields
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4005
  __ get_cpool_and_tags(rcx, rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4006
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5882
diff changeset
  4007
  // Make sure the class we're about to instantiate has been resolved.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4008
  // This is done before loading InstanceKlass to be consistent with the order
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4009
  // how Constant Pool is updated (see ConstantPool::klass_at_put)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4010
  const int tags_offset = Array<u1>::base_offset_in_bytes();
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4011
  __ cmpb(Address(rax, rdx, Address::times_1, tags_offset), JVM_CONSTANT_Class);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4012
  __ jcc(Assembler::notEqual, slow_case_no_pop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4014
  // get InstanceKlass
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  4015
  __ load_resolved_klass_at_index(rcx, rcx, rdx);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4016
  __ push(rcx);  // save the contexts of klass for initializing the header
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5882
diff changeset
  4017
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
  // make sure klass is initialized & doesn't have finalizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
  // make sure klass is fully initialized
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4020
  __ cmpb(Address(rcx, InstanceKlass::init_state_offset()), InstanceKlass::fully_initialized);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
  __ jcc(Assembler::notEqual, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4023
  // get instance_size in InstanceKlass (scaled to a count of bytes)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4024
  __ movl(rdx, Address(rcx, Klass::layout_helper_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
  // test to see if it has a finalizer or is malformed in some way
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
  __ testl(rdx, Klass::_lh_instance_slow_path_bit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
  __ jcc(Assembler::notZero, slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4028
48481
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4029
  // Allocate the instance:
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4030
  //  If TLAB is enabled:
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4031
  //    Try to allocate in the TLAB.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4032
  //    If fails, go to the slow path.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4033
  //  Else If inline contiguous allocations are enabled:
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4034
  //    Try to allocate in eden.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4035
  //    If fails due to heap end, go to slow path.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4036
  //
48481
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4037
  //  If TLAB is enabled OR inline contiguous is enabled:
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4038
  //    Initialize the allocation.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4039
  //    Exit.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4040
  //
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4041
  //  Go to slow path.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
  const bool allow_shared_alloc =
27625
07829380b8cd 8061308: Remove iCMS
brutisso
parents: 26705
diff changeset
  4044
    Universe::heap()->supports_inline_contig_alloc();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4046
  const Register thread = LP64_ONLY(r15_thread) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4047
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4048
  if (UseTLAB || allow_shared_alloc) {
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4049
    __ get_thread(thread);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4050
  }
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4051
#endif // _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4052
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4053
  if (UseTLAB) {
50693
db0a17475826 8205336: Modularize allocations in assembler
rkennke
parents: 50628
diff changeset
  4054
    __ tlab_allocate(thread, rax, rdx, 0, rcx, rbx, slow_case);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4055
    if (ZeroTLAB) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4056
      // the fields have been already cleared
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
      __ jmp(initialize_header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
      // initialize both the header and fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
      __ jmp(initialize_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
    }
48481
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4062
  } else {
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4063
    // Allocation in the shared Eden, if allowed.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4064
    //
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4065
    // rdx: instance size in bytes
50693
db0a17475826 8205336: Modularize allocations in assembler
rkennke
parents: 50628
diff changeset
  4066
    __ eden_allocate(thread, rax, rdx, 0, rbx, slow_case);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4067
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
48481
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4069
  // If UseTLAB or allow_shared_alloc are true, the object is created above and
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4070
  // there is an initialize need. Otherwise, skip and go to the slow path.
b97818fba2b0 8191027: JDK-8190862 work for arch x86/x64
jcbeyler
parents: 47916
diff changeset
  4071
  if (UseTLAB || allow_shared_alloc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4072
    // The object is initialized before the header.  If the object size is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
    // zero, go directly to the header initialization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
    __ bind(initialize_object);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4075
    __ decrement(rdx, sizeof(oopDesc));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
    __ jcc(Assembler::zero, initialize_header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4078
    // Initialize topmost object field, divide rdx by 8, check if odd and
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4079
    // test if zero.
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4080
    __ xorl(rcx, rcx);    // use zero reg to clear memory (shorter code)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4081
    __ shrl(rdx, LogBytesPerLong); // divide by 2*oopSize and set carry flag if odd
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4082
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4083
    // rdx must have been multiple of 8
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4084
#ifdef ASSERT
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4085
    // make sure rdx was multiple of 8
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4086
    Label L;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4087
    // Ignore partial flag stall after shrl() since it is debug VM
51633
21154cb84d2a 8209594: guarantee(this->is8bit(imm8)) failed: Short forward jump exceeds 8-bit offset
kvn
parents: 51350
diff changeset
  4088
    __ jcc(Assembler::carryClear, L);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4089
    __ stop("object size is not multiple of 2 - adjust this code");
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4090
    __ bind(L);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4091
    // rdx must be > 0, no extra check needed here
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4092
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4093
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4094
    // initialize remaining object fields: rdx was a multiple of 8
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4095
    { Label loop;
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4096
    __ bind(loop);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4097
    __ movptr(Address(rax, rdx, Address::times_8, sizeof(oopDesc) - 1*oopSize), rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4098
    NOT_LP64(__ movptr(Address(rax, rdx, Address::times_8, sizeof(oopDesc) - 2*oopSize), rcx));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4099
    __ decrement(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4100
    __ jcc(Assembler::notZero, loop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
    // initialize object header only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
    __ bind(initialize_header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
    if (UseBiasedLocking) {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4106
      __ pop(rcx);   // get saved klass back in the register.
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4107
      __ movptr(rbx, Address(rcx, Klass::prototype_header_offset()));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4108
      __ movptr(Address(rax, oopDesc::mark_offset_in_bytes ()), rbx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
    } else {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4110
      __ movptr(Address(rax, oopDesc::mark_offset_in_bytes ()),
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 55105
diff changeset
  4111
                (intptr_t)markWord::prototype().value()); // header
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4112
      __ pop(rcx);   // get saved klass back in the register.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
    }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4114
#ifdef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4115
    __ xorl(rsi, rsi); // use zero reg to clear memory (shorter code)
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4116
    __ store_klass_gap(rax, rsi);  // zero klass gap for compressed oops
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4117
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4118
    __ store_klass(rax, rcx);  // klass
4889
81b0130673ef 6587322: dtrace probe object__alloc doesn't fire in some situations on amd64
kamg
parents: 4478
diff changeset
  4119
81b0130673ef 6587322: dtrace probe object__alloc doesn't fire in some situations on amd64
kamg
parents: 4478
diff changeset
  4120
    {
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4121
      SkipIfEqual skip_if(_masm, &DTraceAllocProbes, 0);
4889
81b0130673ef 6587322: dtrace probe object__alloc doesn't fire in some situations on amd64
kamg
parents: 4478
diff changeset
  4122
      // Trigger dtrace event for fastpath
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4123
      __ push(atos);
4889
81b0130673ef 6587322: dtrace probe object__alloc doesn't fire in some situations on amd64
kamg
parents: 4478
diff changeset
  4124
      __ call_VM_leaf(
81b0130673ef 6587322: dtrace probe object__alloc doesn't fire in some situations on amd64
kamg
parents: 4478
diff changeset
  4125
           CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_object_alloc), rax);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4126
      __ pop(atos);
4889
81b0130673ef 6587322: dtrace probe object__alloc doesn't fire in some situations on amd64
kamg
parents: 4478
diff changeset
  4127
    }
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4128
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
    __ jmp(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4132
  // slow case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
  __ bind(slow_case);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4134
  __ pop(rcx);   // restore stack pointer to what it was when we came in.
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4135
  __ bind(slow_case_no_pop);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4136
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4137
  Register rarg1 = LP64_ONLY(c_rarg1) NOT_LP64(rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4138
  Register rarg2 = LP64_ONLY(c_rarg2) NOT_LP64(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4139
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4140
  __ get_constant_pool(rarg1);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4141
  __ get_unsigned_2_byte_index_at_bcp(rarg2, 1);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4142
  call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::_new), rarg1, rarg2);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4143
   __ verify_oop(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4144
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
  // continue
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
  __ bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4149
void TemplateTable::newarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
  transition(itos, atos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4151
  Register rarg1 = LP64_ONLY(c_rarg1) NOT_LP64(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4152
  __ load_unsigned_byte(rarg1, at_bcp(1));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
  call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::newarray),
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4154
          rarg1, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
void TemplateTable::anewarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
  transition(itos, atos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4159
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4160
  Register rarg1 = LP64_ONLY(c_rarg1) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4161
  Register rarg2 = LP64_ONLY(c_rarg2) NOT_LP64(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4162
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4163
  __ get_unsigned_2_byte_index_at_bcp(rarg2, 1);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4164
  __ get_constant_pool(rarg1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
  call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::anewarray),
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4166
          rarg1, rarg2, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
void TemplateTable::arraylength() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
  transition(atos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4171
  __ null_check(rax, arrayOopDesc::length_offset_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4172
  __ movl(rax, Address(rax, arrayOopDesc::length_offset_in_bytes()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4174
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4175
void TemplateTable::checkcast() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4176
  transition(atos, atos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
  Label done, is_null, ok_is_subtype, quicked, resolved;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  4178
  __ testptr(rax, rax); // object is in rax
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
  __ jcc(Assembler::zero, is_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
  // Get cpool & tags index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
  __ get_cpool_and_tags(rcx, rdx); // rcx=cpool, rdx=tags array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
  __ get_unsigned_2_byte_index_at_bcp(rbx, 1); // rbx=index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
  // See if bytecode has already been quicked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
  __ cmpb(Address(rdx, rbx,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
                  Address::times_1,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4187
                  Array<u1>::base_offset_in_bytes()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
          JVM_CONSTANT_Class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
  __ jcc(Assembler::equal, quicked);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4190
  __ push(atos); // save receiver for result, and for GC
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4191
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::quicken_io_cc));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4192
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4193
  // vm_result_2 has metadata result
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4194
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4195
  // borrow rdi from locals
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4196
  __ get_thread(rdi);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4197
  __ get_vm_result_2(rax, rdi);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4198
  __ restore_locals();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4199
#else
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4200
  __ get_vm_result_2(rax, r15_thread);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4201
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4202
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
  __ pop_ptr(rdx); // restore receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
  __ jmpb(resolved);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
  // Get superklass in rax and subklass in rbx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
  __ bind(quicked);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  4208
  __ mov(rdx, rax); // Save object in rdx; rax needed for subtype check
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  4209
  __ load_resolved_klass_at_index(rax, rcx, rbx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
  __ bind(resolved);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4212
  __ load_klass(rbx, rdx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
  // Generate subtype check.  Blows rcx, rdi.  Object in rdx.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
  // Superklass in rax.  Subklass in rbx.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
  __ gen_subtype_check(rbx, ok_is_subtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
  // Come here on failure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
  __ push_ptr(rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
  // object is at TOS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
  __ jump(ExternalAddress(Interpreter::_throw_ClassCastException_entry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
  // Come here on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
  __ bind(ok_is_subtype);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  4225
  __ mov(rax, rdx); // Restore object in rdx
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4227
  // Collect counts on whether this check-cast sees NULLs a lot or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
    __ jmp(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
    __ bind(is_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4231
    __ profile_null_seen(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4232
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4233
    __ bind(is_null);   // same as 'done'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4235
  __ bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
void TemplateTable::instanceof() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
  transition(atos, itos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
  Label done, is_null, ok_is_subtype, quicked, resolved;
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
  4241
  __ testptr(rax, rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
  __ jcc(Assembler::zero, is_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
  // Get cpool & tags index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
  __ get_cpool_and_tags(rcx, rdx); // rcx=cpool, rdx=tags array
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
  __ get_unsigned_2_byte_index_at_bcp(rbx, 1); // rbx=index
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
  // See if bytecode has already been quicked
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
  __ cmpb(Address(rdx, rbx,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
                  Address::times_1,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4250
                  Array<u1>::base_offset_in_bytes()),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
          JVM_CONSTANT_Class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
  __ jcc(Assembler::equal, quicked);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4254
  __ push(atos); // save receiver for result, and for GC
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4255
  call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::quicken_io_cc));
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4256
  // vm_result_2 has metadata result
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4257
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4258
#ifndef _LP64
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4259
  // borrow rdi from locals
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4260
  __ get_thread(rdi);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4261
  __ get_vm_result_2(rax, rdi);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4262
  __ restore_locals();
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4263
#else
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  4264
  __ get_vm_result_2(rax, r15_thread);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4265
#endif
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4266
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
  __ pop_ptr(rdx); // restore receiver
7401
ebde7415b521 6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
coleenp
parents: 7397
diff changeset
  4268
  __ verify_oop(rdx);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4269
  __ load_klass(rdx, rdx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
  __ jmpb(resolved);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
  // Get superklass in rax and subklass in rdx
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
  __ bind(quicked);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  4274
  __ load_klass(rdx, rax);
55105
9ad765641e8f 8223213: Implement fast class initialization checks on x86-64
vlivanov
parents: 54921
diff changeset
  4275
  __ load_resolved_klass_at_index(rax, rcx, rbx);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
  __ bind(resolved);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
  // Generate subtype check.  Blows rcx, rdi
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
  // Superklass in rax.  Subklass in rdx.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
  __ gen_subtype_check(rdx, ok_is_subtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4283
  // Come here on failure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4284
  __ xorl(rax, rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
  __ jmpb(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
  // Come here on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
  __ bind(ok_is_subtype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
  __ movl(rax, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
  // Collect counts on whether this test sees NULLs a lot or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4292
    __ jmp(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4293
    __ bind(is_null);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
    __ profile_null_seen(rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
    __ bind(is_null);   // same as 'done'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
  __ bind(done);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4299
  // rax = 0: obj == NULL or  obj is not an instanceof the specified klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4300
  // rax = 1: obj != NULL and obj is     an instanceof the specified klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4302
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4303
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4304
//----------------------------------------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4305
// Breakpoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4306
void TemplateTable::_breakpoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4307
  // Note: We get here even if we are single stepping..
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4308
  // jbug insists on setting breakpoints at every bytecode
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4309
  // even if we are in single step mode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4311
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4312
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4313
  Register rarg = LP64_ONLY(c_rarg1) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4314
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4315
  // get the unpatched byte code
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4316
  __ get_method(rarg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4317
  __ call_VM(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4318
             CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4319
                              InterpreterRuntime::get_original_bytecode_at),
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4320
             rarg, rbcp);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4321
  __ mov(rbx, rax);  // why?
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4322
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4323
  // post the breakpoint event
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4324
  __ get_method(rarg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4325
  __ call_VM(noreg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4326
             CAST_FROM_FN_PTR(address, InterpreterRuntime::_breakpoint),
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4327
             rarg, rbcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4328
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4329
  // complete the execution of original bytecode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4330
  __ dispatch_only_normal(vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4333
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4334
// Exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4335
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4336
void TemplateTable::athrow() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4337
  transition(atos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4338
  __ null_check(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4339
  __ jump(ExternalAddress(Interpreter::throw_exception_entry()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4342
//-----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4343
// Synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
// Note: monitorenter & exit are symmetric routines; which is reflected
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4346
//       in the assembly code structure as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4347
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
// Stack layout:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4350
// [expressions  ] <--- rsp               = expression stack top
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
// ..
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4352
// [expressions  ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4353
// [monitor entry] <--- monitor block top = expression stack bot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4354
// ..
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4355
// [monitor entry]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
// [frame data   ] <--- monitor block bot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4357
// ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
// [saved rbp    ] <--- rbp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4359
void TemplateTable::monitorenter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4360
  transition(atos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4362
  // check for NULL object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4363
  __ null_check(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
51350
57565f7dcb2a 8205523: Explicit barriers for interpreter
rkennke
parents: 51178
diff changeset
  4365
  __ resolve(IS_NOT_NULL, rax);
57565f7dcb2a 8205523: Explicit barriers for interpreter
rkennke
parents: 51178
diff changeset
  4366
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4367
  const Address monitor_block_top(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4368
        rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
  const Address monitor_block_bot(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4370
        rbp, frame::interpreter_frame_initial_sp_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4371
  const int entry_size = frame::interpreter_frame_monitor_size() * wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4373
  Label allocated;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4375
  Register rtop = LP64_ONLY(c_rarg3) NOT_LP64(rcx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4376
  Register rbot = LP64_ONLY(c_rarg2) NOT_LP64(rbx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4377
  Register rmon = LP64_ONLY(c_rarg1) NOT_LP64(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4378
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4379
  // initialize entry pointer
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4380
  __ xorl(rmon, rmon); // points to free slot or NULL
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4381
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4382
  // find a free slot in the monitor block (result in rmon)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
    Label entry, loop, exit;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4385
    __ movptr(rtop, monitor_block_top); // points to current entry,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4386
                                        // starting with top-most entry
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4387
    __ lea(rbot, monitor_block_bot);    // points to word before bottom
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4388
                                        // of monitor block
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4389
    __ jmpb(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
    __ bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
    // check if current entry is used
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4393
    __ cmpptr(Address(rtop, BasicObjectLock::obj_offset_in_bytes()), (int32_t) NULL_WORD);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4394
    // if not used then remember entry in rmon
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4395
    __ cmovptr(Assembler::equal, rmon, rtop);   // cmov => cmovptr
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
    // check if current entry is for same object
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4397
    __ cmpptr(rax, Address(rtop, BasicObjectLock::obj_offset_in_bytes()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4398
    // if same object then stop searching
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4399
    __ jccb(Assembler::equal, exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4400
    // otherwise advance to next entry
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4401
    __ addptr(rtop, entry_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4402
    __ bind(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4403
    // check if bottom reached
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4404
    __ cmpptr(rtop, rbot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4405
    // if not at bottom then check this entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4406
    __ jcc(Assembler::notEqual, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4407
    __ bind(exit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4408
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4409
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4410
  __ testptr(rmon, rmon); // check if a slot has been found
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
  __ jcc(Assembler::notZero, allocated); // if found, continue with that one
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4413
  // allocate one if there's no free slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4414
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4415
    Label entry, loop;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4416
    // 1. compute new pointers          // rsp: old expression stack top
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4417
    __ movptr(rmon, monitor_block_bot); // rmon: old expression stack bottom
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4418
    __ subptr(rsp, entry_size);         // move expression stack top
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4419
    __ subptr(rmon, entry_size);        // move expression stack bottom
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4420
    __ mov(rtop, rsp);                  // set start value for copy loop
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4421
    __ movptr(monitor_block_bot, rmon); // set new monitor block bottom
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4422
    __ jmp(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4423
    // 2. move expression stack contents
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4424
    __ bind(loop);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4425
    __ movptr(rbot, Address(rtop, entry_size)); // load expression stack
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4426
                                                // word from old location
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4427
    __ movptr(Address(rtop, 0), rbot);          // and store it at new location
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4428
    __ addptr(rtop, wordSize);                  // advance to next word
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4429
    __ bind(entry);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4430
    __ cmpptr(rtop, rmon);                      // check if bottom reached
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4431
    __ jcc(Assembler::notEqual, loop);          // if not at bottom then
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4432
                                                // copy next word
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4433
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4434
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4435
  // call run-time routine
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4436
  // rmon: points to monitor entry
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4437
  __ bind(allocated);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4439
  // Increment bcp to point to the next bytecode, so exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4440
  // handling for async. exceptions work correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4441
  // The object has already been poped from the stack, so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4442
  // expression stack looks correct.
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4443
  __ increment(rbcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4445
  // store object
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4446
  __ movptr(Address(rmon, BasicObjectLock::obj_offset_in_bytes()), rax);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4447
  __ lock_object(rmon);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4449
  // check to make sure this monitor doesn't cause stack overflow after locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4450
  __ save_bcp();  // in case of exception
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4451
  __ generate_stack_overflow_check(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4453
  // The bcp has already been incremented. Just need to dispatch to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4454
  // next instruction.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4455
  __ dispatch_next(vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4457
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4458
void TemplateTable::monitorexit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4459
  transition(atos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4461
  // check for NULL object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4462
  __ null_check(rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4463
51350
57565f7dcb2a 8205523: Explicit barriers for interpreter
rkennke
parents: 51178
diff changeset
  4464
  __ resolve(IS_NOT_NULL, rax);
57565f7dcb2a 8205523: Explicit barriers for interpreter
rkennke
parents: 51178
diff changeset
  4465
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4466
  const Address monitor_block_top(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4467
        rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4468
  const Address monitor_block_bot(
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4469
        rbp, frame::interpreter_frame_initial_sp_offset * wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4470
  const int entry_size = frame::interpreter_frame_monitor_size() * wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4471
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4472
  Register rtop = LP64_ONLY(c_rarg1) NOT_LP64(rdx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4473
  Register rbot = LP64_ONLY(c_rarg2) NOT_LP64(rbx);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4474
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4475
  Label found;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4476
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4477
  // find matching slot
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4478
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4479
    Label entry, loop;
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4480
    __ movptr(rtop, monitor_block_top); // points to current entry,
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4481
                                        // starting with top-most entry
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4482
    __ lea(rbot, monitor_block_bot);    // points to word before bottom
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4483
                                        // of monitor block
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4484
    __ jmpb(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4485
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4486
    __ bind(loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4487
    // check if current entry is for same object
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4488
    __ cmpptr(rax, Address(rtop, BasicObjectLock::obj_offset_in_bytes()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
    // if same object then stop searching
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
    __ jcc(Assembler::equal, found);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
    // otherwise advance to next entry
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4492
    __ addptr(rtop, entry_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4493
    __ bind(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
    // check if bottom reached
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4495
    __ cmpptr(rtop, rbot);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
    // if not at bottom then check this entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
    __ jcc(Assembler::notEqual, loop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4498
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4500
  // error handling. Unlocking was not block-structured
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4501
  __ call_VM(noreg, CAST_FROM_FN_PTR(address,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4502
                   InterpreterRuntime::throw_illegal_monitor_state_exception));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4503
  __ should_not_reach_here();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
  // call run-time routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4506
  __ bind(found);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4507
  __ push_ptr(rax); // make sure object is on stack (contract with oopMaps)
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4508
  __ unlock_object(rtop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4509
  __ pop_ptr(rax); // discard object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4510
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4511
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4512
// Wide instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4513
void TemplateTable::wide() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4514
  transition(vtos, vtos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4515
  __ load_unsigned_byte(rbx, at_bcp(1));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4516
  ExternalAddress wtable((address)Interpreter::_wentry_point);
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4517
  __ jump(ArrayAddress(wtable, Address(noreg, rbx, Address::times_ptr)));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4518
  // Note: the rbcp increment step is part of the individual wide bytecode implementations
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4520
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4521
// Multi arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4522
void TemplateTable::multianewarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4523
  transition(vtos, atos);
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4524
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4525
  Register rarg = LP64_ONLY(c_rarg1) NOT_LP64(rax);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4526
  __ load_unsigned_byte(rax, at_bcp(3)); // get number of dimensions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4527
  // last dim is on top of stack; we want address of first one:
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4528
  // first_addr = last_addr + (ndims - 1) * stackElementSize - 1*wordsize
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4529
  // the latter wordSize to point to the beginning of the array.
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4530
  __ lea(rarg, Address(rsp, rax, Interpreter::stackElementScale(), -wordSize));
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4531
  call_VM(rax, CAST_FROM_FN_PTR(address, InterpreterRuntime::multianewarray), rarg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4532
  __ load_unsigned_byte(rbx, at_bcp(3));
29461
3f6358b7c82c 8013393: Merge template interpreter files for x86 _32 and _64.
mockner
parents: 28837
diff changeset
  4533
  __ lea(rsp, Address(rsp, rbx, Interpreter::stackElementScale()));  // get rid of counts
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4534
}