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

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

Issue 1512023002: [turbofan] Change TruncateFloat32ToUint64 to TryTruncateFloat32ToUint64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Added better mips64 code. 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
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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 V(Int64Mul) \ 261 V(Int64Mul) \
262 V(Int64Div) \ 262 V(Int64Div) \
263 V(Int64Mod) \ 263 V(Int64Mod) \
264 V(Uint64Div) \ 264 V(Uint64Div) \
265 V(Uint64Mod) \ 265 V(Uint64Mod) \
266 V(ChangeFloat32ToFloat64) \ 266 V(ChangeFloat32ToFloat64) \
267 V(ChangeFloat64ToInt32) \ 267 V(ChangeFloat64ToInt32) \
268 V(ChangeFloat64ToUint32) \ 268 V(ChangeFloat64ToUint32) \
269 V(TryTruncateFloat32ToInt64) \ 269 V(TryTruncateFloat32ToInt64) \
270 V(TryTruncateFloat64ToInt64) \ 270 V(TryTruncateFloat64ToInt64) \
271 V(TruncateFloat32ToUint64) \ 271 V(TryTruncateFloat32ToUint64) \
272 V(TryTruncateFloat64ToUint64) \ 272 V(TryTruncateFloat64ToUint64) \
273 V(ChangeInt32ToFloat64) \ 273 V(ChangeInt32ToFloat64) \
274 V(ChangeInt32ToInt64) \ 274 V(ChangeInt32ToInt64) \
275 V(ChangeUint32ToFloat64) \ 275 V(ChangeUint32ToFloat64) \
276 V(ChangeUint32ToUint64) \ 276 V(ChangeUint32ToUint64) \
277 V(TruncateFloat64ToFloat32) \ 277 V(TruncateFloat64ToFloat32) \
278 V(TruncateFloat64ToInt32) \ 278 V(TruncateFloat64ToInt32) \
279 V(TruncateInt64ToInt32) \ 279 V(TruncateInt64ToInt32) \
280 V(RoundInt64ToFloat32) \ 280 V(RoundInt64ToFloat32) \
281 V(RoundInt64ToFloat64) \ 281 V(RoundInt64ToFloat64) \
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 } 397 }
398 }; 398 };
399 399
400 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 400 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
401 401
402 } // namespace compiler 402 } // namespace compiler
403 } // namespace internal 403 } // namespace internal
404 } // namespace v8 404 } // namespace v8
405 405
406 #endif // V8_COMPILER_OPCODES_H_ 406 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698