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

Unified Diff: third_party/WebKit/JavaScriptCore/VM/Machine.h

Issue 10670: Do another merge using nifty new merge script (CL for that coming soon). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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: third_party/WebKit/JavaScriptCore/VM/Machine.h
===================================================================
--- third_party/WebKit/JavaScriptCore/VM/Machine.h (revision 5296)
+++ third_party/WebKit/JavaScriptCore/VM/Machine.h (working copy)
@@ -284,8 +284,8 @@
private:
enum ExecutionFlag { Normal, InitializeAndReturn };
- NEVER_INLINE JSValue* callEval(CallFrame*, JSObject* thisObject, ScopeChainNode*, RegisterFile*, int argv, int argc, JSValue*& exceptionValue);
- JSValue* execute(EvalNode*, CallFrame*, JSObject* thisObject, int registerOffset, ScopeChainNode*, JSValue** exception);
+ NEVER_INLINE JSValue* callEval(CallFrame*, RegisterFile*, Register* argv, int argc, int registerOffset, JSValue*& exceptionValue);
+ JSValue* execute(EvalNode*, CallFrame*, JSObject* thisObject, int globalRegisterOffset, ScopeChainNode*, JSValue** exception);
NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine);
@@ -306,8 +306,8 @@
JSValue* privateExecute(ExecutionFlag, RegisterFile*, CallFrame*, JSValue** exception);
- void dumpCallFrame(const RegisterFile*, CallFrame*);
- void dumpRegisters(const RegisterFile*, CallFrame*);
+ void dumpCallFrame(CallFrame*);
+ void dumpRegisters(CallFrame*);
JSValue* checkTimeout(JSGlobalObject*);
void resetTimeoutCheck();
@@ -320,7 +320,7 @@
bool isCallOpcode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode(op_call_eval); }
#if ENABLE(CTI)
- static void throwStackOverflowPreviousFrame(CallFrame*, JSGlobalData*, void*& returnAddress);
+ static void throwStackOverflowPreviousFrame(CallFrame**, JSGlobalData*, void*& returnAddress);
void tryCTICacheGetByID(CallFrame*, CodeBlock*, void* returnAddress, JSValue* baseValue, const Identifier& propertyName, const PropertySlot&);
void tryCTICachePutByID(CallFrame*, CodeBlock*, void* returnAddress, JSValue* baseValue, const PutPropertySlot&);
« no previous file with comments | « third_party/WebKit/JavaScriptCore/VM/CodeBlock.cpp ('k') | third_party/WebKit/JavaScriptCore/VM/Machine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698