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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 VectorSlotPair const& feedback = VectorSlotPair(), | 431 VectorSlotPair const& feedback = VectorSlotPair(), |
432 ConvertReceiverMode convert_mode = ConvertReceiverMode::kAny, | 432 ConvertReceiverMode convert_mode = ConvertReceiverMode::kAny, |
433 TailCallMode tail_call_mode = TailCallMode::kDisallow); | 433 TailCallMode tail_call_mode = TailCallMode::kDisallow); |
434 const Operator* CallRuntime(Runtime::FunctionId id); | 434 const Operator* CallRuntime(Runtime::FunctionId id); |
435 const Operator* CallRuntime(Runtime::FunctionId id, size_t arity); | 435 const Operator* CallRuntime(Runtime::FunctionId id, size_t arity); |
436 const Operator* CallRuntime(const Runtime::Function* function, size_t arity); | 436 const Operator* CallRuntime(const Runtime::Function* function, size_t arity); |
437 const Operator* CallConstruct(size_t arity, VectorSlotPair const& feedback); | 437 const Operator* CallConstruct(size_t arity, VectorSlotPair const& feedback); |
438 | 438 |
439 const Operator* ConvertReceiver(ConvertReceiverMode convert_mode); | 439 const Operator* ConvertReceiver(ConvertReceiverMode convert_mode); |
440 | 440 |
441 const Operator* LoadProperty(LanguageMode language_mode, | 441 const Operator* LoadProperty(VectorSlotPair const& feedback); |
442 VectorSlotPair const& feedback); | 442 const Operator* LoadNamed(Handle<Name> name, VectorSlotPair const& feedback); |
443 const Operator* LoadNamed(LanguageMode language_mode, Handle<Name> name, | |
444 VectorSlotPair const& feedback); | |
445 | 443 |
446 const Operator* StoreProperty(LanguageMode language_mode, | 444 const Operator* StoreProperty(LanguageMode language_mode, |
447 VectorSlotPair const& feedback); | 445 VectorSlotPair const& feedback); |
448 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, | 446 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, |
449 VectorSlotPair const& feedback); | 447 VectorSlotPair const& feedback); |
450 | 448 |
451 const Operator* DeleteProperty(LanguageMode language_mode); | 449 const Operator* DeleteProperty(LanguageMode language_mode); |
452 | 450 |
453 const Operator* HasProperty(); | 451 const Operator* HasProperty(); |
454 | 452 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 Zone* const zone_; | 487 Zone* const zone_; |
490 | 488 |
491 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 489 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
492 }; | 490 }; |
493 | 491 |
494 } // namespace compiler | 492 } // namespace compiler |
495 } // namespace internal | 493 } // namespace internal |
496 } // namespace v8 | 494 } // namespace v8 |
497 | 495 |
498 #endif // V8_COMPILER_JS_OPERATOR_H_ | 496 #endif // V8_COMPILER_JS_OPERATOR_H_ |
OLD | NEW |