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

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

Issue 1905813003: [turbofan] Introduce dedicated BitcastWordToTagged machine operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Small fix. Created 4 years, 8 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/machine-operator.cc ('k') | src/compiler/raw-machine-assembler.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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 V(Uint32MulHigh) \ 278 V(Uint32MulHigh) \
279 V(Int64Add) \ 279 V(Int64Add) \
280 V(Int64AddWithOverflow) \ 280 V(Int64AddWithOverflow) \
281 V(Int64Sub) \ 281 V(Int64Sub) \
282 V(Int64SubWithOverflow) \ 282 V(Int64SubWithOverflow) \
283 V(Int64Mul) \ 283 V(Int64Mul) \
284 V(Int64Div) \ 284 V(Int64Div) \
285 V(Int64Mod) \ 285 V(Int64Mod) \
286 V(Uint64Div) \ 286 V(Uint64Div) \
287 V(Uint64Mod) \ 287 V(Uint64Mod) \
288 V(BitcastWordToTagged) \
288 V(ChangeFloat32ToFloat64) \ 289 V(ChangeFloat32ToFloat64) \
289 V(ChangeFloat64ToInt32) \ 290 V(ChangeFloat64ToInt32) \
290 V(ChangeFloat64ToUint32) \ 291 V(ChangeFloat64ToUint32) \
291 V(TruncateFloat64ToUint32) \ 292 V(TruncateFloat64ToUint32) \
292 V(TruncateFloat32ToInt32) \ 293 V(TruncateFloat32ToInt32) \
293 V(TruncateFloat32ToUint32) \ 294 V(TruncateFloat32ToUint32) \
294 V(TryTruncateFloat32ToInt64) \ 295 V(TryTruncateFloat32ToInt64) \
295 V(TryTruncateFloat64ToInt64) \ 296 V(TryTruncateFloat64ToInt64) \
296 V(TryTruncateFloat32ToUint64) \ 297 V(TryTruncateFloat32ToUint64) \
297 V(TryTruncateFloat64ToUint64) \ 298 V(TryTruncateFloat64ToUint64) \
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 } 433 }
433 }; 434 };
434 435
435 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 436 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
436 437
437 } // namespace compiler 438 } // namespace compiler
438 } // namespace internal 439 } // namespace internal
439 } // namespace v8 440 } // namespace v8
440 441
441 #endif // V8_COMPILER_OPCODES_H_ 442 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698