author | duke |
Wed, 05 Jul 2017 20:05:23 +0200 | |
changeset 27222 | 422e90d83a4e |
parent 22872 | b6902ee5bc8d |
child 33593 | 60764a78fa5c |
permissions | -rw-r--r-- |
4013 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
19336
diff
changeset
|
2 |
* Copyright (c) 2003, 2013, 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" |
7397 | 34 |
#include "prims/jvmtiRedefineClassesTrace.hpp" |
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 |
|
45 |
#ifdef SHARK |
|
46 |
#include "compiler/compileBroker.hpp" |
|
47 |
#include "shark/sharkCompiler.hpp" |
|
48 |
#endif |
|
4013 | 49 |
|
50 |
||
14294 | 51 |
|
52 |
static address zero_null_code_stub() { |
|
53 |
address start = ShouldNotCallThisStub(); |
|
54 |
return start; |
|
55 |
} |
|
56 |
||
4013 | 57 |
int SharedRuntime::java_calling_convention(const BasicType *sig_bt, |
58 |
VMRegPair *regs, |
|
59 |
int total_args_passed, |
|
60 |
int is_outgoing) { |
|
61 |
return 0; |
|
62 |
} |
|
63 |
||
64 |
AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters( |
|
65 |
MacroAssembler *masm, |
|
66 |
int total_args_passed, |
|
67 |
int comp_args_on_stack, |
|
68 |
const BasicType *sig_bt, |
|
4745
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
69 |
const VMRegPair *regs, |
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
70 |
AdapterFingerPrint *fingerprint) { |
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
71 |
return AdapterHandlerLibrary::new_entry( |
5ec280d96474
6920970: Zero build fixes after 6849984 and 6911204
twisti
parents:
4448
diff
changeset
|
72 |
fingerprint, |
14294 | 73 |
CAST_FROM_FN_PTR(address,zero_null_code_stub), |
74 |
CAST_FROM_FN_PTR(address,zero_null_code_stub), |
|
75 |
CAST_FROM_FN_PTR(address,zero_null_code_stub)); |
|
4013 | 76 |
} |
77 |
||
78 |
nmethod *SharedRuntime::generate_native_wrapper(MacroAssembler *masm, |
|
79 |
methodHandle method, |
|
9103 | 80 |
int compile_id, |
81 |
BasicType *sig_bt, |
|
82 |
VMRegPair *regs, |
|
4013 | 83 |
BasicType ret_type) { |
4448 | 84 |
#ifdef SHARK |
85 |
return SharkCompiler::compiler()->generate_native_wrapper(masm, |
|
86 |
method, |
|
9103 | 87 |
compile_id, |
88 |
sig_bt, |
|
4448 | 89 |
ret_type); |
90 |
#else |
|
4013 | 91 |
ShouldNotCallThis(); |
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
14294
diff
changeset
|
92 |
return NULL; |
4448 | 93 |
#endif // SHARK |
4013 | 94 |
} |
95 |
||
96 |
int Deoptimization::last_frame_adjust(int callee_parameters, |
|
97 |
int callee_locals) { |
|
98 |
return 0; |
|
99 |
} |
|
100 |
||
101 |
uint SharedRuntime::out_preserve_stack_slots() { |
|
102 |
ShouldNotCallThis(); |
|
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
14294
diff
changeset
|
103 |
return 0; |
4013 | 104 |
} |
105 |
||
14294 | 106 |
JRT_LEAF(void, zero_stub()) |
107 |
ShouldNotCallThis(); |
|
108 |
JRT_END |
|
109 |
||
4013 | 110 |
static RuntimeStub* generate_empty_runtime_stub(const char* name) { |
14294 | 111 |
return CAST_FROM_FN_PTR(RuntimeStub*,zero_stub); |
4013 | 112 |
} |
113 |
||
114 |
static SafepointBlob* generate_empty_safepoint_blob() { |
|
14294 | 115 |
return CAST_FROM_FN_PTR(SafepointBlob*,zero_stub); |
4013 | 116 |
} |
117 |
||
10260
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
118 |
static DeoptimizationBlob* generate_empty_deopt_blob() { |
14294 | 119 |
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
|
120 |
} |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
121 |
|
4013 | 122 |
|
10260
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
123 |
void SharedRuntime::generate_deopt_blob() { |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
124 |
_deopt_blob = generate_empty_deopt_blob(); |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
125 |
} |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
126 |
|
14294 | 127 |
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
|
128 |
return generate_empty_safepoint_blob(); |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
129 |
} |
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
130 |
|
b7007c4de557
7071823: Zero: zero/shark doesn't build after b147-fcs
twisti
parents:
9103
diff
changeset
|
131 |
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
|
132 |
return generate_empty_runtime_stub("resolve_blob"); |
4013 | 133 |
} |
134 |
||
14294 | 135 |
|
4013 | 136 |
int SharedRuntime::c_calling_convention(const BasicType *sig_bt, |
137 |
VMRegPair *regs, |
|
22832
03720a5b7595
8024344: PPC64 (part 112): C argument in register AND stack slot.
goetz
parents:
19336
diff
changeset
|
138 |
VMRegPair *regs2, |
4013 | 139 |
int total_args_passed) { |
140 |
ShouldNotCallThis(); |
|
19336
ddceb0657500
8022956: Clang: enable return type warnings on BSD
twisti
parents:
14294
diff
changeset
|
141 |
return 0; |
4013 | 142 |
} |