comparison src/share/vm/oops/methodOop.hpp @ 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 a4c7fe54bf3f
children 8012aa3ccede
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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 24
25 #ifndef SHARE_VM_OOPS_METHODOOP_HPP
26 #define SHARE_VM_OOPS_METHODOOP_HPP
27
28 #include "classfile/vmSymbols.hpp"
29 #include "code/compressedStream.hpp"
30 #include "compiler/oopMap.hpp"
31 #include "interpreter/invocationCounter.hpp"
32 #include "oops/constMethodOop.hpp"
33 #include "oops/constantPoolOop.hpp"
34 #include "oops/instanceKlass.hpp"
35 #include "oops/oop.hpp"
36 #include "oops/typeArrayOop.hpp"
37 #include "utilities/accessFlags.hpp"
38 #include "utilities/growableArray.hpp"
39
25 // A methodOop represents a Java method. 40 // A methodOop represents a Java method.
26 // 41 //
27 // Memory layout (each line represents a word). Note that most applications load thousands of methods, 42 // Memory layout (each line represents a word). Note that most applications load thousands of methods,
28 // so keeping the size of this structure small has a big impact on footprint. 43 // so keeping the size of this structure small has a big impact on footprint.
29 // 44 //
782 } 797 }
783 798
784 void set(methodOop method); 799 void set(methodOop method);
785 void clear(methodOop method); 800 void clear(methodOop method);
786 }; 801 };
802
803 #endif // SHARE_VM_OOPS_METHODOOP_HPP