author | stefank |
Thu, 09 May 2019 14:28:30 +0200 | |
changeset 54786 | ebf733a324d4 |
parent 49449 | ef5d5d343e2a |
child 57710 | 05ff6e27de45 |
permissions | -rw-r--r-- |
4013 | 1 |
/* |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
22872
diff
changeset
|
2 |
* Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. |
9103 | 3 |
* Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc. |
4013 | 4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4745
diff
changeset
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4745
diff
changeset
|
21 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4745
diff
changeset
|
22 |
* questions. |
4013 | 23 |
* |
24 |
*/ |
|
25 |
||
7397 | 26 |
#include "precompiled.hpp" |
27 |
#include "asm/assembler.hpp" |
|
28 |
#include "assembler_zero.inline.hpp" |
|
29 |
#include "code/debugInfoRec.hpp" |
|
30 |
#include "code/icBuffer.hpp" |
|
31 |
#include "code/vtableStubs.hpp" |
|
32 |
#include "interpreter/interpreter.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10260
diff
changeset
|
33 |
#include "oops/compiledICHolder.hpp" |
49449
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
47687
diff
changeset
|
34 |
#include "runtime/interfaceSupport.inline.hpp" |
7397 | 35 |
#include "runtime/sharedRuntime.hpp" |
36 |
#include "runtime/vframeArray.hpp" |
|
37 |
#include "vmreg_zero.inline.hpp" |
|
14294 | 38 |
|
7397 | 39 |
#ifdef COMPILER1 |
40 |
#include "c1/c1_Runtime1.hpp" |
|
41 |
#endif |
|
42 |
#ifdef COMPILER2 |
|
43 |
#include "opto/runtime.hpp" |
|
44 |
#endif |
|
4013 | 45 |
|
14294 | 46 |
|
47 |
static address zero_null_code_stub() { |
|
48 |
address start = ShouldNotCallThisStub(); |
|
49 |
return start; |
|
50 |
} |
|
51 |
||
4013 | 52 |
int SharedRuntime::java_calling_convention(const BasicType *sig_bt, |
53 |
VMRegPair *regs, |
|
54 |
int total_args_passed, |
|
55 |
int is_outgoing) { |
|
56 |
return 0; |
|
57 |
} |
|
58 |
||
59 |
AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters( |
|
60 |
MacroAssembler *masm, |
|
61 |
int total_args_passed, |
|
62 |
int comp_args_on_stack, |
|
63 |
const BasicType *sig_bt, |
|
4745
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
64 |
const VMRegPair *regs, |
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
65 |
AdapterFingerPrint *fingerprint) { |
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
66 |
return AdapterHandlerLibrary::new_entry( |
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
67 |
fingerprint, |
14294 | 68 |
CAST_FROM_FN_PTR(address,zero_null_code_stub), |
69 |
CAST_FROM_FN_PTR(address,zero_null_code_stub), |
|
70 |
CAST_FROM_FN_PTR(address,zero_null_code_stub)); |
|
4013 | 71 |
} |
72 |
||
73 |
nmethod *SharedRuntime::generate_native_wrapper(MacroAssembler *masm, |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
22872
diff
changeset
|
74 |
const methodHandle& method, |
9103 | 75 |
int compile_id, |
76 |
BasicType *sig_bt, |
|
77 |
VMRegPair *regs, |
|
4013 | 78 |
BasicType ret_type) { |
79 |
ShouldNotCallThis(); |
|
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
14294
diff
changeset
|
80 |
return NULL; |
4013 | 81 |
} |
82 |
||
83 |
int Deoptimization::last_frame_adjust(int callee_parameters, |
|
84 |
int callee_locals) { |
|
85 |
return 0; |
|
86 |
} |
|
87 |
||
88 |
uint SharedRuntime::out_preserve_stack_slots() { |
|
89 |
ShouldNotCallThis(); |
|
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
14294
diff
changeset
|
90 |
return 0; |
4013 | 91 |
} |
92 |
||
14294 | 93 |
JRT_LEAF(void, zero_stub()) |
94 |
ShouldNotCallThis(); |
|
95 |
JRT_END |
|
96 |
||
4013 | 97 |
static RuntimeStub* generate_empty_runtime_stub(const char* name) { |
14294 | 98 |
return CAST_FROM_FN_PTR(RuntimeStub*,zero_stub); |
4013 | 99 |
} |
100 |
||
101 |
static SafepointBlob* generate_empty_safepoint_blob() { |
|
14294 | 102 |
return CAST_FROM_FN_PTR(SafepointBlob*,zero_stub); |
4013 | 103 |
} |
104 |
||
10260
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
105 |
static DeoptimizationBlob* generate_empty_deopt_blob() { |
14294 | 106 |
return CAST_FROM_FN_PTR(DeoptimizationBlob*,zero_stub); |
10260
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
107 |
} |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
108 |
|
4013 | 109 |
|
10260
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
110 |
void SharedRuntime::generate_deopt_blob() { |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
111 |
_deopt_blob = generate_empty_deopt_blob(); |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
112 |
} |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
113 |
|
14294 | 114 |
SafepointBlob* SharedRuntime::generate_handler_blob(address call_ptr, int poll_type) { |
10260
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
115 |
return generate_empty_safepoint_blob(); |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
116 |
} |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
117 |
|
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
118 |
RuntimeStub* SharedRuntime::generate_resolve_blob(address destination, const char* name) { |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
119 |
return generate_empty_runtime_stub("resolve_blob"); |
4013 | 120 |
} |
121 |
||
37439
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
122 |
size_t SharedRuntime::trampoline_size() { |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
123 |
ShouldNotCallThis(); |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
124 |
return 0; |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
125 |
} |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
126 |
|
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
127 |
void SharedRuntime::generate_trampoline(MacroAssembler *masm, address destination) { |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
128 |
ShouldNotCallThis(); |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
129 |
return; |
e8970711113b
8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents:
33593
diff
changeset
|
130 |
} |
14294 | 131 |
|
4013 | 132 |
int SharedRuntime::c_calling_convention(const BasicType *sig_bt, |
133 |
VMRegPair *regs, |
|
22832
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
19336
diff
changeset
|
134 |
VMRegPair *regs2, |
4013 | 135 |
int total_args_passed) { |
136 |
ShouldNotCallThis(); |
|
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
14294
diff
changeset
|
137 |
return 0; |
4013 | 138 |
} |