comparison src/share/vm/runtime/thread.cpp @ 9430:147162b27799

GRAAL-234 - PTX code loading
author Morris Meyer <morris.meyer@oracle.com>
date Tue, 30 Apr 2013 08:17:55 -0400
parents 89e4d67fdd2a
children 836a62f43af9
comparison
equal deleted inserted replaced
9429:aaf8798b0969 9430:147162b27799
52 #include "runtime/arguments.hpp" 52 #include "runtime/arguments.hpp"
53 #include "runtime/biasedLocking.hpp" 53 #include "runtime/biasedLocking.hpp"
54 #include "runtime/deoptimization.hpp" 54 #include "runtime/deoptimization.hpp"
55 #include "runtime/fprofiler.hpp" 55 #include "runtime/fprofiler.hpp"
56 #include "runtime/frame.inline.hpp" 56 #include "runtime/frame.inline.hpp"
57 #include "runtime/gpu.hpp"
57 #include "runtime/init.hpp" 58 #include "runtime/init.hpp"
58 #include "runtime/interfaceSupport.hpp" 59 #include "runtime/interfaceSupport.hpp"
59 #include "runtime/java.hpp" 60 #include "runtime/java.hpp"
60 #include "runtime/javaCalls.hpp" 61 #include "runtime/javaCalls.hpp"
61 #include "runtime/jniPeriodicChecker.hpp" 62 #include "runtime/jniPeriodicChecker.hpp"
3305 Arguments::process_sun_java_launcher_properties(args); 3306 Arguments::process_sun_java_launcher_properties(args);
3306 3307
3307 // Initialize the os module before using TLS 3308 // Initialize the os module before using TLS
3308 os::init(); 3309 os::init();
3309 3310
3311 // probe for warp capability
3312 gpu::init();
3313
3310 // Initialize system properties. 3314 // Initialize system properties.
3311 Arguments::init_system_properties(); 3315 Arguments::init_system_properties();
3312 3316
3313 // So that JDK version can be used as a discrimintor when parsing arguments 3317 // So that JDK version can be used as a discrimintor when parsing arguments
3314 JDK_Version_init(); 3318 JDK_Version_init();