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

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

Issue 171813015: Don't disable hash randomization option in predictable mode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review notes applied Created 6 years, 10 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/v8.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 641
642 // mksnapshot.cc 642 // mksnapshot.cc
643 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in" 643 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in"
644 " the snapshot (mksnapshot only)") 644 " the snapshot (mksnapshot only)")
645 645
646 // code-stubs-hydrogen.cc 646 // code-stubs-hydrogen.cc
647 DEFINE_bool(profile_hydrogen_code_stub_compilation, false, 647 DEFINE_bool(profile_hydrogen_code_stub_compilation, false,
648 "Print the time it takes to lazily compile hydrogen code stubs.") 648 "Print the time it takes to lazily compile hydrogen code stubs.")
649 649
650 DEFINE_bool(predictable, false, "enable predictable mode") 650 DEFINE_bool(predictable, false, "enable predictable mode")
651 DEFINE_neg_implication(predictable, randomize_hashes)
652 DEFINE_neg_implication(predictable, concurrent_recompilation) 651 DEFINE_neg_implication(predictable, concurrent_recompilation)
653 DEFINE_neg_implication(predictable, concurrent_osr) 652 DEFINE_neg_implication(predictable, concurrent_osr)
654 DEFINE_neg_implication(predictable, concurrent_sweeping) 653 DEFINE_neg_implication(predictable, concurrent_sweeping)
655 DEFINE_neg_implication(predictable, parallel_sweeping) 654 DEFINE_neg_implication(predictable, parallel_sweeping)
656 655
657 656
658 // 657 //
659 // Dev shell flags 658 // Dev shell flags
660 // 659 //
661 660
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 #undef DEFINE_ALIAS_float 914 #undef DEFINE_ALIAS_float
916 #undef DEFINE_ALIAS_args 915 #undef DEFINE_ALIAS_args
917 916
918 #undef FLAG_MODE_DECLARE 917 #undef FLAG_MODE_DECLARE
919 #undef FLAG_MODE_DEFINE 918 #undef FLAG_MODE_DEFINE
920 #undef FLAG_MODE_DEFINE_DEFAULTS 919 #undef FLAG_MODE_DEFINE_DEFAULTS
921 #undef FLAG_MODE_META 920 #undef FLAG_MODE_META
922 #undef FLAG_MODE_DEFINE_IMPLICATIONS 921 #undef FLAG_MODE_DEFINE_IMPLICATIONS
923 922
924 #undef COMMA 923 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698