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

Side by Side Diff: src/compiler/x87/code-generator-x87.cc

Issue 2096283002: X87: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | src/crankshaft/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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
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
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
OLDNEW
« no previous file with comments | « no previous file | src/crankshaft/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698