Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/flag-definitions.h

Issue 13050: Live counters in d8 (Closed)
Patch Set: Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/d8.cc ('k') | tools/stats-viewer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 DEFINE_string(testing_serialization_file, "/tmp/serdes", 219 DEFINE_string(testing_serialization_file, "/tmp/serdes",
220 "file in which to serialize heap") 220 "file in which to serialize heap")
221 #endif 221 #endif
222 222
223 // 223 //
224 // Dev shell flags 224 // Dev shell flags
225 // 225 //
226 226
227 DEFINE_bool(help, false, "Print usage message, including flags, on console") 227 DEFINE_bool(help, false, "Print usage message, including flags, on console")
228 DEFINE_bool(dump_counters, false, "Dump counters on exit") 228 DEFINE_bool(dump_counters, false, "Dump counters on exit")
229 DEFINE_string(map_counters, false, "Map counters to a file")
229 DEFINE_args(js_arguments, JSArguments(), 230 DEFINE_args(js_arguments, JSArguments(),
230 "Pass all remaining arguments to the script. Alias for \"--\".") 231 "Pass all remaining arguments to the script. Alias for \"--\".")
231 232
232 // 233 //
233 // Debug only flags 234 // Debug only flags
234 // 235 //
235 #undef FLAG 236 #undef FLAG
236 #ifdef DEBUG 237 #ifdef DEBUG
237 #define FLAG FLAG_FULL 238 #define FLAG FLAG_FULL
238 #else 239 #else
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 #undef FLAG 350 #undef FLAG
350 351
351 #undef DEFINE_bool 352 #undef DEFINE_bool
352 #undef DEFINE_int 353 #undef DEFINE_int
353 #undef DEFINE_string 354 #undef DEFINE_string
354 355
355 #undef FLAG_MODE_DECLARE 356 #undef FLAG_MODE_DECLARE
356 #undef FLAG_MODE_DEFINE 357 #undef FLAG_MODE_DEFINE
357 #undef FLAG_MODE_DEFINE_DEFAULTS 358 #undef FLAG_MODE_DEFINE_DEFAULTS
358 #undef FLAG_MODE_META 359 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | tools/stats-viewer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698