aboutsummaryrefslogtreecommitdiff
path: root/agent/src/share/classes/sun/jvm/hotspot/bugspot/VariablePanel.java
blob: 4155e6eb673c1f7f3cf7070cac659cb3dfff9ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
 * Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 *
 */

package sun.jvm.hotspot.bugspot;

import java.awt.*;
import javax.swing.*;
import java.util.*;
import sun.jvm.hotspot.debugger.*;
import sun.jvm.hotspot.debugger.cdbg.*;
import sun.jvm.hotspot.bugspot.tree.*;
import sun.jvm.hotspot.oops.*;
import sun.jvm.hotspot.runtime.*;
import sun.jvm.hotspot.ui.tree.*;
import sun.jvm.hotspot.ui.treetable.*;

/** Manages display of a set of local variables in a frame, or the
    contents of the "this" pointer */

public class VariablePanel extends JPanel {
  private JTreeTable treeTable;
  private SimpleTreeTableModel model;
  private SimpleTreeGroupNode root;

  public VariablePanel() {
    super();

    model = new SimpleTreeTableModel();
    model.setValuesEditable(false);
    root = new SimpleTreeGroupNode();
    model.setRoot(root);
    treeTable = new JTreeTable(model);
    treeTable.setRootVisible(false);
    treeTable.setShowsRootHandles(true);
    treeTable.setShowsIcons(false);
    treeTable.setTreeEditable(false);
    treeTable.getTableHeader().setReorderingAllowed(false);
    treeTable.setCellSelectionEnabled(true);
    treeTable.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
    treeTable.setDragEnabled(true);
    JScrollPane sp = new JScrollPane(treeTable);
    sp.getViewport().setBackground(Color.white);

    setLayout(new BorderLayout());
    add(sp, BorderLayout.CENTER);
  }

  /** Clear the contents of this VariablePanel */
  public void clear() {
    root.removeAllChildren();
    model.fireTreeStructureChanged();
  }

  /** Update the contents of this VariablePanel from the given CFrame */
  public void update(CFrame fr) {
    // Collect locals
    CCollector coll = new CCollector();
    fr.iterateLocals(coll);
    update(coll);
  }

