Changeset 38330 in webkit for trunk/JavaScriptCore/VM/Machine.h
- Timestamp:
- Nov 12, 2008, 1:34:22 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.h
r38322 r38330 285 285 enum ExecutionFlag { Normal, InitializeAndReturn }; 286 286 287 NEVER_INLINE JSValue* callEval(CallFrame*, RegisterFile*, Register* argv, int argc, int registerOffset, JSValue*& exceptionValue);288 JSValue* execute(EvalNode*, CallFrame*, JSObject* thisObject, int globalRegisterOffset, ScopeChainNode*, JSValue** exception);287 NEVER_INLINE JSValue* callEval(CallFrame*, JSObject* thisObject, ScopeChainNode*, RegisterFile*, int argv, int argc, JSValue*& exceptionValue); 288 JSValue* execute(EvalNode*, CallFrame*, JSObject* thisObject, int registerOffset, ScopeChainNode*, JSValue** exception); 289 289 290 290 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine); … … 307 307 JSValue* privateExecute(ExecutionFlag, RegisterFile*, CallFrame*, JSValue** exception); 308 308 309 void dumpCallFrame( CallFrame*);310 void dumpRegisters( CallFrame*);309 void dumpCallFrame(const RegisterFile*, CallFrame*); 310 void dumpRegisters(const RegisterFile*, CallFrame*); 311 311 312 312 JSValue* checkTimeout(JSGlobalObject*); … … 321 321 322 322 #if ENABLE(CTI) 323 static void throwStackOverflowPreviousFrame(CallFrame* *, JSGlobalData*, void*& returnAddress);323 static void throwStackOverflowPreviousFrame(CallFrame*, JSGlobalData*, void*& returnAddress); 324 324 325 325 void tryCTICacheGetByID(CallFrame*, CodeBlock*, void* returnAddress, JSValue* baseValue, const Identifier& propertyName, const PropertySlot&);
Note:
See TracChangeset
for help on using the changeset viewer.