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

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

Issue 13560007: Remove ARM support for soft float (pre-VFP2) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 7 years, 8 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/code-stubs.h ('k') | src/mips/lithium-mips.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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 "enable use of SSE3 instructions if available") 302 "enable use of SSE3 instructions if available")
303 DEFINE_bool(enable_sse4_1, true, 303 DEFINE_bool(enable_sse4_1, true,
304 "enable use of SSE4.1 instructions if available") 304 "enable use of SSE4.1 instructions if available")
305 DEFINE_bool(enable_cmov, true, 305 DEFINE_bool(enable_cmov, true,
306 "enable use of CMOV instruction if available") 306 "enable use of CMOV instruction if available")
307 DEFINE_bool(enable_rdtsc, true, 307 DEFINE_bool(enable_rdtsc, true,
308 "enable use of RDTSC instruction if available") 308 "enable use of RDTSC instruction if available")
309 DEFINE_bool(enable_sahf, true, 309 DEFINE_bool(enable_sahf, true,
310 "enable use of SAHF instruction if available (X64 only)") 310 "enable use of SAHF instruction if available (X64 only)")
311 DEFINE_bool(enable_vfp3, true, 311 DEFINE_bool(enable_vfp3, true,
312 "enable use of VFP3 instructions if available - this implies " 312 "enable use of VFP3 instructions if available")
313 "enabling ARMv7 and VFP2 instructions (ARM only)")
314 DEFINE_bool(enable_vfp2, true,
315 "enable use of VFP2 instructions if available")
316 DEFINE_bool(enable_armv7, true, 313 DEFINE_bool(enable_armv7, true,
317 "enable use of ARMv7 instructions if available (ARM only)") 314 "enable use of ARMv7 instructions if available (ARM only)")
318 DEFINE_bool(enable_sudiv, true, 315 DEFINE_bool(enable_sudiv, true,
319 "enable use of SDIV and UDIV instructions if available (ARM only)") 316 "enable use of SDIV and UDIV instructions if available (ARM only)")
320 DEFINE_bool(enable_movw_movt, false, 317 DEFINE_bool(enable_movw_movt, false,
321 "enable loading 32-bit constant by means of movw/movt " 318 "enable loading 32-bit constant by means of movw/movt "
322 "instruction pairs (ARM only)") 319 "instruction pairs (ARM only)")
323 DEFINE_bool(enable_unaligned_accesses, true, 320 DEFINE_bool(enable_unaligned_accesses, true,
324 "enable unaligned accesses for ARMv7 (ARM only)") 321 "enable unaligned accesses for ARMv7 (ARM only)")
325 DEFINE_bool(enable_32dregs, true, 322 DEFINE_bool(enable_32dregs, true,
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 #undef DEFINE_bool 754 #undef DEFINE_bool
758 #undef DEFINE_int 755 #undef DEFINE_int
759 #undef DEFINE_string 756 #undef DEFINE_string
760 #undef DEFINE_implication 757 #undef DEFINE_implication
761 758
762 #undef FLAG_MODE_DECLARE 759 #undef FLAG_MODE_DECLARE
763 #undef FLAG_MODE_DEFINE 760 #undef FLAG_MODE_DEFINE
764 #undef FLAG_MODE_DEFINE_DEFAULTS 761 #undef FLAG_MODE_DEFINE_DEFAULTS
765 #undef FLAG_MODE_META 762 #undef FLAG_MODE_META
766 #undef FLAG_MODE_DEFINE_IMPLICATIONS 763 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698