src/share/vm/interpreter/bytecodeInterpreter.hpp

Mon, 04 Apr 2011 03:02:00 -0700

author
twisti
date
Mon, 04 Apr 2011 03:02:00 -0700
changeset 2729
e863062e521d
parent 2508
b92c45f2bc75
child 2708
1d1603768966
permissions
-rw-r--r--

7032458: Zero and Shark fixes
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>

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

mercurial