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

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

Issue 1768233002: [wasm] Int64Lowering of I64ShrU and I64ShrS on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 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 11 matching lines...) Expand all
22 V(IA32Imul) \ 22 V(IA32Imul) \
23 V(IA32ImulHigh) \ 23 V(IA32ImulHigh) \
24 V(IA32UmulHigh) \ 24 V(IA32UmulHigh) \
25 V(IA32Idiv) \ 25 V(IA32Idiv) \
26 V(IA32Udiv) \ 26 V(IA32Udiv) \
27 V(IA32Not) \ 27 V(IA32Not) \
28 V(IA32Neg) \ 28 V(IA32Neg) \
29 V(IA32Shl) \ 29 V(IA32Shl) \
30 V(IA32Shr) \ 30 V(IA32Shr) \
31 V(IA32Sar) \ 31 V(IA32Sar) \
32 V(IA32PairShl) \ 32 V(IA32ShlPair) \
33 V(IA32ShrPair) \
34 V(IA32SarPair) \
33 V(IA32Ror) \ 35 V(IA32Ror) \
34 V(IA32Lzcnt) \ 36 V(IA32Lzcnt) \
35 V(IA32Tzcnt) \ 37 V(IA32Tzcnt) \
36 V(IA32Popcnt) \ 38 V(IA32Popcnt) \
37 V(SSEFloat32Cmp) \ 39 V(SSEFloat32Cmp) \
38 V(SSEFloat32Add) \ 40 V(SSEFloat32Add) \
39 V(SSEFloat32Sub) \ 41 V(SSEFloat32Sub) \
40 V(SSEFloat32Mul) \ 42 V(SSEFloat32Mul) \
41 V(SSEFloat32Div) \ 43 V(SSEFloat32Div) \
42 V(SSEFloat32Max) \ 44 V(SSEFloat32Max) \
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 V(M2I) /* [ %r2*2 + K] */ \ 139 V(M2I) /* [ %r2*2 + K] */ \
138 V(M4I) /* [ %r2*4 + K] */ \ 140 V(M4I) /* [ %r2*4 + K] */ \
139 V(M8I) /* [ %r2*8 + K] */ \ 141 V(M8I) /* [ %r2*8 + K] */ \
140 V(MI) /* [ K] */ 142 V(MI) /* [ K] */
141 143
142 } // namespace compiler 144 } // namespace compiler
143 } // namespace internal 145 } // namespace internal
144 } // namespace v8 146 } // namespace v8
145 147
146 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 148 #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-scheduler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698