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

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

Issue 6646015: Normalize statistics about compilation time and allocation size.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 9 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 | « src/compiler.cc ('k') | src/hydrogen.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") 104 DEFINE_bool(alloc_lithium, true, "use lithium register allocator")
105 DEFINE_bool(use_lithium, true, "use lithium code generator") 105 DEFINE_bool(use_lithium, true, "use lithium code generator")
106 DEFINE_bool(use_range, true, "use hydrogen range analysis") 106 DEFINE_bool(use_range, true, "use hydrogen range analysis")
107 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis") 107 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis")
108 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering") 108 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
109 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing") 109 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
110 DEFINE_bool(use_inlining, true, "use function inlining") 110 DEFINE_bool(use_inlining, true, "use function inlining")
111 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining") 111 DEFINE_bool(limit_inlining, true, "limit code size growth from inlining")
112 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks") 112 DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks")
113 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion") 113 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
114 DEFINE_bool(time_hydrogen, false, "timing for hydrogen") 114 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen")
115 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") 115 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file")
116 DEFINE_bool(trace_inlining, false, "trace inlining decisions") 116 DEFINE_bool(trace_inlining, false, "trace inlining decisions")
117 DEFINE_bool(trace_alloc, false, "trace register allocator") 117 DEFINE_bool(trace_alloc, false, "trace register allocator")
118 DEFINE_bool(trace_all_uses, false, "trace all use positions") 118 DEFINE_bool(trace_all_uses, false, "trace all use positions")
119 DEFINE_bool(trace_range, false, "trace range analysis") 119 DEFINE_bool(trace_range, false, "trace range analysis")
120 DEFINE_bool(trace_gvn, false, "trace global value numbering") 120 DEFINE_bool(trace_gvn, false, "trace global value numbering")
121 DEFINE_bool(trace_representation, false, "trace representation types") 121 DEFINE_bool(trace_representation, false, "trace representation types")
122 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") 122 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction")
123 DEFINE_bool(stress_environments, false, "environment for every instruction") 123 DEFINE_bool(stress_environments, false, "environment for every instruction")
124 DEFINE_int(deopt_every_n_times, 124 DEFINE_int(deopt_every_n_times,
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 #undef FLAG 539 #undef FLAG
540 540
541 #undef DEFINE_bool 541 #undef DEFINE_bool
542 #undef DEFINE_int 542 #undef DEFINE_int
543 #undef DEFINE_string 543 #undef DEFINE_string
544 544
545 #undef FLAG_MODE_DECLARE 545 #undef FLAG_MODE_DECLARE
546 #undef FLAG_MODE_DEFINE 546 #undef FLAG_MODE_DEFINE
547 #undef FLAG_MODE_DEFINE_DEFAULTS 547 #undef FLAG_MODE_DEFINE_DEFAULTS
548 #undef FLAG_MODE_META 548 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698