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

Unified Diff: src/ppc/macro-assembler-ppc.cc

Issue 1550923002: Remove uses of result size in TailCallRuntime and friends (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: change spaces 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ppc/macro-assembler-ppc.h ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ppc/macro-assembler-ppc.cc
diff --git a/src/ppc/macro-assembler-ppc.cc b/src/ppc/macro-assembler-ppc.cc
index be596d9b9057100a02bec5fdd52a6d46c0a5ab2c..b34072293aac8e8928d3aab93475953bfef73d3b 100644
--- a/src/ppc/macro-assembler-ppc.cc
+++ b/src/ppc/macro-assembler-ppc.cc
@@ -2313,8 +2313,7 @@ void MacroAssembler::CallExternalReference(const ExternalReference& ext,
void MacroAssembler::TailCallExternalReference(const ExternalReference& ext,
- int num_arguments,
- int result_size) {
+ int num_arguments) {
// TODO(1236192): Most runtime routines don't need the number of
// arguments passed in because it is constant. At some point we
// should remove this need and make the runtime routine entry code
@@ -2324,10 +2323,9 @@ void MacroAssembler::TailCallExternalReference(const ExternalReference& ext,
}
-void MacroAssembler::TailCallRuntime(Runtime::FunctionId fid, int num_arguments,
- int result_size) {
- TailCallExternalReference(ExternalReference(fid, isolate()), num_arguments,
- result_size);
+void MacroAssembler::TailCallRuntime(Runtime::FunctionId fid,
+ int num_arguments) {
+ TailCallExternalReference(ExternalReference(fid, isolate()), num_arguments);
}
« no previous file with comments | « src/ppc/macro-assembler-ppc.h ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698