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

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

Issue 95603008: Turn off new_string_add flag. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | no next file » | 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 DEFINE_bool(block_concurrent_recompilation, false, 338 DEFINE_bool(block_concurrent_recompilation, false,
339 "block queued jobs until released") 339 "block queued jobs until released")
340 DEFINE_bool(concurrent_osr, false, 340 DEFINE_bool(concurrent_osr, false,
341 "concurrent on-stack replacement") 341 "concurrent on-stack replacement")
342 DEFINE_implication(concurrent_osr, concurrent_recompilation) 342 DEFINE_implication(concurrent_osr, concurrent_recompilation)
343 343
344 DEFINE_bool(omit_map_checks_for_leaf_maps, true, 344 DEFINE_bool(omit_map_checks_for_leaf_maps, true,
345 "do not emit check maps for constant values that have a leaf map, " 345 "do not emit check maps for constant values that have a leaf map, "
346 "deoptimize the optimized code if the layout of the maps changes.") 346 "deoptimize the optimized code if the layout of the maps changes.")
347 347
348 DEFINE_bool(new_string_add, true, "enable new string addition") 348 DEFINE_bool(new_string_add, false, "enable new string addition")
349 349
350 // Experimental profiler changes. 350 // Experimental profiler changes.
351 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") 351 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments")
352 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") 352 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability")
353 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") 353 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
354 DEFINE_bool(self_optimization, false, 354 DEFINE_bool(self_optimization, false,
355 "primitive functions trigger their own optimization") 355 "primitive functions trigger their own optimization")
356 DEFINE_bool(direct_self_opt, false, 356 DEFINE_bool(direct_self_opt, false,
357 "call recompile stub directly when self-optimizing") 357 "call recompile stub directly when self-optimizing")
358 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed") 358 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed")
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 #undef DEFINE_ALIAS_float 898 #undef DEFINE_ALIAS_float
899 #undef DEFINE_ALIAS_args 899 #undef DEFINE_ALIAS_args
900 900
901 #undef FLAG_MODE_DECLARE 901 #undef FLAG_MODE_DECLARE
902 #undef FLAG_MODE_DEFINE 902 #undef FLAG_MODE_DEFINE
903 #undef FLAG_MODE_DEFINE_DEFAULTS 903 #undef FLAG_MODE_DEFINE_DEFAULTS
904 #undef FLAG_MODE_META 904 #undef FLAG_MODE_META
905 #undef FLAG_MODE_DEFINE_IMPLICATIONS 905 #undef FLAG_MODE_DEFINE_IMPLICATIONS
906 906
907 #undef COMMA 907 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698