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

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

Issue 1480003002: [runtime] Replace global object link with native context link in all contexts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add patch from Orion for interpreter cementation test. Disable obsolete/invalid tests. 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/runtime/runtime.h" 8 #include "src/runtime/runtime.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 const Operator* LoadGlobal(const Handle<Name>& name, 506 const Operator* LoadGlobal(const Handle<Name>& name,
507 const VectorSlotPair& feedback, 507 const VectorSlotPair& feedback,
508 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); 508 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF);
509 const Operator* StoreGlobal(LanguageMode language_mode, 509 const Operator* StoreGlobal(LanguageMode language_mode,
510 const Handle<Name>& name, 510 const Handle<Name>& name,
511 const VectorSlotPair& feedback); 511 const VectorSlotPair& feedback);
512 512
513 const Operator* LoadContext(size_t depth, size_t index, bool immutable); 513 const Operator* LoadContext(size_t depth, size_t index, bool immutable);
514 const Operator* StoreContext(size_t depth, size_t index); 514 const Operator* StoreContext(size_t depth, size_t index);
515 515
516 const Operator* LoadNativeContext();
517
518 const Operator* LoadDynamic(const Handle<String>& name, 516 const Operator* LoadDynamic(const Handle<String>& name,
519 TypeofMode typeof_mode); 517 TypeofMode typeof_mode);
520 518
521 const Operator* TypeOf(); 519 const Operator* TypeOf();
522 const Operator* InstanceOf(); 520 const Operator* InstanceOf();
523 521
524 const Operator* ForInDone(); 522 const Operator* ForInDone();
525 const Operator* ForInNext(); 523 const Operator* ForInNext();
526 const Operator* ForInPrepare(); 524 const Operator* ForInPrepare();
527 const Operator* ForInStep(); 525 const Operator* ForInStep();
(...skipping 17 matching lines...) Expand all
545 Zone* const zone_; 543 Zone* const zone_;
546 544
547 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 545 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
548 }; 546 };
549 547
550 } // namespace compiler 548 } // namespace compiler
551 } // namespace internal 549 } // namespace internal
552 } // namespace v8 550 } // namespace v8
553 551
554 #endif // V8_COMPILER_JS_OPERATOR_H_ 552 #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