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

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

Issue 7089002: Implement core support for FixedDoubleArrays. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: final version before commit Created 9 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/factory.cc ('k') | src/heap.h » ('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 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 #define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt) 92 #define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt)
93 93
94 // 94 //
95 // Flags in all modes. 95 // Flags in all modes.
96 // 96 //
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_proxies, false, "enable harmony proxies") 100 DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
101 101
102 // Flags for experimental implementation features.
103 DEFINE_bool(unbox_double_arrays, false, "automatically unbox arrays of doubles")
104
102 // Flags for Crankshaft. 105 // Flags for Crankshaft.
103 #ifdef V8_TARGET_ARCH_MIPS 106 #ifdef V8_TARGET_ARCH_MIPS
104 DEFINE_bool(crankshaft, false, "use crankshaft") 107 DEFINE_bool(crankshaft, false, "use crankshaft")
105 #else 108 #else
106 DEFINE_bool(crankshaft, true, "use crankshaft") 109 DEFINE_bool(crankshaft, true, "use crankshaft")
107 #endif 110 #endif
108 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter") 111 DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter")
109 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation") 112 DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation")
110 DEFINE_bool(build_lithium, true, "use lithium chunk builder") 113 DEFINE_bool(build_lithium, true, "use lithium chunk builder")
111 DEFINE_bool(alloc_lithium, true, "use lithium register allocator") 114 DEFINE_bool(alloc_lithium, true, "use lithium register allocator")
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 #undef FLAG 533 #undef FLAG
531 534
532 #undef DEFINE_bool 535 #undef DEFINE_bool
533 #undef DEFINE_int 536 #undef DEFINE_int
534 #undef DEFINE_string 537 #undef DEFINE_string
535 538
536 #undef FLAG_MODE_DECLARE 539 #undef FLAG_MODE_DECLARE
537 #undef FLAG_MODE_DEFINE 540 #undef FLAG_MODE_DEFINE
538 #undef FLAG_MODE_DEFINE_DEFAULTS 541 #undef FLAG_MODE_DEFINE_DEFAULTS
539 #undef FLAG_MODE_META 542 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698