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

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

Issue 990963003: [turbofan] Unify Math.floor / Math.ceil optimization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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
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 19 matching lines...) Expand all
30 V(IA32Shr) \ 30 V(IA32Shr) \
31 V(IA32Sar) \ 31 V(IA32Sar) \
32 V(IA32Ror) \ 32 V(IA32Ror) \
33 V(SSEFloat64Cmp) \ 33 V(SSEFloat64Cmp) \
34 V(SSEFloat64Add) \ 34 V(SSEFloat64Add) \
35 V(SSEFloat64Sub) \ 35 V(SSEFloat64Sub) \
36 V(SSEFloat64Mul) \ 36 V(SSEFloat64Mul) \
37 V(SSEFloat64Div) \ 37 V(SSEFloat64Div) \
38 V(SSEFloat64Mod) \ 38 V(SSEFloat64Mod) \
39 V(SSEFloat64Sqrt) \ 39 V(SSEFloat64Sqrt) \
40 V(SSEFloat64Floor) \ 40 V(SSEFloat64Round) \
41 V(SSEFloat64Ceil) \
42 V(SSEFloat64RoundTruncate) \
43 V(SSECvtss2sd) \ 41 V(SSECvtss2sd) \
44 V(SSECvtsd2ss) \ 42 V(SSECvtsd2ss) \
45 V(SSEFloat64ToInt32) \ 43 V(SSEFloat64ToInt32) \
46 V(SSEFloat64ToUint32) \ 44 V(SSEFloat64ToUint32) \
47 V(SSEInt32ToFloat64) \ 45 V(SSEInt32ToFloat64) \
48 V(SSEUint32ToFloat64) \ 46 V(SSEUint32ToFloat64) \
49 V(SSEFloat64ExtractLowWord32) \ 47 V(SSEFloat64ExtractLowWord32) \
50 V(SSEFloat64ExtractHighWord32) \ 48 V(SSEFloat64ExtractHighWord32) \
51 V(SSEFloat64InsertLowWord32) \ 49 V(SSEFloat64InsertLowWord32) \
52 V(SSEFloat64InsertHighWord32) \ 50 V(SSEFloat64InsertHighWord32) \
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 V(M2I) /* [ %r2*2 + K] */ \ 99 V(M2I) /* [ %r2*2 + K] */ \
102 V(M4I) /* [ %r2*4 + K] */ \ 100 V(M4I) /* [ %r2*4 + K] */ \
103 V(M8I) /* [ %r2*8 + K] */ \ 101 V(M8I) /* [ %r2*8 + K] */ \
104 V(MI) /* [ K] */ 102 V(MI) /* [ K] */
105 103
106 } // namespace compiler 104 } // namespace compiler
107 } // namespace internal 105 } // namespace internal
108 } // namespace v8 106 } // namespace v8
109 107
110 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 108 #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