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

Side by Side Diff: src/full-codegen.h

Issue 880963002: Add missing FrameState to JSToName nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ported to other architectures. Created 5 years, 11 months 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/operator-properties.cc ('k') | src/full-codegen.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_FULL_CODEGEN_H_ 5 #ifndef V8_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 // Load a value from a keyed property. 573 // Load a value from a keyed property.
574 // The receiver and the key is left on the stack by the IC. 574 // The receiver and the key is left on the stack by the IC.
575 void EmitKeyedPropertyLoad(Property* expr); 575 void EmitKeyedPropertyLoad(Property* expr);
576 576
577 // Adds the properties to the class (function) object and to its prototype. 577 // Adds the properties to the class (function) object and to its prototype.
578 // Expects the class (function) in the accumulator. The class (function) is 578 // Expects the class (function) in the accumulator. The class (function) is
579 // in the accumulator after installing all the properties. 579 // in the accumulator after installing all the properties.
580 void EmitClassDefineProperties(ClassLiteral* lit); 580 void EmitClassDefineProperties(ClassLiteral* lit);
581 581
582 // Pushes the property key as a Name on the stack. 582 // Pushes the property key as a Name on the stack.
583 void EmitPropertyKey(ObjectLiteralProperty* property); 583 void EmitPropertyKey(ObjectLiteralProperty* property, BailoutId bailout_id);
584 584
585 // Apply the compound assignment operator. Expects the left operand on top 585 // Apply the compound assignment operator. Expects the left operand on top
586 // of the stack and the right one in the accumulator. 586 // of the stack and the right one in the accumulator.
587 void EmitBinaryOp(BinaryOperation* expr, 587 void EmitBinaryOp(BinaryOperation* expr,
588 Token::Value op, 588 Token::Value op,
589 OverwriteMode mode); 589 OverwriteMode mode);
590 590
591 // Helper functions for generating inlined smi code for certain 591 // Helper functions for generating inlined smi code for certain
592 // binary operations. 592 // binary operations.
593 void EmitInlineSmiBinaryOp(BinaryOperation* expr, 593 void EmitInlineSmiBinaryOp(BinaryOperation* expr,
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 1050
1051 Address start_; 1051 Address start_;
1052 Address instruction_start_; 1052 Address instruction_start_;
1053 uint32_t length_; 1053 uint32_t length_;
1054 }; 1054 };
1055 1055
1056 1056
1057 } } // namespace v8::internal 1057 } } // namespace v8::internal
1058 1058
1059 #endif // V8_FULL_CODEGEN_H_ 1059 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/compiler/operator-properties.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698