Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 55 V(SSEFloat64Sqrt) \ | 55 V(SSEFloat64Sqrt) \ |
| 56 V(SSEFloat64Floor) \ | 56 V(SSEFloat64Floor) \ |
| 57 V(SSEFloat64Ceil) \ | 57 V(SSEFloat64Ceil) \ |
| 58 V(SSEFloat64RoundTruncate) \ | 58 V(SSEFloat64RoundTruncate) \ |
| 59 V(SSECvtss2sd) \ | 59 V(SSECvtss2sd) \ |
| 60 V(SSECvtsd2ss) \ | 60 V(SSECvtsd2ss) \ |
| 61 V(SSEFloat64ToInt32) \ | 61 V(SSEFloat64ToInt32) \ |
| 62 V(SSEFloat64ToUint32) \ | 62 V(SSEFloat64ToUint32) \ |
| 63 V(SSEInt32ToFloat64) \ | 63 V(SSEInt32ToFloat64) \ |
| 64 V(SSEUint32ToFloat64) \ | 64 V(SSEUint32ToFloat64) \ |
| 65 V(AVXFloat64Add) \ | |
|
Benedikt Meurer
2014/11/27 14:31:07
We should be smarter here, not having SSE and AVX
Benedikt Meurer
2014/11/28 06:20:58
Forget about this comment, keep both versions. I j
| |
| 66 V(AVXFloat64Sub) \ | |
| 67 V(AVXFloat64Mul) \ | |
| 68 V(AVXFloat64Div) \ | |
| 65 V(X64Movsxbl) \ | 69 V(X64Movsxbl) \ |
| 66 V(X64Movzxbl) \ | 70 V(X64Movzxbl) \ |
| 67 V(X64Movb) \ | 71 V(X64Movb) \ |
| 68 V(X64Movsxwl) \ | 72 V(X64Movsxwl) \ |
| 69 V(X64Movzxwl) \ | 73 V(X64Movzxwl) \ |
| 70 V(X64Movw) \ | 74 V(X64Movw) \ |
| 71 V(X64Movl) \ | 75 V(X64Movl) \ |
| 72 V(X64Movsxlq) \ | 76 V(X64Movsxlq) \ |
| 73 V(X64Movq) \ | 77 V(X64Movq) \ |
| 74 V(X64Movsd) \ | 78 V(X64Movsd) \ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 V(M1I) /* [ %r2*1 + K] */ \ | 115 V(M1I) /* [ %r2*1 + K] */ \ |
| 112 V(M2I) /* [ %r2*2 + K] */ \ | 116 V(M2I) /* [ %r2*2 + K] */ \ |
| 113 V(M4I) /* [ %r2*4 + K] */ \ | 117 V(M4I) /* [ %r2*4 + K] */ \ |
| 114 V(M8I) /* [ %r2*8 + K] */ | 118 V(M8I) /* [ %r2*8 + K] */ |
| 115 | 119 |
| 116 } // namespace compiler | 120 } // namespace compiler |
| 117 } // namespace internal | 121 } // namespace internal |
| 118 } // namespace v8 | 122 } // namespace v8 |
| 119 | 123 |
| 120 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 124 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
| OLD | NEW |