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

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

Issue 11000: Periodic merge of bleeding_edge to experimental code generator branch.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 12 years 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/factory.cc ('k') | src/frames-inl.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 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
203 DEFINE_bool(irregexp, false, "new regular expression code")
204 DEFINE_bool(trace_regexps, false, "trace Irregexp execution")
205 DEFINE_bool(irregexp_native, false, "use native code Irregexp implementation (IA 32 only)")
206 DEFINE_bool(disable_jscre, false, "abort if JSCRE is used. Only useful with --i rregexp")
207 DEFINE_bool(attempt_multiline_irregexp, false, "attempt to use Irregexp for mult iline regexps")
208
202 // Testing flags test/cctest/test-{flags,api,serialization}.cc 209 // Testing flags test/cctest/test-{flags,api,serialization}.cc
203 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 210 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
204 DEFINE_int(testing_int_flag, 13, "testing_int_flag") 211 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
205 DEFINE_float(testing_float_flag, 2.5, "float-flag") 212 DEFINE_float(testing_float_flag, 2.5, "float-flag")
206 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") 213 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
207 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") 214 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
208 #ifdef WIN32 215 #ifdef WIN32
209 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 216 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
210 "file in which to testing_serialize heap") 217 "file in which to testing_serialize heap")
211 #else 218 #else
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 289
283 // serialize.cc 290 // serialize.cc
284 DEFINE_bool(debug_serialization, false, 291 DEFINE_bool(debug_serialization, false,
285 "write debug information into the snapshot.") 292 "write debug information into the snapshot.")
286 293
287 // spaces.cc 294 // spaces.cc
288 DEFINE_bool(collect_heap_spill_statistics, false, 295 DEFINE_bool(collect_heap_spill_statistics, false,
289 "report heap spill statistics along with heap_stats " 296 "report heap spill statistics along with heap_stats "
290 "(requires heap_stats)") 297 "(requires heap_stats)")
291 298
299 // irregexp
300 DEFINE_bool(trace_regexp_bytecodes, false, "trace Irregexp bytecode execution")
301 DEFINE_bool(trace_regexp_assembler, false,
302 "trace Irregexp macro assembler calls.")
303
292 // 304 //
293 // Logging and profiling only flags 305 // Logging and profiling only flags
294 // 306 //
295 #undef FLAG 307 #undef FLAG
296 #ifdef ENABLE_LOGGING_AND_PROFILING 308 #ifdef ENABLE_LOGGING_AND_PROFILING
297 #define FLAG FLAG_FULL 309 #define FLAG FLAG_FULL
298 #else 310 #else
299 #define FLAG FLAG_READONLY 311 #define FLAG FLAG_READONLY
300 #endif 312 #endif
301 313
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 #undef FLAG 349 #undef FLAG
338 350
339 #undef DEFINE_bool 351 #undef DEFINE_bool
340 #undef DEFINE_int 352 #undef DEFINE_int
341 #undef DEFINE_string 353 #undef DEFINE_string
342 354
343 #undef FLAG_MODE_DECLARE 355 #undef FLAG_MODE_DECLARE
344 #undef FLAG_MODE_DEFINE 356 #undef FLAG_MODE_DEFINE
345 #undef FLAG_MODE_DEFINE_DEFAULTS 357 #undef FLAG_MODE_DEFINE_DEFAULTS
346 #undef FLAG_MODE_META 358 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/frames-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698