< prev index next >

src/hotspot/share/opto/vector.cpp

Print this page
*** 204,11 ***
        PhaseGVN& gvn = kit.gvn();
  
        // Adjust JVMS from post-call to pre-call state: put args on stack
        uint nargs = call->method()->arg_size();
        kit.ensure_stack(kit.sp() + nargs);
!       for (uint i = TypeFunc::Parms; i < call->tf()->domain()->cnt(); i++) {
          kit.push(call->in(i));
        }
        jvms = kit.sync_jvms();
  
        Node* new_vbox = nullptr;
--- 204,11 ---
        PhaseGVN& gvn = kit.gvn();
  
        // Adjust JVMS from post-call to pre-call state: put args on stack
        uint nargs = call->method()->arg_size();
        kit.ensure_stack(kit.sp() + nargs);
!       for (uint i = TypeFunc::Parms; i < call->tf()->domain_sig()->cnt(); i++) {
          kit.push(call->in(i));
        }
        jvms = kit.sync_jvms();
  
        Node* new_vbox = nullptr;
< prev index next >