comparison src/share/vm/opto/block.hpp @ 7206:d2f8c38e543d

Merge
author roland
date Fri, 07 Dec 2012 01:09:03 -0800
parents 2aff40cb4703
children d1034bd8cefc
comparison
equal deleted inserted replaced
7191:816b7e5bf2ed 7206:d2f8c38e543d
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