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

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

Issue 17491002: Revert r14930 and r14935 temporarily. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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-codegen-arm.cc ('k') | src/heap.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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 188 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
189 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 189 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
190 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " 190 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to "
191 "generate array elements transition stubs") 191 "generate array elements transition stubs")
192 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " 192 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to "
193 "generate keyed store stubs") 193 "generate keyed store stubs")
194 DEFINE_bool(clever_optimizations, 194 DEFINE_bool(clever_optimizations,
195 true, 195 true,
196 "Optimize object size, Array shift, DOM strings and string +") 196 "Optimize object size, Array shift, DOM strings and string +")
197 DEFINE_bool(pretenuring, true, "allocate objects in old space") 197 DEFINE_bool(pretenuring, true, "allocate objects in old space")
198 // TODO(hpayer): We will remove this flag as soon as we have pretenuring
199 // support for specific allocation sites.
200 DEFINE_bool(pretenuring_call_new, false, "pretenure call new")
201 DEFINE_bool(track_fields, true, "track fields with only smi values") 198 DEFINE_bool(track_fields, true, "track fields with only smi values")
202 DEFINE_bool(track_double_fields, true, "track fields with double values") 199 DEFINE_bool(track_double_fields, true, "track fields with double values")
203 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") 200 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values")
204 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields") 201 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields")
205 DEFINE_implication(track_double_fields, track_fields) 202 DEFINE_implication(track_double_fields, track_fields)
206 DEFINE_implication(track_heap_object_fields, track_fields) 203 DEFINE_implication(track_heap_object_fields, track_fields)
207 DEFINE_implication(track_computed_fields, track_fields) 204 DEFINE_implication(track_computed_fields, track_fields)
208 205
209 // Flags for data representation optimizations 206 // Flags for data representation optimizations
210 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 207 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 #undef DEFINE_bool 793 #undef DEFINE_bool
797 #undef DEFINE_int 794 #undef DEFINE_int
798 #undef DEFINE_string 795 #undef DEFINE_string
799 #undef DEFINE_implication 796 #undef DEFINE_implication
800 797
801 #undef FLAG_MODE_DECLARE 798 #undef FLAG_MODE_DECLARE
802 #undef FLAG_MODE_DEFINE 799 #undef FLAG_MODE_DEFINE
803 #undef FLAG_MODE_DEFINE_DEFAULTS 800 #undef FLAG_MODE_DEFINE_DEFAULTS
804 #undef FLAG_MODE_META 801 #undef FLAG_MODE_META
805 #undef FLAG_MODE_DEFINE_IMPLICATIONS 802 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698