Re: [Lldb-commits] [PATCH] Use SmallPtrSet in ClusterManager

2014-05-16 Thread Scott Knight
This did not ever get reviewed. I wasn't sure about the process after submitting the patch to phabricator. I have not run tests yet because I wasn't clear on that process either. The lldb website mentions using make to run tests but that's under the building on linux/freebsd section. Since I'm

[Lldb-commits] [lldb] r208982 - Do not require the triple to be hard-coded

2014-05-16 Thread Deepak Panickal
Author: panickal Date: Fri May 16 08:26:45 2014 New Revision: 208982 URL: http://llvm.org/viewvc/llvm-project?rev=208982view=rev Log: Do not require the triple to be hard-coded Modified: lldb/trunk/tools/lldb-mi/MICmdCmdFile.cpp lldb/trunk/tools/lldb-mi/MICmnConfig.h

Re: [Lldb-commits] [PATCH] Use SmallPtrSet in ClusterManager

2014-05-16 Thread Scott Knight
I did go ahead and run dotest.py this morning both before and after applying the patch and it seems to have the same 10 failures before and after like you mentioned. Another set of eyes checking the test results would be great though. http://reviews.llvm.org/D3616

Re: [Lldb-commits] [PATCH] Use SmallPtrSet in ClusterManager

2014-05-16 Thread Scott Knight
I do not have commit access so if someone who does could commit that would be great. Thanks, Scott Knight On May 16, 2014 3:26 PM, jing...@apple.com wrote: I got the same result. This patch is much more likely to cause crashes than failures if it was wrong, and I didn't see that either. And

[Lldb-commits] [lldb] r209010 - Fix from: Scott Knight(knigh...@gmail.com):

2014-05-16 Thread Jim Ingham
Author: jingham Date: Fri May 16 14:46:56 2014 New Revision: 209010 URL: http://llvm.org/viewvc/llvm-project?rev=209010view=rev Log: Fix from: Scott Knight(knigh...@gmail.com): Use a map rather than a vector to store the objects managed by the shared cluster since mostly want this for random

[Lldb-commits] [lldb] r209016 - Refactored RegisterInfoInterface into its own header.

2014-05-16 Thread Todd Fiala
Author: tfiala Date: Fri May 16 15:43:19 2014 New Revision: 209016 URL: http://llvm.org/viewvc/llvm-project?rev=209016view=rev Log: Refactored RegisterInfoInterface into its own header. Also moved it into the lldb_private namespace. The llgs branch is making use of this interface and its use is

[Lldb-commits] [lldb] r209051 - Update how we create our MCSymbolizer to keep working correctly

2014-05-16 Thread Jason Molenda
Author: jmolenda Date: Fri May 16 19:27:44 2014 New Revision: 209051 URL: http://llvm.org/viewvc/llvm-project?rev=209051view=rev Log: Update how we create our MCSymbolizer to keep working correctly on arm64 binaries after the llvm r206063 changes. Patch written by Jim Ingham and Lang Hames.