diff options
| author | 2015-03-10 17:44:45 +0000 | |
|---|---|---|
| committer | 2015-03-10 17:44:45 +0000 | |
| commit | 79bf9a9eece6b99ffef61670a8fa2a0a3dbfc6a8 (patch) | |
| tree | e367bd12e56ddc9d9eb6bbdae65e2d9a12450d47 /runtime/parsed_options.cc | |
| parent | d2bb32e3ba5f8101f0e9c42b363250b1aa186c08 (diff) | |
| parent | 39d9fe2eb3552a002c53ed41701c6faffe3cd75a (diff) | |
am 39d9fe2e: Merge "Add way to print JIT related info at shutdown"
* commit '39d9fe2eb3552a002c53ed41701c6faffe3cd75a':
Add way to print JIT related info at shutdown
Diffstat (limited to 'runtime/parsed_options.cc')
| -rw-r--r-- | runtime/parsed_options.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index 607569ae1a..a53aeaa3d7 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -136,6 +136,8 @@ std::unique_ptr<RuntimeParser> ParsedOptions::MakeParser(bool ignore_unrecognize .IntoKey(M::LongGCLogThreshold) .Define("-XX:DumpGCPerformanceOnShutdown") .IntoKey(M::DumpGCPerformanceOnShutdown) + .Define("-XX:DumpJITInfoOnShutdown") + .IntoKey(M::DumpJITInfoOnShutdown) .Define("-XX:IgnoreMaxFootprint") .IntoKey(M::IgnoreMaxFootprint) .Define("-XX:LowMemoryMode") @@ -620,6 +622,7 @@ void ParsedOptions::Usage(const char* fmt, ...) { UsageMessage(stream, " -XX:LongPauseLogThreshold=integervalue\n"); UsageMessage(stream, " -XX:LongGCLogThreshold=integervalue\n"); UsageMessage(stream, " -XX:DumpGCPerformanceOnShutdown\n"); + UsageMessage(stream, " -XX:DumpJITInfoOnShutdown\n"); UsageMessage(stream, " -XX:IgnoreMaxFootprint\n"); UsageMessage(stream, " -XX:UseTLAB\n"); UsageMessage(stream, " -XX:BackgroundGC=none\n"); |