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

Side by Side Diff: src/compiler/opcodes.h

Issue 1693563004: Convert between tagged and untagged kSimd128 values. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase 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/change-lowering.cc ('k') | src/compiler/representation-change.h » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 V(NumberToUint32) \ 187 V(NumberToUint32) \
188 V(NumberIsHoleNaN) \ 188 V(NumberIsHoleNaN) \
189 V(PlainPrimitiveToNumber) \ 189 V(PlainPrimitiveToNumber) \
190 V(StringToNumber) \ 190 V(StringToNumber) \
191 V(ChangeTaggedToInt32) \ 191 V(ChangeTaggedToInt32) \
192 V(ChangeTaggedToUint32) \ 192 V(ChangeTaggedToUint32) \
193 V(ChangeTaggedToFloat64) \ 193 V(ChangeTaggedToFloat64) \
194 V(ChangeInt32ToTagged) \ 194 V(ChangeInt32ToTagged) \
195 V(ChangeUint32ToTagged) \ 195 V(ChangeUint32ToTagged) \
196 V(ChangeFloat64ToTagged) \ 196 V(ChangeFloat64ToTagged) \
197 V(ChangeTaggedToFloat32x4) \
198 V(ChangeTaggedToInt32x4) \
199 V(ChangeTaggedToUint32x4) \
200 V(ChangeTaggedToBool32x4) \
201 V(ChangeTaggedToInt16x8) \
202 V(ChangeTaggedToUint16x8) \
203 V(ChangeTaggedToBool16x8) \
204 V(ChangeTaggedToInt8x16) \
205 V(ChangeTaggedToUint8x16) \
206 V(ChangeTaggedToBool8x16) \
207 V(ChangeFloat32x4ToTagged) \
208 V(ChangeInt32x4ToTagged) \
209 V(ChangeUint32x4ToTagged) \
210 V(ChangeBool32x4ToTagged) \
211 V(ChangeInt16x8ToTagged) \
212 V(ChangeUint16x8ToTagged) \
213 V(ChangeBool16x8ToTagged) \
214 V(ChangeInt8x16ToTagged) \
215 V(ChangeUint8x16ToTagged) \
216 V(ChangeBool8x16ToTagged) \
197 V(ChangeBoolToBit) \ 217 V(ChangeBoolToBit) \
198 V(ChangeBitToBool) \ 218 V(ChangeBitToBool) \
199 V(Allocate) \ 219 V(Allocate) \
200 V(LoadField) \ 220 V(LoadField) \
201 V(LoadBuffer) \ 221 V(LoadBuffer) \
202 V(LoadElement) \ 222 V(LoadElement) \
203 V(StoreField) \ 223 V(StoreField) \
204 V(StoreBuffer) \ 224 V(StoreBuffer) \
205 V(StoreElement) \ 225 V(StoreElement) \
206 V(ObjectIsNumber) \ 226 V(ObjectIsNumber) \
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 } 438 }
419 }; 439 };
420 440
421 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 441 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
422 442
423 } // namespace compiler 443 } // namespace compiler
424 } // namespace internal 444 } // namespace internal
425 } // namespace v8 445 } // namespace v8
426 446
427 #endif // V8_COMPILER_OPCODES_H_ 447 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/change-lowering.cc ('k') | src/compiler/representation-change.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698