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

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

Issue 2070813002: Revert of [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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/compiler/mips/code-generator-mips.cc ('k') | src/compiler/opcodes.h » ('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 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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 __ Daddu(i.OutputRegister(), offset.from_stack_pointer() ? sp : fp, 749 __ Daddu(i.OutputRegister(), offset.from_stack_pointer() ? sp : fp,
750 Operand(offset.offset())); 750 Operand(offset.offset()));
751 break; 751 break;
752 } 752 }
753 case kIeee754Float64Atan: 753 case kIeee754Float64Atan:
754 ASSEMBLE_IEEE754_UNOP(atan); 754 ASSEMBLE_IEEE754_UNOP(atan);
755 break; 755 break;
756 case kIeee754Float64Atan2: 756 case kIeee754Float64Atan2:
757 ASSEMBLE_IEEE754_BINOP(atan2); 757 ASSEMBLE_IEEE754_BINOP(atan2);
758 break; 758 break;
759 case kIeee754Float64Exp:
760 ASSEMBLE_IEEE754_UNOP(exp);
761 break;
762 case kIeee754Float64Log: 759 case kIeee754Float64Log:
763 ASSEMBLE_IEEE754_UNOP(log); 760 ASSEMBLE_IEEE754_UNOP(log);
764 break; 761 break;
765 case kIeee754Float64Log1p: 762 case kIeee754Float64Log1p:
766 ASSEMBLE_IEEE754_UNOP(log1p); 763 ASSEMBLE_IEEE754_UNOP(log1p);
767 break; 764 break;
768 case kIeee754Float64Log2: 765 case kIeee754Float64Log2:
769 ASSEMBLE_IEEE754_UNOP(log2); 766 ASSEMBLE_IEEE754_UNOP(log2);
770 break; 767 break;
771 case kIeee754Float64Log10: 768 case kIeee754Float64Log10:
(...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after
2303 padding_size -= v8::internal::Assembler::kInstrSize; 2300 padding_size -= v8::internal::Assembler::kInstrSize;
2304 } 2301 }
2305 } 2302 }
2306 } 2303 }
2307 2304
2308 #undef __ 2305 #undef __
2309 2306
2310 } // namespace compiler 2307 } // namespace compiler
2311 } // namespace internal 2308 } // namespace internal
2312 } // namespace v8 2309 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/mips/code-generator-mips.cc ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698