| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |