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

Side by Side Diff: src/wasm/wasm-opcodes.cc

Issue 1755013003: [wasm] add rotate opcodes (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: no renumbering 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/wasm/wasm-opcodes.h ('k') | test/cctest/wasm/test-run-wasm.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #include "src/wasm/wasm-opcodes.h" 5 #include "src/wasm/wasm-opcodes.h"
6 #include "src/signature.h" 6 #include "src/signature.h"
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace wasm { 10 namespace wasm {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 case kExprI64DivS: 96 case kExprI64DivS:
97 case kExprI64DivU: 97 case kExprI64DivU:
98 case kExprI64RemS: 98 case kExprI64RemS:
99 case kExprI64RemU: 99 case kExprI64RemU:
100 case kExprI64And: 100 case kExprI64And:
101 case kExprI64Ior: 101 case kExprI64Ior:
102 case kExprI64Xor: 102 case kExprI64Xor:
103 case kExprI64Shl: 103 case kExprI64Shl:
104 case kExprI64ShrU: 104 case kExprI64ShrU:
105 case kExprI64ShrS: 105 case kExprI64ShrS:
106 case kExprI64Ror:
107 case kExprI64Rol:
106 case kExprI64Eq: 108 case kExprI64Eq:
107 case kExprI64Ne: 109 case kExprI64Ne:
108 case kExprI64LtS: 110 case kExprI64LtS:
109 case kExprI64LeS: 111 case kExprI64LeS:
110 case kExprI64LtU: 112 case kExprI64LtU:
111 case kExprI64LeU: 113 case kExprI64LeU:
112 case kExprI64GtS: 114 case kExprI64GtS:
113 case kExprI64GeS: 115 case kExprI64GeS:
114 case kExprI64GtU: 116 case kExprI64GtU:
115 case kExprI64GeU: 117 case kExprI64GeU:
(...skipping 22 matching lines...) Expand all
138 default: 140 default:
139 return true; 141 return true;
140 } 142 }
141 #else 143 #else
142 return true; 144 return true;
143 #endif 145 #endif
144 } 146 }
145 } // namespace wasm 147 } // namespace wasm
146 } // namespace internal 148 } // namespace internal
147 } // namespace v8 149 } // namespace v8
OLDNEW
« no previous file with comments | « src/wasm/wasm-opcodes.h ('k') | test/cctest/wasm/test-run-wasm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698