comparison src/share/vm/runtime/compilationPolicy.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 d5d065957597
children 409ef3a68dc8 2c359f27615c
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_RUNTIME_COMPILATIONPOLICY_HPP
26 #define SHARE_VM_RUNTIME_COMPILATIONPOLICY_HPP
27
28 #include "code/nmethod.hpp"
29 #include "compiler/compileBroker.hpp"
30 #include "memory/allocation.hpp"
31 #include "runtime/vm_operations.hpp"
32 #include "utilities/growableArray.hpp"
24 33
25 // The CompilationPolicy selects which method (if any) should be compiled. 34 // The CompilationPolicy selects which method (if any) should be compiled.
26 // It also decides which methods must always be compiled (i.e., are never 35 // It also decides which methods must always be compiled (i.e., are never
27 // interpreted). 36 // interpreted).
28 class CompileTask; 37 class CompileTask;
124 static const char* shouldNotInline(methodHandle callee); 133 static const char* shouldNotInline(methodHandle callee);
125 // negative filter: should send NOT be inlined? returns NULL (--> inline) or rejection msg 134 // negative filter: should send NOT be inlined? returns NULL (--> inline) or rejection msg
126 135
127 }; 136 };
128 #endif 137 #endif
138
139 #endif // SHARE_VM_RUNTIME_COMPILATIONPOLICY_HPP