Changeset 214069 in webkit for trunk/Source/JavaScriptCore/dfg/DFGJITCode.cpp
- Timestamp:
- Mar 16, 2017, 2:19:23 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGJITCode.cpp
r208985 r214069 1 1 /* 2 * Copyright (C) 2013 , 2014Apple Inc. All rights reserved.2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 30 30 31 31 #include "CodeBlock.h" 32 #include "FTLForOSREntryJITCode.h" 32 33 #include "JSCInlines.h" 33 34 #include "TrackedReferences.h" … … 202 203 RELEASE_ASSERT_NOT_REACHED(); 203 204 } 205 206 void JITCode::setOSREntryBlock(VM& vm, const JSCell* owner, CodeBlock* osrEntryBlock) 207 { 208 if (Options::verboseOSR()) { 209 dataLog(RawPointer(this), ": Setting OSR entry block to ", RawPointer(osrEntryBlock), "\n"); 210 dataLog("OSR entries will go to ", osrEntryBlock->jitCode()->ftlForOSREntry()->addressForCall(ArityCheckNotRequired), "\n"); 211 } 212 m_osrEntryBlock.set(vm, owner, osrEntryBlock); 213 } 204 214 #endif // ENABLE(FTL_JIT) 205 215
Note:
See TracChangeset
for help on using the changeset viewer.