comparison src/cpu/sparc/vm/graalCodeInstaller_sparc.hpp @ 10411:67fa9b3e10ed

renamed codeInstaller_<cpu>.hpp to graalCodeInstaller_<cpu>.hpp
author Doug Simon <doug.simon@oracle.com>
date Wed, 19 Jun 2013 15:46:28 +0200
parents src/cpu/sparc/vm/codeInstaller_sparc.hpp@0f7ca53be929
children 6ff467cdb105
comparison
equal deleted inserted replaced
10410:9062da84cd75 10411:67fa9b3e10ed
1 /*
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
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 #ifndef CPU_SPARC_VM_CODEINSTALLER_SPARC_HPP
24 #define CPU_SPARC_VM_CODEINSTALLER_SPARC_HPP
25
26 inline jint CodeInstaller::pd_next_offset(NativeInstruction* inst, jint pc_offset, oop method) {
27 fatal("CodeInstaller::pd_next_offset - sparc unimp");
28 return 0;
29 }
30
31 inline void CodeInstaller::pd_site_DataPatch(oop constant, oop kind, bool inlined,
32 address instruction, int alignment, char typeChar) {
33 fatal("CodeInstaller::pd_site_DataPatch - sparc unimp");
34 }
35
36 inline void CodeInstaller::pd_relocate_CodeBlob(CodeBlob* cb, NativeInstruction* inst) {
37 fatal("CodeInstaller::pd_relocate_CodeBlob - sparc unimp");
38 }
39
40 inline void CodeInstaller::pd_relocate_ForeignCall(NativeInstruction* inst, jlong foreign_call_destination) {
41 fatal("CodeInstaller::pd_relocate_ForeignCall - sparc unimp");
42 }
43
44 inline void CodeInstaller::pd_relocate_JavaMethod(oop method, jint pc_offset) {
45 fatal("CodeInstaller::pd_relocate_JavaMethod - sparc unimp");
46 }
47
48 inline int32_t* CodeInstaller::pd_locate_operand(address instruction) {
49 fatal("CodeInstaller::pd_locate_operand - sparc unimp");
50 return (int32_t*)0;
51 }
52
53 #endif // CPU_SPARC_VM_CODEINSTALLER_SPARC_HPP