src/share/vm/opto/c2_globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7089790_headers_only Sdiff src/share/vm/opto

src/share/vm/opto/c2_globals.hpp

Print this page
rev 2694 : imported patch headers_only


  27 
  28 #include "runtime/globals.hpp"
  29 #ifdef TARGET_ARCH_x86
  30 # include "c2_globals_x86.hpp"
  31 #endif
  32 #ifdef TARGET_ARCH_sparc
  33 # include "c2_globals_sparc.hpp"
  34 #endif
  35 #ifdef TARGET_ARCH_arm
  36 # include "c2_globals_arm.hpp"
  37 #endif
  38 #ifdef TARGET_OS_FAMILY_linux
  39 # include "c2_globals_linux.hpp"
  40 #endif
  41 #ifdef TARGET_OS_FAMILY_solaris
  42 # include "c2_globals_solaris.hpp"
  43 #endif
  44 #ifdef TARGET_OS_FAMILY_windows
  45 # include "c2_globals_windows.hpp"
  46 #endif



  47 
  48 //
  49 // Defines all globals flags used by the server compiler.
  50 //
  51 
  52 #define C2_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct) \
  53                                                                             \
  54   notproduct(intx, CompileZapFirst, 0,                                      \
  55           "If +ZapDeadCompiledLocals, "                                     \
  56           "skip this many before compiling in zap calls")                   \
  57                                                                             \
  58   notproduct(intx, CompileZapLast, -1,                                      \
  59           "If +ZapDeadCompiledLocals, "                                     \
  60           "compile this many after skipping (incl. skip count, -1 = all)")  \
  61                                                                             \
  62   notproduct(intx, ZapDeadCompiledLocalsFirst, 0,                           \
  63           "If +ZapDeadCompiledLocals, "                                     \
  64           "skip this many before really doing it")                          \
  65                                                                             \
  66   notproduct(intx, ZapDeadCompiledLocalsLast, -1,                           \




  27 
  28 #include "runtime/globals.hpp"
  29 #ifdef TARGET_ARCH_x86
  30 # include "c2_globals_x86.hpp"
  31 #endif
  32 #ifdef TARGET_ARCH_sparc
  33 # include "c2_globals_sparc.hpp"
  34 #endif
  35 #ifdef TARGET_ARCH_arm
  36 # include "c2_globals_arm.hpp"
  37 #endif
  38 #ifdef TARGET_OS_FAMILY_linux
  39 # include "c2_globals_linux.hpp"
  40 #endif
  41 #ifdef TARGET_OS_FAMILY_solaris
  42 # include "c2_globals_solaris.hpp"
  43 #endif
  44 #ifdef TARGET_OS_FAMILY_windows
  45 # include "c2_globals_windows.hpp"
  46 #endif
  47 #ifdef TARGET_OS_FAMILY_bsd
  48 # include "c2_globals_bsd.hpp"
  49 #endif
  50 
  51 //
  52 // Defines all globals flags used by the server compiler.
  53 //
  54 
  55 #define C2_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct) \
  56                                                                             \
  57   notproduct(intx, CompileZapFirst, 0,                                      \
  58           "If +ZapDeadCompiledLocals, "                                     \
  59           "skip this many before compiling in zap calls")                   \
  60                                                                             \
  61   notproduct(intx, CompileZapLast, -1,                                      \
  62           "If +ZapDeadCompiledLocals, "                                     \
  63           "compile this many after skipping (incl. skip count, -1 = all)")  \
  64                                                                             \
  65   notproduct(intx, ZapDeadCompiledLocalsFirst, 0,                           \
  66           "If +ZapDeadCompiledLocals, "                                     \
  67           "skip this many before really doing it")                          \
  68                                                                             \
  69   notproduct(intx, ZapDeadCompiledLocalsLast, -1,                           \


src/share/vm/opto/c2_globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File