  /** Update the contents of this VariablePanel from the given JavaVFrame */
  public void update(JavaVFrame jfr) {
    Method m = jfr.getMethod();
    if (!m.hasLocalVariableTable()) {
      return;
    }
    int bci = jfr.getBCI();
    // Get local variable table
    LocalVariableTableElement[] locals = m.getLocalVariableTable();
    // Get locals as StackValueCollection
    StackValueCollection coll = jfr.getLocals();
    root.removeAllChildren();
    // See which locals are live
    for (int i = 0; i < locals.length; i++) {
      LocalVariableTableElement local = locals[i];
      if (local.getStartBCI() <= bci && bci < local.getStartBCI() + local.getLength()) {
        // Valid; add it
        SimpleTreeNode node = null;
        Symbol name = null;
        try {
          name = m.getConstants().getSymbolAt(local.getNameCPIndex());
          if (name == null) {
            System.err.println("Null name at slot " +
                               local.getNameCPIndex() +
                               " for local variable at slot " +
                               local.getSlot());
            continue;
          }
        } catch (Exception e) {
          System.err.println("Unable to fetch name at slot " +
                             local.getNameCPIndex() +
                             " for local variable at slot " +
                             local.getSlot());
          e.printStackTrace();
          continue;
        }
        sun.jvm.hotspot.oops.NamedFieldIdentifier f =
          new sun.jvm.hotspot.oops.NamedFieldIdentifier(name.asString());
        Symbol descriptor = null;
        try {
          descriptor = m.getConstants().getSymbolAt(local.getDescriptorCPIndex());
        } catch (Exception e) {
          System.err.println("Unable to fetch descriptor at slot " +
                             local.getDescriptorCPIndex() +
                             " for local variable " + f.getName() +
                             " at slot " + local.getSlot());
          e.printStackTrace();
          continue;
        }

        if (descriptor != null) {
          switch (descriptor.getByteAt(0)) {
          case 'F': {
            node = new sun.jvm.hotspot.ui.tree.FloatTreeNodeAdapter(coll.floatAt(local.getSlot()), f, true);
            break;
          }
          case 'D': {
            node = new sun.jvm.hotspot.ui.tree.DoubleTreeNodeAdapter(coll.doubleAt(local.getSlot()), f, true);
            break;
          }
          case 'C': {
            node = new sun.jvm.hotspot.ui.tree.CharTreeNodeAdapter((char) coll.intAt(local.getSlot()), f, true);
            break;
          }
          case 'B':
          case 'S':
          case 'I': {
            node = new sun.jvm.hotspot.ui.tree.LongTreeNodeAdapter(coll.intAt(local.getSlot()), f, true);
            break;
          }
          case 'Z': {
            node = new sun.jvm.hotspot.ui.tree.BooleanTreeNodeAdapter(
              ((coll.intAt(local.getSlot()) != 0) ? true : false), f, true
            );
            break;
          }
          case 'J': {
            node = new sun.jvm.hotspot.ui.tree.LongTreeNodeAdapter(coll.longAt(local.getSlot()), f, true);
            break;
          }
          default: {
            try {
              node = new sun.jvm.hotspot.ui.tree.OopTreeNodeAdapter(
                VM.getVM().getObjectHeap().newOop(coll.oopHandleAt(local.getSlot())), f, true
              );
            } catch (AddressException e) {
              node = new sun.jvm.hotspot.ui.tree.FieldTreeNodeAdapter(f, true) {
                  public int getChildCount()                       { return 0;     }
                  public SimpleTreeNode getChild(int i)            { return null;  }
                  public boolean isLeaf()                          { return false; }
                  public int getIndexOfChild(SimpleTreeNode child) { return 0;     }
                  public String getValue() {
                    return "<Bad oop>";
                  }
                };
            }
            break;
          }
          }
          if (node != null) {
            root.addChild(node);
          }
        }
      }
    }

    model.fireTreeStructureChanged();
  }

  /** Update the contents of this VariablePanel from the given "this"
      pointer of the given type */
  public void update(Address thisAddr, Type type) {
    // Collect fields
    CCollector coll = new CCollector();
    type.iterateObject(thisAddr, coll);
    update(coll);
  }

  private void update(CCollector coll) {
    root.removeAllChildren();
    for (int i = 0; i < coll.getNumChildren(); i++) {
      root.addChild(coll.getChild(i));
    }
    model.fireTreeStructureChanged();
  }

  static class CCollector extends DefaultObjectVisitor {
    private java.util.List children;

    public CCollector() {
      children = new ArrayList();
    }

    public int getNumChildren() {
      return children.size();
    }

    public SimpleTreeNode getChild(int i) {
      return (SimpleTreeNode) children.get(i);
    }

    public void doBit(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, long val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.LongTreeNodeAdapter(val, f, true));
    }
    public void doInt(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, long val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.LongTreeNodeAdapter(val, f, true));
    }
    public void doEnum(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, long val, String enumName) {
      children.add(new sun.jvm.hotspot.bugspot.tree.EnumTreeNodeAdapter(enumName, val, f, true));
    }
    public void doFloat(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, float val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.FloatTreeNodeAdapter(val, f, true));
    }
    public void doDouble(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, double val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.DoubleTreeNodeAdapter(val, f, true));
    }
    public void doPointer(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.AddressTreeNodeAdapter(val, f, true));
    }
    public void doArray(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.AddressTreeNodeAdapter(val, f, true));
    }
    public void doRef(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.AddressTreeNodeAdapter(val, f, true));
    }
    public void doCompound(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) {
      children.add(new sun.jvm.hotspot.bugspot.tree.ObjectTreeNodeAdapter(val, f, true));
    }
  }
}