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

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

Issue 11365174: A change in the way we place TransitionElementKinds in the tree. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 DEFINE_bool(collect_megamorphic_maps_from_stub_cache, 184 DEFINE_bool(collect_megamorphic_maps_from_stub_cache,
185 true, 185 true,
186 "crankshaft harvests type feedback from stub cache") 186 "crankshaft harvests type feedback from stub cache")
187 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen") 187 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen")
188 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") 188 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file")
189 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases") 189 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases")
190 DEFINE_bool(trace_inlining, false, "trace inlining decisions") 190 DEFINE_bool(trace_inlining, false, "trace inlining decisions")
191 DEFINE_bool(trace_alloc, false, "trace register allocator") 191 DEFINE_bool(trace_alloc, false, "trace register allocator")
192 DEFINE_bool(trace_all_uses, false, "trace all use positions") 192 DEFINE_bool(trace_all_uses, false, "trace all use positions")
193 DEFINE_bool(trace_range, false, "trace range analysis") 193 DEFINE_bool(trace_range, false, "trace range analysis")
194 DEFINE_bool(trace_transition_placement, false, "trace elementskind transition pl acement")
danno 2012/11/14 15:28:18 80 col
mvstanton 2012/11/16 15:15:06 Done.
194 DEFINE_bool(trace_gvn, false, "trace global value numbering") 195 DEFINE_bool(trace_gvn, false, "trace global value numbering")
195 DEFINE_bool(trace_representation, false, "trace representation types") 196 DEFINE_bool(trace_representation, false, "trace representation types")
196 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") 197 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction")
197 DEFINE_bool(stress_environments, false, "environment for every instruction") 198 DEFINE_bool(stress_environments, false, "environment for every instruction")
198 DEFINE_int(deopt_every_n_times, 199 DEFINE_int(deopt_every_n_times,
199 0, 200 0,
200 "deoptimize every n times a deopt point is passed") 201 "deoptimize every n times a deopt point is passed")
201 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 202 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
202 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 203 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
203 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 204 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 #undef DEFINE_bool 712 #undef DEFINE_bool
712 #undef DEFINE_int 713 #undef DEFINE_int
713 #undef DEFINE_string 714 #undef DEFINE_string
714 #undef DEFINE_implication 715 #undef DEFINE_implication
715 716
716 #undef FLAG_MODE_DECLARE 717 #undef FLAG_MODE_DECLARE
717 #undef FLAG_MODE_DEFINE 718 #undef FLAG_MODE_DEFINE
718 #undef FLAG_MODE_DEFINE_DEFAULTS 719 #undef FLAG_MODE_DEFINE_DEFAULTS
719 #undef FLAG_MODE_META 720 #undef FLAG_MODE_META
720 #undef FLAG_MODE_DEFINE_IMPLICATIONS 721 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698