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

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

Issue 9190001: Backport @10366 to 3.6 Base URL: http://v8.googlecode.com/svn/branches/3.6/
Patch Set: '' Created 8 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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") 312 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
313 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 313 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
314 DEFINE_int(sim_stack_alignment, 8, 314 DEFINE_int(sim_stack_alignment, 8,
315 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 315 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
316 316
317 // isolate.cc 317 // isolate.cc
318 DEFINE_bool(trace_exception, false, 318 DEFINE_bool(trace_exception, false,
319 "print stack trace when throwing exceptions") 319 "print stack trace when throwing exceptions")
320 DEFINE_bool(preallocate_message_memory, false, 320 DEFINE_bool(preallocate_message_memory, false,
321 "preallocate some memory to build stack traces.") 321 "preallocate some memory to build stack traces.")
322 DEFINE_bool(randomize_string_hashes, 322 DEFINE_bool(randomize_hashes,
323 true, 323 true,
324 "randomize string hashes to avoid predictable hash collisions " 324 "randomize hashes to avoid predictable hash collisions "
325 "(with snapshots this option cannot override the baked-in seed)") 325 "(with snapshots this option cannot override the baked-in seed)")
326 DEFINE_int(string_hash_seed, 326 DEFINE_int(hash_seed,
327 0, 327 0,
328 "Fixed seed to use to string hashing (0 means random)" 328 "Fixed seed to use to hash property keys (0 means random)"
329 "(with snapshots this option cannot override the baked-in seed)") 329 "(with snapshots this option cannot override the baked-in seed)")
330 330
331 // v8.cc 331 // v8.cc
332 DEFINE_bool(preemption, false, 332 DEFINE_bool(preemption, false,
333 "activate a 100ms timer that switches between V8 threads") 333 "activate a 100ms timer that switches between V8 threads")
334 334
335 // Regexp 335 // Regexp
336 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 336 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
337 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp") 337 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp")
338 338
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 #undef FLAG 526 #undef FLAG
527 527
528 #undef DEFINE_bool 528 #undef DEFINE_bool
529 #undef DEFINE_int 529 #undef DEFINE_int
530 #undef DEFINE_string 530 #undef DEFINE_string
531 531
532 #undef FLAG_MODE_DECLARE 532 #undef FLAG_MODE_DECLARE
533 #undef FLAG_MODE_DEFINE 533 #undef FLAG_MODE_DEFINE
534 #undef FLAG_MODE_DEFINE_DEFAULTS 534 #undef FLAG_MODE_DEFINE_DEFAULTS
535 #undef FLAG_MODE_META 535 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698