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

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

Issue 521028: Direct call to native RegExp code from JavaScript (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' 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 | Annotate | Revision Log
« no previous file with comments | « src/codegen.cc ('k') | src/ia32/codegen-ia32.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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 // usage-analyzer.cc 224 // usage-analyzer.cc
225 DEFINE_bool(usage_computation, true, "compute variable usage counts") 225 DEFINE_bool(usage_computation, true, "compute variable usage counts")
226 226
227 // v8.cc 227 // v8.cc
228 DEFINE_bool(preemption, false, 228 DEFINE_bool(preemption, false,
229 "activate a 100ms timer that switches between V8 threads") 229 "activate a 100ms timer that switches between V8 threads")
230 230
231 // Regexp 231 // Regexp
232 DEFINE_bool(trace_regexps, false, "trace regexp execution") 232 DEFINE_bool(trace_regexps, false, "trace regexp execution")
233 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 233 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
234 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp")
234 235
235 // Testing flags test/cctest/test-{flags,api,serialization}.cc 236 // Testing flags test/cctest/test-{flags,api,serialization}.cc
236 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 237 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
237 DEFINE_int(testing_int_flag, 13, "testing_int_flag") 238 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
238 DEFINE_float(testing_float_flag, 2.5, "float-flag") 239 DEFINE_float(testing_float_flag, 2.5, "float-flag")
239 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") 240 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
240 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") 241 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
241 #ifdef WIN32 242 #ifdef WIN32
242 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 243 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
243 "file in which to testing_serialize heap") 244 "file in which to testing_serialize heap")
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 #undef FLAG 409 #undef FLAG
409 410
410 #undef DEFINE_bool 411 #undef DEFINE_bool
411 #undef DEFINE_int 412 #undef DEFINE_int
412 #undef DEFINE_string 413 #undef DEFINE_string
413 414
414 #undef FLAG_MODE_DECLARE 415 #undef FLAG_MODE_DECLARE
415 #undef FLAG_MODE_DEFINE 416 #undef FLAG_MODE_DEFINE
416 #undef FLAG_MODE_DEFINE_DEFAULTS 417 #undef FLAG_MODE_DEFINE_DEFAULTS
417 #undef FLAG_MODE_META 418 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/codegen.cc ('k') | src/ia32/codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698