src/share/vm/runtime/frame.hpp

Wed, 14 Oct 2020 17:44:48 +0800

author
aoqi
date
Wed, 14 Oct 2020 17:44:48 +0800
changeset 9931
fd44df5e3bc3
parent 9203
53eec13fbaa5
parent 9858
b985cbb00e68
permissions
-rw-r--r--

Merge

duke@435 1 /*
stuefe@9191 2 * Copyright (c) 1997, 2018, 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
aoqi@1 25 /*
aoqi@1 26 * This file has been modified by Loongson Technology in 2015. These
aoqi@1 27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
aoqi@1 28 * available on the same license terms set forth above.
aoqi@1 29 */
aoqi@1 30
stefank@2314 31 #ifndef SHARE_VM_RUNTIME_FRAME_HPP
stefank@2314 32 #define SHARE_VM_RUNTIME_FRAME_HPP
stefank@2314 33
coleenp@4037 34 #include "oops/method.hpp"
stefank@2314 35 #include "runtime/basicLock.hpp"
stefank@2314 36 #include "runtime/monitorChunk.hpp"
stefank@2314 37 #include "runtime/registerMap.hpp"
stefank@2314 38 #include "utilities/top.hpp"
stefank@2314 39 #ifdef COMPILER2
dlong@7598 40 #if defined ADGLOBALS_MD_HPP
dlong@7598 41 # include ADGLOBALS_MD_HPP
dlong@7598 42 #elif defined TARGET_ARCH_MODEL_x86_32
stefank@2314 43 # include "adfiles/adGlobals_x86_32.hpp"
dlong@7598 44 #elif defined TARGET_ARCH_MODEL_x86_64
stefank@2314 45 # include "adfiles/adGlobals_x86_64.hpp"
dlong@7598 46 #elif defined TARGET_ARCH_MODEL_sparc
stefank@2314 47 # include "adfiles/adGlobals_sparc.hpp"
dlong@7598 48 #elif defined TARGET_ARCH_MODEL_zero
stefank@2314 49 # include "adfiles/adGlobals_zero.hpp"
dlong@7598 50 #elif defined TARGET_ARCH_MODEL_ppc_64
goetz@6441 51 # include "adfiles/adGlobals_ppc_64.hpp"
aoqi@7994 52 #elif defined TARGET_ARCH_MODEL_mips_64
aoqi@1 53 # include "adfiles/adGlobals_mips_64.hpp"
stefank@2314 54 #endif
goetz@6441 55 #endif // COMPILER2
stefank@2314 56 #ifdef TARGET_ARCH_zero
stefank@2314 57 # include "stack_zero.hpp"
stefank@2314 58 #endif
stefank@2314 59
duke@435 60 typedef class BytecodeInterpreter* interpreterState;
duke@435 61
duke@435 62 class CodeBlob;
never@2868 63 class FrameValues;
bobv@2036 64 class vframeArray;
duke@435 65
duke@435 66
duke@435 67 // A frame represents a physical stack frame (an activation). Frames
duke@435 68 // can be C or Java frames, and the Java frames can be interpreted or
duke@435 69 // compiled. In contrast, vframes represent source-level activations,
duke@435 70 // so that one physical frame can correspond to multiple source level
duke@435 71 // frames because of inlining.
duke@435 72
duke@435 73 class frame VALUE_OBJ_CLASS_SPEC {
duke@435 74 private:
duke@435 75 // Instance variables:
duke@435 76 intptr_t* _sp; // stack pointer (from Thread::last_Java_sp)
duke@435 77 address _pc; // program counter (the next instruction after the call)
duke@435 78
duke@435 79 CodeBlob* _cb; // CodeBlob that "owns" pc
duke@435 80 enum deopt_state {
duke@435 81 not_deoptimized,
duke@435 82 is_deoptimized,
duke@435 83 unknown
duke@435 84 };
duke@435 85
duke@435 86 deopt_state _deopt_state;
duke@435 87
duke@435 88 public:
duke@435 89 // Constructors
duke@435 90 frame();
duke@435 91
simonis@7553 92 #ifndef PRODUCT
simonis@7553 93 // This is a generic constructor which is only used by pns() in debug.cpp.
simonis@7553 94 // pns (i.e. print native stack) uses this constructor to create a starting
simonis@7553 95 // frame for stack walking. The implementation of this constructor is platform
simonis@7553 96 // dependent (i.e. SPARC doesn't need an 'fp' argument an will ignore it) but
simonis@7553 97 // we want to keep the signature generic because pns() is shared code.
simonis@7553 98 frame(void* sp, void* fp, void* pc);
simonis@7553 99 #endif
simonis@7553 100
duke@435 101 // Accessors
duke@435 102
duke@435 103 // pc: Returns the pc at which this frame will continue normally.
duke@435 104 // It must point at the beginning of the next instruction to execute.
duke@435 105 address pc() const { return _pc; }
duke@435 106
duke@435 107 // This returns the pc that if you were in the debugger you'd see. Not
duke@435 108 // the idealized value in the frame object. This undoes the magic conversion
duke@435 109 // that happens for deoptimized frames. In addition it makes the value the
duke@435 110 // hardware would want to see in the native frame. The only user (at this point)
duke@435 111 // is deoptimization. It likely no one else should ever use it.
duke@435 112 address raw_pc() const;
duke@435 113
duke@435 114 void set_pc( address newpc );
duke@435 115
duke@435 116 intptr_t* sp() const { return _sp; }
duke@435 117 void set_sp( intptr_t* newsp ) { _sp = newsp; }
duke@435 118
duke@435 119
duke@435 120 CodeBlob* cb() const { return _cb; }
duke@435 121
duke@435 122 // patching operations
duke@435 123 void patch_pc(Thread* thread, address pc);
duke@435 124
duke@435 125 // Every frame needs to return a unique id which distinguishes it from all other frames.
duke@435 126 // For sparc and ia32 use sp. ia64 can have memory frames that are empty so multiple frames
duke@435 127 // will have identical sp values. For ia64 the bsp (fp) value will serve. No real frame
duke@435 128 // should have an id() of NULL so it is a distinguishing value for an unmatchable frame.
duke@435 129 // We also have relationals which allow comparing a frame to anoth frame's id() allow
duke@435 130 // us to distinguish younger (more recent activation) from older (less recent activations)
duke@435 131 // A NULL id is only valid when comparing for equality.
duke@435 132
duke@435 133 intptr_t* id(void) const;
duke@435 134 bool is_younger(intptr_t* id) const;
duke@435 135 bool is_older(intptr_t* id) const;
duke@435 136
duke@435 137 // testers
duke@435 138
duke@435 139 // Compares for strict equality. Rarely used or needed.
duke@435 140 // It can return a different result than f1.id() == f2.id()
duke@435 141 bool equal(frame other) const;
duke@435 142
duke@435 143 // type testers
duke@435 144 bool is_interpreted_frame() const;
duke@435 145 bool is_java_frame() const;
duke@435 146 bool is_entry_frame() const; // Java frame called from C?
sla@5237 147 bool is_stub_frame() const;
twisti@3969 148 bool is_ignored_frame() const;
duke@435 149 bool is_native_frame() const;
duke@435 150 bool is_runtime_frame() const;
duke@435 151 bool is_compiled_frame() const;
duke@435 152 bool is_safepoint_blob_frame() const;
duke@435 153 bool is_deoptimized_frame() const;
duke@435 154
duke@435 155 // testers
duke@435 156 bool is_first_frame() const; // oldest frame? (has no sender)
duke@435 157 bool is_first_java_frame() const; // same for Java frame
duke@435 158
sgoldman@542 159 bool is_interpreted_frame_valid(JavaThread* thread) const; // performs sanity checks on interpreted frames.
duke@435 160
duke@435 161 // tells whether this frame is marked for deoptimization
duke@435 162 bool should_be_deoptimized() const;
duke@435 163
duke@435 164 // tells whether this frame can be deoptimized
duke@435 165 bool can_be_deoptimized() const;
duke@435 166
duke@435 167 // returns the frame size in stack slots
cfang@1228 168 int frame_size(RegisterMap* map) const;
duke@435 169
duke@435 170 // returns the sending frame
duke@435 171 frame sender(RegisterMap* map) const;
duke@435 172
duke@435 173 // for Profiling - acting on another frame. walks sender frames
duke@435 174 // if valid.
duke@435 175 frame profile_find_Java_sender_frame(JavaThread *thread);
duke@435 176 bool safe_for_sender(JavaThread *thread);
duke@435 177
duke@435 178 // returns the sender, but skips conversion frames
duke@435 179 frame real_sender(RegisterMap* map) const;
duke@435 180
duke@435 181 // returns the the sending Java frame, skipping any intermediate C frames
duke@435 182 // NB: receiver must not be first frame
duke@435 183 frame java_sender() const;
duke@435 184
duke@435 185 private:
duke@435 186 // Helper methods for better factored code in frame::sender
duke@435 187 frame sender_for_compiled_frame(RegisterMap* map) const;
duke@435 188 frame sender_for_entry_frame(RegisterMap* map) const;
duke@435 189 frame sender_for_interpreter_frame(RegisterMap* map) const;
duke@435 190 frame sender_for_native_frame(RegisterMap* map) const;
duke@435 191
apetushkov@9858 192 bool is_entry_frame_valid(JavaThread* thread) const;
apetushkov@9858 193
duke@435 194 // All frames:
duke@435 195
duke@435 196 // A low-level interface for vframes:
duke@435 197
duke@435 198 public:
duke@435 199
duke@435 200 intptr_t* addr_at(int index) const { return &fp()[index]; }
duke@435 201 intptr_t at(int index) const { return *addr_at(index); }
duke@435 202
duke@435 203 // accessors for locals
duke@435 204 oop obj_at(int offset) const { return *obj_at_addr(offset); }
duke@435 205 void obj_at_put(int offset, oop value) { *obj_at_addr(offset) = value; }
duke@435 206
duke@435 207 jint int_at(int offset) const { return *int_at_addr(offset); }
duke@435 208 void int_at_put(int offset, jint value) { *int_at_addr(offset) = value; }
duke@435 209
duke@435 210 oop* obj_at_addr(int offset) const { return (oop*) addr_at(offset); }
duke@435 211
coleenp@4037 212 oop* adjusted_obj_at_addr(Method* method, int index) { return obj_at_addr(adjust_offset(method, index)); }
duke@435 213
duke@435 214 private:
duke@435 215 jint* int_at_addr(int offset) const { return (jint*) addr_at(offset); }
duke@435 216
duke@435 217 public:
duke@435 218 // Link (i.e., the pointer to the previous frame)
duke@435 219 intptr_t* link() const;
duke@435 220 void set_link(intptr_t* addr);
duke@435 221
duke@435 222 // Return address
duke@435 223 address sender_pc() const;
duke@435 224
duke@435 225 // Support for deoptimization
never@2082 226 void deoptimize(JavaThread* thread);
duke@435 227
duke@435 228 // The frame's original SP, before any extension by an interpreted callee;
duke@435 229 // used for packing debug info into vframeArray objects and vframeArray lookup.
duke@435 230 intptr_t* unextended_sp() const;
duke@435 231
duke@435 232 // returns the stack pointer of the calling frame
duke@435 233 intptr_t* sender_sp() const;
duke@435 234
bdelsart@3433 235 // Returns the real 'frame pointer' for the current frame.
bdelsart@3433 236 // This is the value expected by the platform ABI when it defines a
bdelsart@3433 237 // frame pointer register. It may differ from the effective value of
bdelsart@3433 238 // the FP register when that register is used in the JVM for other
bdelsart@3433 239 // purposes (like compiled frames on some platforms).
bdelsart@3433 240 // On other platforms, it is defined so that the stack area used by
bdelsart@3433 241 // this frame goes from real_fp() to sp().
bdelsart@3433 242 intptr_t* real_fp() const;
bdelsart@3433 243
bdelsart@3130 244 // Deoptimization info, if needed (platform dependent).
bdelsart@3130 245 // Stored in the initial_info field of the unroll info, to be used by
bdelsart@3130 246 // the platform dependent deoptimization blobs.
bdelsart@3130 247 intptr_t *initial_deoptimization_info();
duke@435 248
duke@435 249 // Interpreter frames:
duke@435 250
duke@435 251 private:
duke@435 252 intptr_t** interpreter_frame_locals_addr() const;
duke@435 253 intptr_t* interpreter_frame_bcx_addr() const;
duke@435 254 intptr_t* interpreter_frame_mdx_addr() const;
duke@435 255
duke@435 256 public:
duke@435 257 // Locals
duke@435 258
duke@435 259 // The _at version returns a pointer because the address is used for GC.
duke@435 260 intptr_t* interpreter_frame_local_at(int index) const;
duke@435 261
duke@435 262 void interpreter_frame_set_locals(intptr_t* locs);
duke@435 263
duke@435 264 // byte code index/pointer (use these functions for unchecked frame access only!)
duke@435 265 intptr_t interpreter_frame_bcx() const { return *interpreter_frame_bcx_addr(); }
duke@435 266 void interpreter_frame_set_bcx(intptr_t bcx);
duke@435 267
duke@435 268 // byte code index
duke@435 269 jint interpreter_frame_bci() const;
duke@435 270 void interpreter_frame_set_bci(jint bci);
duke@435 271
duke@435 272 // byte code pointer
duke@435 273 address interpreter_frame_bcp() const;
duke@435 274 void interpreter_frame_set_bcp(address bcp);
duke@435 275
duke@435 276 // Unchecked access to the method data index/pointer.
duke@435 277 // Only use this if you know what you are doing.
duke@435 278 intptr_t interpreter_frame_mdx() const { return *interpreter_frame_mdx_addr(); }
duke@435 279 void interpreter_frame_set_mdx(intptr_t mdx);
duke@435 280
duke@435 281 // method data pointer
duke@435 282 address interpreter_frame_mdp() const;
duke@435 283 void interpreter_frame_set_mdp(address dp);
duke@435 284
duke@435 285 // Find receiver out of caller's (compiled) argument list
duke@435 286 oop retrieve_receiver(RegisterMap *reg_map);
duke@435 287
duke@435 288 // Return the monitor owner and BasicLock for compiled synchronized
duke@435 289 // native methods so that biased locking can revoke the receiver's
kamg@2361 290 // bias if necessary. This is also used by JVMTI's GetLocalInstance method
kamg@2361 291 // (via VM_GetReceiver) to retrieve the receiver from a native wrapper frame.
kamg@2361 292 BasicLock* get_native_monitor();
kamg@2361 293 oop get_native_receiver();
duke@435 294
duke@435 295 // Find receiver for an invoke when arguments are just pushed on stack (i.e., callee stack-frame is
duke@435 296 // not setup)
coleenp@2497 297 oop interpreter_callee_receiver(Symbol* signature) { return *interpreter_callee_receiver_addr(signature); }
duke@435 298
duke@435 299
coleenp@2497 300 oop* interpreter_callee_receiver_addr(Symbol* signature);
duke@435 301
duke@435 302
duke@435 303 // expression stack (may go up or down, direction == 1 or -1)
duke@435 304 public:
duke@435 305 intptr_t* interpreter_frame_expression_stack() const;
duke@435 306 static jint interpreter_frame_expression_stack_direction();
duke@435 307
duke@435 308 // The _at version returns a pointer because the address is used for GC.
duke@435 309 intptr_t* interpreter_frame_expression_stack_at(jint offset) const;
duke@435 310
duke@435 311 // top of expression stack
duke@435 312 intptr_t* interpreter_frame_tos_at(jint offset) const;
duke@435 313 intptr_t* interpreter_frame_tos_address() const;
duke@435 314
duke@435 315
duke@435 316 jint interpreter_frame_expression_stack_size() const;
duke@435 317
duke@435 318 intptr_t* interpreter_frame_sender_sp() const;
duke@435 319
duke@435 320 #ifndef CC_INTERP
duke@435 321 // template based interpreter deoptimization support
duke@435 322 void set_interpreter_frame_sender_sp(intptr_t* sender_sp);
duke@435 323 void interpreter_frame_set_monitor_end(BasicObjectLock* value);
duke@435 324 #endif // CC_INTERP
duke@435 325
goetz@6521 326 // Address of the temp oop in the frame. Needed as GC root.
goetz@6521 327 oop* interpreter_frame_temp_oop_addr() const;
goetz@6521 328
duke@435 329 // BasicObjectLocks:
duke@435 330 //
duke@435 331 // interpreter_frame_monitor_begin is higher in memory than interpreter_frame_monitor_end
duke@435 332 // Interpreter_frame_monitor_begin points to one element beyond the oldest one,
duke@435 333 // interpreter_frame_monitor_end points to the youngest one, or if there are none,
duke@435 334 // it points to one beyond where the first element will be.
duke@435 335 // interpreter_frame_monitor_size reports the allocation size of a monitor in the interpreter stack.
duke@435 336 // this value is >= BasicObjectLock::size(), and may be rounded up
duke@435 337
duke@435 338 BasicObjectLock* interpreter_frame_monitor_begin() const;
duke@435 339 BasicObjectLock* interpreter_frame_monitor_end() const;
duke@435 340 BasicObjectLock* next_monitor_in_interpreter_frame(BasicObjectLock* current) const;
duke@435 341 BasicObjectLock* previous_monitor_in_interpreter_frame(BasicObjectLock* current) const;
duke@435 342 static int interpreter_frame_monitor_size();
duke@435 343
duke@435 344 void interpreter_frame_verify_monitor(BasicObjectLock* value) const;
duke@435 345
duke@435 346 // Tells whether the current interpreter_frame frame pointer
duke@435 347 // corresponds to the old compiled/deoptimized fp
duke@435 348 // The receiver used to be a top level frame
duke@435 349 bool interpreter_frame_equals_unpacked_fp(intptr_t* fp);
duke@435 350
duke@435 351 // Return/result value from this interpreter frame
duke@435 352 // If the method return type is T_OBJECT or T_ARRAY populates oop_result
duke@435 353 // For other (non-T_VOID) the appropriate field in the jvalue is populated
duke@435 354 // with the result value.
duke@435 355 // Should only be called when at method exit when the method is not
duke@435 356 // exiting due to an exception.
duke@435 357 BasicType interpreter_frame_result(oop* oop_result, jvalue* value_result);
duke@435 358
duke@435 359 public:
duke@435 360 // Method & constant pool cache
coleenp@4037 361 Method* interpreter_frame_method() const;
coleenp@4037 362 void interpreter_frame_set_method(Method* method);
coleenp@4037 363 Method** interpreter_frame_method_addr() const;
coleenp@4037 364 ConstantPoolCache** interpreter_frame_cache_addr() const;
duke@435 365
duke@435 366 public:
duke@435 367 // Entry frames
rbackman@5419 368 JavaCallWrapper* entry_frame_call_wrapper() const { return *entry_frame_call_wrapper_addr(); }
rbackman@5419 369 JavaCallWrapper* entry_frame_call_wrapper_if_safe(JavaThread* thread) const;
rbackman@5419 370 JavaCallWrapper** entry_frame_call_wrapper_addr() const;
duke@435 371 intptr_t* entry_frame_argument_at(int offset) const;
duke@435 372
duke@435 373 // tells whether there is another chunk of Delta stack above
duke@435 374 bool entry_frame_is_first() const;
duke@435 375
duke@435 376 // Compiled frames:
duke@435 377
duke@435 378 public:
duke@435 379 // Given the index of a local, and the number of argument words
duke@435 380 // in this stack frame, tell which word of the stack frame to find
duke@435 381 // the local in. Arguments are stored above the ofp/rpc pair,
duke@435 382 // while other locals are stored below it.
duke@435 383 // Since monitors (BasicLock blocks) are also assigned indexes,
duke@435 384 // but may have different storage requirements, their presence
duke@435 385 // can also affect the calculation of offsets.
duke@435 386 static int local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors);
duke@435 387
duke@435 388 // Given the index of a monitor, etc., tell which word of the
duke@435 389 // stack frame contains the start of the BasicLock block.
duke@435 390 // Note that the local index by convention is the __higher__
duke@435 391 // of the two indexes allocated to the block.
duke@435 392 static int monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors);
duke@435 393
duke@435 394 // Tell the smallest value that local_offset_for_compiler will attain.
duke@435 395 // This is used to help determine how much stack frame to allocate.
duke@435 396 static int min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors);
duke@435 397
duke@435 398 // Tells if this register must be spilled during a call.
duke@435 399 // On Intel, all registers are smashed by calls.
duke@435 400 static bool volatile_across_calls(Register reg);
duke@435 401
duke@435 402
duke@435 403 // Safepoints
duke@435 404
duke@435 405 public:
duke@435 406 oop saved_oop_result(RegisterMap* map) const;
duke@435 407 void set_saved_oop_result(RegisterMap* map, oop obj);
duke@435 408
duke@435 409 // For debugging
duke@435 410 private:
duke@435 411 const char* print_name() const;
duke@435 412
never@2868 413 void describe_pd(FrameValues& values, int frame_no);
never@2868 414
duke@435 415 public:
duke@435 416 void print_value() const { print_value_on(tty,NULL); }
duke@435 417 void print_value_on(outputStream* st, JavaThread *thread) const;
duke@435 418 void print_on(outputStream* st) const;
duke@435 419 void interpreter_frame_print_on(outputStream* st) const;
duke@435 420 void print_on_error(outputStream* st, char* buf, int buflen, bool verbose = false) const;
iklam@5667 421 static void print_C_frame(outputStream* st, char* buf, int buflen, address pc);
duke@435 422
never@2868 423 // Add annotated descriptions of memory locations belonging to this frame to values
never@2868 424 void describe(FrameValues& values, int frame_no);
never@2868 425
duke@435 426 // Conversion from an VMReg to physical stack location
duke@435 427 oop* oopmapreg_to_location(VMReg reg, const RegisterMap* regmap) const;
duke@435 428
duke@435 429 // Oops-do's
roland@5222 430 void oops_compiled_arguments_do(Symbol* signature, bool has_receiver, bool has_appendix, const RegisterMap* reg_map, OopClosure* f);
stefank@6973 431 void oops_interpreted_do(OopClosure* f, CLDClosure* cld_f, const RegisterMap* map, bool query_oop_map_cache = true);
duke@435 432
duke@435 433 private:
coleenp@2497 434 void oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f);
duke@435 435
duke@435 436 // Iteration of oops
stefank@6973 437 void oops_do_internal(OopClosure* f, CLDClosure* cld_f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache);
duke@435 438 void oops_entry_do(OopClosure* f, const RegisterMap* map);
jrose@1424 439 void oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* map);
coleenp@4037 440 int adjust_offset(Method* method, int index); // helper for above fn
duke@435 441 public:
duke@435 442 // Memory management
stefank@6973 443 void oops_do(OopClosure* f, CLDClosure* cld_f, CodeBlobClosure* cf, RegisterMap* map) { oops_do_internal(f, cld_f, cf, map, true); }
jrose@1424 444 void nmethods_do(CodeBlobClosure* cf);
duke@435 445
coleenp@4037 446 // RedefineClasses support for finding live interpreted methods on the stack
coleenp@4037 447 void metadata_do(void f(Metadata*));
coleenp@4037 448
duke@435 449 void gc_prologue();
duke@435 450 void gc_epilogue();
duke@435 451 void pd_gc_epilog();
duke@435 452
duke@435 453 # ifdef ENABLE_ZAP_DEAD_LOCALS
duke@435 454 private:
duke@435 455 class CheckValueClosure: public OopClosure {
coleenp@548 456 public:
coleenp@548 457 void do_oop(oop* p);
coleenp@548 458 void do_oop(narrowOop* p) { ShouldNotReachHere(); }
duke@435 459 };
duke@435 460 static CheckValueClosure _check_value;
duke@435 461
duke@435 462 class CheckOopClosure: public OopClosure {
coleenp@548 463 public:
coleenp@548 464 void do_oop(oop* p);
coleenp@548 465 void do_oop(narrowOop* p) { ShouldNotReachHere(); }
duke@435 466 };
duke@435 467 static CheckOopClosure _check_oop;
duke@435 468
duke@435 469 static void check_derived_oop(oop* base, oop* derived);
duke@435 470
duke@435 471 class ZapDeadClosure: public OopClosure {
coleenp@548 472 public:
coleenp@548 473 void do_oop(oop* p);
coleenp@548 474 void do_oop(narrowOop* p) { ShouldNotReachHere(); }
duke@435 475 };
duke@435 476 static ZapDeadClosure _zap_dead;
duke@435 477
duke@435 478 public:
duke@435 479 // Zapping
duke@435 480 void zap_dead_locals (JavaThread* thread, const RegisterMap* map);
duke@435 481 void zap_dead_interpreted_locals(JavaThread* thread, const RegisterMap* map);
duke@435 482 void zap_dead_compiled_locals (JavaThread* thread, const RegisterMap* map);
duke@435 483 void zap_dead_entry_locals (JavaThread* thread, const RegisterMap* map);
duke@435 484 void zap_dead_deoptimized_locals(JavaThread* thread, const RegisterMap* map);
duke@435 485 # endif
duke@435 486 // Verification
duke@435 487 void verify(const RegisterMap* map);
duke@435 488 static bool verify_return_pc(address x);
duke@435 489 static bool is_bci(intptr_t bcx);
duke@435 490 // Usage:
duke@435 491 // assert(frame::verify_return_pc(return_address), "must be a return pc");
duke@435 492
duke@435 493 int pd_oop_map_offset_adjustment() const;
duke@435 494
stefank@2314 495 #ifdef TARGET_ARCH_x86
stefank@2314 496 # include "frame_x86.hpp"
stefank@2314 497 #endif
aoqi@1 498 #ifdef TARGET_ARCH_mips
aoqi@1 499 # include "frame_mips.hpp"
aoqi@1 500 #endif
stefank@2314 501 #ifdef TARGET_ARCH_sparc
stefank@2314 502 # include "frame_sparc.hpp"
stefank@2314 503 #endif
stefank@2314 504 #ifdef TARGET_ARCH_zero
stefank@2314 505 # include "frame_zero.hpp"
stefank@2314 506 #endif
bobv@2508 507 #ifdef TARGET_ARCH_arm
bobv@2508 508 # include "frame_arm.hpp"
bobv@2508 509 #endif
bobv@2508 510 #ifdef TARGET_ARCH_ppc
bobv@2508 511 # include "frame_ppc.hpp"
bobv@2508 512 #endif
stefank@2314 513
duke@435 514 };
duke@435 515
bdelsart@3451 516 #ifndef PRODUCT
never@2868 517 // A simple class to describe a location on the stack
never@2868 518 class FrameValue VALUE_OBJ_CLASS_SPEC {
never@2868 519 public:
never@2868 520 intptr_t* location;
never@2868 521 char* description;
never@2868 522 int owner;
never@2868 523 int priority;
never@2868 524 };
never@2868 525
never@2868 526
never@2868 527 // A collection of described stack values that can print a symbolic
never@2868 528 // description of the stack memory. Interpreter frame values can be
never@2868 529 // in the caller frames so all the values are collected first and then
never@2868 530 // sorted before being printed.
never@2868 531 class FrameValues {
never@2868 532 private:
never@2868 533 GrowableArray<FrameValue> _values;
never@2868 534
never@2868 535 static int compare(FrameValue* a, FrameValue* b) {
never@2868 536 if (a->location == b->location) {
never@2868 537 return a->priority - b->priority;
never@2868 538 }
never@2868 539 return a->location - b->location;
never@2868 540 }
never@2868 541
never@2868 542 public:
never@2868 543 // Used by frame functions to describe locations.
never@2868 544 void describe(int owner, intptr_t* location, const char* description, int priority = 0);
never@2868 545
bdelsart@3451 546 #ifdef ASSERT
never@2897 547 void validate();
bdelsart@3451 548 #endif
twisti@3238 549 void print(JavaThread* thread);
never@2868 550 };
never@2868 551
never@2868 552 #endif
duke@435 553
duke@435 554 //
duke@435 555 // StackFrameStream iterates through the frames of a thread starting from
duke@435 556 // top most frame. It automatically takes care of updating the location of
duke@435 557 // all (callee-saved) registers. Notice: If a thread is stopped at
duke@435 558 // a safepoint, all registers are saved, not only the callee-saved ones.
duke@435 559 //
duke@435 560 // Use:
duke@435 561 //
duke@435 562 // for(StackFrameStream fst(thread); !fst.is_done(); fst.next()) {
duke@435 563 // ...
duke@435 564 // }
duke@435 565 //
duke@435 566 class StackFrameStream : public StackObj {
duke@435 567 private:
duke@435 568 frame _fr;
duke@435 569 RegisterMap _reg_map;
duke@435 570 bool _is_done;
duke@435 571 public:
duke@435 572 StackFrameStream(JavaThread *thread, bool update = true);
duke@435 573
duke@435 574 // Iteration
duke@435 575 bool is_done() { return (_is_done) ? true : (_is_done = _fr.is_first_frame(), false); }
duke@435 576 void next() { if (!_is_done) _fr = _fr.sender(&_reg_map); }
duke@435 577
duke@435 578 // Query
duke@435 579 frame *current() { return &_fr; }
duke@435 580 RegisterMap* register_map() { return &_reg_map; }
duke@435 581 };
stefank@2314 582
stefank@2314 583 #endif // SHARE_VM_RUNTIME_FRAME_HPP

mercurial