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

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

Issue 9124004: Backport hash collision workaround to 3.6. (Closed) 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,
323 true,
324 "randomize string hashes to avoid predictable hash collisions "
325 "(with snapshots this option cannot override the baked-in seed)")
326 DEFINE_int(string_hash_seed,
327 0,
328 "Fixed seed to use to string hashing (0 means random)"
329 "(with snapshots this option cannot override the baked-in seed)")
322 330
323 // v8.cc 331 // v8.cc
324 DEFINE_bool(preemption, false, 332 DEFINE_bool(preemption, false,
325 "activate a 100ms timer that switches between V8 threads") 333 "activate a 100ms timer that switches between V8 threads")
326 334
327 // Regexp 335 // Regexp
328 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 336 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
329 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")
330 338
331 // Testing flags test/cctest/test-{flags,api,serialization}.cc 339 // Testing flags test/cctest/test-{flags,api,serialization}.cc
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 #undef FLAG 526 #undef FLAG
519 527
520 #undef DEFINE_bool 528 #undef DEFINE_bool
521 #undef DEFINE_int 529 #undef DEFINE_int
522 #undef DEFINE_string 530 #undef DEFINE_string
523 531
524 #undef FLAG_MODE_DECLARE 532 #undef FLAG_MODE_DECLARE
525 #undef FLAG_MODE_DEFINE 533 #undef FLAG_MODE_DEFINE
526 #undef FLAG_MODE_DEFINE_DEFAULTS 534 #undef FLAG_MODE_DEFINE_DEFAULTS
527 #undef FLAG_MODE_META 535 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698