equal
deleted
inserted
replaced
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 * or visit www.oracle.com if you need additional information or have any |
20 * or visit www.oracle.com if you need additional information or have any |
21 * questions. |
21 * questions. |
22 * |
22 * |
23 */ |
23 */ |
|
24 |
|
25 #ifndef SHARE_VM_CI_CIMETHODDATA_HPP |
|
26 #define SHARE_VM_CI_CIMETHODDATA_HPP |
|
27 |
|
28 #include "ci/ciClassList.hpp" |
|
29 #include "ci/ciKlass.hpp" |
|
30 #include "ci/ciObject.hpp" |
|
31 #include "ci/ciUtilities.hpp" |
|
32 #include "oops/methodDataOop.hpp" |
|
33 #include "oops/oop.inline.hpp" |
24 |
34 |
25 class ciBitData; |
35 class ciBitData; |
26 class ciCounterData; |
36 class ciCounterData; |
27 class ciJumpData; |
37 class ciJumpData; |
28 class ciReceiverTypeData; |
38 class ciReceiverTypeData; |
309 // printing support for method data |
319 // printing support for method data |
310 void print(); |
320 void print(); |
311 void print_data_on(outputStream* st); |
321 void print_data_on(outputStream* st); |
312 #endif |
322 #endif |
313 }; |
323 }; |
|
324 |
|
325 #endif // SHARE_VM_CI_CIMETHODDATA_HPP |