annotate src/share/vm/interpreter/interpreterRuntime.hpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a61af66fc99e
children d1605aabd0a1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // The InterpreterRuntime is called by the interpreter for everything
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // that cannot/should not be dealt with in assembly and needs C support.
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class InterpreterRuntime: AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 friend class BytecodeClosure; // for method and bcp
a61af66fc99e Initial load
duke
parents:
diff changeset
30 friend class PrintingClosure; // for method and bcp
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // Helper functions to access current interpreter state
a61af66fc99e Initial load
duke
parents:
diff changeset
34 static frame last_frame(JavaThread *thread) { return thread->last_frame(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
35 static methodOop method(JavaThread *thread) { return last_frame(thread).interpreter_frame_method(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
36 static address bcp(JavaThread *thread) { return last_frame(thread).interpreter_frame_bcp(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static void set_bcp_and_mdp(address bcp, JavaThread*thread);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
38 static Bytecodes::Code code(JavaThread *thread) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
39 // pass method to avoid calling unsafe bcp_to_method (partial fix 4926272)
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
40 return Bytecodes::code_at(bcp(thread), method(thread));
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
41 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static bool already_resolved(JavaThread *thread) { return cache_entry(thread)->is_resolved(code(thread)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
43 static int one_byte_index(JavaThread *thread) { return bcp(thread)[1]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 static int two_byte_index(JavaThread *thread) { return Bytes::get_Java_u2(bcp(thread) + 1); }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static int number_of_dimensions(JavaThread *thread) { return bcp(thread)[3]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static ConstantPoolCacheEntry* cache_entry(JavaThread *thread) { return method(thread)->constants()->cache()->entry_at(Bytes::get_native_u2(bcp(thread) + 1)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 static void note_trap(JavaThread *thread, int reason, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Constants
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static void ldc (JavaThread* thread, bool wide);
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
54 static void _new (JavaThread* thread, constantPoolOopDesc* pool, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static void newarray (JavaThread* thread, BasicType type, jint size);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static void anewarray (JavaThread* thread, constantPoolOopDesc* pool, int index, jint size);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static void multianewarray(JavaThread* thread, jint* first_size_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static void register_finalizer(JavaThread* thread, oopDesc* obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Quicken instance-of and check-cast bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static void quicken_io_cc(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Exceptions thrown by the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static void throw_AbstractMethodError(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 static void throw_IncompatibleClassChangeError(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 static void throw_StackOverflowError(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static void throw_ArrayIndexOutOfBoundsException(JavaThread* thread, char* name, jint index);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static void throw_ClassCastException(JavaThread* thread, oopDesc* obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static void create_exception(JavaThread* thread, char* name, char* message);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static void create_klass_exception(JavaThread* thread, char* name, oopDesc* obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 static address exception_handler_for_exception(JavaThread* thread, oopDesc* exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static void throw_pending_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Statics & fields
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static void resolve_get_put(JavaThread* thread, Bytecodes::Code bytecode);
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Synchronization
a61af66fc99e Initial load
duke
parents:
diff changeset
78 static void monitorenter(JavaThread* thread, BasicObjectLock* elem);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static void monitorexit (JavaThread* thread, BasicObjectLock* elem);
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static void throw_illegal_monitor_state_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static void new_illegal_monitor_state_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // Calls
a61af66fc99e Initial load
duke
parents:
diff changeset
85 static void resolve_invoke (JavaThread* thread, Bytecodes::Code bytecode);
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Breakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static void _breakpoint(JavaThread* thread, methodOopDesc* method, address bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static Bytecodes::Code get_original_bytecode_at(JavaThread* thread, methodOopDesc* method, address bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static void set_original_bytecode_at(JavaThread* thread, methodOopDesc* method, address bcp, Bytecodes::Code new_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static bool is_breakpoint(JavaThread *thread) { return Bytecodes::code_or_bp_at(bcp(thread)) == Bytecodes::_breakpoint; }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Safepoints
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static void at_safepoint(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Debugger support
a61af66fc99e Initial load
duke
parents:
diff changeset
97 static void post_field_access(JavaThread *thread, oopDesc* obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
98 ConstantPoolCacheEntry *cp_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 static void post_field_modification(JavaThread *thread, oopDesc* obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
100 ConstantPoolCacheEntry *cp_entry, jvalue *value);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 static void post_method_entry(JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static void post_method_exit (JavaThread *thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 static int interpreter_contains(address pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Native signature handlers
a61af66fc99e Initial load
duke
parents:
diff changeset
106 static void prepare_native_call(JavaThread* thread, methodOopDesc* method);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 static address slow_signature_handler(JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
108 methodOopDesc* method,
a61af66fc99e Initial load
duke
parents:
diff changeset
109 intptr_t* from, intptr_t* to);
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 #if defined(IA32) || defined(AMD64)
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Popframe support (only needed on x86 and AMD64)
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static void popframe_move_outgoing_args(JavaThread* thread, void* src_address, void* dest_address);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // Platform dependent stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #include "incls/_interpreterRT_pd.hpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Interpreter's frequency counter overflow
a61af66fc99e Initial load
duke
parents:
diff changeset
120 static nmethod* frequency_counter_overflow(JavaThread* thread, address branch_bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Interpreter profiling support
a61af66fc99e Initial load
duke
parents:
diff changeset
123 static jint bcp_to_di(methodOopDesc* method, address cur_bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static jint profile_method(JavaThread* thread, address cur_bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 static void update_mdp_for_ret(JavaThread* thread, int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static void verify_mdp(methodOopDesc* method, address bcp, address mdp);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
129 };
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 class SignatureHandlerLibrary: public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
134 enum { buffer_size = 1*K }; // the size of the temporary code buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
135 enum { blob_size = 32*K }; // the size of a handler code blob.
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
138 static BufferBlob* _handler_blob; // the current buffer blob containing the generated handlers
a61af66fc99e Initial load
duke
parents:
diff changeset
139 static address _handler; // next available address within _handler_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 static GrowableArray<uint64_t>* _fingerprints; // the fingerprint collection
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static GrowableArray<address>* _handlers; // the corresponding handlers
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static address _buffer; // the temporary code buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 static address set_handler_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
145 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 static address set_handler(CodeBuffer* buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 static void pd_set_handler(address handler);
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
150 static void add(methodHandle method);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 };