src/share/vm/shark/sharkInvariants.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved. * Copyright 2008, 2009 Red Hat, Inc. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as --- 1,7 ---- /* ! * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright 2008, 2009 Red Hat, Inc. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as
*** 21,30 **** --- 21,43 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_SHARK_SHARKINVARIANTS_HPP + #define SHARE_VM_SHARK_SHARKINVARIANTS_HPP + + #include "ci/ciEnv.hpp" + #include "ci/ciInstanceKlass.hpp" + #include "ci/ciMethod.hpp" + #include "ci/ciTypeFlow.hpp" + #include "code/debugInfoRec.hpp" + #include "code/dependencies.hpp" + #include "memory/allocation.hpp" + #include "shark/llvmHeaders.hpp" + #include "shark/sharkBuilder.hpp" + // Base classes used to track various values through the compilation. // SharkCompileInvariants is used to track values which remain the // same for the top-level method and any inlined methods it may have // (ie for the whole compilation). SharkTargetInvariants is used to // track values which differ between methods.
*** 163,167 **** --- 176,182 ---- } bool is_synchronized() const { return target()->is_synchronized(); } }; + + #endif // SHARE_VM_SHARK_SHARKINVARIANTS_HPP