1 /*
2 * Copyright (c) 2011, 2017, 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
24 #ifndef SHARE_VM_JVMCI_JVMCI_COMPILER_TO_VM_HPP
25 #define SHARE_VM_JVMCI_JVMCI_COMPILER_TO_VM_HPP
26
27 #include "prims/jni.h"
28 #include "runtime/javaCalls.hpp"
29 #include "jvmci/jvmciJavaClasses.hpp"
30
31 class CompilerToVM {
32 public:
33 class Data {
34 friend class JVMCIVMStructs;
35
36 private:
37 static int Klass_vtable_start_offset;
38 static int Klass_vtable_length_offset;
39
40 static int Method_extra_stack_entries;
41
42 static address SharedRuntime_ic_miss_stub;
43 static address SharedRuntime_handle_wrong_method_stub;
44 static address SharedRuntime_deopt_blob_unpack;
45 static address SharedRuntime_deopt_blob_uncommon_trap;
46
47 static size_t ThreadLocalAllocBuffer_alignment_reserve;
48
49 static CollectedHeap* Universe_collectedHeap;
50 static int Universe_base_vtable_size;
51 static address Universe_narrow_oop_base;
52 static int Universe_narrow_oop_shift;
53 static address Universe_narrow_klass_base;
54 static int Universe_narrow_klass_shift;
55 static uintptr_t Universe_verify_oop_mask;
56 static uintptr_t Universe_verify_oop_bits;
57 static void* Universe_non_oop_bits;
58
59 static bool _supports_inline_contig_alloc;
60 static HeapWord** _heap_end_addr;
61 static HeapWord* volatile* _heap_top_addr;
62 static int _max_oop_map_stack_offset;
63
64 static jbyte* cardtable_start_address;
65 static int cardtable_shift;
66
67 static int vm_page_size;
68
69 static address dsin;
70 static address dcos;
71 static address dtan;
72 static address dexp;
73 static address dlog;
74 static address dlog10;
75 static address dpow;
76
77 public:
78 static void initialize();
79
80 static int max_oop_map_stack_offset() {
81 assert(_max_oop_map_stack_offset > 0, "must be initialized");
82 return Data::_max_oop_map_stack_offset;
83 }
84 };
85
86 static JNINativeMethod methods[];
87
88 static objArrayHandle initialize_intrinsics(TRAPS);
89 public:
90 static int methods_count();
91
92 static inline Method* asMethod(jobject jvmci_method) {
93 return (Method*) (address) HotSpotResolvedJavaMethodImpl::metaspaceMethod(jvmci_method);
94 }
95
96 static inline Method* asMethod(Handle jvmci_method) {
97 return (Method*) (address) HotSpotResolvedJavaMethodImpl::metaspaceMethod(jvmci_method);
98 }
99
100 static inline Method* asMethod(oop jvmci_method) {
101 return (Method*) (address) HotSpotResolvedJavaMethodImpl::metaspaceMethod(jvmci_method);
102 }
103
104 static inline ConstantPool* asConstantPool(jobject jvmci_constant_pool) {
105 return (ConstantPool*) (address) HotSpotConstantPool::metaspaceConstantPool(jvmci_constant_pool);
106 }
107
108 static inline ConstantPool* asConstantPool(Handle jvmci_constant_pool) {
109 return (ConstantPool*) (address) HotSpotConstantPool::metaspaceConstantPool(jvmci_constant_pool);
110 }
111
112 static inline ConstantPool* asConstantPool(oop jvmci_constant_pool) {
113 return (ConstantPool*) (address) HotSpotConstantPool::metaspaceConstantPool(jvmci_constant_pool);
114 }
115
116 static inline Klass* asKlass(jobject jvmci_type) {
117 return java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(jvmci_type));
118 }
119
120 static inline Klass* asKlass(Handle jvmci_type) {
121 return java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(jvmci_type));
122 }
123
124 static inline Klass* asKlass(oop jvmci_type) {
125 return java_lang_Class::as_Klass(HotSpotResolvedObjectTypeImpl::javaClass(jvmci_type));
126 }
127
128 static inline Klass* asKlass(jlong metaspaceKlass) {
129 return (Klass*) (address) metaspaceKlass;
130 }
131
132 static inline MethodData* asMethodData(jlong metaspaceMethodData) {
133 return (MethodData*) (address) metaspaceMethodData;
134 }
135
136 static oop get_jvmci_method(const methodHandle& method, TRAPS);
137
138 static oop get_jvmci_type(Klass* klass, TRAPS);
139 };
140
141 class JavaArgumentUnboxer : public SignatureIterator {
142 protected:
143 JavaCallArguments* _jca;
144 arrayOop _args;
145 int _index;
146
147 Handle next_arg(BasicType expectedType) {
148 assert(_index < _args->length(), "out of bounds");
149 oop arg=((objArrayOop) (_args))->obj_at(_index++);
150 assert(expectedType == T_OBJECT || java_lang_boxing_object::is_instance(arg, expectedType), "arg type mismatch");
151 return Handle(Thread::current(), arg);
152 }
153
154 public:
155 JavaArgumentUnboxer(Symbol* signature, JavaCallArguments* jca, arrayOop args, bool is_static) : SignatureIterator(signature) {
156 this->_return_type = T_ILLEGAL;
157 _jca = jca;
158 _index = 0;
159 _args = args;
160 if (!is_static) {
161 _jca->push_oop(next_arg(T_OBJECT));
162 }
163 iterate();
164 assert(_index == args->length(), "arg count mismatch with signature");
165 }
166
167 inline void do_bool() { if (!is_return_type()) _jca->push_int(next_arg(T_BOOLEAN)->bool_field(java_lang_boxing_object::value_offset_in_bytes(T_BOOLEAN))); }
168 inline void do_char() { if (!is_return_type()) _jca->push_int(next_arg(T_CHAR)->char_field(java_lang_boxing_object::value_offset_in_bytes(T_CHAR))); }
169 inline void do_short() { if (!is_return_type()) _jca->push_int(next_arg(T_SHORT)->short_field(java_lang_boxing_object::value_offset_in_bytes(T_SHORT))); }
170 inline void do_byte() { if (!is_return_type()) _jca->push_int(next_arg(T_BYTE)->byte_field(java_lang_boxing_object::value_offset_in_bytes(T_BYTE))); }
171 inline void do_int() { if (!is_return_type()) _jca->push_int(next_arg(T_INT)->int_field(java_lang_boxing_object::value_offset_in_bytes(T_INT))); }
172
173 inline void do_long() { if (!is_return_type()) _jca->push_long(next_arg(T_LONG)->long_field(java_lang_boxing_object::value_offset_in_bytes(T_LONG))); }
174 inline void do_float() { if (!is_return_type()) _jca->push_float(next_arg(T_FLOAT)->float_field(java_lang_boxing_object::value_offset_in_bytes(T_FLOAT))); }
175 inline void do_double() { if (!is_return_type()) _jca->push_double(next_arg(T_DOUBLE)->double_field(java_lang_boxing_object::value_offset_in_bytes(T_DOUBLE))); }
176
177 inline void do_object() { _jca->push_oop(next_arg(T_OBJECT)); }
178 inline void do_object(int begin, int end) { if (!is_return_type()) _jca->push_oop(next_arg(T_OBJECT)); }
179 inline void do_array(int begin, int end) { if (!is_return_type()) _jca->push_oop(next_arg(T_OBJECT)); }
180 inline void do_void() { }
181 };
182
183 #endif // SHARE_VM_JVMCI_JVMCI_COMPILER_TO_VM_HPP
--- EOF ---