comparison src/share/vm/runtime/arguments.hpp @ 11096:71180a6e5080

7133260: AllocationProfiler uses space in metadata and doesn't seem to do anything useful. Summary: Remove -Xaprof and Klass::_alloc_count & ArrayKlass::_alloc_size. Reviewed-by: stefank, coleenp
author jiangli
date Wed, 03 Jul 2013 17:26:59 -0400
parents 0abfeed51c9e
children 6b0fd0964b87 740e263c80c6
comparison
equal deleted inserted replaced
11065:cedf20e2a655 11096:71180a6e5080
260 // was this VM created by the gamma launcher 260 // was this VM created by the gamma launcher
261 static bool _created_by_gamma_launcher; 261 static bool _created_by_gamma_launcher;
262 262
263 // Option flags 263 // Option flags
264 static bool _has_profile; 264 static bool _has_profile;
265 static bool _has_alloc_profile;
266 static const char* _gc_log_filename; 265 static const char* _gc_log_filename;
267 static uintx _min_heap_size; 266 static uintx _min_heap_size;
268 267
269 // -Xrun arguments 268 // -Xrun arguments
270 static AgentLibraryList _libraryList; 269 static AgentLibraryList _libraryList;
462 static int sun_java_launcher_pid() { return _sun_java_launcher_pid; } 461 static int sun_java_launcher_pid() { return _sun_java_launcher_pid; }
463 462
464 // -Xloggc:<file>, if not specified will be NULL 463 // -Xloggc:<file>, if not specified will be NULL
465 static const char* gc_log_filename() { return _gc_log_filename; } 464 static const char* gc_log_filename() { return _gc_log_filename; }
466 465
467 // -Xprof/-Xaprof 466 // -Xprof
468 static bool has_profile() { return _has_profile; } 467 static bool has_profile() { return _has_profile; }
469 static bool has_alloc_profile() { return _has_alloc_profile; }
470 468
471 // -Xms, -Xmx 469 // -Xms, -Xmx
472 static uintx min_heap_size() { return _min_heap_size; } 470 static uintx min_heap_size() { return _min_heap_size; }
473 static void set_min_heap_size(uintx v) { _min_heap_size = v; } 471 static void set_min_heap_size(uintx v) { _min_heap_size = v; }
474 472