OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |