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

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

Issue 2504553003: [es6] Perform the IsConstructor test in GetSuperConstructor. (Closed)
Patch Set: Fix assembler and add unittest Created 4 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
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/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/runtime/runtime.h" 10 #include "src/runtime/runtime.h"
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 VectorSlotPair const& feedback); 488 VectorSlotPair const& feedback);
489 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, 489 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name,
490 VectorSlotPair const& feedback); 490 VectorSlotPair const& feedback);
491 491
492 const Operator* StoreDataPropertyInLiteral(); 492 const Operator* StoreDataPropertyInLiteral();
493 493
494 const Operator* DeleteProperty(LanguageMode language_mode); 494 const Operator* DeleteProperty(LanguageMode language_mode);
495 495
496 const Operator* HasProperty(); 496 const Operator* HasProperty();
497 497
498 const Operator* GetSuperConstructor();
499
498 const Operator* LoadGlobal(const Handle<Name>& name, 500 const Operator* LoadGlobal(const Handle<Name>& name,
499 const VectorSlotPair& feedback, 501 const VectorSlotPair& feedback,
500 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); 502 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF);
501 const Operator* StoreGlobal(LanguageMode language_mode, 503 const Operator* StoreGlobal(LanguageMode language_mode,
502 const Handle<Name>& name, 504 const Handle<Name>& name,
503 const VectorSlotPair& feedback); 505 const VectorSlotPair& feedback);
504 506
505 const Operator* LoadContext(size_t depth, size_t index, bool immutable); 507 const Operator* LoadContext(size_t depth, size_t index, bool immutable);
506 const Operator* StoreContext(size_t depth, size_t index); 508 const Operator* StoreContext(size_t depth, size_t index);
507 509
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 Zone* const zone_; 544 Zone* const zone_;
543 545
544 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 546 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
545 }; 547 };
546 548
547 } // namespace compiler 549 } // namespace compiler
548 } // namespace internal 550 } // namespace internal
549 } // namespace v8 551 } // namespace v8
550 552
551 #endif // V8_COMPILER_JS_OPERATOR_H_ 553 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698