comparison src/share/vm/code/stubs.cpp @ 7062:8c5333c80cfd

increased CompileThreshold to increase reliability of profiling information increased InitialCodeCacheSize to fit the bootstrapping added flag -XX:GraalClassPath to allow providing a .jar or .zip file that contains all Graal classes added support for the flag -XX:TraceCompilationPolicy to the Graal-specific compilation policy
author Christian Haeubl <haeubl@ssw.jku.at>
date Thu, 15 Nov 2012 11:40:50 +0100
parents f95d63e2154a
children 7d815d842ee0
comparison
equal deleted inserted replaced
6717:5bbe9618118e 7062:8c5333c80cfd
249 } 249 }
250 guarantee(n == number_of_stubs(), "number of stubs inconsistent"); 250 guarantee(n == number_of_stubs(), "number of stubs inconsistent");
251 guarantee(_queue_begin != _queue_end || n == 0, "buffer indices must be the same"); 251 guarantee(_queue_begin != _queue_end || n == 0, "buffer indices must be the same");
252 } 252 }
253 253
254 254 void StubQueue::print_on(outputStream* st) {
255 void StubQueue::print() {
256 MutexLockerEx lock(_mutex); 255 MutexLockerEx lock(_mutex);
257 for (Stub* s = first(); s != NULL; s = next(s)) { 256 for (Stub* s = first(); s != NULL; s = next(s)) {
258 stub_print(s); 257 stub_print(s, st);
259 } 258 }
260 } 259 }