comparison src/share/vm/compiler/compileBroker.cpp @ 14391:d2907f74462e

8016586: PPC64 (part 3): basic changes for PPC64 Summary: added #includes needed for ppc64 port. Renamed _MODEL_ppc to _MODEL_ppc_32 and renamed corresponding old _ppc files to _ppc_32. Reviewed-by: dholmes, kvn
author goetz
date Thu, 20 Jun 2013 16:30:44 -0700
parents 6f3fd5150b67
children b5c8a61d7fa0
comparison
equal deleted inserted replaced
14390:0f03ff49c720 14391: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 }