blob: 938329c94d566769cac982a026cc9561b935b60c [file] [log] [blame]
Carl Worth4c5f6fa2011-11-14 14:50:07 -08001/**************************************************************************
2 *
3 * Copyright 2010 VMware, Inc.
4 * Copyright 2011 Intel corporation
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 *
25 **************************************************************************/
26
Carl Worth33b92632012-08-14 14:11:19 -070027#include <sstream>
Carl Worth4c5f6fa2011-11-14 14:50:07 -080028#include <string.h>
José Fonsecab682b672012-02-15 07:13:31 +000029#include <limits.h> // for CHAR_MAX
30#include <getopt.h>
Carl Worth4c5f6fa2011-11-14 14:50:07 -080031
Carl Worth163b22c2012-08-10 10:15:30 -070032#include <set>
33
Carl Worth4c5f6fa2011-11-14 14:50:07 -080034#include "cli.hpp"
35
36#include "os_string.hpp"
37
Carl Worth8efbe012012-08-17 14:15:54 -070038#include "trace_analyzer.hpp"
José Fonsecad3c00132012-01-27 22:43:53 +000039#include "trace_callset.hpp"
Carl Worth4c5f6fa2011-11-14 14:50:07 -080040#include "trace_parser.hpp"
José Fonseca630471a2012-01-27 22:06:51 +000041#include "trace_writer.hpp"
Carl Worth4c5f6fa2011-11-14 14:50:07 -080042
43static const char *synopsis = "Create a new trace by trimming an existing trace.";
44
45static void
46usage(void)
47{
48 std::cout
José Fonsecab682b672012-02-15 07:13:31 +000049 << "usage: apitrace trim [OPTIONS] TRACE_FILE...\n"
José Fonsecad3c00132012-01-27 22:43:53 +000050 << synopsis << "\n"
51 "\n"
Carl Worth86464432012-08-11 11:46:54 -070052 " -h, --help Show detailed help for trim options and exit\n"
53 " --calls=CALLSET Include specified calls in the trimmed output.\n"
Carl Worth46abfd12012-08-14 22:32:29 -070054 " --frames=FRAMESET Include specified frames in the trimmed output.\n"
Carl Worth86464432012-08-11 11:46:54 -070055 " --deps Include additional calls to satisfy dependencies\n"
Carl Wortha0931fd2013-03-21 15:49:58 -070056 " --no-deps Do not include any more calls than requestd\n"
57 " --prune Omit calls without side effects from the output\n"
58 " --no-prune Do not omit any requested calls\n"
José Fonseca6e4768b2012-11-22 08:31:47 +000059 " -a, --auto Trim automatically to calls specified in --calls/--frames\n"
60 " Equivalent to both --deps and --prune\n"
Carl Wortha0931fd2013-03-21 15:49:58 -070061 " --exact Trim to exactly the calls specified in --calls/--frames\n"
62 " Equivalent to both --no-deps and --no-prune\n"
Carl Worthab82b3b2012-08-15 16:35:38 -070063 " --print-callset Print the final set of calls included in output\n"
Carl Worth25fe5242012-11-14 20:55:31 -080064 " --trim-spec=SPEC Only performing trimming as described in SPEC\n"
Carl Worth86464432012-08-11 11:46:54 -070065 " --thread=THREAD_ID Only retain calls from specified thread\n"
66 " -o, --output=TRACE_FILE Output trace file\n"
67 ;
68}
69
70static void
71help()
72{
73 std::cout
74 << "usage: apitrace trim [OPTIONS] TRACE_FILE...\n"
75 << synopsis << "\n"
76 "\n"
Carl Worth163b22c2012-08-10 10:15:30 -070077 " -h, --help Show this help message and exit\n"
Carl Worth16b18db2012-08-11 11:33:12 -070078 "\n"
79 " --calls=CALLSET Include specified calls in the trimmed output.\n"
Carl Worth46abfd12012-08-14 22:32:29 -070080 " --frames=FRAMESET Include specified frames in the trimmed output.\n"
Carl Worth16b18db2012-08-11 11:33:12 -070081 "\n"
Carl Worth163b22c2012-08-10 10:15:30 -070082 " --deps Perform dependency analysis and include dependent\n"
Carl Worth16b18db2012-08-11 11:33:12 -070083 " calls as needed, (even if those calls were not\n"
Carl Worth46abfd12012-08-14 22:32:29 -070084 " explicitly requested with --calls or --frames).\n"
Carl Worth991740f2013-03-21 16:01:25 -070085 " (On by default. See --no-deps or --exact)\n"
Carl Wortha0931fd2013-03-21 15:49:58 -070086 " --no-deps Do not perform dependency analysis. Output will\n"
87 " not include any additional calls beyond those\n"
88 " explicitly requested with --calls or --frames).\n"
Carl Worth16b18db2012-08-11 11:33:12 -070089 "\n"
Carl Worth46abfd12012-08-14 22:32:29 -070090 " --prune Omit calls with no side effects, even if the call\n"
91 " is within the range specified by --calls/--frames.\n"
Carl Worth991740f2013-03-21 16:01:25 -070092 " (On by default. See --no-prune or --exact)\n"
Carl Worth16b18db2012-08-11 11:33:12 -070093 "\n"
Carl Wortha0931fd2013-03-21 15:49:58 -070094 " --no-prune Never omit any calls from the range specified\n"
95 " --calls/--frames.\n"
96 "\n"
José Fonseca6e4768b2012-11-22 08:31:47 +000097 " -a, --auto Use dependency analysis and pruning\n"
98 " of uninteresting calls the resulting trace may\n"
99 " include more and less calls than specified.\n"
100 " This option is equivalent\n"
Carl Worth991740f2013-03-21 16:01:25 -0700101 " to passing both --deps and --prune and is on by\n"
102 " default (see --no-deps, --no-prune and --exact)\n"
Carl Worth16b18db2012-08-11 11:33:12 -0700103 "\n"
Carl Wortha0931fd2013-03-21 15:49:58 -0700104 " --exact Trim output to exact the calls or frames\n"
105 " specified with --calls or --frames.\n"
106 " This option is equivalent\n"
107 " to passing both --no-deps and --no-prune.\n"
108 "\n"
Carl Worthab82b3b2012-08-15 16:35:38 -0700109 " --print-callset Print to stdout the final set of calls included\n"
110 " in the trim output. This can be useful for\n"
Carl Worth25fe5242012-11-14 20:55:31 -0800111 " tweaking the trimmed callset from --auto on the\n"
José Fonseca6e4768b2012-11-22 08:31:47 +0000112 " command-line.\n"
113 " Use --calls=@FILE to read callset from a file.\n"
Carl Worth25fe5242012-11-14 20:55:31 -0800114 " --trim-spec=SPEC Specifies which classes of calls will be trimmed.\n"
115 " This option only has an effect if dependency\n"
116 " analysis is enabled. The argument is a comma-\n"
117 " separated list of names from the following:\n"
118 "\n"
119 " no-side-effects Calls with no side effects\n"
120 " textures Calls to setup unused textures\n"
121 " shaders Calls to setup unused shaders\n"
122 " drawing Calls that draw\n"
123 "\n"
124 " The default trim specification includes all of\n"
125 " the above, (as much as possible will be trimmed).\n"
Carl Worthab82b3b2012-08-15 16:35:38 -0700126 "\n"
Carl Worth163b22c2012-08-10 10:15:30 -0700127 " --thread=THREAD_ID Only retain calls from specified thread\n"
Carl Worth16b18db2012-08-11 11:33:12 -0700128 "\n"
Carl Worth163b22c2012-08-10 10:15:30 -0700129 " -o, --output=TRACE_FILE Output trace file\n"
José Fonsecad3c00132012-01-27 22:43:53 +0000130 "\n"
131 ;
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800132}
133
José Fonsecab682b672012-02-15 07:13:31 +0000134enum {
Imre Deak6f07a842012-05-08 15:20:43 +0300135 CALLS_OPT = CHAR_MAX + 1,
Carl Worth46abfd12012-08-14 22:32:29 -0700136 FRAMES_OPT,
Carl Worth163b22c2012-08-10 10:15:30 -0700137 DEPS_OPT,
Carl Wortha0931fd2013-03-21 15:49:58 -0700138 NO_DEPS_OPT,
Carl Worth16b18db2012-08-11 11:33:12 -0700139 PRUNE_OPT,
Carl Wortha0931fd2013-03-21 15:49:58 -0700140 NO_PRUNE_OPT,
Imre Deak6f07a842012-05-08 15:20:43 +0300141 THREAD_OPT,
Carl Worthab82b3b2012-08-15 16:35:38 -0700142 PRINT_CALLSET_OPT,
Carl Wortha0931fd2013-03-21 15:49:58 -0700143 TRIM_SPEC_OPT,
144 EXACT_OPT
José Fonsecab682b672012-02-15 07:13:31 +0000145};
146
147const static char *
Carl Worth54300eb2013-01-28 23:37:17 +1100148shortOptions = "aho:x";
José Fonsecab682b672012-02-15 07:13:31 +0000149
150const static struct option
151longOptions[] = {
152 {"help", no_argument, 0, 'h'},
153 {"calls", required_argument, 0, CALLS_OPT},
Carl Worth46abfd12012-08-14 22:32:29 -0700154 {"frames", required_argument, 0, FRAMES_OPT},
Carl Worth163b22c2012-08-10 10:15:30 -0700155 {"deps", no_argument, 0, DEPS_OPT},
Carl Wortha0931fd2013-03-21 15:49:58 -0700156 {"no-deps", no_argument, 0, NO_DEPS_OPT},
Carl Worth16b18db2012-08-11 11:33:12 -0700157 {"prune", no_argument, 0, PRUNE_OPT},
Carl Wortha0931fd2013-03-21 15:49:58 -0700158 {"no-prune", no_argument, 0, NO_PRUNE_OPT},
José Fonseca6e4768b2012-11-22 08:31:47 +0000159 {"auto", no_argument, 0, 'a'},
Carl Wortha0931fd2013-03-21 15:49:58 -0700160 {"exact", no_argument, 0, EXACT_OPT},
Imre Deak6f07a842012-05-08 15:20:43 +0300161 {"thread", required_argument, 0, THREAD_OPT},
162 {"output", required_argument, 0, 'o'},
Carl Worthab82b3b2012-08-15 16:35:38 -0700163 {"print-callset", no_argument, 0, PRINT_CALLSET_OPT},
Carl Worth25fe5242012-11-14 20:55:31 -0800164 {"trim-spec", required_argument, 0, TRIM_SPEC_OPT},
José Fonsecab682b672012-02-15 07:13:31 +0000165 {0, 0, 0, 0}
166};
167
Carl Worth163b22c2012-08-10 10:15:30 -0700168struct stringCompare {
169 bool operator() (const char *a, const char *b) const {
170 return strcmp(a, b) < 0;
171 }
172};
173
Carl Worth163b22c2012-08-10 10:15:30 -0700174struct trim_options {
175 /* Calls to be included in trace. */
176 trace::CallSet calls;
177
Carl Worth46abfd12012-08-14 22:32:29 -0700178 /* Frames to be included in trace. */
179 trace::CallSet frames;
180
Carl Worth163b22c2012-08-10 10:15:30 -0700181 /* Whether dependency analysis should be performed. */
182 bool dependency_analysis;
183
Carl Worth16b18db2012-08-11 11:33:12 -0700184 /* Whether uninteresting calls should be pruned.. */
185 bool prune_uninteresting;
186
Carl Worth163b22c2012-08-10 10:15:30 -0700187 /* Output filename */
188 std::string output;
189
190 /* Emit only calls from this thread (-1 == all threads) */
191 int thread;
Carl Worthab82b3b2012-08-15 16:35:38 -0700192
193 /* Print resulting callset */
194 int print_callset;
Carl Worth25fe5242012-11-14 20:55:31 -0800195
196 /* What kind of trimming to perform. */
197 TrimFlags trim_flags;
Carl Worth163b22c2012-08-10 10:15:30 -0700198};
199
200static int
201trim_trace(const char *filename, struct trim_options *options)
202{
203 trace::ParseBookmark beginning;
204 trace::Parser p;
Carl Worth25fe5242012-11-14 20:55:31 -0800205 TraceAnalyzer analyzer(options->trim_flags);
Carl Worth12b41a82013-03-11 13:05:52 -0700206 trace::FastCallSet *required;
Carl Worth46abfd12012-08-14 22:32:29 -0700207 unsigned frame;
Carl Worthab82b3b2012-08-15 16:35:38 -0700208 int call_range_first, call_range_last;
Carl Worth163b22c2012-08-10 10:15:30 -0700209
210 if (!p.open(filename)) {
211 std::cerr << "error: failed to open " << filename << "\n";
212 return 1;
213 }
214
215 /* Mark the beginning so we can return here for pass 2. */
216 p.getBookmark(beginning);
217
218 /* In pass 1, analyze which calls are needed. */
Carl Worth46abfd12012-08-14 22:32:29 -0700219 frame = 0;
Carl Worth163b22c2012-08-10 10:15:30 -0700220 trace::Call *call;
221 while ((call = p.parse_call())) {
Carl Worth5b827e12012-08-12 20:41:50 -0700222
Carl Worth18198bc2013-03-11 15:49:17 -0700223 /* There's no use doing any work past the last call and frame
Carl Worth46abfd12012-08-14 22:32:29 -0700224 * requested by the user. */
Carl Worth18198bc2013-03-11 15:49:17 -0700225 if ((options->calls.empty() || call->no > options->calls.getLast()) &&
226 (options->frames.empty() || frame > options->frames.getLast())) {
227
Carl Worth42249012012-08-14 10:26:11 -0700228 delete call;
Carl Worth5b827e12012-08-12 20:41:50 -0700229 break;
Carl Worth42249012012-08-14 10:26:11 -0700230 }
Carl Worth5b827e12012-08-12 20:41:50 -0700231
Carl Worth163b22c2012-08-10 10:15:30 -0700232 /* If requested, ignore all calls not belonging to the specified thread. */
Carl Worth42249012012-08-14 10:26:11 -0700233 if (options->thread != -1 && call->thread_id != options->thread) {
Carl Worth46abfd12012-08-14 22:32:29 -0700234 goto NEXT;
Carl Worth42249012012-08-14 10:26:11 -0700235 }
Carl Worth163b22c2012-08-10 10:15:30 -0700236
Carl Worth6e57af82013-02-15 16:31:11 -0800237 /* Also, prune if no side effects (unless the user asked for no pruning. */
238 if (options->prune_uninteresting && call->flags & trace::CALL_FLAG_NO_SIDE_EFFECTS) {
Carl Worth46abfd12012-08-14 22:32:29 -0700239 goto NEXT;
Carl Worth16b18db2012-08-11 11:33:12 -0700240 }
241
Carl Worthcc6e51c2012-08-13 14:35:43 -0700242 /* If this call is included in the user-specified call set,
243 * then require it (and all dependencies) in the trimmed
244 * output. */
Carl Worth46abfd12012-08-14 22:32:29 -0700245 if (options->calls.contains(*call) ||
246 options->frames.contains(frame, call->flags)) {
247
Carl Worth163b22c2012-08-10 10:15:30 -0700248 analyzer.require(call);
Carl Worthcc6e51c2012-08-13 14:35:43 -0700249 }
250
251 /* Regardless of whether we include this call or not, we do
252 * some dependency tracking (unless disabled by the user). We
253 * do this even for calls we have included in the output so
254 * that any state updates get performed. */
255 if (options->dependency_analysis) {
256 analyzer.analyze(call);
Carl Worth163b22c2012-08-10 10:15:30 -0700257 }
Carl Worth42249012012-08-14 10:26:11 -0700258
Carl Worth46abfd12012-08-14 22:32:29 -0700259 NEXT:
260 if (call->flags & trace::CALL_FLAG_END_FRAME)
261 frame++;
262
Carl Worth42249012012-08-14 10:26:11 -0700263 delete call;
Carl Worth163b22c2012-08-10 10:15:30 -0700264 }
265
266 /* Prepare output file and writer for output. */
267 if (options->output.empty()) {
268 os::String base(filename);
269 base.trimExtension();
270
271 options->output = std::string(base.str()) + std::string("-trim.trace");
272 }
273
274 trace::Writer writer;
275 if (!writer.open(options->output.c_str())) {
José Fonseca9c3b0832013-07-09 16:28:47 +0100276 std::cerr << "error: failed to create " << options->output << "\n";
Carl Worth163b22c2012-08-10 10:15:30 -0700277 return 1;
278 }
279
280 /* Reset bookmark for pass 2. */
281 p.setBookmark(beginning);
282
283 /* In pass 2, emit the calls that are required. */
284 required = analyzer.get_required();
285
Carl Worth46abfd12012-08-14 22:32:29 -0700286 frame = 0;
Carl Worthab82b3b2012-08-15 16:35:38 -0700287 call_range_first = -1;
288 call_range_last = -1;
Carl Worth163b22c2012-08-10 10:15:30 -0700289 while ((call = p.parse_call())) {
Carl Worth5b827e12012-08-12 20:41:50 -0700290
Carl Worth18198bc2013-03-11 15:49:17 -0700291 /* There's no use doing any work past the last call and frame
Carl Worth46abfd12012-08-14 22:32:29 -0700292 * requested by the user. */
Carl Worth18198bc2013-03-11 15:49:17 -0700293 if ((options->calls.empty() || call->no > options->calls.getLast()) &&
294 (options->frames.empty() || frame > options->frames.getLast())) {
Carl Worth46abfd12012-08-14 22:32:29 -0700295
Carl Worth5b827e12012-08-12 20:41:50 -0700296 break;
Carl Worth46abfd12012-08-14 22:32:29 -0700297 }
Carl Worth5b827e12012-08-12 20:41:50 -0700298
Carl Worth175f5d62012-08-22 11:59:12 -0700299 if (required->contains(call->no)) {
Carl Worth163b22c2012-08-10 10:15:30 -0700300 writer.writeCall(call);
Carl Worthab82b3b2012-08-15 16:35:38 -0700301
302 if (options->print_callset) {
303 if (call_range_first < 0) {
304 call_range_first = call->no;
305 printf ("%d", call_range_first);
306 } else if (call->no != call_range_last + 1) {
307 if (call_range_last != call_range_first)
308 printf ("-%d", call_range_last);
309 call_range_first = call->no;
310 printf (",%d", call_range_first);
311 }
312 call_range_last = call->no;
313 }
Carl Worth163b22c2012-08-10 10:15:30 -0700314 }
Carl Worth46abfd12012-08-14 22:32:29 -0700315
316 if (call->flags & trace::CALL_FLAG_END_FRAME) {
317 frame++;
318 }
319
Carl Worth163b22c2012-08-10 10:15:30 -0700320 delete call;
321 }
322
Carl Worthab82b3b2012-08-15 16:35:38 -0700323 if (options->print_callset) {
324 if (call_range_last != call_range_first)
325 printf ("-%d\n", call_range_last);
326 }
327
Carl Worth1a800a12012-08-17 14:23:13 -0700328 std::cerr << "Trimmed trace is available as " << options->output << "\n";
Carl Worth163b22c2012-08-10 10:15:30 -0700329
330 return 0;
331}
332
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800333static int
Carl Worth25fe5242012-11-14 20:55:31 -0800334parse_trim_spec(const char *trim_spec, TrimFlags *flags)
335{
336 std::string spec(trim_spec), word;
337 size_t start = 0, comma = 0;
338 *flags = 0;
339
340 while (start < spec.size()) {
341 comma = spec.find(',', start);
342
343 if (comma == std::string::npos)
344 word = std::string(spec, start);
345 else
346 word = std::string(spec, start, comma - start);
347
348 if (strcmp(word.c_str(), "no-side-effects") == 0)
349 *flags |= TRIM_FLAG_NO_SIDE_EFFECTS;
350 else if (strcmp(word.c_str(), "textures") == 0)
351 *flags |= TRIM_FLAG_TEXTURES;
352 else if (strcmp(word.c_str(), "shaders") == 0)
353 *flags |= TRIM_FLAG_SHADERS;
354 else if (strcmp(word.c_str(), "drawing") == 0)
355 *flags |= TRIM_FLAG_DRAWING;
356 else {
357 return 1;
358 }
359
360 if (comma == std::string::npos)
361 break;
362
363 start = comma + 1;
364 }
365
366 return 0;
367}
368
369static int
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800370command(int argc, char *argv[])
371{
Carl Worth163b22c2012-08-10 10:15:30 -0700372 struct trim_options options;
373
Carl Worth46abfd12012-08-14 22:32:29 -0700374 options.calls = trace::CallSet(trace::FREQUENCY_NONE);
375 options.frames = trace::CallSet(trace::FREQUENCY_NONE);
Carl Worth991740f2013-03-21 16:01:25 -0700376 options.dependency_analysis = true;
377 options.prune_uninteresting = true;
Carl Worth163b22c2012-08-10 10:15:30 -0700378 options.output = "";
379 options.thread = -1;
Carl Worthab82b3b2012-08-15 16:35:38 -0700380 options.print_callset = 0;
Carl Worth25fe5242012-11-14 20:55:31 -0800381 options.trim_flags = -1;
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800382
José Fonsecab682b672012-02-15 07:13:31 +0000383 int opt;
384 while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) {
385 switch (opt) {
386 case 'h':
Carl Worth86464432012-08-11 11:46:54 -0700387 help();
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800388 return 0;
José Fonsecab682b672012-02-15 07:13:31 +0000389 case CALLS_OPT:
Carl Worth163b22c2012-08-10 10:15:30 -0700390 options.calls = trace::CallSet(optarg);
391 break;
Carl Worth46abfd12012-08-14 22:32:29 -0700392 case FRAMES_OPT:
393 options.frames = trace::CallSet(optarg);
394 break;
Carl Worth163b22c2012-08-10 10:15:30 -0700395 case DEPS_OPT:
396 options.dependency_analysis = true;
397 break;
Carl Wortha0931fd2013-03-21 15:49:58 -0700398 case NO_DEPS_OPT:
399 options.dependency_analysis = false;
400 break;
Carl Worth16b18db2012-08-11 11:33:12 -0700401 case PRUNE_OPT:
402 options.prune_uninteresting = true;
403 break;
Carl Wortha0931fd2013-03-21 15:49:58 -0700404 case NO_PRUNE_OPT:
405 options.prune_uninteresting = false;
406 break;
José Fonseca6e4768b2012-11-22 08:31:47 +0000407 case 'a':
408 options.dependency_analysis = true;
409 options.prune_uninteresting = true;
Carl Worth16b18db2012-08-11 11:33:12 -0700410 break;
Carl Wortha0931fd2013-03-21 15:49:58 -0700411 case EXACT_OPT:
412 options.dependency_analysis = false;
413 options.prune_uninteresting = false;
414 break;
Imre Deak6f07a842012-05-08 15:20:43 +0300415 case THREAD_OPT:
Carl Worth163b22c2012-08-10 10:15:30 -0700416 options.thread = atoi(optarg);
Imre Deak6f07a842012-05-08 15:20:43 +0300417 break;
José Fonsecab682b672012-02-15 07:13:31 +0000418 case 'o':
Carl Worth163b22c2012-08-10 10:15:30 -0700419 options.output = optarg;
José Fonsecab682b672012-02-15 07:13:31 +0000420 break;
Carl Worthab82b3b2012-08-15 16:35:38 -0700421 case PRINT_CALLSET_OPT:
422 options.print_callset = 1;
423 break;
Carl Worth25fe5242012-11-14 20:55:31 -0800424 case TRIM_SPEC_OPT:
425 if (parse_trim_spec(optarg, &options.trim_flags)) {
426 std::cerr << "error: illegal value for trim-spec: " << optarg << "\n";
427 std::cerr << "See \"apitrace help trim\" for help.\n";
428 return 1;
429 }
430 break;
José Fonsecab682b672012-02-15 07:13:31 +0000431 default:
432 std::cerr << "error: unexpected option `" << opt << "`\n";
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800433 usage();
434 return 1;
435 }
436 }
437
Carl Worth46abfd12012-08-14 22:32:29 -0700438 /* If neither of --calls nor --frames was set, default to the
439 * entire set of calls. */
440 if (options.calls.empty() && options.frames.empty()) {
441 options.calls = trace::CallSet(trace::FREQUENCY_ALL);
442 }
443
José Fonsecab682b672012-02-15 07:13:31 +0000444 if (optind >= argc) {
445 std::cerr << "error: apitrace trim requires a trace file as an argument.\n";
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800446 usage();
447 return 1;
448 }
449
Carl Worthf630d9d2012-09-04 16:48:00 -0700450 if (argc > optind + 1) {
451 std::cerr << "error: extraneous arguments:";
452 for (int i = optind + 1; i < argc; i++) {
453 std::cerr << " " << argv[i];
454 }
455 std::cerr << "\n";
456 usage();
457 return 1;
458 }
459
Carl Worth83ec3f62012-08-17 14:22:30 -0700460 if (options.dependency_analysis) {
461 std::cerr <<
462 "Note: The dependency analysis in \"apitrace trim\" is still experimental.\n"
463 " We hope that it will be useful, but it may lead to incorrect results.\n"
464 " If you find a trace that misbehaves while trimming, please share that\n"
465 " by sending email to apitrace@lists.freedesktop.org, cworth@cworth.org\n";
466 }
467
Carl Worth163b22c2012-08-10 10:15:30 -0700468 return trim_trace(argv[optind], &options);
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800469}
470
471const Command trim_command = {
472 "trim",
473 synopsis,
Carl Worth86464432012-08-11 11:46:54 -0700474 help,
Carl Worth4c5f6fa2011-11-14 14:50:07 -0800475 command
476};