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/compiler/x64/instruction-codes-x64.h

Issue 1046893002: [x64] Match -0 - x with sign bit flip. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Unittest Created 5 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
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-selector-x64.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 V(X64Sar) \ 45 V(X64Sar) \
46 V(X64Sar32) \ 46 V(X64Sar32) \
47 V(X64Ror) \ 47 V(X64Ror) \
48 V(X64Ror32) \ 48 V(X64Ror32) \
49 V(X64Lzcnt32) \ 49 V(X64Lzcnt32) \
50 V(SSEFloat32Cmp) \ 50 V(SSEFloat32Cmp) \
51 V(SSEFloat32Add) \ 51 V(SSEFloat32Add) \
52 V(SSEFloat32Sub) \ 52 V(SSEFloat32Sub) \
53 V(SSEFloat32Mul) \ 53 V(SSEFloat32Mul) \
54 V(SSEFloat32Div) \ 54 V(SSEFloat32Div) \
55 V(SSEFloat32Neg) \
55 V(SSEFloat32Sqrt) \ 56 V(SSEFloat32Sqrt) \
56 V(SSEFloat32Max) \ 57 V(SSEFloat32Max) \
57 V(SSEFloat32Min) \ 58 V(SSEFloat32Min) \
58 V(SSEFloat32ToFloat64) \ 59 V(SSEFloat32ToFloat64) \
59 V(SSEFloat64Cmp) \ 60 V(SSEFloat64Cmp) \
60 V(SSEFloat64Add) \ 61 V(SSEFloat64Add) \
61 V(SSEFloat64Sub) \ 62 V(SSEFloat64Sub) \
62 V(SSEFloat64Mul) \ 63 V(SSEFloat64Mul) \
63 V(SSEFloat64Div) \ 64 V(SSEFloat64Div) \
64 V(SSEFloat64Mod) \ 65 V(SSEFloat64Mod) \
66 V(SSEFloat64Neg) \
65 V(SSEFloat64Sqrt) \ 67 V(SSEFloat64Sqrt) \
66 V(SSEFloat64Round) \ 68 V(SSEFloat64Round) \
67 V(SSEFloat64Max) \ 69 V(SSEFloat64Max) \
68 V(SSEFloat64Min) \ 70 V(SSEFloat64Min) \
69 V(SSEFloat64ToFloat32) \ 71 V(SSEFloat64ToFloat32) \
70 V(SSEFloat64ToInt32) \ 72 V(SSEFloat64ToInt32) \
71 V(SSEFloat64ToUint32) \ 73 V(SSEFloat64ToUint32) \
72 V(SSEInt32ToFloat64) \ 74 V(SSEInt32ToFloat64) \
73 V(SSEUint32ToFloat64) \ 75 V(SSEUint32ToFloat64) \
74 V(SSEFloat64ExtractLowWord32) \ 76 V(SSEFloat64ExtractLowWord32) \
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 V(M1I) /* [ %r2*1 + K] */ \ 142 V(M1I) /* [ %r2*1 + K] */ \
141 V(M2I) /* [ %r2*2 + K] */ \ 143 V(M2I) /* [ %r2*2 + K] */ \
142 V(M4I) /* [ %r2*4 + K] */ \ 144 V(M4I) /* [ %r2*4 + K] */ \
143 V(M8I) /* [ %r2*8 + K] */ 145 V(M8I) /* [ %r2*8 + K] */
144 146
145 } // namespace compiler 147 } // namespace compiler
146 } // namespace internal 148 } // namespace internal
147 } // namespace v8 149 } // namespace v8
148 150
149 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 151 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698