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

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

Issue 11428137: ARM: Make use of d16-d31 when available. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 7 years, 11 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/assembler.h ('k') | src/frames.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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 "enable use of VFP2 instructions if available") 296 "enable use of VFP2 instructions if available")
297 DEFINE_bool(enable_armv7, true, 297 DEFINE_bool(enable_armv7, true,
298 "enable use of ARMv7 instructions if available (ARM only)") 298 "enable use of ARMv7 instructions if available (ARM only)")
299 DEFINE_bool(enable_sudiv, true, 299 DEFINE_bool(enable_sudiv, true,
300 "enable use of SDIV and UDIV instructions if available (ARM only)") 300 "enable use of SDIV and UDIV instructions if available (ARM only)")
301 DEFINE_bool(enable_movw_movt, false, 301 DEFINE_bool(enable_movw_movt, false,
302 "enable loading 32-bit constant by means of movw/movt " 302 "enable loading 32-bit constant by means of movw/movt "
303 "instruction pairs (ARM only)") 303 "instruction pairs (ARM only)")
304 DEFINE_bool(enable_unaligned_accesses, true, 304 DEFINE_bool(enable_unaligned_accesses, true,
305 "enable unaligned accesses for ARMv7 (ARM only)") 305 "enable unaligned accesses for ARMv7 (ARM only)")
306 DEFINE_bool(enable_32dregs, true,
307 "enable use of d16-d31 registers on ARM - this requires VFP3")
306 DEFINE_bool(enable_fpu, true, 308 DEFINE_bool(enable_fpu, true,
307 "enable use of MIPS FPU instructions if available (MIPS only)") 309 "enable use of MIPS FPU instructions if available (MIPS only)")
308 DEFINE_bool(enable_vldr_imm, false, 310 DEFINE_bool(enable_vldr_imm, false,
309 "enable use of constant pools for double immediate (ARM only)") 311 "enable use of constant pools for double immediate (ARM only)")
310 312
311 // bootstrapper.cc 313 // bootstrapper.cc
312 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 314 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
313 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 315 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
314 DEFINE_bool(expose_gc, false, "expose gc extension") 316 DEFINE_bool(expose_gc, false, "expose gc extension")
315 DEFINE_bool(expose_externalize_string, false, 317 DEFINE_bool(expose_externalize_string, false,
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 #undef DEFINE_bool 720 #undef DEFINE_bool
719 #undef DEFINE_int 721 #undef DEFINE_int
720 #undef DEFINE_string 722 #undef DEFINE_string
721 #undef DEFINE_implication 723 #undef DEFINE_implication
722 724
723 #undef FLAG_MODE_DECLARE 725 #undef FLAG_MODE_DECLARE
724 #undef FLAG_MODE_DEFINE 726 #undef FLAG_MODE_DEFINE
725 #undef FLAG_MODE_DEFINE_DEFAULTS 727 #undef FLAG_MODE_DEFINE_DEFAULTS
726 #undef FLAG_MODE_META 728 #undef FLAG_MODE_META
727 #undef FLAG_MODE_DEFINE_IMPLICATIONS 729 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698