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

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

Issue 21579003: Remove instructions and infrastructure related to IDEFs that is now obsolete (and was never turned … (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove TODO. Created 7 years, 4 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/arm/lithium-arm.cc ('k') | 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 0, 258 0,
259 "deoptimize every n times a deopt point is passed") 259 "deoptimize every n times a deopt point is passed")
260 DEFINE_int(deopt_every_n_garbage_collections, 260 DEFINE_int(deopt_every_n_garbage_collections,
261 0, 261 0,
262 "deoptimize every n garbage collections") 262 "deoptimize every n garbage collections")
263 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") 263 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points")
264 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 264 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
265 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 265 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
266 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 266 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
267 DEFINE_bool(use_osr, true, "use on-stack replacement") 267 DEFINE_bool(use_osr, true, "use on-stack replacement")
268 DEFINE_bool(idefs, false, "use informative definitions")
269 DEFINE_bool(array_bounds_checks_elimination, true, 268 DEFINE_bool(array_bounds_checks_elimination, true,
270 "perform array bounds checks elimination") 269 "perform array bounds checks elimination")
271 DEFINE_bool(array_bounds_checks_hoisting, false, 270 DEFINE_bool(array_bounds_checks_hoisting, false,
272 "perform array bounds checks hoisting") 271 "perform array bounds checks hoisting")
273 DEFINE_bool(array_index_dehoisting, true, 272 DEFINE_bool(array_index_dehoisting, true,
274 "perform array index dehoisting") 273 "perform array index dehoisting")
275 DEFINE_bool(analyze_environment_liveness, true, 274 DEFINE_bool(analyze_environment_liveness, true,
276 "analyze liveness of environment slots and zap dead values") 275 "analyze liveness of environment slots and zap dead values")
277 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") 276 DEFINE_bool(dead_code_elimination, true, "use dead code elimination")
278 DEFINE_bool(fold_constants, true, "use constant folding") 277 DEFINE_bool(fold_constants, true, "use constant folding")
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 #undef DEFINE_bool 812 #undef DEFINE_bool
814 #undef DEFINE_int 813 #undef DEFINE_int
815 #undef DEFINE_string 814 #undef DEFINE_string
816 #undef DEFINE_implication 815 #undef DEFINE_implication
817 816
818 #undef FLAG_MODE_DECLARE 817 #undef FLAG_MODE_DECLARE
819 #undef FLAG_MODE_DEFINE 818 #undef FLAG_MODE_DEFINE
820 #undef FLAG_MODE_DEFINE_DEFAULTS 819 #undef FLAG_MODE_DEFINE_DEFAULTS
821 #undef FLAG_MODE_META 820 #undef FLAG_MODE_META
822 #undef FLAG_MODE_DEFINE_IMPLICATIONS 821 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698