Changeset 256003 in webkit for trunk/Source/JavaScriptCore/b3/B3StackmapGenerationParams.cpp
- Timestamp:
- Feb 6, 2020, 7:12:32 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/b3/B3StackmapGenerationParams.cpp
r250559 r256003 60 60 } 61 61 62 Vector<Box< CCallHelpers::Label>> StackmapGenerationParams::successorLabels() const62 Vector<Box<MacroAssembler::Label>> StackmapGenerationParams::successorLabels() const 63 63 { 64 64 RELEASE_ASSERT(m_context.indexInBlock == m_context.currentBlock->size() - 1); 65 65 RELEASE_ASSERT(m_value->effects().terminal); 66 66 67 Vector<Box< CCallHelpers::Label>> result(m_context.currentBlock->numSuccessors());67 Vector<Box<MacroAssembler::Label>> result(m_context.currentBlock->numSuccessors()); 68 68 for (unsigned i = m_context.currentBlock->numSuccessors(); i--;) 69 69 result[i] = m_context.blockLabels[m_context.currentBlock->successorBlock(i)];
Note:
See TracChangeset
for help on using the changeset viewer.