bytecodeInterpreter.hpp revision 1879:f95d63e2154a
1/*
2 * Copyright (c) 2002, 2010, 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
25#ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
26#define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
27
28#include "memory/allocation.hpp"
29#include "oops/methodDataOop.hpp"
30#include "oops/methodOop.hpp"
31#include "runtime/basicLock.hpp"
32#include "runtime/frame.hpp"
33#include "runtime/globals.hpp"
34#include "utilities/globalDefinitions.hpp"
35#ifdef TARGET_ARCH_x86
36# include "bytes_x86.hpp"
37#endif
38#ifdef TARGET_ARCH_sparc
39# include "bytes_sparc.hpp"
40#endif
41#ifdef TARGET_ARCH_zero
42# include "bytes_zero.hpp"
43#endif
44
45#ifdef CC_INTERP
46
47// CVM definitions find hotspot equivalents...
48
49union VMJavaVal64 {
50    jlong   l;
51    jdouble d;
52    uint32_t      v[2];
53};
54
55
56typedef class BytecodeInterpreter* interpreterState;
57
58struct call_message {
59    class methodOopDesc* _callee;    /* method to call during call_method request */
60    address   _callee_entry_point;   /* address to jump to for call_method request */
61    int       _bcp_advance;          /* size of the invoke bytecode operation */
62};
63
64struct osr_message {
65    address _osr_buf;                 /* the osr buffer */
66    address _osr_entry;               /* the entry to the osr method */
67};
68
69struct osr_result {
70  nmethod* nm;                       /* osr nmethod */
71  address return_addr;               /* osr blob return address */
72};
73
74// Result returned to frame manager
75union frame_manager_message {
76    call_message _to_call;            /* describes callee */
77    Bytecodes::Code _return_kind;     /* i_return, a_return, ... */
78    osr_message _osr;                 /* describes the osr */
79    osr_result _osr_result;           /* result of OSR request */
80};
81
82class BytecodeInterpreter : StackObj {
83friend class SharedRuntime;
84friend class AbstractInterpreterGenerator;
85friend class CppInterpreterGenerator;
86friend class InterpreterGenerator;
87friend class InterpreterMacroAssembler;
88friend class frame;
89friend class VMStructs;
90
91public:
92    enum messages {
93         no_request = 0,            // unused
94         initialize,                // Perform one time interpreter initializations (assumes all switches set)
95         // status message to C++ interpreter
96         method_entry,              // initial method entry to interpreter
97         method_resume,             // frame manager response to return_from_method request (assuming a frame to resume)
98         deopt_resume,              // returning from a native call into a deopted frame
99         deopt_resume2,             // deopt resume as a result of a PopFrame
100         got_monitors,              // frame manager response to more_monitors request
101         rethrow_exception,         // unwinding and throwing exception
102         // requests to frame manager from C++ interpreter
103         call_method,               // request for new frame from interpreter, manager responds with method_entry
104         return_from_method,        // request from interpreter to unwind, manager responds with method_continue
105         more_monitors,             // need a new monitor
106         throwing_exception,        // unwind stack and rethrow
107         popping_frame,             // unwind call and retry call
108         do_osr                     // request this invocation be OSR's
109    };
110
111private:
112    JavaThread*           _thread;        // the vm's java thread pointer
113    address               _bcp;           // instruction pointer
114    intptr_t*             _locals;        // local variable pointer
115    constantPoolCacheOop  _constants;     // constant pool cache
116    methodOop             _method;        // method being executed
117    DataLayout*           _mdx;           // compiler profiling data for current bytecode
118    intptr_t*             _stack;         // expression stack
119    messages              _msg;           // frame manager <-> interpreter message
120    frame_manager_message _result;        // result to frame manager
121    interpreterState      _prev_link;     // previous interpreter state
122    oop                   _oop_temp;      // mirror for interpreted native, null otherwise
123    intptr_t*             _stack_base;    // base of expression stack
124    intptr_t*             _stack_limit;   // limit of expression stack
125    BasicObjectLock*      _monitor_base;  // base of monitors on the native stack
126
127
128public:
129  // Constructor is only used by the initialization step. All other instances are created
130  // by the frame manager.
131  BytecodeInterpreter(messages msg);
132
133//
134// Deoptimization support
135//
136static void layout_interpreterState(interpreterState to_fill,
137                                    frame* caller,
138                                    frame* interpreter_frame,
139                                    methodOop method,
140                                    intptr_t* locals,
141                                    intptr_t* stack,
142                                    intptr_t* stack_base,
143                                    intptr_t* monitor_base,
144                                    intptr_t* frame_bottom,
145                                    bool top_frame);
146
147/*
148 * Generic 32-bit wide "Java slot" definition. This type occurs
149 * in operand stacks, Java locals, object fields, constant pools.
150 */
151union VMJavaVal32 {
152    jint     i;
153    jfloat   f;
154    class oopDesc*   r;
155    uint32_t raw;
156};
157
158/*
159 * Generic 64-bit Java value definition
160 */
161union VMJavaVal64 {
162    jlong   l;
163    jdouble d;
164    uint32_t      v[2];
165};
166
167/*
168 * Generic 32-bit wide "Java slot" definition. This type occurs
169 * in Java locals, object fields, constant pools, and
170 * operand stacks (as a CVMStackVal32).
171 */
172typedef union VMSlotVal32 {
173    VMJavaVal32    j;     /* For "Java" values */
174    address        a;     /* a return created by jsr or jsr_w */
175} VMSlotVal32;
176
177
178/*
179 * Generic 32-bit wide stack slot definition.
180 */
181union VMStackVal32 {
182    VMJavaVal32    j;     /* For "Java" values */
183    VMSlotVal32    s;     /* any value from a "slot" or locals[] */
184};
185
186inline JavaThread* thread() { return _thread; }
187
188inline address bcp() { return _bcp; }
189inline void set_bcp(address new_bcp) { _bcp = new_bcp; }
190
191inline intptr_t* locals() { return _locals; }
192
193inline constantPoolCacheOop constants() { return _constants; }
194inline methodOop method() { return _method; }
195inline DataLayout* mdx() { return _mdx; }
196inline void set_mdx(DataLayout *new_mdx) { _mdx = new_mdx; }
197
198inline messages msg() { return _msg; }
199inline void set_msg(messages new_msg) { _msg = new_msg; }
200
201inline methodOop callee() { return _result._to_call._callee; }
202inline void set_callee(methodOop new_callee) { _result._to_call._callee = new_callee; }
203inline void set_callee_entry_point(address entry) { _result._to_call._callee_entry_point = entry; }
204inline void set_osr_buf(address buf) { _result._osr._osr_buf = buf; }
205inline void set_osr_entry(address entry) { _result._osr._osr_entry = entry; }
206inline int bcp_advance() { return _result._to_call._bcp_advance; }
207inline void set_bcp_advance(int count) { _result._to_call._bcp_advance = count; }
208
209inline void set_return_kind(Bytecodes::Code kind) { _result._return_kind = kind; }
210
211inline interpreterState prev() { return _prev_link; }
212
213inline intptr_t* stack() { return _stack; }
214inline void set_stack(intptr_t* new_stack) { _stack = new_stack; }
215
216
217inline intptr_t* stack_base() { return _stack_base; }
218inline intptr_t* stack_limit() { return _stack_limit; }
219
220inline BasicObjectLock* monitor_base() { return _monitor_base; }
221
222/*
223 * 64-bit Arithmetic:
224 *
225 * The functions below follow the semantics of the
226 * ladd, land, ldiv, lmul, lor, lxor, and lrem bytecodes,
227 * respectively.
228 */
229
230static jlong VMlongAdd(jlong op1, jlong op2);
231static jlong VMlongAnd(jlong op1, jlong op2);
232static jlong VMlongDiv(jlong op1, jlong op2);
233static jlong VMlongMul(jlong op1, jlong op2);
234static jlong VMlongOr (jlong op1, jlong op2);
235static jlong VMlongSub(jlong op1, jlong op2);
236static jlong VMlongXor(jlong op1, jlong op2);
237static jlong VMlongRem(jlong op1, jlong op2);
238
239/*
240 * Shift:
241 *
242 * The functions below follow the semantics of the
243 * lushr, lshl, and lshr bytecodes, respectively.
244 */
245
246static jlong VMlongUshr(jlong op1, jint op2);
247static jlong VMlongShl (jlong op1, jint op2);
248static jlong VMlongShr (jlong op1, jint op2);
249
250/*
251 * Unary:
252 *
253 * Return the negation of "op" (-op), according to
254 * the semantics of the lneg bytecode.
255 */
256
257static jlong VMlongNeg(jlong op);
258
259/*
260 * Return the complement of "op" (~op)
261 */
262
263static jlong VMlongNot(jlong op);
264
265
266/*
267 * Comparisons to 0:
268 */
269
270static int32_t VMlongLtz(jlong op);     /* op <= 0 */
271static int32_t VMlongGez(jlong op);     /* op >= 0 */
272static int32_t VMlongEqz(jlong op);     /* op == 0 */
273
274/*
275 * Between operands:
276 */
277
278static int32_t VMlongEq(jlong op1, jlong op2);    /* op1 == op2 */
279static int32_t VMlongNe(jlong op1, jlong op2);    /* op1 != op2 */
280static int32_t VMlongGe(jlong op1, jlong op2);    /* op1 >= op2 */
281static int32_t VMlongLe(jlong op1, jlong op2);    /* op1 <= op2 */
282static int32_t VMlongLt(jlong op1, jlong op2);    /* op1 <  op2 */
283static int32_t VMlongGt(jlong op1, jlong op2);    /* op1 >  op2 */
284
285/*
286 * Comparisons (returning an jint value: 0, 1, or -1)
287 *
288 * Between operands:
289 *
290 * Compare "op1" and "op2" according to the semantics of the
291 * "lcmp" bytecode.
292 */
293
294static int32_t VMlongCompare(jlong op1, jlong op2);
295
296/*
297 * Convert int to long, according to "i2l" bytecode semantics
298 */
299static jlong VMint2Long(jint val);
300
301/*
302 * Convert long to int, according to "l2i" bytecode semantics
303 */
304static jint VMlong2Int(jlong val);
305
306/*
307 * Convert long to float, according to "l2f" bytecode semantics
308 */
309static jfloat VMlong2Float(jlong val);
310
311/*
312 * Convert long to double, according to "l2d" bytecode semantics
313 */
314static jdouble VMlong2Double(jlong val);
315
316/*
317 * Java floating-point float value manipulation.
318 *
319 * The result argument is, once again, an lvalue.
320 *
321 * Arithmetic:
322 *
323 * The functions below follow the semantics of the
324 * fadd, fsub, fmul, fdiv, and frem bytecodes,
325 * respectively.
326 */
327
328static jfloat VMfloatAdd(jfloat op1, jfloat op2);
329static jfloat VMfloatSub(jfloat op1, jfloat op2);
330static jfloat VMfloatMul(jfloat op1, jfloat op2);
331static jfloat VMfloatDiv(jfloat op1, jfloat op2);
332static jfloat VMfloatRem(jfloat op1, jfloat op2);
333
334/*
335 * Unary:
336 *
337 * Return the negation of "op" (-op), according to
338 * the semantics of the fneg bytecode.
339 */
340
341static jfloat VMfloatNeg(jfloat op);
342
343/*
344 * Comparisons (returning an int value: 0, 1, or -1)
345 *
346 * Between operands:
347 *
348 * Compare "op1" and "op2" according to the semantics of the
349 * "fcmpl" (direction is -1) or "fcmpg" (direction is 1) bytecodes.
350 */
351
352static int32_t VMfloatCompare(jfloat op1, jfloat op2,
353                              int32_t direction);
354/*
355 * Conversion:
356 */
357
358/*
359 * Convert float to double, according to "f2d" bytecode semantics
360 */
361
362static jdouble VMfloat2Double(jfloat op);
363
364/*
365 ******************************************
366 * Java double floating-point manipulation.
367 ******************************************
368 *
369 * The result argument is, once again, an lvalue.
370 *
371 * Conversions:
372 */
373
374/*
375 * Convert double to int, according to "d2i" bytecode semantics
376 */
377
378static jint VMdouble2Int(jdouble val);
379
380/*
381 * Convert double to float, according to "d2f" bytecode semantics
382 */
383
384static jfloat VMdouble2Float(jdouble val);
385
386/*
387 * Convert int to double, according to "i2d" bytecode semantics
388 */
389
390static jdouble VMint2Double(jint val);
391
392/*
393 * Arithmetic:
394 *
395 * The functions below follow the semantics of the
396 * dadd, dsub, ddiv, dmul, and drem bytecodes, respectively.
397 */
398
399static jdouble VMdoubleAdd(jdouble op1, jdouble op2);
400static jdouble VMdoubleSub(jdouble op1, jdouble op2);
401static jdouble VMdoubleDiv(jdouble op1, jdouble op2);
402static jdouble VMdoubleMul(jdouble op1, jdouble op2);
403static jdouble VMdoubleRem(jdouble op1, jdouble op2);
404
405/*
406 * Unary:
407 *
408 * Return the negation of "op" (-op), according to
409 * the semantics of the dneg bytecode.
410 */
411
412static jdouble VMdoubleNeg(jdouble op);
413
414/*
415 * Comparisons (returning an int32_t value: 0, 1, or -1)
416 *
417 * Between operands:
418 *
419 * Compare "op1" and "op2" according to the semantics of the
420 * "dcmpl" (direction is -1) or "dcmpg" (direction is 1) bytecodes.
421 */
422
423static int32_t VMdoubleCompare(jdouble op1, jdouble op2, int32_t direction);
424
425/*
426 * Copy two typeless 32-bit words from one location to another.
427 * This is semantically equivalent to:
428 *
429 * to[0] = from[0];
430 * to[1] = from[1];
431 *
432 * but this interface is provided for those platforms that could
433 * optimize this into a single 64-bit transfer.
434 */
435
436static void VMmemCopy64(uint32_t to[2], const uint32_t from[2]);
437
438
439// Arithmetic operations
440
441/*
442 * Java arithmetic methods.
443 * The functions below follow the semantics of the
444 * iadd, isub, imul, idiv, irem, iand, ior, ixor,
445 * and ineg bytecodes, respectively.
446 */
447
448static jint VMintAdd(jint op1, jint op2);
449static jint VMintSub(jint op1, jint op2);
450static jint VMintMul(jint op1, jint op2);
451static jint VMintDiv(jint op1, jint op2);
452static jint VMintRem(jint op1, jint op2);
453static jint VMintAnd(jint op1, jint op2);
454static jint VMintOr (jint op1, jint op2);
455static jint VMintXor(jint op1, jint op2);
456
457/*
458 * Shift Operation:
459 * The functions below follow the semantics of the
460 * iushr, ishl, and ishr bytecodes, respectively.
461 */
462
463static juint VMintUshr(jint op, jint num);
464static jint VMintShl (jint op, jint num);
465static jint VMintShr (jint op, jint num);
466
467/*
468 * Unary Operation:
469 *
470 * Return the negation of "op" (-op), according to
471 * the semantics of the ineg bytecode.
472 */
473
474static jint VMintNeg(jint op);
475
476/*
477 * Int Conversions:
478 */
479
480/*
481 * Convert int to float, according to "i2f" bytecode semantics
482 */
483
484static jfloat VMint2Float(jint val);
485
486/*
487 * Convert int to byte, according to "i2b" bytecode semantics
488 */
489
490static jbyte VMint2Byte(jint val);
491
492/*
493 * Convert int to char, according to "i2c" bytecode semantics
494 */
495
496static jchar VMint2Char(jint val);
497
498/*
499 * Convert int to short, according to "i2s" bytecode semantics
500 */
501
502static jshort VMint2Short(jint val);
503
504/*=========================================================================
505 * Bytecode interpreter operations
506 *=======================================================================*/
507
508static void dup(intptr_t *tos);
509static void dup2(intptr_t *tos);
510static void dup_x1(intptr_t *tos);    /* insert top word two down */
511static void dup_x2(intptr_t *tos);    /* insert top word three down  */
512static void dup2_x1(intptr_t *tos);   /* insert top 2 slots three down */
513static void dup2_x2(intptr_t *tos);   /* insert top 2 slots four down */
514static void swap(intptr_t *tos);      /* swap top two elements */
515
516// umm don't like this method modifies its object
517
518// The Interpreter used when
519static void run(interpreterState istate);
520// The interpreter used if JVMTI needs interpreter events
521static void runWithChecks(interpreterState istate);
522static void End_Of_Interpreter(void);
523
524// Inline static functions for Java Stack and Local manipulation
525
526static address stack_slot(intptr_t *tos, int offset);
527static jint stack_int(intptr_t *tos, int offset);
528static jfloat stack_float(intptr_t *tos, int offset);
529static oop stack_object(intptr_t *tos, int offset);
530static jdouble stack_double(intptr_t *tos, int offset);
531static jlong stack_long(intptr_t *tos, int offset);
532
533// only used for value types
534static void set_stack_slot(intptr_t *tos, address value, int offset);
535static void set_stack_int(intptr_t *tos, int value, int offset);
536static void set_stack_float(intptr_t *tos, jfloat value, int offset);
537static void set_stack_object(intptr_t *tos, oop value, int offset);
538
539// needs to be platform dep for the 32 bit platforms.
540static void set_stack_double(intptr_t *tos, jdouble value, int offset);
541static void set_stack_long(intptr_t *tos, jlong value, int offset);
542
543static void set_stack_double_from_addr(intptr_t *tos, address addr, int offset);
544static void set_stack_long_from_addr(intptr_t *tos, address addr, int offset);
545
546// Locals
547
548static address locals_slot(intptr_t* locals, int offset);
549static jint locals_int(intptr_t* locals, int offset);
550static jfloat locals_float(intptr_t* locals, int offset);
551static oop locals_object(intptr_t* locals, int offset);
552static jdouble locals_double(intptr_t* locals, int offset);
553static jlong locals_long(intptr_t* locals, int offset);
554
555static address locals_long_at(intptr_t* locals, int offset);
556static address locals_double_at(intptr_t* locals, int offset);
557
558static void set_locals_slot(intptr_t *locals, address value, int offset);
559static void set_locals_int(intptr_t *locals, jint value, int offset);
560static void set_locals_float(intptr_t *locals, jfloat value, int offset);
561static void set_locals_object(intptr_t *locals, oop value, int offset);
562static void set_locals_double(intptr_t *locals, jdouble value, int offset);
563static void set_locals_long(intptr_t *locals, jlong value, int offset);
564static void set_locals_double_from_addr(intptr_t *locals,
565                                   address addr, int offset);
566static void set_locals_long_from_addr(intptr_t *locals,
567                                   address addr, int offset);
568
569static void astore(intptr_t* topOfStack, int stack_offset,
570                   intptr_t* locals,     int locals_offset);
571
572// Support for dup and swap
573static void copy_stack_slot(intptr_t *tos, int from_offset, int to_offset);
574
575#ifndef PRODUCT
576static const char* C_msg(BytecodeInterpreter::messages msg);
577void print();
578#endif // PRODUCT
579
580    // Platform fields/methods
581#ifdef TARGET_ARCH_x86
582# include "bytecodeInterpreter_x86.hpp"
583#endif
584#ifdef TARGET_ARCH_sparc
585# include "bytecodeInterpreter_sparc.hpp"
586#endif
587#ifdef TARGET_ARCH_zero
588# include "bytecodeInterpreter_zero.hpp"
589#endif
590
591
592}; // BytecodeInterpreter
593
594#endif // CC_INTERP
595
596#endif // SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
597