src/share/vm/opto/lcm.cpp

changeset 2314
f95d63e2154a
parent 2103
3e8fbc61cee8
child 2683
7e88bdae86ec
child 2780
e6beb62de02d
     1.1 --- a/src/share/vm/opto/lcm.cpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/opto/lcm.cpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,11 +22,29 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#include "precompiled.hpp"
     1.8 +#include "memory/allocation.inline.hpp"
     1.9 +#include "opto/block.hpp"
    1.10 +#include "opto/c2compiler.hpp"
    1.11 +#include "opto/callnode.hpp"
    1.12 +#include "opto/cfgnode.hpp"
    1.13 +#include "opto/machnode.hpp"
    1.14 +#include "opto/runtime.hpp"
    1.15 +#ifdef TARGET_ARCH_MODEL_x86_32
    1.16 +# include "adfiles/ad_x86_32.hpp"
    1.17 +#endif
    1.18 +#ifdef TARGET_ARCH_MODEL_x86_64
    1.19 +# include "adfiles/ad_x86_64.hpp"
    1.20 +#endif
    1.21 +#ifdef TARGET_ARCH_MODEL_sparc
    1.22 +# include "adfiles/ad_sparc.hpp"
    1.23 +#endif
    1.24 +#ifdef TARGET_ARCH_MODEL_zero
    1.25 +# include "adfiles/ad_zero.hpp"
    1.26 +#endif
    1.27 +
    1.28  // Optimization - Graph Style
    1.29  
    1.30 -#include "incls/_precompiled.incl"
    1.31 -#include "incls/_lcm.cpp.incl"
    1.32 -
    1.33  //------------------------------implicit_null_check----------------------------
    1.34  // Detect implicit-null-check opportunities.  Basically, find NULL checks
    1.35  // with suitable memory ops nearby.  Use the memory op to do the NULL check.

mercurial