src/share/vm/runtime/stubRoutines.cpp

changeset 1845
f03d0a26bf83
parent 1680
6484c4ee11cb
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/runtime/stubRoutines.cpp	Sun Oct 11 16:19:25 2009 -0700
     1.2 +++ b/src/share/vm/runtime/stubRoutines.cpp	Thu Apr 22 13:23:15 2010 -0700
     1.3 @@ -118,7 +118,10 @@
     1.4      ResourceMark rm;
     1.5      TraceTime timer("StubRoutines generation 1", TraceStartupTime);
     1.6      _code1 = BufferBlob::create("StubRoutines (1)", code_size1);
     1.7 -    if( _code1 == NULL) vm_exit_out_of_memory1(code_size1, "CodeCache: no room for %s", "StubRoutines (1)");
     1.8 +    if (_code1 == NULL) {
     1.9 +      vm_exit_out_of_memory(code_size1,
    1.10 +                            "CodeCache: no room for StubRoutines (1)");
    1.11 +    }
    1.12      CodeBuffer buffer(_code1->instructions_begin(), _code1->instructions_size());
    1.13      StubGenerator_generate(&buffer, false);
    1.14    }
    1.15 @@ -164,7 +167,10 @@
    1.16      ResourceMark rm;
    1.17      TraceTime timer("StubRoutines generation 2", TraceStartupTime);
    1.18      _code2 = BufferBlob::create("StubRoutines (2)", code_size2);
    1.19 -    if( _code2 == NULL) vm_exit_out_of_memory1(code_size2, "CodeCache: no room for %s", "StubRoutines (2)");
    1.20 +    if (_code2 == NULL) {
    1.21 +      vm_exit_out_of_memory(code_size2,
    1.22 +                            "CodeCache: no room for StubRoutines (2)");
    1.23 +    }
    1.24      CodeBuffer buffer(_code2->instructions_begin(), _code2->instructions_size());
    1.25      StubGenerator_generate(&buffer, true);
    1.26    }

mercurial