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

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

Issue 1514913003: [wasm] Turn on all wasm instructions on 64bit platforms. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 | « no previous file | no next file » | 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698