hotspot/src/share/vm/runtime/vframe_hp.hpp
author bobv
Thu, 07 Oct 2010 15:12:57 -0400
changeset 6965 4ef36b2a6a3a
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6989297: Integrate additional portability improvements Reviewed-by: vladidan, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
     2
 * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class compiledVFrame: public javaVFrame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
  // JVM state
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    28
  methodOop                    method()             const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    29
  int                          bci()                const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    30
  bool                         should_reexecute()   const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    31
  StackValueCollection*        locals()             const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    32
  StackValueCollection*        expressions()        const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    33
  GrowableArray<MonitorInfo*>* monitors()           const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  void set_locals(StackValueCollection* values) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // Virtuals defined in vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  bool is_compiled_frame() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  vframe* sender() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  bool is_top() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // Casting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  static compiledVFrame* cast(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    assert(vf == NULL || vf->is_compiled_frame(), "must be compiled frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    return (compiledVFrame*) vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Update a local in a compiled frame. Update happens when deopt occurs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  void update_local(BasicType type, int index, jvalue value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Returns the active nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  nmethod*  code() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // Returns the scopeDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  ScopeDesc* scope() const { return _scope; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Returns SynchronizationEntryBCI or bci() (used for synchronization)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  int raw_bci() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  ScopeDesc* _scope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  //StackValue resolve(ScopeValue* sv) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  BasicLock* resolve_monitor_lock(Location location) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  StackValue *create_stack_value(ScopeValue *sv) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  void verify() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// In order to implement set_locals for compiled vframes we must
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// store updated locals in a data structure that contains enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// information to recognize equality with a vframe and to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// any updated locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
class jvmtiDeferredLocalVariable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
class jvmtiDeferredLocalVariableSet : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  methodOop _method;           // must be GC'd
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  int       _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  intptr_t* _id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  GrowableArray<jvmtiDeferredLocalVariable*>* _locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // JVM state
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  methodOop                         method()         const  { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  int                               bci()            const  { return _bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  intptr_t*                         id()             const  { return _id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  GrowableArray<jvmtiDeferredLocalVariable*>* locals()         const  { return _locals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  void                              set_local_at(int idx, BasicType typ, jvalue val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Does the vframe match this jvmtiDeferredLocalVariableSet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  bool                              matches(vframe* vf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void                              oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  jvmtiDeferredLocalVariableSet(methodOop method, int bci, intptr_t* id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  ~jvmtiDeferredLocalVariableSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
class jvmtiDeferredLocalVariable : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    BasicType type(void)                   { return _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    int index(void)                        { return _index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    jvalue value(void)                     { return _value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // Only mutator is for value as only it can change
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    void set_value(jvalue value)           { _value = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    // For gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    oop* oop_addr(void)                    { return (oop*) &_value.l; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    BasicType         _type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    jvalue            _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    int               _index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
};