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

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

Issue 1773083002: X87: [wasm] Int64Lowering of I64Shl on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update the argument name in macro-assembler-x87.h 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
« no previous file with comments | « src/compiler/x87/code-generator-x87.cc ('k') | src/compiler/x87/instruction-selector-x87.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_X87_INSTRUCTION_CODES_X87_H_ 5 #ifndef V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_
6 #define V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ 6 #define V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_
7 7
8 #include "src/compiler/instruction.h" 8 #include "src/compiler/instruction.h"
9 #include "src/compiler/instruction-codes.h" 9 #include "src/compiler/instruction-codes.h"
10 namespace v8 { 10 namespace v8 {
(...skipping 13 matching lines...) Expand all
24 V(X87Imul) \ 24 V(X87Imul) \
25 V(X87ImulHigh) \ 25 V(X87ImulHigh) \
26 V(X87UmulHigh) \ 26 V(X87UmulHigh) \
27 V(X87Idiv) \ 27 V(X87Idiv) \
28 V(X87Udiv) \ 28 V(X87Udiv) \
29 V(X87Not) \ 29 V(X87Not) \
30 V(X87Neg) \ 30 V(X87Neg) \
31 V(X87Shl) \ 31 V(X87Shl) \
32 V(X87Shr) \ 32 V(X87Shr) \
33 V(X87Sar) \ 33 V(X87Sar) \
34 V(X87PairShl) \
34 V(X87Ror) \ 35 V(X87Ror) \
35 V(X87Lzcnt) \ 36 V(X87Lzcnt) \
36 V(X87Popcnt) \ 37 V(X87Popcnt) \
37 V(X87Float32Cmp) \ 38 V(X87Float32Cmp) \
38 V(X87Float32Add) \ 39 V(X87Float32Add) \
39 V(X87Float32Sub) \ 40 V(X87Float32Sub) \
40 V(X87Float32Mul) \ 41 V(X87Float32Mul) \
41 V(X87Float32Div) \ 42 V(X87Float32Div) \
42 V(X87Float32Max) \ 43 V(X87Float32Max) \
43 V(X87Float32Min) \ 44 V(X87Float32Min) \
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 V(M2I) /* [ %r2*2 + K] */ \ 120 V(M2I) /* [ %r2*2 + K] */ \
120 V(M4I) /* [ %r2*4 + K] */ \ 121 V(M4I) /* [ %r2*4 + K] */ \
121 V(M8I) /* [ %r2*8 + K] */ \ 122 V(M8I) /* [ %r2*8 + K] */ \
122 V(MI) /* [ K] */ 123 V(MI) /* [ K] */
123 124
124 } // namespace compiler 125 } // namespace compiler
125 } // namespace internal 126 } // namespace internal
126 } // namespace v8 127 } // namespace v8
127 128
128 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ 129 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_
OLDNEW
« no previous file with comments | « src/compiler/x87/code-generator-x87.cc ('k') | src/compiler/x87/instruction-selector-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698