[Lldb-commits] [PATCH] D32820: Parallelize demangling
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri May 5 04:09:00 PDT 2017
labath added inline comments.
================
Comment at: source/Symbol/Symtab.cpp:257
- // The "const char *" in "class_contexts" must come from a
- // ConstString::GetCString()
- std::set<const char *> class_contexts;
- UniqueCStringMap<uint32_t> mangled_name_to_index;
- std::vector<const char *> symbol_contexts(num_symbols, nullptr);
-
- for (entry.value = 0; entry.value < num_symbols; ++entry.value) {
- const Symbol *symbol = &m_symbols[entry.value];
+ auto symbol_fn = [&states, this](size_t value) {
+ const Symbol *symbol = &m_symbols[value];
----------------
The function looks big enough to deserve a name. (== Please move the lambda out of line)
Repository:
rL LLVM
https://reviews.llvm.org/D32820
More information about the lldb-commits
mailing list