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

Side by Side Diff: src/compiler/ia32/instruction-codes-ia32.h

Issue 770183002: [ia32] Introduce vex prefix version of float64 arithmetic binop (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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
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_IA32_INSTRUCTION_CODES_IA32_H_ 5 #ifndef V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 28 matching lines...) Expand all
39 V(SSEFloat64Sqrt) \ 39 V(SSEFloat64Sqrt) \
40 V(SSEFloat64Floor) \ 40 V(SSEFloat64Floor) \
41 V(SSEFloat64Ceil) \ 41 V(SSEFloat64Ceil) \
42 V(SSEFloat64RoundTruncate) \ 42 V(SSEFloat64RoundTruncate) \
43 V(SSECvtss2sd) \ 43 V(SSECvtss2sd) \
44 V(SSECvtsd2ss) \ 44 V(SSECvtsd2ss) \
45 V(SSEFloat64ToInt32) \ 45 V(SSEFloat64ToInt32) \
46 V(SSEFloat64ToUint32) \ 46 V(SSEFloat64ToUint32) \
47 V(SSEInt32ToFloat64) \ 47 V(SSEInt32ToFloat64) \
48 V(SSEUint32ToFloat64) \ 48 V(SSEUint32ToFloat64) \
49 V(AVXFloat64Add) \
50 V(AVXFloat64Sub) \
51 V(AVXFloat64Mul) \
52 V(AVXFloat64Div) \
49 V(IA32Movsxbl) \ 53 V(IA32Movsxbl) \
50 V(IA32Movzxbl) \ 54 V(IA32Movzxbl) \
51 V(IA32Movb) \ 55 V(IA32Movb) \
52 V(IA32Movsxwl) \ 56 V(IA32Movsxwl) \
53 V(IA32Movzxwl) \ 57 V(IA32Movzxwl) \
54 V(IA32Movw) \ 58 V(IA32Movw) \
55 V(IA32Movl) \ 59 V(IA32Movl) \
56 V(IA32Movss) \ 60 V(IA32Movss) \
57 V(IA32Movsd) \ 61 V(IA32Movsd) \
58 V(IA32Lea) \ 62 V(IA32Lea) \
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 V(M2I) /* [ %r2*2 + K] */ \ 95 V(M2I) /* [ %r2*2 + K] */ \
92 V(M4I) /* [ %r2*4 + K] */ \ 96 V(M4I) /* [ %r2*4 + K] */ \
93 V(M8I) /* [ %r2*8 + K] */ \ 97 V(M8I) /* [ %r2*8 + K] */ \
94 V(MI) /* [ K] */ 98 V(MI) /* [ K] */
95 99
96 } // namespace compiler 100 } // namespace compiler
97 } // namespace internal 101 } // namespace internal
98 } // namespace v8 102 } // namespace v8
99 103
100 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 104 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698