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

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

Issue 8188: Some new regexp infrastructure. (Closed)
Patch Set: Created 12 years, 1 month 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
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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 257
258 // serialize.cc 258 // serialize.cc
259 DEFINE_bool(debug_serialization, false, 259 DEFINE_bool(debug_serialization, false,
260 "write debug information into the snapshot.") 260 "write debug information into the snapshot.")
261 261
262 // spaces.cc 262 // spaces.cc
263 DEFINE_bool(collect_heap_spill_statistics, false, 263 DEFINE_bool(collect_heap_spill_statistics, false,
264 "report heap spill statistics along with heap_stats " 264 "report heap spill statistics along with heap_stats "
265 "(requires heap_stats)") 265 "(requires heap_stats)")
266 266
267 DEFINE_bool(trace_regexps, false, "trace regexp execution")
268
267 // 269 //
268 // Logging and profiling only flags 270 // Logging and profiling only flags
269 // 271 //
270 #undef FLAG 272 #undef FLAG
271 #ifdef ENABLE_LOGGING_AND_PROFILING 273 #ifdef ENABLE_LOGGING_AND_PROFILING
272 #define FLAG FLAG_FULL 274 #define FLAG FLAG_FULL
273 #else 275 #else
274 #define FLAG FLAG_READONLY 276 #define FLAG FLAG_READONLY
275 #endif 277 #endif
276 278
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 #undef FLAG 314 #undef FLAG
313 315
314 #undef DEFINE_bool 316 #undef DEFINE_bool
315 #undef DEFINE_int 317 #undef DEFINE_int
316 #undef DEFINE_string 318 #undef DEFINE_string
317 319
318 #undef FLAG_MODE_DECLARE 320 #undef FLAG_MODE_DECLARE
319 #undef FLAG_MODE_DEFINE 321 #undef FLAG_MODE_DEFINE
320 #undef FLAG_MODE_DEFINE_DEFAULTS 322 #undef FLAG_MODE_DEFINE_DEFAULTS
321 #undef FLAG_MODE_META 323 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698