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

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

Issue 7901016: Basic support for tracking smi-only arrays on ia32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: deactivate by default Created 9 years, 3 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 #define FLAG FLAG_FULL 97 #define FLAG FLAG_FULL
98 98
99 // Flags for experimental language features. 99 // Flags for experimental language features.
100 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof") 100 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof")
101 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") 101 DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
102 DEFINE_bool(harmony_weakmaps, false, "enable harmony weak maps") 102 DEFINE_bool(harmony_weakmaps, false, "enable harmony weak maps")
103 DEFINE_bool(harmony_block_scoping, false, "enable harmony block scoping") 103 DEFINE_bool(harmony_block_scoping, false, "enable harmony block scoping")
104 104
105 // Flags for experimental implementation features. 105 // Flags for experimental implementation features.
106 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 106 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
107 DEFINE_bool(smi_only_arrays, false, "tracks arrays with only smi values")
107 DEFINE_bool(string_slices, false, "use string slices") 108 DEFINE_bool(string_slices, false, "use string slices")
108 109
109 // Flags for Crankshaft. 110 // Flags for Crankshaft.
110 #ifdef V8_TARGET_ARCH_MIPS 111 #ifdef V8_TARGET_ARCH_MIPS
111 DEFINE_bool(crankshaft, false, "use crankshaft") 112 DEFINE_bool(crankshaft, false, "use crankshaft")
112 #else 113 #else
113 DEFINE_bool(crankshaft, true, "use crankshaft") 114 DEFINE_bool(crankshaft, true, "use crankshaft")
114 #endif 115 #endif
115 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") 116 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter")
116 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") 117 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation")
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 #undef FLAG 519 #undef FLAG
519 520
520 #undef DEFINE_bool 521 #undef DEFINE_bool
521 #undef DEFINE_int 522 #undef DEFINE_int
522 #undef DEFINE_string 523 #undef DEFINE_string
523 524
524 #undef FLAG_MODE_DECLARE 525 #undef FLAG_MODE_DECLARE
525 #undef FLAG_MODE_DEFINE 526 #undef FLAG_MODE_DEFINE
526 #undef FLAG_MODE_DEFINE_DEFAULTS 527 #undef FLAG_MODE_DEFINE_DEFAULTS
527 #undef FLAG_MODE_META 528 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698