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

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

Issue 11037023: Use movw/movt instead of constant pool on ARMv7 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix nits Created 8 years, 2 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/debug.cc ('k') | src/ia32/assembler-ia32.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 // 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 "enable use of SAHF instruction if available (X64 only)") 281 "enable use of SAHF instruction if available (X64 only)")
282 DEFINE_bool(enable_vfp3, true, 282 DEFINE_bool(enable_vfp3, true,
283 "enable use of VFP3 instructions if available - this implies " 283 "enable use of VFP3 instructions if available - this implies "
284 "enabling ARMv7 and VFP2 instructions (ARM only)") 284 "enabling ARMv7 and VFP2 instructions (ARM only)")
285 DEFINE_bool(enable_vfp2, true, 285 DEFINE_bool(enable_vfp2, true,
286 "enable use of VFP2 instructions if available") 286 "enable use of VFP2 instructions if available")
287 DEFINE_bool(enable_armv7, true, 287 DEFINE_bool(enable_armv7, true,
288 "enable use of ARMv7 instructions if available (ARM only)") 288 "enable use of ARMv7 instructions if available (ARM only)")
289 DEFINE_bool(enable_sudiv, true, 289 DEFINE_bool(enable_sudiv, true,
290 "enable use of SDIV and UDIV instructions if available (ARM only)") 290 "enable use of SDIV and UDIV instructions if available (ARM only)")
291 DEFINE_bool(enable_movw_movt, false,
292 "enable loading 32-bit constant by means of movw/movt "
293 "instruction pairs (ARM only)")
291 DEFINE_bool(enable_unaligned_accesses, true, 294 DEFINE_bool(enable_unaligned_accesses, true,
292 "enable unaligned accesses for ARMv7 (ARM only)") 295 "enable unaligned accesses for ARMv7 (ARM only)")
293 DEFINE_bool(enable_fpu, true, 296 DEFINE_bool(enable_fpu, true,
294 "enable use of MIPS FPU instructions if available (MIPS only)") 297 "enable use of MIPS FPU instructions if available (MIPS only)")
295 298
296 // bootstrapper.cc 299 // bootstrapper.cc
297 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 300 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
298 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 301 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
299 DEFINE_bool(expose_gc, false, "expose gc extension") 302 DEFINE_bool(expose_gc, false, "expose gc extension")
300 DEFINE_bool(expose_externalize_string, false, 303 DEFINE_bool(expose_externalize_string, false,
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 #undef DEFINE_bool 702 #undef DEFINE_bool
700 #undef DEFINE_int 703 #undef DEFINE_int
701 #undef DEFINE_string 704 #undef DEFINE_string
702 #undef DEFINE_implication 705 #undef DEFINE_implication
703 706
704 #undef FLAG_MODE_DECLARE 707 #undef FLAG_MODE_DECLARE
705 #undef FLAG_MODE_DEFINE 708 #undef FLAG_MODE_DEFINE
706 #undef FLAG_MODE_DEFINE_DEFAULTS 709 #undef FLAG_MODE_DEFINE_DEFAULTS
707 #undef FLAG_MODE_META 710 #undef FLAG_MODE_META
708 #undef FLAG_MODE_DEFINE_IMPLICATIONS 711 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/debug.cc ('k') | src/ia32/assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698