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

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

Issue 1300813005: [Interpreter] Add implementations of arithmetic binary op bytecodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@mstar_v8h
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.h
diff --git a/src/compiler/raw-machine-assembler.h b/src/compiler/raw-machine-assembler.h
index b76a2589e03ceeda22ae9da2b986b256754938be..136e03a78fe46d091b7969552e9f75a1040cd904 100644
--- a/src/compiler/raw-machine-assembler.h
+++ b/src/compiler/raw-machine-assembler.h
@@ -481,13 +481,15 @@ class RawMachineAssembler {
// Call a given call descriptor and the given arguments.
Node* CallN(CallDescriptor* desc, Node* function, Node** args);
-
// Call through CallFunctionStub with lazy deopt and frame-state.
Node* CallFunctionStub0(Node* function, Node* receiver, Node* context,
Node* frame_state, CallFunctionFlags flags);
- // Call to a JS function with zero arguments.
- Node* CallJS0(Node* function, Node* receiver, Node* context,
- Node* frame_state);
+ // Call to a JS function.
+ Node* CallJS(Node* function, Node* receiver, Node* context, Node** args,
+ int arg_count);
+ // Call to a JS function with zero arguments and a frame state.
+ Node* CallJS0WithFrameState(Node* function, Node* receiver, Node* context,
+ Node* frame_state);
// Call to a runtime function with zero arguments.
Node* CallRuntime1(Runtime::FunctionId function, Node* arg0, Node* context,
Node* frame_state);

Powered by Google App Engine
This is Rietveld 408576698