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

Side by Side Diff: src/crankshaft/hydrogen.h

Issue 1469833005: [runtime] Pass closure to %CreateArrayLiteral and %CreateObjectLiteral. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/ast-graph-builder.cc ('k') | src/crankshaft/hydrogen.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_CRANKSHAFT_HYDROGEN_H_ 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_
6 #define V8_CRANKSHAFT_HYDROGEN_H_ 6 #define V8_CRANKSHAFT_HYDROGEN_H_
7 7
8 #include "src/accessors.h" 8 #include "src/accessors.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/ast.h" 10 #include "src/ast.h"
(...skipping 2812 matching lines...) Expand 10 before | Expand all | Expand 10 after
2823 BailoutId return_id, bool is_uninitialized = false); 2823 BailoutId return_id, bool is_uninitialized = false);
2824 2824
2825 HInstruction* BuildLoadNamedField(PropertyAccessInfo* info, 2825 HInstruction* BuildLoadNamedField(PropertyAccessInfo* info,
2826 HValue* checked_object); 2826 HValue* checked_object);
2827 HInstruction* BuildStoreNamedField(PropertyAccessInfo* info, 2827 HInstruction* BuildStoreNamedField(PropertyAccessInfo* info,
2828 HValue* checked_object, 2828 HValue* checked_object,
2829 HValue* value); 2829 HValue* value);
2830 2830
2831 HValue* BuildContextChainWalk(Variable* var); 2831 HValue* BuildContextChainWalk(Variable* var);
2832 2832
2833 HValue* AddThisFunction();
2833 HInstruction* BuildThisFunction(); 2834 HInstruction* BuildThisFunction();
2834 2835
2835 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object, 2836 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object,
2836 AllocationSiteUsageContext* site_context); 2837 AllocationSiteUsageContext* site_context);
2837 2838
2838 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, 2839 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object,
2839 HInstruction* object); 2840 HInstruction* object);
2840 2841
2841 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, 2842 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object,
2842 HInstruction* object, 2843 HInstruction* object,
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
3064 3065
3065 private: 3066 private:
3066 HGraphBuilder* builder_; 3067 HGraphBuilder* builder_;
3067 }; 3068 };
3068 3069
3069 3070
3070 } // namespace internal 3071 } // namespace internal
3071 } // namespace v8 3072 } // namespace v8
3072 3073
3073 #endif // V8_CRANKSHAFT_HYDROGEN_H_ 3074 #endif // V8_CRANKSHAFT_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698