comparison src/share/vm/runtime/thread.cpp @ 13111:5465ba051280

HSAIL: removed AMD GPU detection until a) clashing AMD CPU and GPU vendor ID issue is resolved and b) HSA port is more complete Contributed-by: Eric Caspole <Eric.Caspole@amd.com>
author Doug Simon <doug.simon@oracle.com>
date Fri, 22 Nov 2013 15:47:39 +0100
parents 77fbf02f701c
children 6b2d8d20ecbd
comparison
equal deleted inserted replaced
13110:b96536453a74 13111:5465ba051280
3376 Arguments::process_sun_java_launcher_properties(args); 3376 Arguments::process_sun_java_launcher_properties(args);
3377 3377
3378 // Initialize the os module before using TLS 3378 // Initialize the os module before using TLS
3379 os::init(); 3379 os::init();
3380 3380
3381 // Initialize system properties.
3382 Arguments::init_system_properties();
3383
3384 // So that JDK version can be used as a discrimintor when parsing arguments
3385 JDK_Version_init();
3386
3387 // Update/Initialize System properties after JDK version number is known
3388 Arguments::init_version_specific_system_properties();
3389
3390 // Parse arguments
3391 jint parse_result = Arguments::parse(args);
3392 if (parse_result != JNI_OK) return parse_result;
3393
3381 // Probe for existance of supported GPU and initialize it if one 3394 // Probe for existance of supported GPU and initialize it if one
3382 // exists. 3395 // exists.
3383 gpu::init(); 3396 gpu::init();
3384
3385 // Initialize system properties.
3386 Arguments::init_system_properties();
3387
3388 // So that JDK version can be used as a discrimintor when parsing arguments
3389 JDK_Version_init();
3390
3391 // Update/Initialize System properties after JDK version number is known
3392 Arguments::init_version_specific_system_properties();
3393
3394 // Parse arguments
3395 jint parse_result = Arguments::parse(args);
3396 if (parse_result != JNI_OK) return parse_result;
3397 3397
3398 os::init_before_ergo(); 3398 os::init_before_ergo();
3399 3399
3400 jint ergo_result = Arguments::apply_ergo(); 3400 jint ergo_result = Arguments::apply_ergo();
3401 if (ergo_result != JNI_OK) return ergo_result; 3401 if (ergo_result != JNI_OK) return ergo_result;