src/share/vm/ci/ciMethod.hpp

changeset 2003
8099e71601df
parent 1907
c18cbe5936b8
child 2047
d2ede61b7a12
equal deleted inserted replaced
2002:079980c86f33 2003:8099e71601df
46 ciFlags _flags; 46 ciFlags _flags;
47 ciSymbol* _name; 47 ciSymbol* _name;
48 ciInstanceKlass* _holder; 48 ciInstanceKlass* _holder;
49 ciSignature* _signature; 49 ciSignature* _signature;
50 ciMethodData* _method_data; 50 ciMethodData* _method_data;
51 BCEscapeAnalyzer* _bcea;
52 ciMethodBlocks* _method_blocks; 51 ciMethodBlocks* _method_blocks;
53 52
54 // Code attributes. 53 // Code attributes.
55 int _code_size; 54 int _code_size;
56 int _max_stack; 55 int _max_stack;
70 ciExceptionHandler** _exception_handlers; 69 ciExceptionHandler** _exception_handlers;
71 70
72 // Optional liveness analyzer. 71 // Optional liveness analyzer.
73 MethodLiveness* _liveness; 72 MethodLiveness* _liveness;
74 #ifdef COMPILER2 73 #ifdef COMPILER2
75 ciTypeFlow* _flow; 74 ciTypeFlow* _flow;
75 BCEscapeAnalyzer* _bcea;
76 #endif 76 #endif
77 77
78 ciMethod(methodHandle h_m); 78 ciMethod(methodHandle h_m);
79 ciMethod(ciInstanceKlass* holder, ciSymbol* name, ciSymbol* signature); 79 ciMethod(ciInstanceKlass* holder, ciSymbol* name, ciSymbol* signature);
80 80

mercurial