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

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

Issue 1356913002: [turbofan] Add support for reinterpreting integers as floating point and vice versa. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rename ReinterpretAs to BitcastTo Created 5 years, 3 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 V(ChangeFloat32ToFloat64) \ 254 V(ChangeFloat32ToFloat64) \
255 V(ChangeFloat64ToInt32) \ 255 V(ChangeFloat64ToInt32) \
256 V(ChangeFloat64ToUint32) \ 256 V(ChangeFloat64ToUint32) \
257 V(ChangeInt32ToFloat64) \ 257 V(ChangeInt32ToFloat64) \
258 V(ChangeInt32ToInt64) \ 258 V(ChangeInt32ToInt64) \
259 V(ChangeUint32ToFloat64) \ 259 V(ChangeUint32ToFloat64) \
260 V(ChangeUint32ToUint64) \ 260 V(ChangeUint32ToUint64) \
261 V(TruncateFloat64ToFloat32) \ 261 V(TruncateFloat64ToFloat32) \
262 V(TruncateFloat64ToInt32) \ 262 V(TruncateFloat64ToInt32) \
263 V(TruncateInt64ToInt32) \ 263 V(TruncateInt64ToInt32) \
264 V(BitcastFloat32ToInt32) \
265 V(BitcastFloat64ToInt64) \
266 V(BitcastInt32ToFloat32) \
267 V(BitcastInt64ToFloat64) \
264 V(Float32Add) \ 268 V(Float32Add) \
265 V(Float32Sub) \ 269 V(Float32Sub) \
266 V(Float32Mul) \ 270 V(Float32Mul) \
267 V(Float32Div) \ 271 V(Float32Div) \
268 V(Float32Max) \ 272 V(Float32Max) \
269 V(Float32Min) \ 273 V(Float32Min) \
270 V(Float32Abs) \ 274 V(Float32Abs) \
271 V(Float32Sqrt) \ 275 V(Float32Sqrt) \
272 V(Float64Add) \ 276 V(Float64Add) \
273 V(Float64Sub) \ 277 V(Float64Sub) \
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 } 366 }
363 }; 367 };
364 368
365 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 369 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
366 370
367 } // namespace compiler 371 } // namespace compiler
368 } // namespace internal 372 } // namespace internal
369 } // namespace v8 373 } // namespace v8
370 374
371 #endif // V8_COMPILER_OPCODES_H_ 375 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/code-generator-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698