hotspot/src/share/vm/runtime/vframe_hp.hpp
changeset 3600 27aa4477d039
parent 1 489c9b5090e2
child 3795 6227ff014cfe
equal deleted inserted replaced
3599:35bb709f2c62 3600:27aa4477d039
    23  */
    23  */
    24 
    24 
    25 class compiledVFrame: public javaVFrame {
    25 class compiledVFrame: public javaVFrame {
    26  public:
    26  public:
    27   // JVM state
    27   // JVM state
    28   methodOop                    method()         const;
    28   methodOop                    method()             const;
    29   int                          bci()            const;
    29   int                          bci()                const;
    30   StackValueCollection*        locals()         const;
    30   bool                         should_reexecute()   const;
    31   StackValueCollection*        expressions()    const;
    31   StackValueCollection*        locals()             const;
    32   GrowableArray<MonitorInfo*>* monitors()       const;
    32   StackValueCollection*        expressions()        const;
       
    33   GrowableArray<MonitorInfo*>* monitors()           const;
    33 
    34 
    34   void set_locals(StackValueCollection* values) const;
    35   void set_locals(StackValueCollection* values) const;
    35 
    36 
    36   // Virtuals defined in vframe
    37   // Virtuals defined in vframe
    37   bool is_compiled_frame() const { return true; }
    38   bool is_compiled_frame() const { return true; }