Changeset 162279 in webkit


Ignore:
Timestamp:
Jan 18, 2014 3:20:12 PM (10 years ago)
Author:
akling@apple.com
Message:

Remove unused CodeBlock::m_additionalIdentifiers member.
<https://webkit.org/b/127237>

Reviewed by Anders Carlsson.

  • bytecode/CodeBlock.h:
  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::CodeBlock):
(JSC::CodeBlock::shrinkToFit):

Remove m_additionalIdentifiers, nothing uses it.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r162278 r162279  
     12014-01-18  Andreas Kling  <akling@apple.com>
     2
     3        Remove unused CodeBlock::m_additionalIdentifiers member.
     4        <https://webkit.org/b/127237>
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * bytecode/CodeBlock.h:
     9        * bytecode/CodeBlock.cpp:
     10        (JSC::CodeBlock::CodeBlock):
     11        (JSC::CodeBlock::shrinkToFit):
     12
     13            Remove m_additionalIdentifiers, nothing uses it.
     14
    1152014-01-18  Andreas Kling  <akling@apple.com>
    216
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r162278 r162279  
    14811481    , m_firstLineColumnOffset(other.m_firstLineColumnOffset)
    14821482    , m_codeType(other.m_codeType)
    1483     , m_additionalIdentifiers(other.m_additionalIdentifiers)
    14841483    , m_constantRegisters(other.m_constantRegisters)
    14851484    , m_functionDecls(other.m_functionDecls)
     
    25922591   
    25932592    if (shrinkMode == EarlyShrink) {
    2594         m_additionalIdentifiers.shrinkToFit();
    25952593        m_functionDecls.shrinkToFit();
    25962594        m_functionExprs.shrinkToFit();
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.h

    r162278 r162279  
    10541054
    10551055    // Constant Pool
    1056     Vector<Identifier> m_additionalIdentifiers;
    10571056    COMPILE_ASSERT(sizeof(Register) == sizeof(WriteBarrier<Unknown>), Register_must_be_same_size_as_WriteBarrier_Unknown);
    10581057    // TODO: This could just be a pointer to m_unlinkedCodeBlock's data, but the DFG mutates
Note: See TracChangeset for help on using the changeset viewer.