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

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

Issue 1477753002: [turbofan] Implemented the optional Float32RoundTiesEven operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@f32trunc
Patch Set: Merging with the changed codebase 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 V(Float64Max) \ 303 V(Float64Max) \
304 V(Float64Min) \ 304 V(Float64Min) \
305 V(Float64Abs) \ 305 V(Float64Abs) \
306 V(Float64Sqrt) \ 306 V(Float64Sqrt) \
307 V(Float64RoundDown) \ 307 V(Float64RoundDown) \
308 V(Float32RoundUp) \ 308 V(Float32RoundUp) \
309 V(Float64RoundUp) \ 309 V(Float64RoundUp) \
310 V(Float32RoundTruncate) \ 310 V(Float32RoundTruncate) \
311 V(Float64RoundTruncate) \ 311 V(Float64RoundTruncate) \
312 V(Float64RoundTiesAway) \ 312 V(Float64RoundTiesAway) \
313 V(Float32RoundTiesEven) \
313 V(Float64RoundTiesEven) \ 314 V(Float64RoundTiesEven) \
314 V(Float64ExtractLowWord32) \ 315 V(Float64ExtractLowWord32) \
315 V(Float64ExtractHighWord32) \ 316 V(Float64ExtractHighWord32) \
316 V(Float64InsertLowWord32) \ 317 V(Float64InsertLowWord32) \
317 V(Float64InsertHighWord32) \ 318 V(Float64InsertHighWord32) \
318 V(LoadStackPointer) \ 319 V(LoadStackPointer) \
319 V(LoadFramePointer) \ 320 V(LoadFramePointer) \
320 V(CheckedLoad) \ 321 V(CheckedLoad) \
321 V(CheckedStore) 322 V(CheckedStore)
322 323
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 } 398 }
398 }; 399 };
399 400
400 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 401 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
401 402
402 } // namespace compiler 403 } // namespace compiler
403 } // namespace internal 404 } // namespace internal
404 } // namespace v8 405 } // namespace v8
405 406
406 #endif // V8_COMPILER_OPCODES_H_ 407 #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