comparison src/share/vm/c1/c1_Instruction.hpp @ 3900:a32de5085326

7079673: JSR 292: C1 should inline bytecoded method handle adapters Reviewed-by: never
author twisti
date Thu, 01 Sep 2011 01:31:25 -0700
parents 13bc79b5c9c8
children 973293defacd
comparison
equal deleted inserted replaced
3899:c124e2e7463e 3900:a32de5085326
1599 void set_dominator(BlockBegin* dom) { _dominator = dom; } 1599 void set_dominator(BlockBegin* dom) { _dominator = dom; }
1600 void set_loop_depth(int d) { _loop_depth = d; } 1600 void set_loop_depth(int d) { _loop_depth = d; }
1601 void set_depth_first_number(int dfn) { _depth_first_number = dfn; } 1601 void set_depth_first_number(int dfn) { _depth_first_number = dfn; }
1602 void set_linear_scan_number(int lsn) { _linear_scan_number = lsn; } 1602 void set_linear_scan_number(int lsn) { _linear_scan_number = lsn; }
1603 void set_end(BlockEnd* end); 1603 void set_end(BlockEnd* end);
1604 void clear_end();
1604 void disconnect_from_graph(); 1605 void disconnect_from_graph();
1605 static void disconnect_edge(BlockBegin* from, BlockBegin* to); 1606 static void disconnect_edge(BlockBegin* from, BlockBegin* to);
1606 BlockBegin* insert_block_between(BlockBegin* sux); 1607 BlockBegin* insert_block_between(BlockBegin* sux);
1607 void substitute_sux(BlockBegin* old_sux, BlockBegin* new_sux); 1608 void substitute_sux(BlockBegin* old_sux, BlockBegin* new_sux);
1608 void set_lir(LIR_List* lir) { _lir = lir; } 1609 void set_lir(LIR_List* lir) { _lir = lir; }