comparison src/share/vm/ci/ciEnv.hpp @ 2044:06f017f7daa7

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 18:18:08 +0100
parents 2d26b0046e0d f95d63e2154a
children d25d4ca69222
comparison
equal deleted inserted replaced
1942:00bc9eaf0e24 2044:06f017f7daa7
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #ifndef SHARE_VM_CI_CIENV_HPP
26 #define SHARE_VM_CI_CIENV_HPP
27
28 #include "ci/ciClassList.hpp"
29 #include "ci/ciObjectFactory.hpp"
30 #include "classfile/systemDictionary.hpp"
31 #include "code/debugInfoRec.hpp"
32 #include "code/dependencies.hpp"
33 #include "code/exceptionHandlerTable.hpp"
34 #include "compiler/oopMap.hpp"
35 #include "runtime/thread.hpp"
36
25 class CompileTask; 37 class CompileTask;
26 38
27 // ciEnv 39 // ciEnv
28 // 40 //
29 // This class is the top level broker for requests from the compiler 41 // This class is the top level broker for requests from the compiler
388 400
389 void record_failure(const char* reason); 401 void record_failure(const char* reason);
390 void record_method_not_compilable(const char* reason, bool all_tiers = true); 402 void record_method_not_compilable(const char* reason, bool all_tiers = true);
391 void record_out_of_memory_failure(); 403 void record_out_of_memory_failure();
392 }; 404 };
405
406 #endif // SHARE_VM_CI_CIENV_HPP