Changeset 59781 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- May 19, 2010, 1:35:47 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r59777 r59781 90 90 } 91 91 92 #if USE(INTERPRETER)92 #if !ENABLE(JIT) 93 93 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) 94 94 { … … 305 305 } 306 306 307 #endif // USE(INTERPRETER)307 #endif // !ENABLE(JIT) 308 308 309 309 ALWAYS_INLINE CallFrame* Interpreter::slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterFile* registerFile, CallFrame* callFrame, size_t registerOffset, int argc) … … 344 344 } 345 345 346 #if USE(INTERPRETER)346 #if !ENABLE(JIT) 347 347 static NEVER_INLINE bool isInvalidParamForIn(CallFrame* callFrame, CodeBlock* codeBlock, const Instruction* vPC, JSValue value, JSValue& exceptionData) 348 348 { … … 1023 1023 } 1024 1024 1025 #if USE(INTERPRETER)1025 #if !ENABLE(JIT) 1026 1026 NEVER_INLINE ScopeChainNode* Interpreter::createExceptionScope(CallFrame* callFrame, const Instruction* vPC) 1027 1027 { … … 1259 1259 } 1260 1260 1261 #endif // USE(INTERPRETER)1261 #endif // !ENABLE(JIT) 1262 1262 1263 1263 JSValue Interpreter::privateExecute(ExecutionFlag flag, RegisterFile* registerFile, CallFrame* callFrame, JSValue* exception) … … 1280 1280 ASSERT_NOT_REACHED(); 1281 1281 #endif 1282 #if ! USE(INTERPRETER)1282 #if !!ENABLE(JIT) 1283 1283 UNUSED_PARAM(registerFile); 1284 1284 UNUSED_PARAM(callFrame); … … 4405 4405 } // iterator loop ends 4406 4406 #endif 4407 #endif // USE(INTERPRETER)4408 4407 #undef NEXT_INSTRUCTION 4409 4408 #undef DEFINE_OPCODE 4410 4409 #undef CHECK_FOR_EXCEPTION 4411 4410 #undef CHECK_FOR_TIMEOUT 4411 #endif // !ENABLE(JIT) 4412 4412 } 4413 4413
Note:
See TracChangeset
for help on using the changeset viewer.