src/share/vm/c1/c1_Compilation.cpp

changeset 1832
b4776199210f
parent 1813
9f5b60a14736
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/c1/c1_Compilation.cpp	Mon Apr 26 11:27:21 2010 -0700
     1.2 +++ b/src/share/vm/c1/c1_Compilation.cpp	Mon Apr 26 23:59:45 2010 -0700
     1.3 @@ -316,7 +316,7 @@
     1.4      implicit_exception_table(),
     1.5      compiler(),
     1.6      _env->comp_level(),
     1.7 -    needs_debug_information(),
     1.8 +    true,
     1.9      has_unsafe_access()
    1.10    );
    1.11  }
    1.12 @@ -449,8 +449,6 @@
    1.13    assert(_arena == NULL, "shouldn't only one instance of Compilation in existence at a time");
    1.14    _arena = Thread::current()->resource_area();
    1.15    _compilation = this;
    1.16 -  _needs_debug_information = _env->jvmti_can_examine_or_deopt_anywhere() ||
    1.17 -                               JavaMonitorsInStackTrace || AlwaysEmitDebugInfo || DeoptimizeALot;
    1.18    _exception_info_list = new ExceptionInfoList();
    1.19    _implicit_exception_table.set_size(0);
    1.20    compile_method();

mercurial