Searched refs:has_call (Results 1 - 9 of 9) sorted by relevance
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | adlparse.hpp | 235 void get_effectlist(FormDict &effects, FormDict &operands, bool& has_call); // Parse effect-operand pairs
|
H A D | adlparse.cpp | 4600 void ADLParser::get_effectlist(FormDict &effects, FormDict &operands, bool& has_call) { argument 4635 has_call = true;
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | lcm.cpp | 837 if (n->is_Mach() && n->as_Mach()->has_call()) { 855 assert(m->is_MachProj() && n->is_Mach() && n->as_Mach()->has_call(), "unexpected node types");
|
H A D | loopnode.cpp | 1639 bool has_call = false; // call on dom-path local 1645 has_call = true; 1668 has_call = true; 1681 if (_child != NULL && !has_call && !has_local_ncsfpt) { 2975 // Also record has_call flag early on
|
H A D | machnode.hpp | 194 bool has_call() const { return (flags() & Flag_has_call) != 0; } function in class:MachNode
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_LinearScan.cpp | 607 if (visitor.has_call()) { 1363 if (visitor.has_call()) { 2440 OopMap* first_oop_map = compute_oop_map(iw, op, first_info, visitor.has_call()); 2450 oop_map = compute_oop_map(iw, op, info, visitor.has_call()); 2815 assert(!has_call(op_id) || opr->is_stack() || !is_caller_save(reg_num(opr)), "can not have caller-save register operands at calls"); 3328 if (!visitor.has_call()) { 3611 if (visitor.has_call()) { 5627 if (pos < allocator()->max_lir_op_id() && allocator()->has_call(pos + 1)) {
|
H A D | c1_LinearScan.hpp | 213 bool has_call(int op_id) { assert(op_id % 2 == 0, "must be even"); return _has_call.at(op_id >> 1); } function in class:LinearScan
|
H A D | c1_LIR.cpp | 1023 !has_call() &&
|
H A D | c1_LIR.hpp | 2294 bool has_call() const { return _has_call; }
|
Completed in 532 milliseconds