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

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

Issue 3505003: Mark ptest instruction as requiring SSE4.1. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « no previous file | 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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "generate extra code (comments, assertions) for debugging") 101 "generate extra code (comments, assertions) for debugging")
102 DEFINE_bool(emit_branch_hints, false, "emit branch hints") 102 DEFINE_bool(emit_branch_hints, false, "emit branch hints")
103 DEFINE_bool(peephole_optimization, true, 103 DEFINE_bool(peephole_optimization, true,
104 "perform peephole optimizations in assembly code") 104 "perform peephole optimizations in assembly code")
105 DEFINE_bool(print_peephole_optimization, false, 105 DEFINE_bool(print_peephole_optimization, false,
106 "print peephole optimizations in assembly code") 106 "print peephole optimizations in assembly code")
107 DEFINE_bool(enable_sse2, true, 107 DEFINE_bool(enable_sse2, true,
108 "enable use of SSE2 instructions if available") 108 "enable use of SSE2 instructions if available")
109 DEFINE_bool(enable_sse3, true, 109 DEFINE_bool(enable_sse3, true,
110 "enable use of SSE3 instructions if available") 110 "enable use of SSE3 instructions if available")
111 DEFINE_bool(enable_sse4_1, true,
112 "enable use of SSE4.1 instructions if available")
111 DEFINE_bool(enable_cmov, true, 113 DEFINE_bool(enable_cmov, true,
112 "enable use of CMOV instruction if available") 114 "enable use of CMOV instruction if available")
113 DEFINE_bool(enable_rdtsc, true, 115 DEFINE_bool(enable_rdtsc, true,
114 "enable use of RDTSC instruction if available") 116 "enable use of RDTSC instruction if available")
115 DEFINE_bool(enable_sahf, true, 117 DEFINE_bool(enable_sahf, true,
116 "enable use of SAHF instruction if available (X64 only)") 118 "enable use of SAHF instruction if available (X64 only)")
117 DEFINE_bool(enable_vfp3, true, 119 DEFINE_bool(enable_vfp3, true,
118 "enable use of VFP3 instructions if available (ARM only)") 120 "enable use of VFP3 instructions if available (ARM only)")
119 DEFINE_bool(enable_armv7, true, 121 DEFINE_bool(enable_armv7, true,
120 "enable use of ARMv7 instructions if available (ARM only)") 122 "enable use of ARMv7 instructions if available (ARM only)")
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 #undef FLAG 449 #undef FLAG
448 450
449 #undef DEFINE_bool 451 #undef DEFINE_bool
450 #undef DEFINE_int 452 #undef DEFINE_int
451 #undef DEFINE_string 453 #undef DEFINE_string
452 454
453 #undef FLAG_MODE_DECLARE 455 #undef FLAG_MODE_DECLARE
454 #undef FLAG_MODE_DEFINE 456 #undef FLAG_MODE_DEFINE
455 #undef FLAG_MODE_DEFINE_DEFAULTS 457 #undef FLAG_MODE_DEFINE_DEFAULTS
456 #undef FLAG_MODE_META 458 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698