Changeset 178143 in webkit for trunk/Source/JavaScriptCore/jit/JITOperations.h
- Timestamp:
- Jan 8, 2015, 4:10:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITOperations.h
r177146 r178143 72 72 Jsc: JSScope* 73 73 Jss: JSString* 74 L: JSLexicalEnvironment* 74 75 O: JSObject* 75 76 P: pointer (char*) … … 137 138 typedef JSCell* JIT_OPERATION (*C_JITOperation_EJssJss)(ExecState*, JSString*, JSString*); 138 139 typedef JSCell* JIT_OPERATION (*C_JITOperation_EJssJssJss)(ExecState*, JSString*, JSString*, JSString*); 140 typedef JSCell* JIT_OPERATION (*C_JITOperation_EL)(ExecState*, JSLexicalEnvironment*); 139 141 typedef JSCell* JIT_OPERATION (*C_JITOperation_EO)(ExecState*, JSObject*); 140 142 typedef JSCell* JIT_OPERATION (*C_JITOperation_EOZ)(ExecState*, JSObject*, int32_t); … … 295 297 EncodedJSValue JIT_OPERATION operationCheckHasInstance(ExecState*, EncodedJSValue, EncodedJSValue baseVal) WTF_INTERNAL; 296 298 JSCell* JIT_OPERATION operationCreateActivation(ExecState*, JSScope* currentScope, int32_t offset) WTF_INTERNAL; 297 JSCell* JIT_OPERATION operationCreateArguments(ExecState*) WTF_INTERNAL; 299 JSCell* JIT_OPERATION operationCreateArgumentsForDFG(ExecState*) WTF_INTERNAL; // FIXME: This is a temporary thunk for the DFG until we add the lexicalEnvironment operand to the DFG CreateArguments node. 300 JSCell* JIT_OPERATION operationCreateArguments(ExecState*, JSLexicalEnvironment*) WTF_INTERNAL; 298 301 JSCell* JIT_OPERATION operationCreateArgumentsDuringOSRExit(ExecState*) WTF_INTERNAL; 299 302 EncodedJSValue JIT_OPERATION operationGetArgumentsLength(ExecState*, int32_t) WTF_INTERNAL;
Note:
See TracChangeset
for help on using the changeset viewer.