src/share/vm/compiler/methodLiveness.cpp

changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2462
8012aa3ccede
     1.1 --- a/src/share/vm/compiler/methodLiveness.cpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/compiler/methodLiveness.cpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1998, 2006, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1998, 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,6 +22,16 @@
    1.11   *
    1.12   */
    1.13  
    1.14 +#include "precompiled.hpp"
    1.15 +#include "ci/ciMethod.hpp"
    1.16 +#include "ci/ciMethodBlocks.hpp"
    1.17 +#include "ci/ciStreams.hpp"
    1.18 +#include "compiler/methodLiveness.hpp"
    1.19 +#include "interpreter/bytecode.hpp"
    1.20 +#include "interpreter/bytecodes.hpp"
    1.21 +#include "memory/allocation.inline.hpp"
    1.22 +#include "utilities/bitMap.inline.hpp"
    1.23 +
    1.24  // The MethodLiveness class performs a simple liveness analysis on a method
    1.25  // in order to decide which locals are live (that is, will be used again) at
    1.26  // a particular bytecode index (bci).
    1.27 @@ -60,9 +70,6 @@
    1.28  //    analysis.
    1.29  
    1.30  
    1.31 -# include "incls/_precompiled.incl"
    1.32 -# include "incls/_methodLiveness.cpp.incl"
    1.33 -
    1.34  //--------------------------------------------------------------------------
    1.35  // The BitCounter class is used for counting the number of bits set in
    1.36  // some BitMap.  It is only used when collecting liveness statistics.

mercurial