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

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

Issue 12036011: Disable elimination of unreachable code after HSoftDeopts (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/hydrogen.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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 204 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
205 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 205 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
206 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 206 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
207 DEFINE_bool(use_osr, true, "use on-stack replacement") 207 DEFINE_bool(use_osr, true, "use on-stack replacement")
208 DEFINE_bool(array_bounds_checks_elimination, true, 208 DEFINE_bool(array_bounds_checks_elimination, true,
209 "perform array bounds checks elimination") 209 "perform array bounds checks elimination")
210 DEFINE_bool(array_index_dehoisting, true, 210 DEFINE_bool(array_index_dehoisting, true,
211 "perform array index dehoisting") 211 "perform array index dehoisting")
212 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") 212 DEFINE_bool(dead_code_elimination, true, "use dead code elimination")
213 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") 213 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination")
214 DEFINE_bool(unreachable_code_elimination, false,
215 "eliminate unreachable code (hidden behind soft deopts)")
214 DEFINE_bool(track_allocation_sites, true, 216 DEFINE_bool(track_allocation_sites, true,
215 "Use allocation site info to reduce transitions") 217 "Use allocation site info to reduce transitions")
216 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 218 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
217 DEFINE_int(stress_runs, 0, "number of stress runs") 219 DEFINE_int(stress_runs, 0, "number of stress runs")
218 DEFINE_bool(optimize_closures, true, "optimize closures") 220 DEFINE_bool(optimize_closures, true, "optimize closures")
219 DEFINE_bool(lookup_sample_by_shared, true, 221 DEFINE_bool(lookup_sample_by_shared, true,
220 "when picking a function to optimize, watch for shared function " 222 "when picking a function to optimize, watch for shared function "
221 "info, not JSFunction itself") 223 "info, not JSFunction itself")
222 DEFINE_bool(cache_optimized_code, true, 224 DEFINE_bool(cache_optimized_code, true,
223 "cache optimized code for closures") 225 "cache optimized code for closures")
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 #undef DEFINE_bool 718 #undef DEFINE_bool
717 #undef DEFINE_int 719 #undef DEFINE_int
718 #undef DEFINE_string 720 #undef DEFINE_string
719 #undef DEFINE_implication 721 #undef DEFINE_implication
720 722
721 #undef FLAG_MODE_DECLARE 723 #undef FLAG_MODE_DECLARE
722 #undef FLAG_MODE_DEFINE 724 #undef FLAG_MODE_DEFINE
723 #undef FLAG_MODE_DEFINE_DEFAULTS 725 #undef FLAG_MODE_DEFINE_DEFAULTS
724 #undef FLAG_MODE_META 726 #undef FLAG_MODE_META
725 #undef FLAG_MODE_DEFINE_IMPLICATIONS 727 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698