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

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

Issue 271543004: Reland - Arm64: Ensure that csp is always aligned to 16 byte values even if jssp is not. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ip0 ip1 -> TmpList Created 6 years, 7 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/cpu.cc ('k') | src/v8globals.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 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 "instruction pairs (ARM only)") 373 "instruction pairs (ARM only)")
374 DEFINE_bool(enable_unaligned_accesses, true, 374 DEFINE_bool(enable_unaligned_accesses, true,
375 "enable unaligned accesses for ARMv7 (ARM only)") 375 "enable unaligned accesses for ARMv7 (ARM only)")
376 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, 376 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT,
377 "enable use of d16-d31 registers on ARM - this requires VFP3") 377 "enable use of d16-d31 registers on ARM - this requires VFP3")
378 DEFINE_bool(enable_vldr_imm, false, 378 DEFINE_bool(enable_vldr_imm, false,
379 "enable use of constant pools for double immediate (ARM only)") 379 "enable use of constant pools for double immediate (ARM only)")
380 DEFINE_bool(force_long_branches, false, 380 DEFINE_bool(force_long_branches, false,
381 "force all emitted branches to be in long mode (MIPS only)") 381 "force all emitted branches to be in long mode (MIPS only)")
382 382
383 // cpu-arm64.cc
384 DEFINE_bool(enable_always_align_csp, true,
385 "enable alignment of csp to 16 bytes on platforms which prefer "
386 "the register to always be aligned (ARM64 only)")
387
383 // bootstrapper.cc 388 // bootstrapper.cc
384 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 389 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
385 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 390 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
386 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") 391 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension")
387 DEFINE_bool(expose_gc, false, "expose gc extension") 392 DEFINE_bool(expose_gc, false, "expose gc extension")
388 DEFINE_string(expose_gc_as, NULL, 393 DEFINE_string(expose_gc_as, NULL,
389 "expose gc extension under the specified name") 394 "expose gc extension under the specified name")
390 DEFINE_implication(expose_gc_as, expose_gc) 395 DEFINE_implication(expose_gc_as, expose_gc)
391 DEFINE_bool(expose_externalize_string, false, 396 DEFINE_bool(expose_externalize_string, false,
392 "expose externalize string extension") 397 "expose externalize string extension")
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 #undef DEFINE_ALIAS_float 904 #undef DEFINE_ALIAS_float
900 #undef DEFINE_ALIAS_args 905 #undef DEFINE_ALIAS_args
901 906
902 #undef FLAG_MODE_DECLARE 907 #undef FLAG_MODE_DECLARE
903 #undef FLAG_MODE_DEFINE 908 #undef FLAG_MODE_DEFINE
904 #undef FLAG_MODE_DEFINE_DEFAULTS 909 #undef FLAG_MODE_DEFINE_DEFAULTS
905 #undef FLAG_MODE_META 910 #undef FLAG_MODE_META
906 #undef FLAG_MODE_DEFINE_IMPLICATIONS 911 #undef FLAG_MODE_DEFINE_IMPLICATIONS
907 912
908 #undef COMMA 913 #undef COMMA
OLDNEW
« no previous file with comments | « src/cpu.cc ('k') | src/v8globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698