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

Side by Side Diff: src/hydrogen.h

Issue 1330033002: [calls] Consistent call protocol for calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add arm64, mips and mips64 ports. Created 5 years, 3 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/arm64/macro-assembler-arm64.cc ('k') | src/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_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
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
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_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698