Searched defs:separate_io_proj (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp117 DirectCallGenerator(ciMethod* method, bool separate_io_proj) argument
119 _separate_io_proj(separate_io_proj)
252 CallGenerator* CallGenerator::for_direct_call(ciMethod* m, bool separate_io_proj) { argument
254 return new DirectCallGenerator(m, separate_io_proj);
H A Dcallnode.cpp709 void CallNode::extract_projections(CallProjections* projs, bool separate_io_proj) { argument
780 if (separate_io_proj) {
H A DgraphKit.cpp1414 void GraphKit::set_all_memory_call(Node* call, bool separate_io_proj) { argument
1415 Node* newmem = _gvn.transform( new (C) ProjNode(call, TypeFunc::Memory, separate_io_proj) );
1648 void GraphKit::set_edges_for_java_call(CallJavaNode* call, bool must_throw, bool separate_io_proj) { argument
1670 set_i_o( _gvn.transform(new (C) ProjNode(call, TypeFunc::I_O , separate_io_proj)));
1671 set_all_memory_call(xcall, separate_io_proj);
1676 Node* GraphKit::set_results_for_java_call(CallJavaNode* call, bool separate_io_proj) { argument
1689 make_slow_call_ex(call, env()->Throwable_klass(), separate_io_proj);
1691 if (separate_io_proj) {
2261 void GraphKit::make_slow_call_ex(Node* call, ciInstanceKlass* ex_klass, bool separate_io_proj) { argument
2265 Node* i_o = _gvn.transform( new (C) ProjNode(call, TypeFunc::I_O, separate_io_proj) );
[all...]

Completed in 52 milliseconds