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

Side by Side Diff: src/compiler/x64/instruction-codes-x64.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
« 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(X64Sar32) \ 45 V(X64Sar32) \
46 V(X64Ror) \ 46 V(X64Ror) \
47 V(X64Ror32) \ 47 V(X64Ror32) \
48 V(SSEFloat64Cmp) \ 48 V(SSEFloat64Cmp) \
49 V(SSEFloat64Add) \ 49 V(SSEFloat64Add) \
50 V(SSEFloat64Sub) \ 50 V(SSEFloat64Sub) \
51 V(SSEFloat64Mul) \ 51 V(SSEFloat64Mul) \
52 V(SSEFloat64Div) \ 52 V(SSEFloat64Div) \
53 V(SSEFloat64Mod) \ 53 V(SSEFloat64Mod) \
54 V(SSEFloat64Sqrt) \ 54 V(SSEFloat64Sqrt) \
55 V(SSEFloat64Floor) \
56 V(SSEFloat64Ceil) \
57 V(SSEFloat64RoundTruncate) \
55 V(SSECvtss2sd) \ 58 V(SSECvtss2sd) \
56 V(SSECvtsd2ss) \ 59 V(SSECvtsd2ss) \
57 V(SSEFloat64ToInt32) \ 60 V(SSEFloat64ToInt32) \
58 V(SSEFloat64ToUint32) \ 61 V(SSEFloat64ToUint32) \
59 V(SSEInt32ToFloat64) \ 62 V(SSEInt32ToFloat64) \
60 V(SSEUint32ToFloat64) \ 63 V(SSEUint32ToFloat64) \
61 V(X64Movsxbl) \ 64 V(X64Movsxbl) \
62 V(X64Movzxbl) \ 65 V(X64Movzxbl) \
63 V(X64Movb) \ 66 V(X64Movb) \
64 V(X64Movsxwl) \ 67 V(X64Movsxwl) \
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 V(M1I) /* [ %r2*1 + K] */ \ 108 V(M1I) /* [ %r2*1 + K] */ \
106 V(M2I) /* [ %r2*2 + K] */ \ 109 V(M2I) /* [ %r2*2 + K] */ \
107 V(M4I) /* [ %r2*4 + K] */ \ 110 V(M4I) /* [ %r2*4 + K] */ \
108 V(M8I) /* [ %r2*8 + K] */ 111 V(M8I) /* [ %r2*8 + K] */
109 112
110 } // namespace compiler 113 } // namespace compiler
111 } // namespace internal 114 } // namespace internal
112 } // namespace v8 115 } // namespace v8
113 116
114 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 117 #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