OLD | NEW |
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 #include "src/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 | 6 |
7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
8 #include "src/compiler/code-generator-impl.h" | 8 #include "src/compiler/code-generator-impl.h" |
9 #include "src/compiler/gap-resolver.h" | 9 #include "src/compiler/gap-resolver.h" |
10 #include "src/compiler/node-matchers.h" | 10 #include "src/compiler/node-matchers.h" |
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 } | 747 } |
748 __ lea(i.OutputRegister(), Operand(base, offset.offset())); | 748 __ lea(i.OutputRegister(), Operand(base, offset.offset())); |
749 break; | 749 break; |
750 } | 750 } |
751 case kIeee754Float64Atan: | 751 case kIeee754Float64Atan: |
752 ASSEMBLE_IEEE754_UNOP(atan); | 752 ASSEMBLE_IEEE754_UNOP(atan); |
753 break; | 753 break; |
754 case kIeee754Float64Atan2: | 754 case kIeee754Float64Atan2: |
755 ASSEMBLE_IEEE754_BINOP(atan2); | 755 ASSEMBLE_IEEE754_BINOP(atan2); |
756 break; | 756 break; |
| 757 case kIeee754Float64Exp: |
| 758 ASSEMBLE_IEEE754_UNOP(exp); |
| 759 break; |
757 case kIeee754Float64Log: | 760 case kIeee754Float64Log: |
758 ASSEMBLE_IEEE754_UNOP(log); | 761 ASSEMBLE_IEEE754_UNOP(log); |
759 break; | 762 break; |
760 case kIeee754Float64Log1p: | 763 case kIeee754Float64Log1p: |
761 ASSEMBLE_IEEE754_UNOP(log1p); | 764 ASSEMBLE_IEEE754_UNOP(log1p); |
762 break; | 765 break; |
763 case kIeee754Float64Log2: | 766 case kIeee754Float64Log2: |
764 ASSEMBLE_IEEE754_UNOP(log2); | 767 ASSEMBLE_IEEE754_UNOP(log2); |
765 break; | 768 break; |
766 case kIeee754Float64Log10: | 769 case kIeee754Float64Log10: |
(...skipping 1820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2587 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; | 2590 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; |
2588 __ Nop(padding_size); | 2591 __ Nop(padding_size); |
2589 } | 2592 } |
2590 } | 2593 } |
2591 | 2594 |
2592 #undef __ | 2595 #undef __ |
2593 | 2596 |
2594 } // namespace compiler | 2597 } // namespace compiler |
2595 } // namespace internal | 2598 } // namespace internal |
2596 } // namespace v8 | 2599 } // namespace v8 |
OLD | NEW |