comparison visualizer/Data/src/com/sun/hotspot/igv/data/InputBytecode.java @ 5800:be428fe2d86c

handles changes in IGV bytecode format
author Doug Simon <doug.simon@oracle.com>
date Tue, 10 Jul 2012 09:36:34 +0200
parents 015fb895586b
children
comparison
equal deleted inserted replaced
5798:2585af1e26ac 5800:be428fe2d86c
29 */ 29 */
30 public class InputBytecode { 30 public class InputBytecode {
31 31
32 private int bci; 32 private int bci;
33 private String name; 33 private String name;
34 private String operands;
35 private String comment;
34 private InputMethod inlined; 36 private InputMethod inlined;
35 37
36 public InputBytecode(int bci, String name) { 38 public InputBytecode(int bci, String name, String operands, String comment) {
37 this.bci = bci; 39 this.bci = bci;
38 this.name = name; 40 this.name = name;
41 this.operands = operands;
42 this.comment = comment;
39 } 43 }
40 44
41 public InputMethod getInlined() { 45 public InputMethod getInlined() {
42 return inlined; 46 return inlined;
43 } 47 }
51 } 55 }
52 56
53 public String getName() { 57 public String getName() {
54 return name; 58 return name;
55 } 59 }
60
61 public String getOperands() {
62 return operands;
63 }
64
65 public String getComment() {
66 return comment;
67 }
56 } 68 }