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

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

Issue 155085: Separate native and interpreted regexp by compile time flag, not runtime. (Closed)
Patch Set: Addressed review comments. Adapted builds scripts. Created 11 years, 5 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 | « SConstruct ('k') | src/jsregexp.h » ('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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 201
202 // usage-analyzer.cc 202 // usage-analyzer.cc
203 DEFINE_bool(usage_computation, true, "compute variable usage counts") 203 DEFINE_bool(usage_computation, true, "compute variable usage counts")
204 204
205 // v8.cc 205 // v8.cc
206 DEFINE_bool(preemption, false, 206 DEFINE_bool(preemption, false,
207 "activate a 100ms timer that switches between V8 threads") 207 "activate a 100ms timer that switches between V8 threads")
208 208
209 // Regexp 209 // Regexp
210 DEFINE_bool(trace_regexps, false, "trace regexp execution") 210 DEFINE_bool(trace_regexps, false, "trace regexp execution")
211 DEFINE_bool(regexp_native, true,
212 "use native code regexp implementation (IA32 only)")
213 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 211 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
214 212
215 // Testing flags test/cctest/test-{flags,api,serialization}.cc 213 // Testing flags test/cctest/test-{flags,api,serialization}.cc
216 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 214 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
217 DEFINE_int(testing_int_flag, 13, "testing_int_flag") 215 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
218 DEFINE_float(testing_float_flag, 2.5, "float-flag") 216 DEFINE_float(testing_float_flag, 2.5, "float-flag")
219 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") 217 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
220 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") 218 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
221 #ifdef WIN32 219 #ifdef WIN32
222 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 220 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 #undef FLAG 382 #undef FLAG
385 383
386 #undef DEFINE_bool 384 #undef DEFINE_bool
387 #undef DEFINE_int 385 #undef DEFINE_int
388 #undef DEFINE_string 386 #undef DEFINE_string
389 387
390 #undef FLAG_MODE_DECLARE 388 #undef FLAG_MODE_DECLARE
391 #undef FLAG_MODE_DEFINE 389 #undef FLAG_MODE_DEFINE
392 #undef FLAG_MODE_DEFINE_DEFAULTS 390 #undef FLAG_MODE_DEFINE_DEFAULTS
393 #undef FLAG_MODE_META 391 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/jsregexp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698