[lldb-dev] [Bug 43918] New: Debugserver doesn't continue with specified signal in `vCont` packet

2019-11-06 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=43918 Bug ID: 43918 Summary: Debugserver doesn't continue with specified signal in `vCont` packet Product: lldb Version: unspecified Hardware: PC OS: Linux S

[lldb-dev] Slow expression evaluation (ASTImporter is too eager?)

2019-11-06 Thread Jaroslav Sevcik via lldb-dev
Hello, I noticed that the AST importer is very eager to import classes/structs that were already completed, even if they are not needed. This is best illustrated with an example. struct C0 { int x = 0; }; struct C1 { int x = 1; C0* c0 = 0; }; struct C2 { int x = 2; C1* c1 = 0; }; int main() {

Re: [lldb-dev] Slow expression evaluation (ASTImporter is too eager?)

2019-11-06 Thread Raphael “Teemperor” Isemann via lldb-dev
Can you post that patch on Phabricator with an '[ASTImporter]’ as a name prefix? This way the ASTImporter folks will see your patch (The ASTImporter is more of a Clang thing, so they might not read lldb-dev). Also it makes it easier to see/test your patch :) (And +Gabor just in case) > On Nov