mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-19 17:31:44 +03:00
Regex: Code cleanup and refactor for Saves handling
This commit is contained in:
parent
dbb175841b
commit
5f54e0de0e
@ -81,39 +81,32 @@ struct ThreadedRegexVM
|
|||||||
{
|
{
|
||||||
int refcount;
|
int refcount;
|
||||||
Iterator pos[1];
|
Iterator pos[1];
|
||||||
|
|
||||||
static Saves* allocate(size_t count)
|
|
||||||
{
|
|
||||||
void* ptr = ::operator new (sizeof(Saves) + (count-1) * sizeof(Iterator));
|
|
||||||
Saves* saves = new (ptr) Saves{1, {}};
|
|
||||||
for (int i = 1; i < count; ++i)
|
|
||||||
new (&saves->pos[i]) Iterator{};
|
|
||||||
return saves;
|
|
||||||
}
|
|
||||||
|
|
||||||
static Saves* allocate(size_t count, const Iterator* pos)
|
|
||||||
{
|
|
||||||
void* ptr = ::operator new (sizeof(Saves) + (count-1) * sizeof(Iterator));
|
|
||||||
Saves* saves = new (ptr) Saves{1, pos[0]};
|
|
||||||
for (size_t i = 1; i < count; ++i)
|
|
||||||
new (&saves->pos[i]) Iterator{pos[i]};
|
|
||||||
return saves;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Saves* clone_saves(Iterator* pos)
|
template<bool copy>
|
||||||
|
Saves* new_saves(Iterator* pos)
|
||||||
{
|
{
|
||||||
|
kak_assert(not copy or pos != nullptr);
|
||||||
|
const auto count = m_program.save_count;
|
||||||
if (not m_free_saves.empty())
|
if (not m_free_saves.empty())
|
||||||
{
|
{
|
||||||
Saves* res = m_free_saves.back();
|
Saves* res = m_free_saves.back();
|
||||||
m_free_saves.pop_back();
|
m_free_saves.pop_back();
|
||||||
res->refcount = 1;
|
res->refcount = 1;
|
||||||
std::copy(pos, pos + m_program.save_count, res->pos);
|
if (copy)
|
||||||
|
std::copy(pos, pos + count, res->pos);
|
||||||
|
else
|
||||||
|
std::fill(res->pos, res->pos + count, Iterator{});
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_saves.push_back(Saves::allocate(m_program.save_count, pos));
|
void* ptr = ::operator new (sizeof(Saves) + (count-1) * sizeof(Iterator));
|
||||||
return m_saves.back();
|
Saves* saves = new (ptr) Saves{1, copy ? pos[0] : Iterator{}};
|
||||||
|
for (size_t i = 1; i < count; ++i)
|
||||||
|
new (&saves->pos[i]) Iterator{copy ? pos[i] : Iterator{}};
|
||||||
|
m_saves.push_back(saves);
|
||||||
|
return saves;
|
||||||
}
|
}
|
||||||
|
|
||||||
void release_saves(Saves* saves)
|
void release_saves(Saves* saves)
|
||||||
@ -181,7 +174,7 @@ struct ThreadedRegexVM
|
|||||||
if (thread.saves->refcount > 1)
|
if (thread.saves->refcount > 1)
|
||||||
{
|
{
|
||||||
--thread.saves->refcount;
|
--thread.saves->refcount;
|
||||||
thread.saves = clone_saves(thread.saves->pos);
|
thread.saves = new_saves<true>(thread.saves->pos);
|
||||||
}
|
}
|
||||||
const size_t index = *thread.inst++;
|
const size_t index = *thread.inst++;
|
||||||
thread.saves->pos[index] = m_pos.base();
|
thread.saves->pos[index] = m_pos.base();
|
||||||
@ -325,10 +318,8 @@ struct ThreadedRegexVM
|
|||||||
Vector<Thread> current_threads, next_threads;
|
Vector<Thread> current_threads, next_threads;
|
||||||
|
|
||||||
const bool no_saves = (m_flags & RegexExecFlags::NoSaves);
|
const bool no_saves = (m_flags & RegexExecFlags::NoSaves);
|
||||||
Vector<Iterator> empty_saves(m_program.save_count, Iterator{});
|
|
||||||
|
|
||||||
Utf8It start{m_begin, m_begin, m_end};
|
Utf8It start{m_begin, m_begin, m_end};
|
||||||
if (exec_from(start, no_saves ? nullptr : clone_saves(empty_saves.data()),
|
if (exec_from(start, no_saves ? nullptr : new_saves<false>(nullptr),
|
||||||
current_threads, next_threads))
|
current_threads, next_threads))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
@ -337,7 +328,7 @@ struct ThreadedRegexVM
|
|||||||
|
|
||||||
while (start != end)
|
while (start != end)
|
||||||
{
|
{
|
||||||
if (exec_from(++start, no_saves ? nullptr : clone_saves(empty_saves.data()),
|
if (exec_from(++start, no_saves ? nullptr : new_saves<false>(nullptr),
|
||||||
current_threads, next_threads))
|
current_threads, next_threads))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user