| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 case kExprI64ReinterpretF64: | 108 case kExprI64ReinterpretF64: |
| 109 | 109 |
| 110 case kExprI64Clz: | 110 case kExprI64Clz: |
| 111 case kExprI64Ctz: | 111 case kExprI64Ctz: |
| 112 case kExprI64Popcnt: | 112 case kExprI64Popcnt: |
| 113 | 113 |
| 114 case kExprF32SConvertI64: | 114 case kExprF32SConvertI64: |
| 115 case kExprF32UConvertI64: | 115 case kExprF32UConvertI64: |
| 116 case kExprF64SConvertI64: | 116 case kExprF64SConvertI64: |
| 117 case kExprF64UConvertI64: | 117 case kExprF64UConvertI64: |
| 118 | |
| 119 #endif | |
| 120 | |
| 121 case kExprI64SConvertF32: | 118 case kExprI64SConvertF32: |
| 122 case kExprI64SConvertF64: | 119 case kExprI64SConvertF64: |
| 123 case kExprI64UConvertF32: | 120 case kExprI64UConvertF32: |
| 124 case kExprI64UConvertF64: | 121 case kExprI64UConvertF64: |
| 122 |
| 123 #endif |
| 125 return false; | 124 return false; |
| 126 default: | 125 default: |
| 127 return true; | 126 return true; |
| 128 } | 127 } |
| 129 } | 128 } |
| 130 } // namespace wasm | 129 } // namespace wasm |
| 131 } // namespace internal | 130 } // namespace internal |
| 132 } // namespace v8 | 131 } // namespace v8 |
| OLD | NEW |