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

Side by Side Diff: src/compiler/js-operator.h

Issue 1491223002: [turbofan] Desugar JSUnaryNot(x) to Select(x, false, true). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo in arm64. Created 5 years 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/js-generic-lowering.cc ('k') | src/compiler/js-operator.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 #ifndef V8_COMPILER_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/compiler/type-hints.h" 8 #include "src/compiler/type-hints.h"
9 #include "src/runtime/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 const Operator* Add(LanguageMode language_mode, BinaryOperationHints hints); 490 const Operator* Add(LanguageMode language_mode, BinaryOperationHints hints);
491 const Operator* Subtract(LanguageMode language_mode, 491 const Operator* Subtract(LanguageMode language_mode,
492 BinaryOperationHints hints); 492 BinaryOperationHints hints);
493 const Operator* Multiply(LanguageMode language_mode, 493 const Operator* Multiply(LanguageMode language_mode,
494 BinaryOperationHints hints); 494 BinaryOperationHints hints);
495 const Operator* Divide(LanguageMode language_mode, 495 const Operator* Divide(LanguageMode language_mode,
496 BinaryOperationHints hints); 496 BinaryOperationHints hints);
497 const Operator* Modulus(LanguageMode language_mode, 497 const Operator* Modulus(LanguageMode language_mode,
498 BinaryOperationHints hints); 498 BinaryOperationHints hints);
499 499
500 const Operator* UnaryNot();
501 const Operator* ToBoolean(); 500 const Operator* ToBoolean();
502 const Operator* ToNumber(); 501 const Operator* ToNumber();
503 const Operator* ToString(); 502 const Operator* ToString();
504 const Operator* ToName(); 503 const Operator* ToName();
505 const Operator* ToObject(); 504 const Operator* ToObject();
506 const Operator* Yield(); 505 const Operator* Yield();
507 506
508 const Operator* Create(); 507 const Operator* Create();
509 const Operator* CreateArguments(CreateArgumentsParameters::Type type, 508 const Operator* CreateArguments(CreateArgumentsParameters::Type type,
510 int start_index); 509 int start_index);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 Zone* const zone_; 581 Zone* const zone_;
583 582
584 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 583 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
585 }; 584 };
586 585
587 } // namespace compiler 586 } // namespace compiler
588 } // namespace internal 587 } // namespace internal
589 } // namespace v8 588 } // namespace v8
590 589
591 #endif // V8_COMPILER_JS_OPERATOR_H_ 590 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698