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

Unified Diff: src/compiler/linkage-impl.h

Issue 1269913002: [turbofan] Simplifying handling of callee-cleanup stack area. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/linkage.h ('k') | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/linkage-impl.h
diff --git a/src/compiler/linkage-impl.h b/src/compiler/linkage-impl.h
index 7118e24b99229c878fe6605b672c11624131c175..60d6424a238a4884fa943606440922dbbc5aa751 100644
--- a/src/compiler/linkage-impl.h
+++ b/src/compiler/linkage-impl.h
@@ -67,7 +67,7 @@ class LinkageHelper {
target_loc, // target location
types.Build(), // machine_sig
locations.Build(), // location_sig
- js_parameter_count, // js_parameter_count
+ js_parameter_count, // stack_parameter_count
Operator::kNoProperties, // properties
kNoCalleeSaved, // callee-saved
kNoCalleeSaved, // callee-saved fp
@@ -129,7 +129,7 @@ class LinkageHelper {
target_loc, // target location
types.Build(), // machine_sig
locations.Build(), // location_sig
- js_parameter_count, // js_parameter_count
+ js_parameter_count, // stack_parameter_count
properties, // properties
kNoCalleeSaved, // callee-saved
kNoCalleeSaved, // callee-saved fp
@@ -189,7 +189,7 @@ class LinkageHelper {
target_loc, // target location
types.Build(), // machine_sig
locations.Build(), // location_sig
- js_parameter_count, // js_parameter_count
+ stack_parameter_count, // stack_parameter_count
properties, // properties
kNoCalleeSaved, // callee-saved registers
kNoCalleeSaved, // callee-saved fp
@@ -221,7 +221,7 @@ class LinkageHelper {
target_loc, // target location
types.Build(), // machine_sig
locations.Build(), // location_sig
- 0, // js_parameter_count
+ 0, // stack_parameter_count
Operator::kNoProperties, // properties
kNoCalleeSaved, // callee-saved registers
kNoCalleeSaved, // callee-saved fp regs
« no previous file with comments | « src/compiler/linkage.h ('k') | src/compiler/mips/code-generator-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698