src/share/vm/compiler/compileBroker.cpp

changeset 6441
d2907f74462e
parent 5110
6f3fd5150b67
child 6442
b5c8a61d7fa0
equal deleted inserted replaced
6440:0f03ff49c720 6441:d2907f74462e
956 // CompileBroker::init_compiler_threads 956 // CompileBroker::init_compiler_threads
957 // 957 //
958 // Initialize the compilation queue 958 // Initialize the compilation queue
959 void CompileBroker::init_compiler_threads(int c1_compiler_count, int c2_compiler_count) { 959 void CompileBroker::init_compiler_threads(int c1_compiler_count, int c2_compiler_count) {
960 EXCEPTION_MARK; 960 EXCEPTION_MARK;
961 #if !defined(ZERO) && !defined(SHARK) 961 #if !defined(ZERO) && !defined(SHARK) && !defined(PPC64)
962 assert(c2_compiler_count > 0 || c1_compiler_count > 0, "No compilers?"); 962 assert(c2_compiler_count > 0 || c1_compiler_count > 0, "No compilers?");
963 #endif // !ZERO && !SHARK 963 #endif // !ZERO && !SHARK
964 if (c2_compiler_count > 0) { 964 if (c2_compiler_count > 0) {
965 _c2_method_queue = new CompileQueue("C2MethodQueue", MethodCompileQueue_lock); 965 _c2_method_queue = new CompileQueue("C2MethodQueue", MethodCompileQueue_lock);
966 } 966 }

mercurial