Ignore:
Timestamp:
Dec 9, 2013, 5:28:05 PM (11 years ago)
Author:
[email protected]
Message:

Replace use of WTF::FixedArray with std::array
https://bugs.webkit.org/show_bug.cgi?id=125475

Reviewed by Anders Carlsson.

../JavaScriptCore:

  • bytecode/CodeBlockHash.cpp:

(JSC::CodeBlockHash::dump):

  • bytecode/Opcode.cpp:

(JSC::OpcodeStats::~OpcodeStats):

  • dfg/DFGCSEPhase.cpp:
  • ftl/FTLAbstractHeap.h:
  • heap/MarkedSpace.h:
  • parser/ParserArena.h:
  • runtime/CodeCache.h:
  • runtime/DateInstanceCache.h:
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::reset):

  • runtime/JSGlobalObject.h:
  • runtime/JSString.h:
  • runtime/LiteralParser.h:
  • runtime/NumericStrings.h:
  • runtime/RegExpCache.h:
  • runtime/SmallStrings.h:

../WebCore:

  • crypto/parameters/CryptoAlgorithmAesCbcParams.h:
  • platform/graphics/GlyphMetricsMap.h:

../WTF:

  • wtf/AVLTree.h:
  • wtf/Bitmap.h:
  • wtf/SixCharacterHash.cpp:

(WTF::integerToSixCharacterHashString):

  • wtf/SixCharacterHash.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGCSEPhase.cpp

    r160328 r160344  
    3333#include "DFGPhase.h"
    3434#include "JSCellInlines.h"
     35#include <array>
    3536#include <wtf/FastBitVector.h>
    3637
     
    14111412    Node* m_currentNode;
    14121413    unsigned m_indexInBlock;
    1413     FixedArray<unsigned, LastNodeType> m_lastSeen;
     1414    std::array<unsigned, LastNodeType> m_lastSeen;
    14141415    bool m_changed; // Only tracks changes that have a substantive effect on other optimizations.
    14151416};
Note: See TracChangeset for help on using the changeset viewer.