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_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
6 #define V8_HYDROGEN_H_ | 6 #define V8_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 2847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2858 HValue* object_elements); | 2858 HValue* object_elements); |
2859 | 2859 |
2860 void BuildEmitFixedArray(Handle<FixedArrayBase> elements, | 2860 void BuildEmitFixedArray(Handle<FixedArrayBase> elements, |
2861 ElementsKind kind, | 2861 ElementsKind kind, |
2862 HValue* object_elements, | 2862 HValue* object_elements, |
2863 AllocationSiteUsageContext* site_context); | 2863 AllocationSiteUsageContext* site_context); |
2864 | 2864 |
2865 void AddCheckPrototypeMaps(Handle<JSObject> holder, | 2865 void AddCheckPrototypeMaps(Handle<JSObject> holder, |
2866 Handle<Map> receiver_map); | 2866 Handle<Map> receiver_map); |
2867 | 2867 |
2868 HInstruction* NewPlainFunctionCall(HValue* fun, | 2868 HInstruction* NewPlainFunctionCall(HValue* fun, int argument_count); |
2869 int argument_count, | |
2870 bool pass_argument_count); | |
2871 | 2869 |
2872 HInstruction* NewArgumentAdaptorCall(HValue* fun, HValue* context, | 2870 HInstruction* NewArgumentAdaptorCall(HValue* fun, HValue* context, |
2873 int argument_count, | 2871 int argument_count, |
2874 HValue* expected_param_count); | 2872 HValue* expected_param_count); |
2875 | 2873 |
2876 HInstruction* BuildCallConstantFunction(Handle<JSFunction> target, | 2874 HInstruction* BuildCallConstantFunction(Handle<JSFunction> target, |
2877 int argument_count); | 2875 int argument_count); |
2878 | 2876 |
2879 bool CanBeFunctionApplyArguments(Call* expr); | 2877 bool CanBeFunctionApplyArguments(Call* expr); |
2880 | 2878 |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3070 } | 3068 } |
3071 | 3069 |
3072 private: | 3070 private: |
3073 HGraphBuilder* builder_; | 3071 HGraphBuilder* builder_; |
3074 }; | 3072 }; |
3075 | 3073 |
3076 | 3074 |
3077 } } // namespace v8::internal | 3075 } } // namespace v8::internal |
3078 | 3076 |
3079 #endif // V8_HYDROGEN_H_ | 3077 #endif // V8_HYDROGEN_H_ |
OLD | NEW |