OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |