comparison src/share/vm/c1/c1_IR.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents f02a8bbe6ed4
children 5857923e563c 701a83c86f28
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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
25 #ifndef SHARE_VM_C1_C1_IR_HPP
26 #define SHARE_VM_C1_C1_IR_HPP
27
28 #include "c1/c1_Instruction.hpp"
29 #include "ci/ciExceptionHandler.hpp"
30 #include "ci/ciMethod.hpp"
31 #include "ci/ciStreams.hpp"
32 #include "memory/allocation.hpp"
24 33
25 // An XHandler is a C1 internal description for an exception handler 34 // An XHandler is a C1 internal description for an exception handler
26 35
27 class XHandler: public CompilationResourceObj { 36 class XHandler: public CompilationResourceObj {
28 private: 37 private:
335 block->iterate_preorder(this); 344 block->iterate_preorder(this);
336 } 345 }
337 346
338 virtual void block_do(BlockBegin* block); 347 virtual void block_do(BlockBegin* block);
339 }; 348 };
349
350 #endif // SHARE_VM_C1_C1_IR_HPP