comparison src/share/vm/opto/lcm.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 3e8fbc61cee8
children 7e88bdae86ec e6beb62de02d
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 #include "precompiled.hpp"
26 #include "memory/allocation.inline.hpp"
27 #include "opto/block.hpp"
28 #include "opto/c2compiler.hpp"
29 #include "opto/callnode.hpp"
30 #include "opto/cfgnode.hpp"
31 #include "opto/machnode.hpp"
32 #include "opto/runtime.hpp"
33 #ifdef TARGET_ARCH_MODEL_x86_32
34 # include "adfiles/ad_x86_32.hpp"
35 #endif
36 #ifdef TARGET_ARCH_MODEL_x86_64
37 # include "adfiles/ad_x86_64.hpp"
38 #endif
39 #ifdef TARGET_ARCH_MODEL_sparc
40 # include "adfiles/ad_sparc.hpp"
41 #endif
42 #ifdef TARGET_ARCH_MODEL_zero
43 # include "adfiles/ad_zero.hpp"
44 #endif
45
25 // Optimization - Graph Style 46 // Optimization - Graph Style
26
27 #include "incls/_precompiled.incl"
28 #include "incls/_lcm.cpp.incl"
29 47
30 //------------------------------implicit_null_check---------------------------- 48 //------------------------------implicit_null_check----------------------------
31 // Detect implicit-null-check opportunities. Basically, find NULL checks 49 // Detect implicit-null-check opportunities. Basically, find NULL checks
32 // with suitable memory ops nearby. Use the memory op to do the NULL check. 50 // with suitable memory ops nearby. Use the memory op to do the NULL check.
33 // I can generate a memory op if there is not one nearby. 51 // I can generate a memory op if there is not one nearby.