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

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

Issue 9083001: Use a random seed for the string hash algorithm. Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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
« no previous file with comments | « no previous file | src/heap.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 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 "Check icache flushes in ARM and MIPS simulator") 342 "Check icache flushes in ARM and MIPS simulator")
343 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 343 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
344 DEFINE_int(sim_stack_alignment, 8, 344 DEFINE_int(sim_stack_alignment, 8,
345 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 345 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
346 346
347 // isolate.cc 347 // isolate.cc
348 DEFINE_bool(trace_exception, false, 348 DEFINE_bool(trace_exception, false,
349 "print stack trace when throwing exceptions") 349 "print stack trace when throwing exceptions")
350 DEFINE_bool(preallocate_message_memory, false, 350 DEFINE_bool(preallocate_message_memory, false,
351 "preallocate some memory to build stack traces.") 351 "preallocate some memory to build stack traces.")
352 DEFINE_bool(randomize_string_hashes,
353 true,
354 "randomize string hashes to avoid predictable hash collisions")
355 DEFINE_int(string_hash_seed,
356 0,
357 "Fixed seed to use to string hashing (0 means random)")
352 358
353 // v8.cc 359 // v8.cc
354 DEFINE_bool(preemption, false, 360 DEFINE_bool(preemption, false,
355 "activate a 100ms timer that switches between V8 threads") 361 "activate a 100ms timer that switches between V8 threads")
356 362
357 // Regexp 363 // Regexp
358 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") 364 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
359 365
360 // Testing flags test/cctest/test-{flags,api,serialization}.cc 366 // Testing flags test/cctest/test-{flags,api,serialization}.cc
361 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") 367 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 #undef DEFINE_bool 584 #undef DEFINE_bool
579 #undef DEFINE_int 585 #undef DEFINE_int
580 #undef DEFINE_string 586 #undef DEFINE_string
581 #undef DEFINE_implication 587 #undef DEFINE_implication
582 588
583 #undef FLAG_MODE_DECLARE 589 #undef FLAG_MODE_DECLARE
584 #undef FLAG_MODE_DEFINE 590 #undef FLAG_MODE_DEFINE
585 #undef FLAG_MODE_DEFINE_DEFAULTS 591 #undef FLAG_MODE_DEFINE_DEFAULTS
586 #undef FLAG_MODE_META 592 #undef FLAG_MODE_META
587 #undef FLAG_MODE_DEFINE_IMPLICATIONS 593 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698