Changeset 230550 in webkit


Ignore:
Timestamp:
Apr 11, 2018 3:46:55 PM (6 years ago)
Author:
mark.lam@apple.com
Message:

[Build fix] Replace CompactJITCodeMap with JITCodeMap.
https://bugs.webkit.org/show_bug.cgi?id=184512
<rdar://problem/35391728>

Not reviewed.

  • bytecode/CodeBlock.h:
  • jit/JITCodeMap.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r230549 r230550  
     12018-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
    1122018-04-11  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.h

    r230549 r230550  
    302302    void linkIncomingCall(ExecState* callerFrame, LLIntCallLinkInfo*);
    303303
     304#if ENABLE(JIT)
    304305    void setJITCodeMap(JITCodeMap&& jitCodeMap)
    305306    {
     
    310311        return m_jitCodeMap;
    311312    }
    312    
     313#endif
     314
    313315    typedef JSC::Instruction Instruction;
    314316    typedef PoisonedRefCountedArray<CodeBlockPoison, Instruction>& UnpackedInstructions;
     
    987989    SentinelLinkedList<PolymorphicCallNode, BasicRawSentinelNode<PolymorphicCallNode>> m_incomingPolymorphicCalls;
    988990    std::unique_ptr<PCToCodeOriginMap> m_pcToCodeOriginMap;
    989 #endif
    990991    JITCodeMap m_jitCodeMap;
     992#endif
    991993#if ENABLE(DFG_JIT)
    992994    // This is relevant to non-DFG code blocks that serve as the profiled code block
  • trunk/Source/JavaScriptCore/jit/JITCodeMap.h

    r230549 r230550  
    2525
    2626#pragma once
     27
     28#if ENABLE(JIT)
    2729
    2830#include "CodeLocation.h"
     
    7779
    7880} // namespace JSC
     81
     82#endif // ENABLE(JIT)
Note: See TracChangeset for help on using the changeset viewer.