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

Unified Diff: src/compiler/raw-machine-assembler.cc

Issue 1294133004: [Interpreter] Pass context to interpreter bytecode handlers and add LoadConstextSlot (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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
Index: src/compiler/raw-machine-assembler.cc
diff --git a/src/compiler/raw-machine-assembler.cc b/src/compiler/raw-machine-assembler.cc
index 8013f422f6b9ba42bd825b068367f3bc96730e44..ed5dd9dd1298057c8cb276e8ed67d0a400f382c0 100644
--- a/src/compiler/raw-machine-assembler.cc
+++ b/src/compiler/raw-machine-assembler.cc
@@ -234,10 +234,10 @@ Node* RawMachineAssembler::CallCFunction8(
Node* RawMachineAssembler::TailCallInterpreterDispatch(
const CallDescriptor* call_descriptor, Node* target, Node* arg1, Node* arg2,
- Node* arg3, Node* arg4, Node* arg5) {
- Node* tail_call =
- graph()->NewNode(common()->TailCall(call_descriptor), target, arg1, arg2,
- arg3, arg4, arg5, graph()->start(), graph()->start());
+ Node* arg3, Node* arg4, Node* arg5, Node* arg6) {
+ Node* tail_call = graph()->NewNode(common()->TailCall(call_descriptor),
+ target, arg1, arg2, arg3, arg4, arg5, arg6,
+ graph()->start(), graph()->start());
schedule()->AddTailCall(CurrentBlock(), tail_call);
return tail_call;
}

Powered by Google App Engine
This is Rietveld 408576698