0N/A/*
3087N/A * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A * or visit www.oracle.com if you need additional information or have any
1472N/A * questions.
0N/A *
0N/A */
0N/A
1879N/A#ifndef SHARE_VM_RUNTIME_FRAME_HPP
1879N/A#define SHARE_VM_RUNTIME_FRAME_HPP
1879N/A
1879N/A#include "asm/assembler.hpp"
1879N/A#include "oops/methodOop.hpp"
1879N/A#include "runtime/basicLock.hpp"
1879N/A#include "runtime/monitorChunk.hpp"
1879N/A#include "runtime/registerMap.hpp"
1879N/A#include "utilities/top.hpp"
1879N/A#ifdef COMPILER2
1879N/A#ifdef TARGET_ARCH_MODEL_x86_32
1879N/A# include "adfiles/adGlobals_x86_32.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_MODEL_x86_64
1879N/A# include "adfiles/adGlobals_x86_64.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_MODEL_sparc
1879N/A# include "adfiles/adGlobals_sparc.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_MODEL_zero
1879N/A# include "adfiles/adGlobals_zero.hpp"
1879N/A#endif
2073N/A#ifdef TARGET_ARCH_MODEL_arm
2073N/A# include "adfiles/adGlobals_arm.hpp"
2073N/A#endif
2073N/A#ifdef TARGET_ARCH_MODEL_ppc
2073N/A# include "adfiles/adGlobals_ppc.hpp"
2073N/A#endif
1879N/A#endif
1879N/A#ifdef ZERO
1879N/A#ifdef TARGET_ARCH_zero
1879N/A# include "stack_zero.hpp"
1879N/A#endif
1879N/A#endif
1879N/A
0N/Atypedef class BytecodeInterpreter* interpreterState;
0N/A
0N/Aclass CodeBlob;
2433N/Aclass FrameValues;
1601N/Aclass vframeArray;
0N/A
0N/A
0N/A// A frame represents a physical stack frame (an activation). Frames
0N/A// can be C or Java frames, and the Java frames can be interpreted or
0N/A// compiled. In contrast, vframes represent source-level activations,
0N/A// so that one physical frame can correspond to multiple source level
0N/A// frames because of inlining.
0N/A
0N/Aclass frame VALUE_OBJ_CLASS_SPEC {
0N/A private:
0N/A // Instance variables:
0N/A intptr_t* _sp; // stack pointer (from Thread::last_Java_sp)
0N/A address _pc; // program counter (the next instruction after the call)
0N/A
0N/A CodeBlob* _cb; // CodeBlob that "owns" pc
0N/A enum deopt_state {
0N/A not_deoptimized,
0N/A is_deoptimized,
0N/A unknown
0N/A };
0N/A
0N/A deopt_state _deopt_state;
0N/A
0N/A public:
0N/A // Constructors
0N/A frame();
0N/A
0N/A // Accessors
0N/A
0N/A // pc: Returns the pc at which this frame will continue normally.
0N/A // It must point at the beginning of the next instruction to execute.
0N/A address pc() const { return _pc; }
0N/A
0N/A // This returns the pc that if you were in the debugger you'd see. Not
0N/A // the idealized value in the frame object. This undoes the magic conversion
0N/A // that happens for deoptimized frames. In addition it makes the value the
0N/A // hardware would want to see in the native frame. The only user (at this point)
0N/A // is deoptimization. It likely no one else should ever use it.
0N/A address raw_pc() const;
0N/A
0N/A void set_pc( address newpc );
0N/A
0N/A intptr_t* sp() const { return _sp; }
0N/A void set_sp( intptr_t* newsp ) { _sp = newsp; }
0N/A
0N/A
0N/A CodeBlob* cb() const { return _cb; }
0N/A
0N/A // patching operations
0N/A void patch_pc(Thread* thread, address pc);
0N/A
0N/A // Every frame needs to return a unique id which distinguishes it from all other frames.
0N/A // For sparc and ia32 use sp. ia64 can have memory frames that are empty so multiple frames
0N/A // will have identical sp values. For ia64 the bsp (fp) value will serve. No real frame
0N/A // should have an id() of NULL so it is a distinguishing value for an unmatchable frame.
0N/A // We also have relationals which allow comparing a frame to anoth frame's id() allow
0N/A // us to distinguish younger (more recent activation) from older (less recent activations)
0N/A // A NULL id is only valid when comparing for equality.
0N/A
0N/A intptr_t* id(void) const;
0N/A bool is_younger(intptr_t* id) const;
0N/A bool is_older(intptr_t* id) const;
0N/A
0N/A // testers
0N/A
0N/A // Compares for strict equality. Rarely used or needed.
0N/A // It can return a different result than f1.id() == f2.id()
0N/A bool equal(frame other) const;
0N/A
0N/A // type testers
0N/A bool is_interpreted_frame() const;
0N/A bool is_java_frame() const;
0N/A bool is_entry_frame() const; // Java frame called from C?
4141N/A bool is_stub_frame() const;
3932N/A bool is_ignored_frame() const;
0N/A bool is_native_frame() const;
0N/A bool is_runtime_frame() const;
0N/A bool is_compiled_frame() const;
0N/A bool is_safepoint_blob_frame() const;
0N/A bool is_deoptimized_frame() const;
0N/A
0N/A // testers
0N/A bool is_first_frame() const; // oldest frame? (has no sender)
0N/A bool is_first_java_frame() const; // same for Java frame
0N/A
107N/A bool is_interpreted_frame_valid(JavaThread* thread) const; // performs sanity checks on interpreted frames.
0N/A
0N/A // tells whether this frame is marked for deoptimization
0N/A bool should_be_deoptimized() const;
0N/A
0N/A // tells whether this frame can be deoptimized
0N/A bool can_be_deoptimized() const;
0N/A
0N/A // returns the frame size in stack slots
793N/A int frame_size(RegisterMap* map) const;
0N/A
0N/A // returns the sending frame
0N/A frame sender(RegisterMap* map) const;
0N/A
0N/A // for Profiling - acting on another frame. walks sender frames
0N/A // if valid.
0N/A frame profile_find_Java_sender_frame(JavaThread *thread);
0N/A bool safe_for_sender(JavaThread *thread);
0N/A
0N/A // returns the sender, but skips conversion frames
0N/A frame real_sender(RegisterMap* map) const;
0N/A
0N/A // returns the the sending Java frame, skipping any intermediate C frames
0N/A // NB: receiver must not be first frame
0N/A frame java_sender() const;
0N/A
0N/A private:
0N/A // Helper methods for better factored code in frame::sender
0N/A frame sender_for_compiled_frame(RegisterMap* map) const;
0N/A frame sender_for_entry_frame(RegisterMap* map) const;
0N/A frame sender_for_interpreter_frame(RegisterMap* map) const;
0N/A frame sender_for_native_frame(RegisterMap* map) const;
0N/A
0N/A // All frames:
0N/A
0N/A // A low-level interface for vframes:
0N/A
0N/A public:
0N/A
0N/A intptr_t* addr_at(int index) const { return &fp()[index]; }
0N/A intptr_t at(int index) const { return *addr_at(index); }
0N/A
0N/A // accessors for locals
0N/A oop obj_at(int offset) const { return *obj_at_addr(offset); }
0N/A void obj_at_put(int offset, oop value) { *obj_at_addr(offset) = value; }
0N/A
0N/A jint int_at(int offset) const { return *int_at_addr(offset); }
0N/A void int_at_put(int offset, jint value) { *int_at_addr(offset) = value; }
0N/A
0N/A oop* obj_at_addr(int offset) const { return (oop*) addr_at(offset); }
0N/A
0N/A oop* adjusted_obj_at_addr(methodOop method, int index) { return obj_at_addr(adjust_offset(method, index)); }
0N/A
0N/A private:
0N/A jint* int_at_addr(int offset) const { return (jint*) addr_at(offset); }
0N/A
0N/A public:
0N/A // Link (i.e., the pointer to the previous frame)
0N/A intptr_t* link() const;
0N/A void set_link(intptr_t* addr);
0N/A
0N/A // Return address
0N/A address sender_pc() const;
0N/A
0N/A // Support for deoptimization
1647N/A void deoptimize(JavaThread* thread);
0N/A
0N/A // The frame's original SP, before any extension by an interpreted callee;
0N/A // used for packing debug info into vframeArray objects and vframeArray lookup.
0N/A intptr_t* unextended_sp() const;
0N/A
0N/A // returns the stack pointer of the calling frame
0N/A intptr_t* sender_sp() const;
0N/A
3087N/A // Returns the real 'frame pointer' for the current frame.
3087N/A // This is the value expected by the platform ABI when it defines a
3087N/A // frame pointer register. It may differ from the effective value of
3087N/A // the FP register when that register is used in the JVM for other
3087N/A // purposes (like compiled frames on some platforms).
3087N/A // On other platforms, it is defined so that the stack area used by
3087N/A // this frame goes from real_fp() to sp().
3087N/A intptr_t* real_fp() const;
3087N/A
2764N/A // Deoptimization info, if needed (platform dependent).
2764N/A // Stored in the initial_info field of the unroll info, to be used by
2764N/A // the platform dependent deoptimization blobs.
2764N/A intptr_t *initial_deoptimization_info();
0N/A
0N/A // Interpreter frames:
0N/A
0N/A private:
0N/A intptr_t** interpreter_frame_locals_addr() const;
0N/A intptr_t* interpreter_frame_bcx_addr() const;
0N/A intptr_t* interpreter_frame_mdx_addr() const;
0N/A
0N/A public:
0N/A // Locals
0N/A
0N/A // The _at version returns a pointer because the address is used for GC.
0N/A intptr_t* interpreter_frame_local_at(int index) const;
0N/A
0N/A void interpreter_frame_set_locals(intptr_t* locs);
0N/A
0N/A // byte code index/pointer (use these functions for unchecked frame access only!)
0N/A intptr_t interpreter_frame_bcx() const { return *interpreter_frame_bcx_addr(); }
0N/A void interpreter_frame_set_bcx(intptr_t bcx);
0N/A
0N/A // byte code index
0N/A jint interpreter_frame_bci() const;
0N/A void interpreter_frame_set_bci(jint bci);
0N/A
0N/A // byte code pointer
0N/A address interpreter_frame_bcp() const;
0N/A void interpreter_frame_set_bcp(address bcp);
0N/A
0N/A // Unchecked access to the method data index/pointer.
0N/A // Only use this if you know what you are doing.
0N/A intptr_t interpreter_frame_mdx() const { return *interpreter_frame_mdx_addr(); }
0N/A void interpreter_frame_set_mdx(intptr_t mdx);
0N/A
0N/A // method data pointer
0N/A address interpreter_frame_mdp() const;
0N/A void interpreter_frame_set_mdp(address dp);
0N/A
0N/A // Find receiver out of caller's (compiled) argument list
0N/A oop retrieve_receiver(RegisterMap *reg_map);
0N/A
0N/A // Return the monitor owner and BasicLock for compiled synchronized
0N/A // native methods so that biased locking can revoke the receiver's
1926N/A // bias if necessary. This is also used by JVMTI's GetLocalInstance method
1926N/A // (via VM_GetReceiver) to retrieve the receiver from a native wrapper frame.
1926N/A BasicLock* get_native_monitor();
1926N/A oop get_native_receiver();
0N/A
0N/A // Find receiver for an invoke when arguments are just pushed on stack (i.e., callee stack-frame is
0N/A // not setup)
2062N/A oop interpreter_callee_receiver(Symbol* signature) { return *interpreter_callee_receiver_addr(signature); }
0N/A
0N/A
2062N/A oop* interpreter_callee_receiver_addr(Symbol* signature);
0N/A
0N/A
0N/A // expression stack (may go up or down, direction == 1 or -1)
0N/A public:
0N/A intptr_t* interpreter_frame_expression_stack() const;
0N/A static jint interpreter_frame_expression_stack_direction();
0N/A
0N/A // The _at version returns a pointer because the address is used for GC.
0N/A intptr_t* interpreter_frame_expression_stack_at(jint offset) const;
0N/A
0N/A // top of expression stack
0N/A intptr_t* interpreter_frame_tos_at(jint offset) const;
0N/A intptr_t* interpreter_frame_tos_address() const;
0N/A
0N/A
0N/A jint interpreter_frame_expression_stack_size() const;
0N/A
0N/A intptr_t* interpreter_frame_sender_sp() const;
0N/A
0N/A#ifndef CC_INTERP
0N/A // template based interpreter deoptimization support
0N/A void set_interpreter_frame_sender_sp(intptr_t* sender_sp);
0N/A void interpreter_frame_set_monitor_end(BasicObjectLock* value);
0N/A#endif // CC_INTERP
0N/A
0N/A // BasicObjectLocks:
0N/A //
0N/A // interpreter_frame_monitor_begin is higher in memory than interpreter_frame_monitor_end
0N/A // Interpreter_frame_monitor_begin points to one element beyond the oldest one,
0N/A // interpreter_frame_monitor_end points to the youngest one, or if there are none,
0N/A // it points to one beyond where the first element will be.
0N/A // interpreter_frame_monitor_size reports the allocation size of a monitor in the interpreter stack.
0N/A // this value is >= BasicObjectLock::size(), and may be rounded up
0N/A
0N/A BasicObjectLock* interpreter_frame_monitor_begin() const;
0N/A BasicObjectLock* interpreter_frame_monitor_end() const;
0N/A BasicObjectLock* next_monitor_in_interpreter_frame(BasicObjectLock* current) const;
0N/A BasicObjectLock* previous_monitor_in_interpreter_frame(BasicObjectLock* current) const;
0N/A static int interpreter_frame_monitor_size();
0N/A
0N/A void interpreter_frame_verify_monitor(BasicObjectLock* value) const;
0N/A
0N/A // Tells whether the current interpreter_frame frame pointer
0N/A // corresponds to the old compiled/deoptimized fp
0N/A // The receiver used to be a top level frame
0N/A bool interpreter_frame_equals_unpacked_fp(intptr_t* fp);
0N/A
0N/A // Return/result value from this interpreter frame
0N/A // If the method return type is T_OBJECT or T_ARRAY populates oop_result
0N/A // For other (non-T_VOID) the appropriate field in the jvalue is populated
0N/A // with the result value.
0N/A // Should only be called when at method exit when the method is not
0N/A // exiting due to an exception.
0N/A BasicType interpreter_frame_result(oop* oop_result, jvalue* value_result);
0N/A
0N/A public:
0N/A // Method & constant pool cache
0N/A methodOop interpreter_frame_method() const;
0N/A void interpreter_frame_set_method(methodOop method);
0N/A methodOop* interpreter_frame_method_addr() const;
0N/A constantPoolCacheOop* interpreter_frame_cache_addr() const;
1601N/A#ifdef PPC
1601N/A oop* interpreter_frame_mirror_addr() const;
1601N/A#endif
0N/A
0N/A public:
0N/A // Entry frames
0N/A JavaCallWrapper* entry_frame_call_wrapper() const;
0N/A intptr_t* entry_frame_argument_at(int offset) const;
0N/A
0N/A // tells whether there is another chunk of Delta stack above
0N/A bool entry_frame_is_first() const;
0N/A
0N/A // Compiled frames:
0N/A
0N/A public:
0N/A // Given the index of a local, and the number of argument words
0N/A // in this stack frame, tell which word of the stack frame to find
0N/A // the local in. Arguments are stored above the ofp/rpc pair,
0N/A // while other locals are stored below it.
0N/A // Since monitors (BasicLock blocks) are also assigned indexes,
0N/A // but may have different storage requirements, their presence
0N/A // can also affect the calculation of offsets.
0N/A static int local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors);
0N/A
0N/A // Given the index of a monitor, etc., tell which word of the
0N/A // stack frame contains the start of the BasicLock block.
0N/A // Note that the local index by convention is the __higher__
0N/A // of the two indexes allocated to the block.
0N/A static int monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors);
0N/A
0N/A // Tell the smallest value that local_offset_for_compiler will attain.
0N/A // This is used to help determine how much stack frame to allocate.
0N/A static int min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors);
0N/A
0N/A // Tells if this register must be spilled during a call.
0N/A // On Intel, all registers are smashed by calls.
0N/A static bool volatile_across_calls(Register reg);
0N/A
0N/A
0N/A // Safepoints
0N/A
0N/A public:
0N/A oop saved_oop_result(RegisterMap* map) const;
0N/A void set_saved_oop_result(RegisterMap* map, oop obj);
0N/A
0N/A // For debugging
0N/A private:
0N/A const char* print_name() const;
0N/A
2433N/A void describe_pd(FrameValues& values, int frame_no);
2433N/A
0N/A public:
0N/A void print_value() const { print_value_on(tty,NULL); }
0N/A void print_value_on(outputStream* st, JavaThread *thread) const;
0N/A void print_on(outputStream* st) const;
0N/A void interpreter_frame_print_on(outputStream* st) const;
0N/A void print_on_error(outputStream* st, char* buf, int buflen, bool verbose = false) const;
0N/A
2433N/A // Add annotated descriptions of memory locations belonging to this frame to values
2433N/A void describe(FrameValues& values, int frame_no);
2433N/A
0N/A // Conversion from an VMReg to physical stack location
0N/A oop* oopmapreg_to_location(VMReg reg, const RegisterMap* regmap) const;
0N/A
0N/A // Oops-do's
2062N/A void oops_compiled_arguments_do(Symbol* signature, bool has_receiver, const RegisterMap* reg_map, OopClosure* f);
0N/A void oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool query_oop_map_cache = true);
0N/A
0N/A private:
2062N/A void oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f);
0N/A
0N/A // Iteration of oops
989N/A void oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache);
0N/A void oops_entry_do(OopClosure* f, const RegisterMap* map);
989N/A void oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* map);
0N/A int adjust_offset(methodOop method, int index); // helper for above fn
0N/A public:
0N/A // Memory management
989N/A void oops_do(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map) { oops_do_internal(f, cf, map, true); }
989N/A void nmethods_do(CodeBlobClosure* cf);
0N/A
0N/A void gc_prologue();
0N/A void gc_epilogue();
0N/A void pd_gc_epilog();
0N/A
0N/A# ifdef ENABLE_ZAP_DEAD_LOCALS
0N/A private:
0N/A class CheckValueClosure: public OopClosure {
113N/A public:
113N/A void do_oop(oop* p);
113N/A void do_oop(narrowOop* p) { ShouldNotReachHere(); }
0N/A };
0N/A static CheckValueClosure _check_value;
0N/A
0N/A class CheckOopClosure: public OopClosure {
113N/A public:
113N/A void do_oop(oop* p);
113N/A void do_oop(narrowOop* p) { ShouldNotReachHere(); }
0N/A };
0N/A static CheckOopClosure _check_oop;
0N/A
0N/A static void check_derived_oop(oop* base, oop* derived);
0N/A
0N/A class ZapDeadClosure: public OopClosure {
113N/A public:
113N/A void do_oop(oop* p);
113N/A void do_oop(narrowOop* p) { ShouldNotReachHere(); }
0N/A };
0N/A static ZapDeadClosure _zap_dead;
0N/A
0N/A public:
0N/A // Zapping
0N/A void zap_dead_locals (JavaThread* thread, const RegisterMap* map);
0N/A void zap_dead_interpreted_locals(JavaThread* thread, const RegisterMap* map);
0N/A void zap_dead_compiled_locals (JavaThread* thread, const RegisterMap* map);
0N/A void zap_dead_entry_locals (JavaThread* thread, const RegisterMap* map);
0N/A void zap_dead_deoptimized_locals(JavaThread* thread, const RegisterMap* map);
0N/A# endif
0N/A // Verification
0N/A void verify(const RegisterMap* map);
0N/A static bool verify_return_pc(address x);
0N/A static bool is_bci(intptr_t bcx);
0N/A // Usage:
0N/A // assert(frame::verify_return_pc(return_address), "must be a return pc");
0N/A
0N/A int pd_oop_map_offset_adjustment() const;
0N/A
1879N/A#ifdef TARGET_ARCH_x86
1879N/A# include "frame_x86.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_sparc
1879N/A# include "frame_sparc.hpp"
1879N/A#endif
1879N/A#ifdef TARGET_ARCH_zero
1879N/A# include "frame_zero.hpp"
1879N/A#endif
2073N/A#ifdef TARGET_ARCH_arm
2073N/A# include "frame_arm.hpp"
2073N/A#endif
2073N/A#ifdef TARGET_ARCH_ppc
2073N/A# include "frame_ppc.hpp"
2073N/A#endif
1879N/A
0N/A};
0N/A
3107N/A#ifndef PRODUCT
2433N/A// A simple class to describe a location on the stack
2433N/Aclass FrameValue VALUE_OBJ_CLASS_SPEC {
2433N/A public:
2433N/A intptr_t* location;
2433N/A char* description;
2433N/A int owner;
2433N/A int priority;
2433N/A};
2433N/A
2433N/A
2433N/A// A collection of described stack values that can print a symbolic
2433N/A// description of the stack memory. Interpreter frame values can be
2433N/A// in the caller frames so all the values are collected first and then
2433N/A// sorted before being printed.
2433N/Aclass FrameValues {
2433N/A private:
2433N/A GrowableArray<FrameValue> _values;
2433N/A
2433N/A static int compare(FrameValue* a, FrameValue* b) {
2433N/A if (a->location == b->location) {
2433N/A return a->priority - b->priority;
2433N/A }
2433N/A return a->location - b->location;
2433N/A }
2433N/A
2433N/A public:
2433N/A // Used by frame functions to describe locations.
2433N/A void describe(int owner, intptr_t* location, const char* description, int priority = 0);
2433N/A
3107N/A#ifdef ASSERT
2462N/A void validate();
3107N/A#endif
2880N/A void print(JavaThread* thread);
2433N/A};
2433N/A
2433N/A#endif
0N/A
0N/A//
0N/A// StackFrameStream iterates through the frames of a thread starting from
0N/A// top most frame. It automatically takes care of updating the location of
0N/A// all (callee-saved) registers. Notice: If a thread is stopped at
0N/A// a safepoint, all registers are saved, not only the callee-saved ones.
0N/A//
0N/A// Use:
0N/A//
0N/A// for(StackFrameStream fst(thread); !fst.is_done(); fst.next()) {
0N/A// ...
0N/A// }
0N/A//
0N/Aclass StackFrameStream : public StackObj {
0N/A private:
0N/A frame _fr;
0N/A RegisterMap _reg_map;
0N/A bool _is_done;
0N/A public:
0N/A StackFrameStream(JavaThread *thread, bool update = true);
0N/A
0N/A // Iteration
0N/A bool is_done() { return (_is_done) ? true : (_is_done = _fr.is_first_frame(), false); }
0N/A void next() { if (!_is_done) _fr = _fr.sender(&_reg_map); }
0N/A
0N/A // Query
0N/A frame *current() { return &_fr; }
0N/A RegisterMap* register_map() { return &_reg_map; }
0N/A};
1879N/A
1879N/A#endif // SHARE_VM_RUNTIME_FRAME_HPP