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

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

Issue 1488303008: Unify InvokeBuiltin implementations across architectures. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_issue-cr-565046
Patch Set: 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/mips64/macro-assembler-mips64.cc ('k') | src/x64/macro-assembler-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 b5288801edbaccefac4d7679939429afc2b40906..904072897cfeda499460f4631ae603c32e7fa1e9 100644
--- a/src/ppc/macro-assembler-ppc.cc
+++ b/src/ppc/macro-assembler-ppc.cc
@@ -2342,19 +2342,10 @@ void MacroAssembler::InvokeBuiltin(int native_context_index, InvokeFlag flag,
// You can't call a builtin without a valid frame.
DCHECK(flag == JUMP_FUNCTION || has_frame());
- // Always initialize new target.
- LoadRoot(r6, Heap::kUndefinedValueRootIndex);
-
+ // Fake a parameter count to avoid emitting code to do the check.
+ ParameterCount expected(0);
LoadNativeContextSlot(native_context_index, r4);
- LoadP(ip, FieldMemOperand(r4, JSFunction::kCodeEntryOffset));
- if (flag == CALL_FUNCTION) {
- call_wrapper.BeforeCall(CallSize(ip));
- CallJSEntry(ip);
- call_wrapper.AfterCall();
- } else {
- DCHECK(flag == JUMP_FUNCTION);
- JumpToJSEntry(ip);
- }
+ InvokeFunctionCode(r4, no_reg, expected, expected, flag, call_wrapper);
}
« no previous file with comments | « src/mips64/macro-assembler-mips64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698