author | naoto |
Tue, 09 Jul 2019 08:05:38 -0700 | |
changeset 55627 | 9c1885fb2a42 |
parent 50087 | cd4bf3b1ee77 |
permissions | -rw-r--r-- |
42664 | 1 |
/* |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
42664 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "jvmci/jvmciCodeInstaller.hpp" |
|
26 |
#include "jvmci/jvmciRuntime.hpp" |
|
27 |
#include "jvmci/jvmciCompilerToVM.hpp" |
|
28 |
#include "jvmci/jvmciJavaClasses.hpp" |
|
29 |
#include "oops/oop.inline.hpp" |
|
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
47216
diff
changeset
|
30 |
#include "runtime/handles.inline.hpp" |
42664 | 31 |
#include "runtime/sharedRuntime.hpp" |
32 |
#include "vmreg_arm.inline.hpp" |
|
33 |
||
34 |
jint CodeInstaller::pd_next_offset(NativeInstruction* inst, jint pc_offset, Handle method, TRAPS) { |
|
35 |
Unimplemented(); |
|
36 |
return 0; |
|
37 |
} |
|
38 |
||
39 |
void CodeInstaller::pd_patch_OopConstant(int pc_offset, Handle constant, TRAPS) { |
|
40 |
Unimplemented(); |
|
41 |
} |
|
42 |
||
43 |
void CodeInstaller::pd_patch_MetaspaceConstant(int pc_offset, Handle constant, TRAPS) { |
|
44 |
Unimplemented(); |
|
45 |
} |
|
46 |
||
47 |
void CodeInstaller::pd_patch_DataSectionReference(int pc_offset, int data_offset, TRAPS) { |
|
48 |
Unimplemented(); |
|
49 |
} |
|
50 |
||
51 |
void CodeInstaller::pd_relocate_ForeignCall(NativeInstruction* inst, jlong foreign_call_destination, TRAPS) { |
|
52 |
Unimplemented(); |
|
53 |
} |
|
54 |
||
50087
cd4bf3b1ee77
8201604: ARM64 - Build failure after JDK-8193260
bulasevich
parents:
49480
diff
changeset
|
55 |
void CodeInstaller::pd_relocate_JavaMethod(CodeBuffer &cbuf, Handle hotspot_method, jint pc_offset, TRAPS) { |
42664 | 56 |
Unimplemented(); |
57 |
} |
|
58 |
||
59 |
void CodeInstaller::pd_relocate_poll(address pc, jint mark, TRAPS) { |
|
60 |
Unimplemented(); |
|
61 |
} |
|
62 |
||
63 |
// convert JVMCI register indices (as used in oop maps) to HotSpot registers |
|
64 |
VMReg CodeInstaller::get_hotspot_reg(jint jvmci_reg, TRAPS) { |
|
65 |
return NULL; |
|
66 |
} |
|
67 |
||
68 |
bool CodeInstaller::is_general_purpose_reg(VMReg hotspotRegister) { |
|
69 |
return false; |
|
70 |
} |