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

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

Issue 677433002: Add floor, ceil, round (truncate) instructions for ia32, x64 (if SSE4.1) and (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address changes and fix compilation on mac. Created 6 years, 1 month 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
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 18 matching lines...) Expand all
29 V(IA32Shr) \ 29 V(IA32Shr) \
30 V(IA32Sar) \ 30 V(IA32Sar) \
31 V(IA32Ror) \ 31 V(IA32Ror) \
32 V(SSEFloat64Cmp) \ 32 V(SSEFloat64Cmp) \
33 V(SSEFloat64Add) \ 33 V(SSEFloat64Add) \
34 V(SSEFloat64Sub) \ 34 V(SSEFloat64Sub) \
35 V(SSEFloat64Mul) \ 35 V(SSEFloat64Mul) \
36 V(SSEFloat64Div) \ 36 V(SSEFloat64Div) \
37 V(SSEFloat64Mod) \ 37 V(SSEFloat64Mod) \
38 V(SSEFloat64Sqrt) \ 38 V(SSEFloat64Sqrt) \
39 V(SSEFloat64Floor) \
40 V(SSEFloat64Ceil) \
41 V(SSEFloat64RoundTruncate) \
39 V(SSECvtss2sd) \ 42 V(SSECvtss2sd) \
40 V(SSECvtsd2ss) \ 43 V(SSECvtsd2ss) \
41 V(SSEFloat64ToInt32) \ 44 V(SSEFloat64ToInt32) \
42 V(SSEFloat64ToUint32) \ 45 V(SSEFloat64ToUint32) \
43 V(SSEInt32ToFloat64) \ 46 V(SSEInt32ToFloat64) \
44 V(SSEUint32ToFloat64) \ 47 V(SSEUint32ToFloat64) \
45 V(IA32Movsxbl) \ 48 V(IA32Movsxbl) \
46 V(IA32Movzxbl) \ 49 V(IA32Movzxbl) \
47 V(IA32Movb) \ 50 V(IA32Movb) \
48 V(IA32Movsxwl) \ 51 V(IA32Movsxwl) \
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 V(M2I) /* [ %r2*2 + K] */ \ 90 V(M2I) /* [ %r2*2 + K] */ \
88 V(M4I) /* [ %r2*4 + K] */ \ 91 V(M4I) /* [ %r2*4 + K] */ \
89 V(M8I) /* [ %r2*8 + K] */ \ 92 V(M8I) /* [ %r2*8 + K] */ \
90 V(MI) /* [ K] */ 93 V(MI) /* [ K] */
91 94
92 } // namespace compiler 95 } // namespace compiler
93 } // namespace internal 96 } // namespace internal
94 } // namespace v8 97 } // namespace v8
95 98
96 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 99 #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