diff options
author | Andreas Gampe <agampe@google.com> | 2015-04-16 04:24:04 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-16 04:24:05 +0000 |
commit | 8e8bb8aab6f19ccb5b5869a632d9bc882891e17e (patch) | |
tree | ff39a8bb3a813e907ed354a474b917302e7cf2be /runtime/parsed_options.cc | |
parent | a76a08fed88bd081bcc4d240f1ba3472a2acbbab (diff) | |
parent | 40da286d3207d88ed8ff3f5caac4873874603428 (diff) | |
download | art-8e8bb8aab6f19ccb5b5869a632d9bc882891e17e.zip art-8e8bb8aab6f19ccb5b5869a632d9bc882891e17e.tar.gz art-8e8bb8aab6f19ccb5b5869a632d9bc882891e17e.tar.bz2 |
Merge "ART: Streaming trace mode"
Diffstat (limited to 'runtime/parsed_options.cc')
-rw-r--r-- | runtime/parsed_options.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index c23f744..0758b27 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -216,6 +216,8 @@ std::unique_ptr<RuntimeParser> ParsedOptions::MakeParser(bool ignore_unrecognize .Define("-Xmethod-trace-file-size:_") .WithType<unsigned int>() .IntoKey(M::MethodTraceFileSize) + .Define("-Xmethod-trace-stream") + .IntoKey(M::MethodTraceStreaming) .Define("-Xprofile:_") .WithType<TraceClockSource>() .WithValueMap({{"threadcpuclock", TraceClockSource::kThreadCpu}, |