src/share/vm/runtime/vframe.hpp

Tue, 01 Apr 2008 16:14:18 -0700

author
kvn
date
Tue, 01 Apr 2008 16:14:18 -0700
changeset 518
d3cd40645d0d
parent 435
a61af66fc99e
child 542
93b6525e3b82
permissions
-rw-r--r--

6681646: Relocking of a scalar replaced object during deoptimization is broken
Summary: Relocking of a thread-local object during deoptimization is broken
Reviewed-by: kbr, jrose, never

     1 /*
     2  * Copyright 1997-2007 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 // vframes are virtual stack frames representing source level activations.
    26 // A single frame may hold several source level activations in the case of
    27 // optimized code. The debugging stored with the optimized code enables
    28 // us to unfold a frame as a stack of vframes.
    29 // A cVFrame represents an activation of a non-java method.
    31 // The vframe inheritance hierarchy:
    32 // - vframe
    33 //   - javaVFrame
    34 //     - interpretedVFrame
    35 //     - compiledVFrame     ; (used for both compiled Java methods and native stubs)
    36 //   - externalVFrame
    37 //     - entryVFrame        ; special frame created when calling Java from C
    39 // - BasicLock
    41 class vframe: public ResourceObj {
    42  protected:
    43   frame        _fr;      // Raw frame behind the virtual frame.
    44   RegisterMap  _reg_map; // Register map for the raw frame (used to handle callee-saved registers).
    45   JavaThread*  _thread;  // The thread owning the raw frame.
    47   vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread);
    48   vframe(const frame* fr, JavaThread* thread);
    49  public:
    50   // Factory method for creating vframes
    51   static vframe* new_vframe(const frame* f, const RegisterMap *reg_map, JavaThread* thread);
    53   // Accessors
    54   frame              fr()           const { return _fr;       }
    55   CodeBlob*          cb()         const { return _fr.cb();  }
    56   nmethod*           nm()         const {
    57       assert( cb() != NULL && cb()->is_nmethod(), "usage");
    58       return (nmethod*) cb();
    59   }
    61 // ???? Does this need to be a copy?
    62   frame*             frame_pointer() { return &_fr;       }
    63   const RegisterMap* register_map() const { return &_reg_map; }
    64   JavaThread*        thread()       const { return _thread;   }
    66   // Returns the sender vframe
    67   virtual vframe* sender() const;
    69   // Returns the next javaVFrame on the stack (skipping all other kinds of frame)
    70   javaVFrame *java_sender() const;
    72   // Answers if the this is the top vframe in the frame, i.e., if the sender vframe
    73   // is in the caller frame
    74   virtual bool is_top() const { return true; }
    76   // Returns top vframe within same frame (see is_top())
    77   virtual vframe* top() const;
    79   // Type testing operations
    80   virtual bool is_entry_frame()       const { return false; }
    81   virtual bool is_java_frame()        const { return false; }
    82   virtual bool is_interpreted_frame() const { return false; }
    83   virtual bool is_compiled_frame()    const { return false; }
    85 #ifndef PRODUCT
    86   // printing operations
    87   virtual void print_value() const;
    88   virtual void print();
    89 #endif
    90 };
    93 class javaVFrame: public vframe {
    94  public:
    95   // JVM state
    96   virtual methodOop                    method()         const = 0;
    97   virtual int                          bci()            const = 0;
    98   virtual StackValueCollection*        locals()         const = 0;
    99   virtual StackValueCollection*        expressions()    const = 0;
   100   // the order returned by monitors() is from oldest -> youngest#4418568
   101   virtual GrowableArray<MonitorInfo*>* monitors()       const = 0;
   103   // Debugging support via JVMTI.
   104   // NOTE that this is not guaranteed to give correct results for compiled vframes.
   105   // Deoptimize first if necessary.
   106   virtual void set_locals(StackValueCollection* values) const = 0;
   108   // Test operation
   109   bool is_java_frame() const { return true; }
   111  protected:
   112   javaVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) : vframe(fr, reg_map, thread) {}
   113   javaVFrame(const frame* fr, JavaThread* thread) : vframe(fr, thread) {}
   115  public:
   116   // casting
   117   static javaVFrame* cast(vframe* vf) {
   118     assert(vf == NULL || vf->is_java_frame(), "must be java frame");
   119     return (javaVFrame*) vf;
   120   }
   122   // Return an array of monitors locked by this frame in the youngest to oldest order
   123   GrowableArray<MonitorInfo*>* locked_monitors();
   125   // printing used during stack dumps
   126   void print_lock_info_on(outputStream* st, int frame_count);
   127   void print_lock_info(int frame_count) { print_lock_info_on(tty, frame_count); }
   129 #ifndef PRODUCT
   130  public:
   131   // printing operations
   132   void print();
   133   void print_value() const;
   134   void print_activation(int index) const;
   136   // verify operations
   137   virtual void verify() const;
   139   // Structural compare
   140   bool structural_compare(javaVFrame* other);
   141 #endif
   142   friend class vframe;
   143 };
   145 class interpretedVFrame: public javaVFrame {
   146  public:
   147   // JVM state
   148   methodOop                    method()         const;
   149   int                          bci()            const;
   150   StackValueCollection*        locals()         const;
   151   StackValueCollection*        expressions()    const;
   152   GrowableArray<MonitorInfo*>* monitors()       const;
   154   void set_locals(StackValueCollection* values) const;
   156   // Test operation
   157   bool is_interpreted_frame() const { return true; }
   159  protected:
   160   interpretedVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) : javaVFrame(fr, reg_map, thread) {};
   162  public:
   163   // Accessors for Byte Code Pointer
   164   u_char* bcp() const;
   165   void set_bcp(u_char* bcp);
   167   // casting
   168   static interpretedVFrame* cast(vframe* vf) {
   169     assert(vf == NULL || vf->is_interpreted_frame(), "must be interpreted frame");
   170     return (interpretedVFrame*) vf;
   171   }
   173  private:
   174   static const int bcp_offset;
   175   intptr_t* locals_addr_at(int offset) const;
   177   // returns where the parameters starts relative to the frame pointer
   178   int start_of_parameters() const;
   180 #ifndef PRODUCT
   181  public:
   182   // verify operations
   183   void verify() const;
   184 #endif
   185   friend class vframe;
   186 };
   189 class externalVFrame: public vframe {
   190  protected:
   191   externalVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) : vframe(fr, reg_map, thread) {}
   193 #ifndef PRODUCT
   194  public:
   195   // printing operations
   196   void print_value() const;
   197   void print();
   198 #endif
   199   friend class vframe;
   200 };
   202 class entryVFrame: public externalVFrame {
   203  public:
   204   bool is_entry_frame() const { return true; }
   206  protected:
   207   entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread);
   209  public:
   210   // casting
   211   static entryVFrame* cast(vframe* vf) {
   212     assert(vf == NULL || vf->is_entry_frame(), "must be entry frame");
   213     return (entryVFrame*) vf;
   214   }
   216 #ifndef PRODUCT
   217  public:
   218   // printing
   219   void print_value() const;
   220   void print();
   221 #endif
   222   friend class vframe;
   223 };
   226 // A MonitorInfo is a ResourceObject that describes a the pair:
   227 // 1) the owner of the monitor
   228 // 2) the monitor lock
   229 class MonitorInfo : public ResourceObj {
   230  private:
   231   oop        _owner; // the object owning the monitor
   232   BasicLock* _lock;
   233   bool       _eliminated;
   234  public:
   235   // Constructor
   236   MonitorInfo(oop owner, BasicLock* lock, bool eliminated) {
   237     _owner = owner;
   238     _lock  = lock;
   239     _eliminated = eliminated;
   240   }
   241   // Accessors
   242   oop        owner() const { return _owner; }
   243   BasicLock* lock()  const { return _lock;  }
   244   bool eliminated()  const { return _eliminated; }
   245 };
   247 class vframeStreamCommon : StackObj {
   248  protected:
   249   // common
   250   frame        _frame;
   251   JavaThread*  _thread;
   252   RegisterMap  _reg_map;
   253   enum { interpreted_mode, compiled_mode, at_end_mode } _mode;
   255   int _sender_decode_offset;
   257   // Cached information
   258   methodOop _method;
   259   int       _bci;
   261   // Should VM activations be ignored or not
   262   bool _stop_at_java_call_stub;
   264   bool fill_in_compiled_inlined_sender();
   265   void fill_from_compiled_frame(int decode_offset);
   266   void fill_from_compiled_native_frame();
   268   void found_bad_method_frame();
   270   void fill_from_interpreter_frame();
   271   bool fill_from_frame();
   273   // Helper routine for security_get_caller_frame
   274   void skip_prefixed_method_and_wrappers();
   276  public:
   277   // Constructor
   278   vframeStreamCommon(JavaThread* thread) : _reg_map(thread, false) {
   279     _thread = thread;
   280   }
   282   // Accessors
   283   methodOop method() const { return _method; }
   284   int bci() const { return _bci; }
   285   intptr_t* frame_id() const { return _frame.id(); }
   286   address frame_pc() const { return _frame.pc(); }
   288   CodeBlob*          cb()         const { return _frame.cb();  }
   289   nmethod*           nm()         const {
   290       assert( cb() != NULL && cb()->is_nmethod(), "usage");
   291       return (nmethod*) cb();
   292   }
   294   // Frame type
   295   bool is_interpreted_frame() const { return _frame.is_interpreted_frame(); }
   296   bool is_entry_frame() const       { return _frame.is_entry_frame(); }
   298   // Iteration
   299   void next() {
   300     // handle frames with inlining
   301     if (_mode == compiled_mode    && fill_in_compiled_inlined_sender()) return;
   303     // handle general case
   304     do {
   305       _frame = _frame.sender(&_reg_map);
   306     } while (!fill_from_frame());
   307   }
   309   bool at_end() const { return _mode == at_end_mode; }
   311   // Implements security traversal. Skips depth no. of frame including
   312   // special security frames and prefixed native methods
   313   void security_get_caller_frame(int depth);
   315   // Helper routine for JVM_LatestUserDefinedLoader -- needed for 1.4
   316   // reflection implementation
   317   void skip_reflection_related_frames();
   318 };
   320 class vframeStream : public vframeStreamCommon {
   321  public:
   322   // Constructors
   323   vframeStream(JavaThread* thread, bool stop_at_java_call_stub = false)
   324     : vframeStreamCommon(thread) {
   325     _stop_at_java_call_stub = stop_at_java_call_stub;
   327     if (!thread->has_last_Java_frame()) {
   328       _mode = at_end_mode;
   329       return;
   330     }
   332     _frame = _thread->last_frame();
   333     while (!fill_from_frame()) {
   334       _frame = _frame.sender(&_reg_map);
   335     }
   336   }
   338   // top_frame may not be at safepoint, start with sender
   339   vframeStream(JavaThread* thread, frame top_frame, bool stop_at_java_call_stub = false);
   340 };
   343 inline bool vframeStreamCommon::fill_in_compiled_inlined_sender() {
   344   if (_sender_decode_offset == DebugInformationRecorder::serialized_null) {
   345     return false;
   346   }
   347   fill_from_compiled_frame(_sender_decode_offset);
   348   return true;
   349 }
   352 inline void vframeStreamCommon::fill_from_compiled_frame(int decode_offset) {
   353   _mode = compiled_mode;
   355   // Range check to detect ridiculous offsets.
   356   if (decode_offset == DebugInformationRecorder::serialized_null ||
   357       decode_offset < 0 ||
   358       decode_offset >= nm()->scopes_data_size()) {
   359     // 6379830 AsyncGetCallTrace sometimes feeds us wild frames.
   360     // If we attempt to read nmethod::scopes_data at serialized_null (== 0),
   361     // or if we read some at other crazy offset,
   362     // we will decode garbage and make wild references into the heap,
   363     // leading to crashes in product mode.
   364     // (This isn't airtight, of course, since there are internal
   365     // offsets which are also crazy.)
   366 #ifdef ASSERT
   367     if (WizardMode) {
   368       tty->print_cr("Error in fill_from_frame: pc_desc for "
   369                     INTPTR_FORMAT " not found or invalid at %d",
   370                     _frame.pc(), decode_offset);
   371       nm()->print();
   372       nm()->method()->print_codes();
   373       nm()->print_code();
   374       nm()->print_pcs();
   375     }
   376 #endif
   377     // Provide a cheap fallback in product mode.  (See comment above.)
   378     found_bad_method_frame();
   379     fill_from_compiled_native_frame();
   380     return;
   381   }
   383   // Decode first part of scopeDesc
   384   DebugInfoReadStream buffer(nm(), decode_offset);
   385   _sender_decode_offset = buffer.read_int();
   386   _method               = methodOop(buffer.read_oop());
   387   _bci                  = buffer.read_bci();
   389   assert(_method->is_method(), "checking type of decoded method");
   390 }
   392 // The native frames are handled specially. We do not rely on ScopeDesc info
   393 // since the pc might not be exact due to the _last_native_pc trick.
   394 inline void vframeStreamCommon::fill_from_compiled_native_frame() {
   395   _mode = compiled_mode;
   396   _sender_decode_offset = DebugInformationRecorder::serialized_null;
   397   _method = nm()->method();
   398   _bci = 0;
   399 }
   401 inline bool vframeStreamCommon::fill_from_frame() {
   402   // Interpreted frame
   403   if (_frame.is_interpreted_frame()) {
   404     fill_from_interpreter_frame();
   405     return true;
   406   }
   408   // Compiled frame
   410   if (cb() != NULL && cb()->is_nmethod()) {
   411     if (nm()->is_native_method()) {
   412       // Do not rely on scopeDesc since the pc might be unprecise due to the _last_native_pc trick.
   413       fill_from_compiled_native_frame();
   414     } else {
   415       PcDesc* pc_desc = nm()->pc_desc_at(_frame.pc());
   416       int decode_offset;
   417       if (pc_desc == NULL) {
   418         // Should not happen, but let fill_from_compiled_frame handle it.
   419         decode_offset = DebugInformationRecorder::serialized_null;
   420       } else {
   421         decode_offset = pc_desc->scope_decode_offset();
   422       }
   423       fill_from_compiled_frame(decode_offset);
   424     }
   425     return true;
   426   }
   428   // End of stack?
   429   if (_frame.is_first_frame() || (_stop_at_java_call_stub && _frame.is_entry_frame())) {
   430     _mode = at_end_mode;
   431     return true;
   432   }
   434   return false;
   435 }
   438 inline void vframeStreamCommon::fill_from_interpreter_frame() {
   439   methodOop method = _frame.interpreter_frame_method();
   440   intptr_t  bcx    = _frame.interpreter_frame_bcx();
   441   int       bci    = method->validate_bci_from_bcx(bcx);
   442   // 6379830 AsyncGetCallTrace sometimes feeds us wild frames.
   443   if (bci < 0) {
   444     found_bad_method_frame();
   445     bci = 0;  // pretend it's on the point of entering
   446   }
   447   _mode   = interpreted_mode;
   448   _method = method;
   449   _bci    = bci;
   450 }

mercurial