src/hotspot/cpu/x86/interpreterRT_x86_32.cpp
author coleenp
Fri, 12 Apr 2019 09:30:17 -0400
changeset 54523 5df03f58d25b
parent 49480 d7df2dd501ce
child 54786 ebf733a324d4
permissions -rw-r--r--
8222297: IRT_ENTRY/IRT_LEAF etc are the same as JRT Summary: Replace IRT entry points with JRT. Reviewed-by: lfoltan, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54523
5df03f58d25b 8222297: IRT_ENTRY/IRT_LEAF etc are the same as JRT
coleenp
parents: 49480
diff changeset
     2
 * Copyright (c) 1998, 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: 6176
diff changeset
    25
#include "precompiled.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    26
#include "interpreter/interp_masm.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    27
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    28
#include "interpreter/interpreterRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "memory/allocation.inline.hpp"
49359
59f6547e151f 8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents: 47216
diff changeset
    30
#include "memory/universe.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    31
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    32
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    33
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    34
#include "runtime/icache.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49359
diff changeset
    35
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    36
#include "runtime/signature.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#define __ _masm->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// Implementation of SignatureHandlerGenerator
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    43
InterpreterRuntime::SignatureHandlerGenerator::SignatureHandlerGenerator(const methodHandle& method, CodeBuffer* buffer) :
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    44
    NativeSignatureIterator(method) {
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    45
  _masm = new MacroAssembler(buffer);
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    46
#ifdef AMD64
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    47
#ifdef _WIN64
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    48
  _num_args = (method->is_static() ? 1 : 0);
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    49
  _stack_offset = (Argument::n_int_register_parameters_c+1)* wordSize; // don't overwrite return address
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    50
#else
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    51
  _num_int_args = (method->is_static() ? 1 : 0);
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    52
  _num_fp_args = 0;
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    53
  _stack_offset = wordSize; // don't overwrite return address
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    54
#endif // _WIN64
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    55
#endif // AMD64
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    56
}
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    57
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void InterpreterRuntime::SignatureHandlerGenerator::pass_int() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  move(offset(), jni_offset() + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    62
void InterpreterRuntime::SignatureHandlerGenerator::pass_float() {
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    63
  move(offset(), jni_offset() + 1);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    64
}
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    65
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
void InterpreterRuntime::SignatureHandlerGenerator::pass_long() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
   move(offset(), jni_offset() + 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
   move(offset() + 1, jni_offset() + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
void InterpreterRuntime::SignatureHandlerGenerator::pass_object() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  box (offset(), jni_offset() + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
void InterpreterRuntime::SignatureHandlerGenerator::move(int from_offset, int to_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  __ movl(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  __ movl(Address(to(), to_offset * wordSize), temp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
void InterpreterRuntime::SignatureHandlerGenerator::box(int from_offset, int to_offset) {
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    82
  __ lea(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    83
  __ cmpptr(Address(from(), Interpreter::local_offset_in_bytes(from_offset)), (int32_t)NULL_WORD); // do not use temp() to avoid AGI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  Label L;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  __ jcc(Assembler::notZero, L);
1888
bbf498fb4354 6787106: Hotspot 32 bit build fails on platforms having different definitions for intptr_t & int32_t
xlu
parents: 1217
diff changeset
    86
  __ movptr(temp(), NULL_WORD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  __ bind(L);
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    88
  __ movptr(Address(to(), to_offset * wordSize), temp());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void InterpreterRuntime::SignatureHandlerGenerator::generate( uint64_t fingerprint) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // generate code to handle arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  iterate(fingerprint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // return result handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  __ lea(rax,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
         ExternalAddress((address)Interpreter::result_handler(method()->result_type())));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // return
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  __ ret(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  __ flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
Register InterpreterRuntime::SignatureHandlerGenerator::from()       { return rdi; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
Register InterpreterRuntime::SignatureHandlerGenerator::to()         { return rsp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
Register InterpreterRuntime::SignatureHandlerGenerator::temp()       { return rcx; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// Implementation of SignatureHandlerLibrary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
void SignatureHandlerLibrary::pd_set_handler(address handler) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
class SlowSignatureHandler: public NativeSignatureIterator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  address   _from;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  intptr_t* _to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  virtual void pass_int() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 2105
diff changeset
   120
    _from -= Interpreter::stackElementSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   123
  virtual void pass_float() {
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   124
    *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   125
    _from -= Interpreter::stackElementSize;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   126
  }
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   127
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  virtual void pass_long() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    _to[0] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _to[1] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    _to += 2;
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 2105
diff changeset
   132
    _from -= 2*Interpreter::stackElementSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  virtual void pass_object() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    // pass address of from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    intptr_t from_addr = (intptr_t)(_from + Interpreter::local_offset_in_bytes(0));
1909
952b42dad1fc 6795913: A few remaining wrong casts need to be fixed for building hotspot successfully on Mac OS.
xlu
parents: 1888
diff changeset
   138
    *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr;
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 2105
diff changeset
   139
    _from -= Interpreter::stackElementSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
 public:
46727
6e4a84748e2c 8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents: 27471
diff changeset
   143
  SlowSignatureHandler(const methodHandle& method, address from, intptr_t* to) :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    NativeSignatureIterator(method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    _from = from;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    _to   = to + (is_static() ? 2 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
54523
5df03f58d25b 8222297: IRT_ENTRY/IRT_LEAF etc are the same as JRT
coleenp
parents: 49480
diff changeset
   150
JRT_ENTRY(address, InterpreterRuntime::slow_signature_handler(JavaThread* thread, Method* method, intptr_t* from, intptr_t* to))
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   151
  methodHandle m(thread, (Method*)method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  assert(m->is_native(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // handle arguments
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 13728
diff changeset
   154
  SlowSignatureHandler(m, (address)from, to + 1).iterate((uint64_t)CONST64(-1));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // return result handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  return Interpreter::result_handler(m->result_type());
54523
5df03f58d25b 8222297: IRT_ENTRY/IRT_LEAF etc are the same as JRT
coleenp
parents: 49480
diff changeset
   157
JRT_END