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

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

Issue 1628133002: [turbofan] Add RoundUint32ToFloat32 operator to Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add arm/arm64 implementation Created 4 years, 10 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 V(ChangeInt32ToFloat64) \ 278 V(ChangeInt32ToFloat64) \
279 V(ChangeInt32ToInt64) \ 279 V(ChangeInt32ToInt64) \
280 V(ChangeUint32ToFloat64) \ 280 V(ChangeUint32ToFloat64) \
281 V(ChangeUint32ToUint64) \ 281 V(ChangeUint32ToUint64) \
282 V(TruncateFloat64ToFloat32) \ 282 V(TruncateFloat64ToFloat32) \
283 V(TruncateFloat64ToInt32) \ 283 V(TruncateFloat64ToInt32) \
284 V(TruncateInt64ToInt32) \ 284 V(TruncateInt64ToInt32) \
285 V(RoundInt32ToFloat32) \ 285 V(RoundInt32ToFloat32) \
286 V(RoundInt64ToFloat32) \ 286 V(RoundInt64ToFloat32) \
287 V(RoundInt64ToFloat64) \ 287 V(RoundInt64ToFloat64) \
288 V(RoundUint32ToFloat32) \
288 V(RoundUint64ToFloat32) \ 289 V(RoundUint64ToFloat32) \
289 V(RoundUint64ToFloat64) \ 290 V(RoundUint64ToFloat64) \
290 V(BitcastFloat32ToInt32) \ 291 V(BitcastFloat32ToInt32) \
291 V(BitcastFloat64ToInt64) \ 292 V(BitcastFloat64ToInt64) \
292 V(BitcastInt32ToFloat32) \ 293 V(BitcastInt32ToFloat32) \
293 V(BitcastInt64ToFloat64) \ 294 V(BitcastInt64ToFloat64) \
294 V(Float32Add) \ 295 V(Float32Add) \
295 V(Float32Sub) \ 296 V(Float32Sub) \
296 V(Float32Mul) \ 297 V(Float32Mul) \
297 V(Float32Div) \ 298 V(Float32Div) \
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 } 404 }
404 }; 405 };
405 406
406 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 407 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
407 408
408 } // namespace compiler 409 } // namespace compiler
409 } // namespace internal 410 } // namespace internal
410 } // namespace v8 411 } // namespace v8
411 412
412 #endif // V8_COMPILER_OPCODES_H_ 413 #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