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/simplified-operator.cc

Issue 2073123002: [builtins] Introduce proper Float64Cos and Float64Sin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix missing breaks 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(NumberAtanh, Operator::kNoProperties, 1) \ 257 V(NumberAtanh, Operator::kNoProperties, 1) \
258 V(NumberCbrt, Operator::kNoProperties, 1) \
259 V(NumberCos, Operator::kNoProperties, 1) \
258 V(NumberExp, Operator::kNoProperties, 1) \ 260 V(NumberExp, Operator::kNoProperties, 1) \
259 V(NumberExpm1, Operator::kNoProperties, 1) \ 261 V(NumberExpm1, Operator::kNoProperties, 1) \
260 V(NumberLog, Operator::kNoProperties, 1) \ 262 V(NumberLog, Operator::kNoProperties, 1) \
261 V(NumberLog1p, Operator::kNoProperties, 1) \ 263 V(NumberLog1p, Operator::kNoProperties, 1) \
264 V(NumberLog10, Operator::kNoProperties, 1) \
262 V(NumberLog2, Operator::kNoProperties, 1) \ 265 V(NumberLog2, Operator::kNoProperties, 1) \
263 V(NumberLog10, Operator::kNoProperties, 1) \
264 V(NumberCbrt, Operator::kNoProperties, 1) \
265 V(NumberRound, Operator::kNoProperties, 1) \ 266 V(NumberRound, Operator::kNoProperties, 1) \
267 V(NumberSin, Operator::kNoProperties, 1) \
266 V(NumberSqrt, Operator::kNoProperties, 1) \ 268 V(NumberSqrt, Operator::kNoProperties, 1) \
267 V(NumberTrunc, Operator::kNoProperties, 1) \ 269 V(NumberTrunc, Operator::kNoProperties, 1) \
268 V(NumberToInt32, Operator::kNoProperties, 1) \ 270 V(NumberToInt32, Operator::kNoProperties, 1) \
269 V(NumberToUint32, Operator::kNoProperties, 1) \ 271 V(NumberToUint32, Operator::kNoProperties, 1) \
270 V(NumberSilenceNaN, Operator::kNoProperties, 1) \ 272 V(NumberSilenceNaN, Operator::kNoProperties, 1) \
271 V(StringFromCharCode, Operator::kNoProperties, 1) \ 273 V(StringFromCharCode, Operator::kNoProperties, 1) \
272 V(StringToNumber, Operator::kNoProperties, 1) \ 274 V(StringToNumber, Operator::kNoProperties, 1) \
273 V(PlainPrimitiveToNumber, Operator::kNoProperties, 1) \ 275 V(PlainPrimitiveToNumber, Operator::kNoProperties, 1) \
274 V(PlainPrimitiveToWord32, Operator::kNoProperties, 1) \ 276 V(PlainPrimitiveToWord32, Operator::kNoProperties, 1) \
275 V(PlainPrimitiveToFloat64, Operator::kNoProperties, 1) \ 277 V(PlainPrimitiveToFloat64, Operator::kNoProperties, 1) \
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ 547 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \
546 #Name, value_input_count, 1, control_input_count, \ 548 #Name, value_input_count, 1, control_input_count, \
547 output_count, 1, 0, access); \ 549 output_count, 1, 0, access); \
548 } 550 }
549 ACCESS_OP_LIST(ACCESS) 551 ACCESS_OP_LIST(ACCESS)
550 #undef ACCESS 552 #undef ACCESS
551 553
552 } // namespace compiler 554 } // namespace compiler
553 } // namespace internal 555 } // namespace internal
554 } // namespace v8 556 } // 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