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

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

Issue 2075263002: PPC/s390: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments, uploaded doubleregister to d0 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 | « no previous file | src/compiler/s390/code-generator-s390.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 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/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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 // TODO(bmeurer): We should really get rid of this special instruction, 1256 // TODO(bmeurer): We should really get rid of this special instruction,
1257 // and generate a CallAddress instruction instead. 1257 // and generate a CallAddress instruction instead.
1258 ASSEMBLE_FLOAT_MODULO(); 1258 ASSEMBLE_FLOAT_MODULO();
1259 break; 1259 break;
1260 case kIeee754Float64Atan: 1260 case kIeee754Float64Atan:
1261 ASSEMBLE_IEEE754_UNOP(atan); 1261 ASSEMBLE_IEEE754_UNOP(atan);
1262 break; 1262 break;
1263 case kIeee754Float64Atan2: 1263 case kIeee754Float64Atan2:
1264 ASSEMBLE_IEEE754_BINOP(atan2); 1264 ASSEMBLE_IEEE754_BINOP(atan2);
1265 break; 1265 break;
1266 case kIeee754Float64Exp:
1267 ASSEMBLE_IEEE754_UNOP(exp);
1268 break;
1266 case kIeee754Float64Log: 1269 case kIeee754Float64Log:
1267 ASSEMBLE_IEEE754_UNOP(log); 1270 ASSEMBLE_IEEE754_UNOP(log);
1268 break; 1271 break;
1269 case kIeee754Float64Log1p: 1272 case kIeee754Float64Log1p:
1270 ASSEMBLE_IEEE754_UNOP(log1p); 1273 ASSEMBLE_IEEE754_UNOP(log1p);
1271 break; 1274 break;
1272 case kIeee754Float64Log2: 1275 case kIeee754Float64Log2:
1273 ASSEMBLE_IEEE754_UNOP(log2); 1276 ASSEMBLE_IEEE754_UNOP(log2);
1274 break; 1277 break;
1275 case kIeee754Float64Log10: 1278 case kIeee754Float64Log10:
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
2198 padding_size -= v8::internal::Assembler::kInstrSize; 2201 padding_size -= v8::internal::Assembler::kInstrSize;
2199 } 2202 }
2200 } 2203 }
2201 } 2204 }
2202 2205
2203 #undef __ 2206 #undef __
2204 2207
2205 } // namespace compiler 2208 } // namespace compiler
2206 } // namespace internal 2209 } // namespace internal
2207 } // namespace v8 2210 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/compiler/s390/code-generator-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698