Changeset 251475 in webkit for trunk/Source/JavaScriptCore/interpreter/CallFrame.cpp
- Timestamp:
- Oct 22, 2019, 10:16:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrame.cpp
r251468 r251475 28 28 29 29 #include "CodeBlock.h" 30 #include "ExecutableAllocator.h" 30 31 #include "InlineCallFrame.h" 31 32 #include "Interpreter.h" 32 33 #include "JSCInlines.h" 33 34 #include "JSWebAssemblyInstance.h" 35 #include "LLIntPCRanges.h" 34 36 #include "VMEntryScope.h" 35 37 #include "WasmContextInlines.h" … … 356 358 } 357 359 360 bool isFromJSCode(void* returnAddress) 361 { 362 UNUSED_PARAM(returnAddress); 363 #if ENABLE(JIT) 364 if (isJITPC(returnAddress)) 365 return true; 366 #endif 367 #if ENABLE(C_LOOP) 368 return true; 369 #else 370 return LLInt::isLLIntPC(returnAddress); 371 #endif 372 } 373 358 374 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.