[Lldb-commits] [PATCH] D57928: Fix x86 return pattern detection

2019-02-10 Thread Jason Molenda via Phabricator via lldb-commits
jasonmolenda accepted this revision. jasonmolenda added a comment. This revision is now accepted and ready to land. Thanks for fixing this and adding a testcase. I don't know why 0xc9 leave was here; it's handled over in x86AssemblyInspectionEngine::leave_pattern_p. Do you have commit access?

[Lldb-commits] [PATCH] D57956: [www] Add ASTImporter fuzzer project.

2019-02-10 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor added a comment. @JDevlieghere I think this is the LLVM homepage (not LLDB), so I believe there is no RST file to edit? CHANGES SINCE LAST ACTION https://reviews.llvm.org/D57956/new/ https://reviews.llvm.org/D57956 ___ lldb-commits mai

[Lldb-commits] [PATCH] D57928: Fix x86 return pattern detection

2019-02-10 Thread Todd Mortimer via Phabricator via lldb-commits
mortimer added a comment. Happy to help out. :-) I do not have commit access. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D57928/new/ https://reviews.llvm.org/D57928 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.l

[Lldb-commits] [PATCH] D57907: lldb: Fix compilation on OpenBSD

2019-02-10 Thread Todd Mortimer via Phabricator via lldb-commits
mortimer added a comment. I don't have commit access, so if there is ready to land, could someone commit it? Thanks! Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D57907/new/ https://reviews.llvm.org/D57907 ___ lld

[Lldb-commits] [lldb] r353642 - lldb: Fix compilation on OpenBSD

2019-02-10 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Feb 10 07:23:58 2019 New Revision: 353642 URL: http://llvm.org/viewvc/llvm-project?rev=353642&view=rev Log: lldb: Fix compilation on OpenBSD Summary: Update the OpenBSD Host.cpp for the new SetFile() function signature. Fixes compiling lldb on OpenBSD. Reviewers: kry

[Lldb-commits] [PATCH] D57907: lldb: Fix compilation on OpenBSD

2019-02-10 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL353642: lldb: Fix compilation on OpenBSD (authored by teemperor, committed by ). Herald added a project: LLVM. Herald added a subscriber: llvm-commits. Changed prior to commit: https://reviews.llvm.org/

[Lldb-commits] [PATCH] D57928: Fix x86 return pattern detection

2019-02-10 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rLLDB353643: Fix x86 return pattern detection (authored by teemperor, committed by ). Changed prior to commit: https://reviews.llvm.org/D57928?vs=186144&id=186152#toc Repository: rLLDB LLDB CHANGES SI

[Lldb-commits] [lldb] r353643 - Fix x86 return pattern detection

2019-02-10 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Feb 10 07:41:53 2019 New Revision: 353643 URL: http://llvm.org/viewvc/llvm-project?rev=353643&view=rev Log: Fix x86 return pattern detection Summary: Replace 0xc9 (LEAVE) with 0xcb (RETF) in ret_pattern_p(). Also put 0xc3 first, since it is the most common form and wi

[Lldb-commits] [PATCH] D57956: [www] Add ASTImporter fuzzer project.

2019-02-10 Thread Jonas Devlieghere via Phabricator via lldb-commits
JDevlieghere added a comment. In D57956#1392046 , @teemperor wrote: > @JDevlieghere I think this is the LLVM homepage (not LLDB), so I believe > there is no RST file to edit? Ah, my bad, I thought this was the lldb projects page. CHANGES SINCE LAST AC