equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 1998, 2009, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
5 * This code is free software; you can redistribute it and/or modify it |
6 * under the terms of the GNU General Public License version 2 only, as |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. |
7 * published by the Free Software Foundation. |
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_CODE_DEBUGINFOREC_HPP |
|
26 #define SHARE_VM_CODE_DEBUGINFOREC_HPP |
|
27 |
|
28 #include "ci/ciClassList.hpp" |
|
29 #include "ci/ciInstanceKlass.hpp" |
|
30 #include "ci/ciMethod.hpp" |
|
31 #include "code/debugInfo.hpp" |
|
32 #include "code/location.hpp" |
|
33 #include "code/pcDesc.hpp" |
|
34 #include "compiler/oopMap.hpp" |
|
35 #include "oops/oop.hpp" |
|
36 #include "utilities/growableArray.hpp" |
24 |
37 |
25 //** The DebugInformationRecorder collects debugging information |
38 //** The DebugInformationRecorder collects debugging information |
26 // for a compiled method. |
39 // for a compiled method. |
27 // Debugging information is used for: |
40 // Debugging information is used for: |
28 // - garbage collecting compiled frames |
41 // - garbage collecting compiled frames |
181 int find_sharable_decode_offset(int stream_offset); |
194 int find_sharable_decode_offset(int stream_offset); |
182 |
195 |
183 public: |
196 public: |
184 enum { serialized_null = 0 }; |
197 enum { serialized_null = 0 }; |
185 }; |
198 }; |
|
199 |
|
200 #endif // SHARE_VM_CODE_DEBUGINFOREC_HPP |