Changeset 176583 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Nov 29, 2014, 4:06:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r176479 r176583 2835 2835 unsigned identifierNumber = m_inlineStackTop->m_identifierRemap[currentInstruction[3].u.operand]; 2836 2836 2837 StringImpl* uid = m_graph.identifiers()[identifierNumber];2837 AtomicStringImpl* uid = m_graph.identifiers()[identifierNumber]; 2838 2838 GetByIdStatus getByIdStatus = GetByIdStatus::computeFor( 2839 2839 m_inlineStackTop->m_profiledBlock, m_dfgCodeBlock, … … 3209 3209 int scope = currentInstruction[2].u.operand; 3210 3210 unsigned identifierNumber = m_inlineStackTop->m_identifierRemap[currentInstruction[3].u.operand]; 3211 StringImpl* uid = m_graph.identifiers()[identifierNumber];3211 AtomicStringImpl* uid = m_graph.identifiers()[identifierNumber]; 3212 3212 ResolveType resolveType = ResolveModeAndType(currentInstruction[4].u.operand).type(); 3213 3213 … … 3298 3298 unsigned value = currentInstruction[3].u.operand; 3299 3299 ResolveType resolveType = ResolveModeAndType(currentInstruction[4].u.operand).type(); 3300 StringImpl* uid = m_graph.identifiers()[identifierNumber];3300 AtomicStringImpl* uid = m_graph.identifiers()[identifierNumber]; 3301 3301 3302 3302 Structure* structure = 0; … … 3710 3710 3711 3711 for (size_t i = 0; i < codeBlock->numberOfIdentifiers(); ++i) { 3712 StringImpl* rep = codeBlock->identifier(i).impl();3712 AtomicStringImpl* rep = codeBlock->identifier(i).impl(); 3713 3713 BorrowedIdentifierMap::AddResult result = byteCodeParser->m_identifierMap.add(rep, byteCodeParser->m_graph.identifiers().numberOfIdentifiers()); 3714 3714 if (result.isNewEntry)
Note:
See TracChangeset
for help on using the changeset viewer.