src/share/vm/opto/doCall.cpp

changeset 1592
c3b315a0d58a
parent 1573
dd57230ba8fe
child 1641
87684f1a88b5
     1.1 --- a/src/share/vm/opto/doCall.cpp	Fri Jan 08 13:47:01 2010 -0800
     1.2 +++ b/src/share/vm/opto/doCall.cpp	Fri Jan 08 13:58:49 2010 -0800
     1.3 @@ -43,7 +43,9 @@
     1.4  }
     1.5  #endif
     1.6  
     1.7 -CallGenerator* Compile::call_generator(ciMethod* call_method, int vtable_index, bool call_is_virtual, JVMState* jvms, bool allow_inline, float prof_factor) {
     1.8 +CallGenerator* Compile::call_generator(ciMethod* call_method, int vtable_index, bool call_is_virtual,
     1.9 +                                       JVMState* jvms, bool allow_inline,
    1.10 +                                       float prof_factor) {
    1.11    CallGenerator* cg;
    1.12  
    1.13    // Dtrace currently doesn't work unless all calls are vanilla
    1.14 @@ -116,7 +118,7 @@
    1.15          // TO DO:  When UseOldInlining is removed, copy the ILT code elsewhere.
    1.16          float site_invoke_ratio = prof_factor;
    1.17          // Note:  ilt is for the root of this parse, not the present call site.
    1.18 -        ilt = new InlineTree(this, jvms->method(), jvms->caller(), site_invoke_ratio);
    1.19 +        ilt = new InlineTree(this, jvms->method(), jvms->caller(), site_invoke_ratio, 0);
    1.20        }
    1.21        WarmCallInfo scratch_ci;
    1.22        if (!UseOldInlining)

mercurial