OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/ast/scopes.h" | 5 #include "src/ast/scopes.h" |
6 #include "src/compiler/code-generator.h" | 6 #include "src/compiler/code-generator.h" |
7 #include "src/compiler/code-generator-impl.h" | 7 #include "src/compiler/code-generator-impl.h" |
8 #include "src/compiler/gap-resolver.h" | 8 #include "src/compiler/gap-resolver.h" |
9 #include "src/compiler/node-matchers.h" | 9 #include "src/compiler/node-matchers.h" |
10 #include "src/compiler/osr.h" | 10 #include "src/compiler/osr.h" |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
743 } | 743 } |
744 case kIeee754Float64Atan: | 744 case kIeee754Float64Atan: |
745 ASSEMBLE_IEEE754_UNOP(atan); | 745 ASSEMBLE_IEEE754_UNOP(atan); |
746 break; | 746 break; |
747 case kIeee754Float64Atan2: | 747 case kIeee754Float64Atan2: |
748 ASSEMBLE_IEEE754_BINOP(atan2); | 748 ASSEMBLE_IEEE754_BINOP(atan2); |
749 break; | 749 break; |
750 case kIeee754Float64Exp: | 750 case kIeee754Float64Exp: |
751 ASSEMBLE_IEEE754_UNOP(exp); | 751 ASSEMBLE_IEEE754_UNOP(exp); |
752 break; | 752 break; |
| 753 case kIeee754Float64Atanh: |
| 754 ASSEMBLE_IEEE754_UNOP(atanh); |
| 755 break; |
753 case kIeee754Float64Log: | 756 case kIeee754Float64Log: |
754 ASSEMBLE_IEEE754_UNOP(log); | 757 ASSEMBLE_IEEE754_UNOP(log); |
755 break; | 758 break; |
| 759 case kIeee754Float64Cbrt: |
| 760 ASSEMBLE_IEEE754_UNOP(cbrt); |
| 761 break; |
| 762 case kIeee754Float64Expm1: |
| 763 ASSEMBLE_IEEE754_UNOP(expm1); |
| 764 break; |
756 case kIeee754Float64Log1p: | 765 case kIeee754Float64Log1p: |
757 ASSEMBLE_IEEE754_UNOP(log1p); | 766 ASSEMBLE_IEEE754_UNOP(log1p); |
758 break; | 767 break; |
759 case kIeee754Float64Log2: | 768 case kIeee754Float64Log2: |
760 ASSEMBLE_IEEE754_UNOP(log2); | 769 ASSEMBLE_IEEE754_UNOP(log2); |
761 break; | 770 break; |
762 case kIeee754Float64Log10: | 771 case kIeee754Float64Log10: |
763 ASSEMBLE_IEEE754_UNOP(log10); | 772 ASSEMBLE_IEEE754_UNOP(log10); |
764 break; | 773 break; |
765 case kMipsAdd: | 774 case kMipsAdd: |
(...skipping 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2056 padding_size -= v8::internal::Assembler::kInstrSize; | 2065 padding_size -= v8::internal::Assembler::kInstrSize; |
2057 } | 2066 } |
2058 } | 2067 } |
2059 } | 2068 } |
2060 | 2069 |
2061 #undef __ | 2070 #undef __ |
2062 | 2071 |
2063 } // namespace compiler | 2072 } // namespace compiler |
2064 } // namespace internal | 2073 } // namespace internal |
2065 } // namespace v8 | 2074 } // namespace v8 |
OLD | NEW |