src/share/vm/runtime/arguments.cpp

Print this page
rev 6623 : 8048241: Introduce umbrella header os.inline.hpp and clean up includes
Reviewed-by: coleenp, dholmes, lfoltan


  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/javaAssertions.hpp"
  27 #include "classfile/stringTable.hpp"
  28 #include "classfile/symbolTable.hpp"
  29 #include "compiler/compilerOracle.hpp"
  30 #include "memory/allocation.inline.hpp"
  31 #include "memory/cardTableRS.hpp"
  32 #include "memory/genCollectedHeap.hpp"
  33 #include "memory/referenceProcessor.hpp"
  34 #include "memory/universe.inline.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #include "prims/jvmtiExport.hpp"
  37 #include "runtime/arguments.hpp"
  38 #include "runtime/globals_extension.hpp"
  39 #include "runtime/java.hpp"

  40 #include "services/management.hpp"
  41 #include "services/memTracker.hpp"
  42 #include "utilities/defaultStream.hpp"
  43 #include "utilities/macros.hpp"
  44 #include "utilities/taskqueue.hpp"
  45 #ifdef TARGET_OS_FAMILY_linux
  46 # include "os_linux.inline.hpp"
  47 #endif
  48 #ifdef TARGET_OS_FAMILY_solaris
  49 # include "os_solaris.inline.hpp"
  50 #endif
  51 #ifdef TARGET_OS_FAMILY_windows
  52 # include "os_windows.inline.hpp"
  53 #endif
  54 #ifdef TARGET_OS_FAMILY_aix
  55 # include "os_aix.inline.hpp"
  56 #endif
  57 #ifdef TARGET_OS_FAMILY_bsd
  58 # include "os_bsd.inline.hpp"
  59 #endif
  60 #if INCLUDE_ALL_GCS
  61 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
  62 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  63 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
  64 #endif // INCLUDE_ALL_GCS
  65 
  66 // Note: This is a special bug reporting site for the JVM
  67 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.sun.com/bugreport/crash.jsp"
  68 #define DEFAULT_JAVA_LAUNCHER  "generic"
  69 
  70 // Disable options not supported in this release, with a warning if they
  71 // were explicitly requested on the command-line
  72 #define UNSUPPORTED_OPTION(opt, description)                    \
  73 do {                                                            \
  74   if (opt) {                                                    \
  75     if (FLAG_IS_CMDLINE(opt)) {                                 \
  76       warning(description " is disabled in this release.");     \
  77     }                                                           \
  78     FLAG_SET_DEFAULT(opt, false);                               \
  79   }                                                             \




  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/javaAssertions.hpp"
  27 #include "classfile/stringTable.hpp"
  28 #include "classfile/symbolTable.hpp"
  29 #include "compiler/compilerOracle.hpp"
  30 #include "memory/allocation.inline.hpp"
  31 #include "memory/cardTableRS.hpp"
  32 #include "memory/genCollectedHeap.hpp"
  33 #include "memory/referenceProcessor.hpp"
  34 #include "memory/universe.inline.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #include "prims/jvmtiExport.hpp"
  37 #include "runtime/arguments.hpp"
  38 #include "runtime/globals_extension.hpp"
  39 #include "runtime/java.hpp"
  40 #include "runtime/os.hpp"
  41 #include "services/management.hpp"
  42 #include "services/memTracker.hpp"
  43 #include "utilities/defaultStream.hpp"
  44 #include "utilities/macros.hpp"
  45 #include "utilities/taskqueue.hpp"















  46 #if INCLUDE_ALL_GCS
  47 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
  48 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  49 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
  50 #endif // INCLUDE_ALL_GCS
  51 
  52 // Note: This is a special bug reporting site for the JVM
  53 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.sun.com/bugreport/crash.jsp"
  54 #define DEFAULT_JAVA_LAUNCHER  "generic"
  55 
  56 // Disable options not supported in this release, with a warning if they
  57 // were explicitly requested on the command-line
  58 #define UNSUPPORTED_OPTION(opt, description)                    \
  59 do {                                                            \
  60   if (opt) {                                                    \
  61     if (FLAG_IS_CMDLINE(opt)) {                                 \
  62       warning(description " is disabled in this release.");     \
  63     }                                                           \
  64     FLAG_SET_DEFAULT(opt, false);                               \
  65   }                                                             \