equal
deleted
inserted
replaced
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 |