Changeset 230550 in webkit
- Timestamp:
- Apr 11, 2018, 3:46:55 PM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r230549 r230550 1 2018-04-11 Mark Lam <mark.lam@apple.com> 2 3 [Build fix] Replace CompactJITCodeMap with JITCodeMap. 4 https://bugs.webkit.org/show_bug.cgi?id=184512 5 <rdar://problem/35391728> 6 7 Not reviewed. 8 9 * bytecode/CodeBlock.h: 10 * jit/JITCodeMap.h: 11 1 12 2018-04-11 Mark Lam <mark.lam@apple.com> 2 13 -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r230549 r230550 302 302 void linkIncomingCall(ExecState* callerFrame, LLIntCallLinkInfo*); 303 303 304 #if ENABLE(JIT) 304 305 void setJITCodeMap(JITCodeMap&& jitCodeMap) 305 306 { … … 310 311 return m_jitCodeMap; 311 312 } 312 313 #endif 314 313 315 typedef JSC::Instruction Instruction; 314 316 typedef PoisonedRefCountedArray<CodeBlockPoison, Instruction>& UnpackedInstructions; … … 987 989 SentinelLinkedList<PolymorphicCallNode, BasicRawSentinelNode<PolymorphicCallNode>> m_incomingPolymorphicCalls; 988 990 std::unique_ptr<PCToCodeOriginMap> m_pcToCodeOriginMap; 989 #endif990 991 JITCodeMap m_jitCodeMap; 992 #endif 991 993 #if ENABLE(DFG_JIT) 992 994 // This is relevant to non-DFG code blocks that serve as the profiled code block -
trunk/Source/JavaScriptCore/jit/JITCodeMap.h
r230549 r230550 25 25 26 26 #pragma once 27 28 #if ENABLE(JIT) 27 29 28 30 #include "CodeLocation.h" … … 77 79 78 80 } // namespace JSC 81 82 #endif // ENABLE(JIT)
Note:
See TracChangeset
for help on using the changeset viewer.