comparison src/share/vm/opto/block.hpp @ 7212:291ffc492eb6

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Fri, 14 Dec 2012 14:35:13 +0100
parents 2aff40cb4703
children d1034bd8cefc
comparison
equal deleted inserted replaced
7163:2ed8d74e5984 7212:291ffc492eb6
290 Node *select(PhaseCFG *cfg, Node_List &worklist, GrowableArray<int> &ready_cnt, VectorSet &next_call, uint sched_slot); 290 Node *select(PhaseCFG *cfg, Node_List &worklist, GrowableArray<int> &ready_cnt, VectorSet &next_call, uint sched_slot);
291 void set_next_call( Node *n, VectorSet &next_call, Block_Array &bbs ); 291 void set_next_call( Node *n, VectorSet &next_call, Block_Array &bbs );
292 void needed_for_next_call(Node *this_call, VectorSet &next_call, Block_Array &bbs); 292 void needed_for_next_call(Node *this_call, VectorSet &next_call, Block_Array &bbs);
293 bool schedule_local(PhaseCFG *cfg, Matcher &m, GrowableArray<int> &ready_cnt, VectorSet &next_call); 293 bool schedule_local(PhaseCFG *cfg, Matcher &m, GrowableArray<int> &ready_cnt, VectorSet &next_call);
294 // Cleanup if any code lands between a Call and his Catch 294 // Cleanup if any code lands between a Call and his Catch
295 void call_catch_cleanup(Block_Array &bbs); 295 void call_catch_cleanup(Block_Array &bbs, Compile *C);
296 // Detect implicit-null-check opportunities. Basically, find NULL checks 296 // Detect implicit-null-check opportunities. Basically, find NULL checks
297 // with suitable memory ops nearby. Use the memory op to do the NULL check. 297 // with suitable memory ops nearby. Use the memory op to do the NULL check.
298 // I can generate a memory op if there is not one nearby. 298 // I can generate a memory op if there is not one nearby.
299 void implicit_null_check(PhaseCFG *cfg, Node *proj, Node *val, int allowed_reasons); 299 void implicit_null_check(PhaseCFG *cfg, Node *proj, Node *val, int allowed_reasons);
300 300