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

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

Issue 1583323004: [turbofan] Add the TruncateFloat32ToInt32 operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a small bug Created 4 years, 11 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
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 V(Int64Sub) \ 263 V(Int64Sub) \
264 V(Int64SubWithOverflow) \ 264 V(Int64SubWithOverflow) \
265 V(Int64Mul) \ 265 V(Int64Mul) \
266 V(Int64Div) \ 266 V(Int64Div) \
267 V(Int64Mod) \ 267 V(Int64Mod) \
268 V(Uint64Div) \ 268 V(Uint64Div) \
269 V(Uint64Mod) \ 269 V(Uint64Mod) \
270 V(ChangeFloat32ToFloat64) \ 270 V(ChangeFloat32ToFloat64) \
271 V(ChangeFloat64ToInt32) \ 271 V(ChangeFloat64ToInt32) \
272 V(ChangeFloat64ToUint32) \ 272 V(ChangeFloat64ToUint32) \
273 V(TruncateFloat32ToInt32) \
273 V(TryTruncateFloat32ToInt64) \ 274 V(TryTruncateFloat32ToInt64) \
274 V(TryTruncateFloat64ToInt64) \ 275 V(TryTruncateFloat64ToInt64) \
275 V(TryTruncateFloat32ToUint64) \ 276 V(TryTruncateFloat32ToUint64) \
276 V(TryTruncateFloat64ToUint64) \ 277 V(TryTruncateFloat64ToUint64) \
277 V(ChangeInt32ToFloat64) \ 278 V(ChangeInt32ToFloat64) \
278 V(ChangeInt32ToInt64) \ 279 V(ChangeInt32ToInt64) \
279 V(ChangeUint32ToFloat64) \ 280 V(ChangeUint32ToFloat64) \
280 V(ChangeUint32ToUint64) \ 281 V(ChangeUint32ToUint64) \
281 V(TruncateFloat64ToFloat32) \ 282 V(TruncateFloat64ToFloat32) \
282 V(TruncateFloat64ToInt32) \ 283 V(TruncateFloat64ToInt32) \
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 } 402 }
402 }; 403 };
403 404
404 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 405 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
405 406
406 } // namespace compiler 407 } // namespace compiler
407 } // namespace internal 408 } // namespace internal
408 } // namespace v8 409 } // namespace v8
409 410
410 #endif // V8_COMPILER_OPCODES_H_ 411 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698