hotspot/src/share/vm/runtime/vframe_hp.hpp
author jiangli
Tue, 08 Jan 2013 13:01:19 -0500
changeset 15109 088b1ea04490
parent 13728 882756847a04
child 38133 78b95467b9f1
permissions -rw-r--r--
8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9. Summary: Use methodHandle. Reviewed-by: coleenp, acorn, twisti, sspitsyn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
     2
 * Copyright (c) 1997, 2012, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_VFRAME_HP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_VFRAME_HP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/vframe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class compiledVFrame: public javaVFrame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  // JVM state
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    33
  Method*                      method()             const;
3600
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    34
  int                          bci()                const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    35
  bool                         should_reexecute()   const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    36
  StackValueCollection*        locals()             const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    37
  StackValueCollection*        expressions()        const;
27aa4477d039 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 1
diff changeset
    38
  GrowableArray<MonitorInfo*>* monitors()           const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  void set_locals(StackValueCollection* values) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // Virtuals defined in vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  bool is_compiled_frame() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  vframe* sender() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  bool is_top() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // Casting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static compiledVFrame* cast(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    assert(vf == NULL || vf->is_compiled_frame(), "must be compiled frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    return (compiledVFrame*) vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Update a local in a compiled frame. Update happens when deopt occurs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  void update_local(BasicType type, int index, jvalue value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // Returns the active nmethod
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  nmethod*  code() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // Returns the scopeDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  ScopeDesc* scope() const { return _scope; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Returns SynchronizationEntryBCI or bci() (used for synchronization)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int raw_bci() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  ScopeDesc* _scope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  //StackValue resolve(ScopeValue* sv) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  BasicLock* resolve_monitor_lock(Location location) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  StackValue *create_stack_value(ScopeValue *sv) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  void verify() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// In order to implement set_locals for compiled vframes we must
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// store updated locals in a data structure that contains enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// information to recognize equality with a vframe and to store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// any updated locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
class jvmtiDeferredLocalVariable;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    92
class jvmtiDeferredLocalVariableSet : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    95
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  int       _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  intptr_t* _id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  GrowableArray<jvmtiDeferredLocalVariable*>* _locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // JVM state
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   102
  Method*                           method()         const  { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  int                               bci()            const  { return _bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  intptr_t*                         id()             const  { return _id; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  GrowableArray<jvmtiDeferredLocalVariable*>* locals()         const  { return _locals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void                              set_local_at(int idx, BasicType typ, jvalue val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Does the vframe match this jvmtiDeferredLocalVariableSet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  bool                              matches(vframe* vf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void                              oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // constructor
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   114
  jvmtiDeferredLocalVariableSet(Method* method, int bci, intptr_t* id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  ~jvmtiDeferredLocalVariableSet();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   122
class jvmtiDeferredLocalVariable : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    BasicType type(void)                   { return _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    int index(void)                        { return _index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    jvalue value(void)                     { return _value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    // Only mutator is for value as only it can change
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    void set_value(jvalue value)           { _value = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    // For gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    oop* oop_addr(void)                    { return (oop*) &_value.l; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    BasicType         _type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    jvalue            _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    int               _index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   142
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   143
#endif // SHARE_VM_RUNTIME_VFRAME_HP_HPP