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

Side by Side Diff: src/compiler/simplified-operator.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/simplified-operator.h ('k') | src/compiler/typer.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/simplified-operator.h" 5 #include "src/compiler/simplified-operator.h"
6 6
7 #include "src/base/lazy-instance.h" 7 #include "src/base/lazy-instance.h"
8 #include "src/compiler/opcodes.h" 8 #include "src/compiler/opcodes.h"
9 #include "src/compiler/operator.h" 9 #include "src/compiler/operator.h"
10 #include "src/types.h" 10 #include "src/types.h"
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 V(NumberShiftLeft, Operator::kNoProperties, 2) \ 247 V(NumberShiftLeft, Operator::kNoProperties, 2) \
248 V(NumberShiftRight, Operator::kNoProperties, 2) \ 248 V(NumberShiftRight, Operator::kNoProperties, 2) \
249 V(NumberShiftRightLogical, Operator::kNoProperties, 2) \ 249 V(NumberShiftRightLogical, Operator::kNoProperties, 2) \
250 V(NumberImul, Operator::kCommutative, 2) \ 250 V(NumberImul, Operator::kCommutative, 2) \
251 V(NumberClz32, Operator::kNoProperties, 1) \ 251 V(NumberClz32, Operator::kNoProperties, 1) \
252 V(NumberCeil, Operator::kNoProperties, 1) \ 252 V(NumberCeil, Operator::kNoProperties, 1) \
253 V(NumberFloor, Operator::kNoProperties, 1) \ 253 V(NumberFloor, Operator::kNoProperties, 1) \
254 V(NumberFround, Operator::kNoProperties, 1) \ 254 V(NumberFround, Operator::kNoProperties, 1) \
255 V(NumberAtan, Operator::kNoProperties, 1) \ 255 V(NumberAtan, Operator::kNoProperties, 1) \
256 V(NumberAtan2, Operator::kNoProperties, 2) \ 256 V(NumberAtan2, Operator::kNoProperties, 2) \
257 V(NumberExp, Operator::kNoProperties, 1) \
258 V(NumberLog, Operator::kNoProperties, 1) \ 257 V(NumberLog, Operator::kNoProperties, 1) \
259 V(NumberLog1p, Operator::kNoProperties, 1) \ 258 V(NumberLog1p, Operator::kNoProperties, 1) \
260 V(NumberLog2, Operator::kNoProperties, 1) \ 259 V(NumberLog2, Operator::kNoProperties, 1) \
261 V(NumberLog10, Operator::kNoProperties, 1) \ 260 V(NumberLog10, Operator::kNoProperties, 1) \
262 V(NumberRound, Operator::kNoProperties, 1) \ 261 V(NumberRound, Operator::kNoProperties, 1) \
263 V(NumberSqrt, Operator::kNoProperties, 1) \ 262 V(NumberSqrt, Operator::kNoProperties, 1) \
264 V(NumberTrunc, Operator::kNoProperties, 1) \ 263 V(NumberTrunc, Operator::kNoProperties, 1) \
265 V(NumberToInt32, Operator::kNoProperties, 1) \ 264 V(NumberToInt32, Operator::kNoProperties, 1) \
266 V(NumberToUint32, Operator::kNoProperties, 1) \ 265 V(NumberToUint32, Operator::kNoProperties, 1) \
267 V(NumberSilenceNaN, Operator::kNoProperties, 1) \ 266 V(NumberSilenceNaN, Operator::kNoProperties, 1) \
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ 541 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \
543 #Name, value_input_count, 1, control_input_count, \ 542 #Name, value_input_count, 1, control_input_count, \
544 output_count, 1, 0, access); \ 543 output_count, 1, 0, access); \
545 } 544 }
546 ACCESS_OP_LIST(ACCESS) 545 ACCESS_OP_LIST(ACCESS)
547 #undef ACCESS 546 #undef ACCESS
548 547
549 } // namespace compiler 548 } // namespace compiler
550 } // namespace internal 549 } // namespace internal
551 } // namespace v8 550 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-operator.h ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698