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

Side by Side Diff: src/compiler/code-assembler.h

Issue 2728463006: Migrate Math.Min/Max to CodeStubAssembler (Closed)
Patch Set: ChangeFloat64ToTagged Created 3 years, 9 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
« no previous file with comments | « src/builtins/x87/builtins-x87.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_CODE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_ASSEMBLER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \ 79 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \
80 CODE_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \ 80 CODE_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \
81 V(Float64Add) \ 81 V(Float64Add) \
82 V(Float64Sub) \ 82 V(Float64Sub) \
83 V(Float64Mul) \ 83 V(Float64Mul) \
84 V(Float64Div) \ 84 V(Float64Div) \
85 V(Float64Mod) \ 85 V(Float64Mod) \
86 V(Float64Atan2) \ 86 V(Float64Atan2) \
87 V(Float64Pow) \ 87 V(Float64Pow) \
88 V(Float64Max) \
89 V(Float64Min) \
88 V(Float64InsertLowWord32) \ 90 V(Float64InsertLowWord32) \
89 V(Float64InsertHighWord32) \ 91 V(Float64InsertHighWord32) \
90 V(IntPtrAddWithOverflow) \ 92 V(IntPtrAddWithOverflow) \
91 V(IntPtrSubWithOverflow) \ 93 V(IntPtrSubWithOverflow) \
92 V(IntPtrMul) \ 94 V(IntPtrMul) \
93 V(Int32Add) \ 95 V(Int32Add) \
94 V(Int32AddWithOverflow) \ 96 V(Int32AddWithOverflow) \
95 V(Int32Sub) \ 97 V(Int32Sub) \
96 V(Int32Mul) \ 98 V(Int32Mul) \
97 V(Int32MulWithOverflow) \ 99 V(Int32MulWithOverflow) \
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 CodeAssemblerCallback call_epilogue_; 513 CodeAssemblerCallback call_epilogue_;
512 514
513 DISALLOW_COPY_AND_ASSIGN(CodeAssemblerState); 515 DISALLOW_COPY_AND_ASSIGN(CodeAssemblerState);
514 }; 516 };
515 517
516 } // namespace compiler 518 } // namespace compiler
517 } // namespace internal 519 } // namespace internal
518 } // namespace v8 520 } // namespace v8
519 521
520 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 522 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/builtins/x87/builtins-x87.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698