author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46727 | hotspot/src/cpu/sparc/vm/interpreterRT_sparc.hpp@6e4a84748e2c |
child 49480 | d7df2dd501ce |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
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:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef CPU_SPARC_VM_INTERPRETERRT_SPARC_HPP |
26 |
#define CPU_SPARC_VM_INTERPRETERRT_SPARC_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
||
1 | 30 |
static int binary_search(int key, LookupswitchPair* array, int n); |
31 |
||
32 |
static address iload (JavaThread* thread); |
|
33 |
static address aload (JavaThread* thread); |
|
34 |
static address istore(JavaThread* thread); |
|
35 |
static address astore(JavaThread* thread); |
|
36 |
static address iinc (JavaThread* thread); |
|
37 |
||
38 |
||
39 |
||
40 |
// native method calls |
|
41 |
||
42 |
class SignatureHandlerGenerator: public NativeSignatureIterator { |
|
43 |
private: |
|
44 |
MacroAssembler* _masm; |
|
45 |
||
46 |
void pass_word(int size_of_arg, int offset_in_arg); |
|
47 |
void pass_int() { pass_word(1, 0); } |
|
48 |
void pass_long(); |
|
49 |
void pass_double(); |
|
50 |
void pass_float(); |
|
51 |
void pass_object(); |
|
52 |
||
53 |
public: |
|
54 |
// Creation |
|
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
7397
diff
changeset
|
55 |
SignatureHandlerGenerator(const methodHandle& method, CodeBuffer* buffer) : NativeSignatureIterator(method) { |
1 | 56 |
_masm = new MacroAssembler(buffer); |
57 |
} |
|
58 |
||
59 |
// Code generation |
|
60 |
void generate( uint64_t fingerprint ); |
|
61 |
}; |
|
7397 | 62 |
|
63 |
#endif // CPU_SPARC_VM_INTERPRETERRT_SPARC_HPP |