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

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

Issue 18193: Add support for \b and ^ and $ in multiline mode, completing Irregexp... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 | Annotate | Revision Log
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 DEFINE_bool(preallocate_message_memory, false, 192 DEFINE_bool(preallocate_message_memory, false,
193 "preallocate some memory to build stack traces.") 193 "preallocate some memory to build stack traces.")
194 194
195 // usage-analyzer.cc 195 // usage-analyzer.cc
196 DEFINE_bool(usage_computation, true, "compute variable usage counts") 196 DEFINE_bool(usage_computation, true, "compute variable usage counts")
197 197
198 // v8.cc 198 // v8.cc
199 DEFINE_bool(preemption, false, 199 DEFINE_bool(preemption, false,
200 "activate a 100ms timer that switches between V8 threads") 200 "activate a 100ms timer that switches between V8 threads")
201 201
202 // irregexp 202 // Irregexp
Christian Plesner Hansen 2009/01/19 10:28:59 What about the failing layout tests?
203 DEFINE_bool(irregexp, false, "new regular expression code") 203 DEFINE_bool(irregexp, true, "new regular expression code")
204 DEFINE_bool(trace_regexps, false, "trace Irregexp execution") 204 DEFINE_bool(trace_regexps, false, "trace Irregexp execution")
205 DEFINE_bool(irregexp_native, false, "use native code Irregexp implementation (IA 32 only)") 205 DEFINE_bool(irregexp_native, true, "use native code Irregexp implementation (IA3 2 only)")
206 DEFINE_bool(disable_jscre, false, "abort if JSCRE is used. Only useful with --i rregexp") 206 DEFINE_bool(disable_jscre, true, "abort if JSCRE is used. Only useful with --ir regexp")
207 DEFINE_bool(attempt_multiline_irregexp, false, "attempt to use Irregexp for mult iline regexps")
208 207
209 // Testing flags test/cctest/test-{flags,api,serialization}.cc 208 // Testing flags test/cctest/test-{flags,api,serialization}.cc
210 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 209 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
211 DEFINE_int(testing_int_flag, 13, "testing_int_flag") 210 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
212 DEFINE_float(testing_float_flag, 2.5, "float-flag") 211 DEFINE_float(testing_float_flag, 2.5, "float-flag")
213 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") 212 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
214 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") 213 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
215 #ifdef WIN32 214 #ifdef WIN32
216 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 215 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
217 "file in which to testing_serialize heap") 216 "file in which to testing_serialize heap")
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 #undef FLAG 350 #undef FLAG
352 351
353 #undef DEFINE_bool 352 #undef DEFINE_bool
354 #undef DEFINE_int 353 #undef DEFINE_int
355 #undef DEFINE_string 354 #undef DEFINE_string
356 355
357 #undef FLAG_MODE_DECLARE 356 #undef FLAG_MODE_DECLARE
358 #undef FLAG_MODE_DEFINE 357 #undef FLAG_MODE_DEFINE
359 #undef FLAG_MODE_DEFINE_DEFAULTS 358 #undef FLAG_MODE_DEFINE_DEFAULTS
360 #undef FLAG_MODE_META 359 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/bytecodes-irregexp.h ('k') | src/interpreter-irregexp.cc » ('j') | src/jsregexp.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698