| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |