src/share/vm/ci/ciEnv.hpp

Print this page

        

*** 20,29 **** --- 20,41 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CI_CIENV_HPP + #define SHARE_VM_CI_CIENV_HPP + + #include "ci/ciClassList.hpp" + #include "ci/ciObjectFactory.hpp" + #include "classfile/systemDictionary.hpp" + #include "code/debugInfoRec.hpp" + #include "code/dependencies.hpp" + #include "code/exceptionHandlerTable.hpp" + #include "compiler/oopMap.hpp" + #include "runtime/thread.hpp" + class CompileTask; // ciEnv // // This class is the top level broker for requests from the compiler
*** 382,386 **** --- 394,400 ---- void record_failure(const char* reason); void record_method_not_compilable(const char* reason, bool all_tiers = true); void record_out_of_memory_failure(); }; + + #endif // SHARE_VM_CI_CIENV_HPP