comparison src/share/vm/classfile/vmSymbols.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 d257356e35f0
children dad31fc330cd
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
25 #ifndef SHARE_VM_CLASSFILE_VMSYMBOLS_HPP
26 #define SHARE_VM_CLASSFILE_VMSYMBOLS_HPP
27
28 #include "oops/symbolOop.hpp"
24 29
25 // The classes vmSymbols and vmSymbolHandles are a name spaces for fast lookup of 30 // The classes vmSymbols and vmSymbolHandles are a name spaces for fast lookup of
26 // symbols commonly used in the VM. The first class return a symbolOop, while the 31 // symbols commonly used in the VM. The first class return a symbolOop, while the
27 // second class returns a SymbolHandle. The underlying data structure is shared 32 // second class returns a SymbolHandle. The underlying data structure is shared
28 // between the two classes. 33 // between the two classes.
1110 static ID for_unboxing(BasicType type); 1115 static ID for_unboxing(BasicType type);
1111 1116
1112 // Raw conversion: 1117 // Raw conversion:
1113 static ID for_raw_conversion(BasicType src, BasicType dest); 1118 static ID for_raw_conversion(BasicType src, BasicType dest);
1114 }; 1119 };
1120
1121 #endif // SHARE_VM_CLASSFILE_VMSYMBOLS_HPP