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

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

Issue 1424333002: [turbofan] Added the RoundInt64ToFloat64 instruction to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@BufferedRawMachineAssemblerTester
Patch Set: Fixed the type of RoundInt64ToFloat64 Created 5 years, 1 month 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(ChangeFloat32ToFloat64) \ 261 V(ChangeFloat32ToFloat64) \
262 V(ChangeFloat64ToInt32) \ 262 V(ChangeFloat64ToInt32) \
263 V(ChangeFloat64ToUint32) \ 263 V(ChangeFloat64ToUint32) \
264 V(ChangeInt32ToFloat64) \ 264 V(ChangeInt32ToFloat64) \
265 V(ChangeInt32ToInt64) \ 265 V(ChangeInt32ToInt64) \
266 V(ChangeUint32ToFloat64) \ 266 V(ChangeUint32ToFloat64) \
267 V(ChangeUint32ToUint64) \ 267 V(ChangeUint32ToUint64) \
268 V(TruncateFloat64ToFloat32) \ 268 V(TruncateFloat64ToFloat32) \
269 V(TruncateFloat64ToInt32) \ 269 V(TruncateFloat64ToInt32) \
270 V(TruncateInt64ToInt32) \ 270 V(TruncateInt64ToInt32) \
271 V(RoundInt64ToFloat64) \
271 V(BitcastFloat32ToInt32) \ 272 V(BitcastFloat32ToInt32) \
272 V(BitcastFloat64ToInt64) \ 273 V(BitcastFloat64ToInt64) \
273 V(BitcastInt32ToFloat32) \ 274 V(BitcastInt32ToFloat32) \
274 V(BitcastInt64ToFloat64) \ 275 V(BitcastInt64ToFloat64) \
275 V(Float32Add) \ 276 V(Float32Add) \
276 V(Float32Sub) \ 277 V(Float32Sub) \
277 V(Float32Mul) \ 278 V(Float32Mul) \
278 V(Float32Div) \ 279 V(Float32Div) \
279 V(Float32Max) \ 280 V(Float32Max) \
280 V(Float32Min) \ 281 V(Float32Min) \
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 } 374 }
374 }; 375 };
375 376
376 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 377 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
377 378
378 } // namespace compiler 379 } // namespace compiler
379 } // namespace internal 380 } // namespace internal
380 } // namespace v8 381 } // namespace v8
381 382
382 #endif // V8_COMPILER_OPCODES_H_ 383 #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