src/share/vm/opto/gcm.cpp

changeset 2314
f95d63e2154a
parent 2040
0e35fa8ebccd
child 2350
2f644f85485d
     1.1 --- a/src/share/vm/opto/gcm.cpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/opto/gcm.cpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -22,13 +22,36 @@
    1.11   *
    1.12   */
    1.13  
    1.14 +#include "precompiled.hpp"
    1.15 +#include "libadt/vectset.hpp"
    1.16 +#include "memory/allocation.inline.hpp"
    1.17 +#include "opto/block.hpp"
    1.18 +#include "opto/c2compiler.hpp"
    1.19 +#include "opto/callnode.hpp"
    1.20 +#include "opto/cfgnode.hpp"
    1.21 +#include "opto/machnode.hpp"
    1.22 +#include "opto/opcodes.hpp"
    1.23 +#include "opto/phaseX.hpp"
    1.24 +#include "opto/rootnode.hpp"
    1.25 +#include "opto/runtime.hpp"
    1.26 +#include "runtime/deoptimization.hpp"
    1.27 +#ifdef TARGET_ARCH_MODEL_x86_32
    1.28 +# include "adfiles/ad_x86_32.hpp"
    1.29 +#endif
    1.30 +#ifdef TARGET_ARCH_MODEL_x86_64
    1.31 +# include "adfiles/ad_x86_64.hpp"
    1.32 +#endif
    1.33 +#ifdef TARGET_ARCH_MODEL_sparc
    1.34 +# include "adfiles/ad_sparc.hpp"
    1.35 +#endif
    1.36 +#ifdef TARGET_ARCH_MODEL_zero
    1.37 +# include "adfiles/ad_zero.hpp"
    1.38 +#endif
    1.39 +
    1.40  // Portions of code courtesy of Clifford Click
    1.41  
    1.42  // Optimization - Graph Style
    1.43  
    1.44 -#include "incls/_precompiled.incl"
    1.45 -#include "incls/_gcm.cpp.incl"
    1.46 -
    1.47  // To avoid float value underflow
    1.48  #define MIN_BLOCK_FREQUENCY 1.e-35f
    1.49  

mercurial