comparison src/share/vm/prims/jvmtiClassFileReconstituter.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents e9ff18c4ace7
children 3582bf76420e
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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 # include "incls/_precompiled.incl" 24
25 # include "incls/_jvmtiClassFileReconstituter.cpp.incl" 25 #include "precompiled.hpp"
26 26 #include "classfile/symbolTable.hpp"
27 #include "interpreter/bytecodeStream.hpp"
28 #include "prims/jvmtiClassFileReconstituter.hpp"
29 #include "runtime/signature.hpp"
30 #ifdef TARGET_ARCH_x86
31 # include "bytes_x86.hpp"
32 #endif
33 #ifdef TARGET_ARCH_sparc
34 # include "bytes_sparc.hpp"
35 #endif
36 #ifdef TARGET_ARCH_zero
37 # include "bytes_zero.hpp"
38 #endif
27 // FIXME: add Deprecated, LVT, LVTT attributes 39 // FIXME: add Deprecated, LVT, LVTT attributes
28 // FIXME: fix Synthetic attribute 40 // FIXME: fix Synthetic attribute
29 // FIXME: per Serguei, add error return handling for constantPoolOopDesc::copy_cpool_bytes() 41 // FIXME: per Serguei, add error return handling for constantPoolOopDesc::copy_cpool_bytes()
30 42
31 43