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

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

Issue 2765293002: [Builtins] Provide a code-stub impl. of Array.prototype.map (Closed)
Patch Set: Bugfix. Created 3 years, 9 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
« src/builtins/builtins-array-gen.cc ('K') | « src/code-factory.cc ('k') | 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 "expose gc extension under the specified name") 764 "expose gc extension under the specified name")
765 DEFINE_IMPLICATION(expose_gc_as, expose_gc) 765 DEFINE_IMPLICATION(expose_gc_as, expose_gc)
766 DEFINE_BOOL(expose_externalize_string, false, 766 DEFINE_BOOL(expose_externalize_string, false,
767 "expose externalize string extension") 767 "expose externalize string extension")
768 DEFINE_BOOL(expose_trigger_failure, false, "expose trigger-failure extension") 768 DEFINE_BOOL(expose_trigger_failure, false, "expose trigger-failure extension")
769 DEFINE_INT(stack_trace_limit, 10, "number of stack frames to capture") 769 DEFINE_INT(stack_trace_limit, 10, "number of stack frames to capture")
770 DEFINE_BOOL(builtins_in_stack_traces, false, 770 DEFINE_BOOL(builtins_in_stack_traces, false,
771 "show built-in functions in stack traces") 771 "show built-in functions in stack traces")
772 772
773 // builtins.cc 773 // builtins.cc
774 DEFINE_BOOL(experimental_fast_array_builtins, false, 774 DEFINE_BOOL(experimental_fast_array_builtins, true,
danno 2017/03/23 12:25:04 Probably want to keep this off for now ;-)
mvstanton 2017/03/24 09:37:08 Done.
775 "use experimental array builtins") 775 "use experimental array builtins")
776 DEFINE_BOOL(allow_unsafe_function_constructor, false, 776 DEFINE_BOOL(allow_unsafe_function_constructor, false,
777 "allow invoking the function constructor without security checks") 777 "allow invoking the function constructor without security checks")
778 778
779 // builtins-ia32.cc 779 // builtins-ia32.cc
780 DEFINE_BOOL(inline_new, true, "use fast inline allocation") 780 DEFINE_BOOL(inline_new, true, "use fast inline allocation")
781 781
782 // codegen-ia32.cc / codegen-arm.cc 782 // codegen-ia32.cc / codegen-arm.cc
783 DEFINE_BOOL(trace_codegen, false, 783 DEFINE_BOOL(trace_codegen, false,
784 "print name of functions for which code is generated") 784 "print name of functions for which code is generated")
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 #undef DEFINE_ALIAS_FLOAT 1331 #undef DEFINE_ALIAS_FLOAT
1332 #undef DEFINE_ALIAS_ARGS 1332 #undef DEFINE_ALIAS_ARGS
1333 1333
1334 #undef FLAG_MODE_DECLARE 1334 #undef FLAG_MODE_DECLARE
1335 #undef FLAG_MODE_DEFINE 1335 #undef FLAG_MODE_DEFINE
1336 #undef FLAG_MODE_DEFINE_DEFAULTS 1336 #undef FLAG_MODE_DEFINE_DEFAULTS
1337 #undef FLAG_MODE_META 1337 #undef FLAG_MODE_META
1338 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1338 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1339 1339
1340 #undef COMMA 1340 #undef COMMA
OLDNEW
« src/builtins/builtins-array-gen.cc ('K') | « src/code-factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698