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

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

Issue 507051: Attempt to make \b\w+ faster. Slight performance increase on, e.g., string unpacking. (Closed)
Patch Set: Addressed review comments. Created 10 years, 11 months 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/ast.h ('k') | src/heap.cc » ('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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 // serialize.cc 321 // serialize.cc
322 DEFINE_bool(debug_serialization, false, 322 DEFINE_bool(debug_serialization, false,
323 "write debug information into the snapshot.") 323 "write debug information into the snapshot.")
324 324
325 // spaces.cc 325 // spaces.cc
326 DEFINE_bool(collect_heap_spill_statistics, false, 326 DEFINE_bool(collect_heap_spill_statistics, false,
327 "report heap spill statistics along with heap_stats " 327 "report heap spill statistics along with heap_stats "
328 "(requires heap_stats)") 328 "(requires heap_stats)")
329 329
330 // Regexp 330 // Regexp
331 DEFINE_bool(regexp_possessive_quantifier,
332 false,
333 "enable possessive quantifier syntax for testing")
331 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution") 334 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
332 DEFINE_bool(trace_regexp_assembler, 335 DEFINE_bool(trace_regexp_assembler,
333 false, 336 false,
334 "trace regexp macro assembler calls.") 337 "trace regexp macro assembler calls.")
335 338
336 // 339 //
337 // Logging and profiling only flags 340 // Logging and profiling only flags
338 // 341 //
339 #undef FLAG 342 #undef FLAG
340 #ifdef ENABLE_LOGGING_AND_PROFILING 343 #ifdef ENABLE_LOGGING_AND_PROFILING
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 #undef FLAG 411 #undef FLAG
409 412
410 #undef DEFINE_bool 413 #undef DEFINE_bool
411 #undef DEFINE_int 414 #undef DEFINE_int
412 #undef DEFINE_string 415 #undef DEFINE_string
413 416
414 #undef FLAG_MODE_DECLARE 417 #undef FLAG_MODE_DECLARE
415 #undef FLAG_MODE_DEFINE 418 #undef FLAG_MODE_DEFINE
416 #undef FLAG_MODE_DEFINE_DEFAULTS 419 #undef FLAG_MODE_DEFINE_DEFAULTS
417 #undef FLAG_MODE_META 420 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698