[Lldb-commits] [PATCH] remove WatchValue and WatchLocation from SBFrame

2014-09-18 Thread Carlo Kok
It looks like there are two methods in SBFrame.h: WatchValue and WatchLocation that have no implementation in SBFrame.cpp. This match removes them from the headers. -- Carlo Kok RemObjects Software Remove_watch_methods_from_SBFrame.h.patch Description: Binary data

Re: [Lldb-commits] [PATCH] find global by regex in SBTarget

2014-09-19 Thread Carlo Kok
d a method in ModuleList as there's nothing ModuleList that does regex, but the underlying per-module apis do support it. -- Carlo Kok RemObjects Software find-globals-by-regex2.patch Description: Binary data ___ lldb-commits ma

Re: [Lldb-commits] [PATCH] find global by regex in SBTarget

2014-09-19 Thread Carlo Kok
ble in Python. Ah yes, forgot to include that file in the patch. I couldn't file a .i for the enumerations though, I'm not familiar enough with swig to know for sure, but that might get pulled in automatically? -- Carlo Kok RemObjects Software find-glo

[Lldb-commits] [lldb] r218140 - Adds two new functions to SBTarget FindGlobalVariables and FindGlobalFunctions that lets you search by name, by regular expression and by starts with.

2014-09-19 Thread Carlo Kok
Author: carlokok Date: Fri Sep 19 14:38:19 2014 New Revision: 218140 URL: http://llvm.org/viewvc/llvm-project?rev=218140&view=rev Log: Adds two new functions to SBTarget FindGlobalVariables and FindGlobalFunctions that lets you search by name, by regular expression and by starts with. Modified:

[Lldb-commits] [lldb] r218147 - Fix for 218140 for SBTarget.i, the added functions were in the wrong class definition

2014-09-19 Thread Carlo Kok
Author: carlokok Date: Fri Sep 19 15:12:24 2014 New Revision: 218147 URL: http://llvm.org/viewvc/llvm-project?rev=218147&view=rev Log: Fix for 218140 for SBTarget.i, the added functions were in the wrong class definition Modified: lldb/trunk/scripts/Python/interface/SBTarget.i Modified: lld

Re: [Lldb-commits] MinGW compilation support

2013-08-13 Thread Carlo Kok
Op 8-8-2013 17:03, Malea, Daniel schreef: Hi Virgile, I looked at the Cmake changes and they seem OK. There don't appear to be any regressions on Linux with your patch applied.. Cool. Looks good to me too. Dan From: Virgile Bello mailto:virgile.be...@gmail.com>> Date: Wednesday, 7 August,

[Lldb-commits] win32: Memory mapped have to be aligned on the right boundary

2013-09-26 Thread Carlo Kok
ing a Mach-O universal files, which have embedded files in them) -- Carlo Kok RemObjects Software Index: C:/Projects/oxygene-nougat-llvm/lldb/source/Core/DataBufferMemoryMap.cpp === --- C:/Projects/oxygene-nougat-llvm/lldb/source

[Lldb-commits] connectfiledescriptor close should take in account the "handle type" on Windows

2013-09-26 Thread Carlo Kok
On windows a socket and a file have different kinds of handle. One goes through "Close" the other through "CloseSocket". If this one is oke I'll commit it with the other one. -- Carlo Kok RemObjects Software Index: include/lldb/Core/C

[Lldb-commits] [patch] mac-os platforms & file types and runtime are not actually mac specific

2013-09-26 Thread Carlo Kok
They should be initialized so someone can remote debug to the mac. -- Carlo Kok RemObjects Software Index: lldb.cpp === --- lldb.cpp(revision 191382) +++ lldb.cpp(working copy) @@ -47,19 +47,19 @@ #ifndef

[Lldb-commits] [lldb] r191447 - On Windows MapViewOfFile requires the offset to be aligned on the system dwAllocationGranularity

2013-09-26 Thread Carlo Kok
Author: carlokok Date: Thu Sep 26 13:52:08 2013 New Revision: 191447 URL: http://llvm.org/viewvc/llvm-project?rev=191447&view=rev Log: On Windows MapViewOfFile requires the offset to be aligned on the system dwAllocationGranularity Modified: lldb/trunk/source/Core/DataBufferMemoryMap.cpp Mo

[Lldb-commits] [lldb] r191446 - On windows a socket and file descriptor aren't the same kind of handle, pass the type to Close so it uses the right api to close it.

2013-09-26 Thread Carlo Kok
Author: carlokok Date: Thu Sep 26 13:49:53 2013 New Revision: 191446 URL: http://llvm.org/viewvc/llvm-project?rev=191446&view=rev Log: On windows a socket and file descriptor aren't the same kind of handle, pass the type to Close so it uses the right api to close it. Modified: lldb/trunk/inc

[Lldb-commits] [lldb] r191455 - missed one Close () call in 191446 overload fix for Posix only code.

2013-09-26 Thread Carlo Kok
Author: carlokok Date: Thu Sep 26 15:22:28 2013 New Revision: 191455 URL: http://llvm.org/viewvc/llvm-project?rev=191455&view=rev Log: missed one Close () call in 191446 overload fix for Posix only code. Modified: lldb/trunk/source/Core/ConnectionFileDescriptor.cpp Modified: lldb/trunk/sourc

[Lldb-commits] [PATCH] symtab.cpp erases while iterating

2013-09-27 Thread Carlo Kok
the solution. -- Carlo Kok RemObjects Software Index: C:/Projects/oxygene-nougat-llvm/lldb/source/Symbol/Symtab.cpp === --- C:/Projects/oxygene-nougat-llvm/lldb/source/Symbol/Symtab.cpp (revision 191382) +++ C:/Projects/oxygen

[Lldb-commits] crash in Proces::RunPrivateStateThread

2013-09-30 Thread Carlo Kok
de isn't 100% windows ready, yet. However shouldn't something be checking the return value of WaitForEventsPrivate anyway? -- Carlo Kok RemObjects Software ___ lldb-commits mailing list lldb-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] when connecting to a running gdb process or launch one from them, set the process architecture before calling SetThreadStopInfo

2013-10-11 Thread Carlo Kok
patch it becomes possible to use an empty target, connect and then load modules. -- Carlo Kok RemObjects Software lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 9 + 1 file changed, 9 insertions(+) diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/ll

[Lldb-commits] [lldb] r192571 - Set the architecture from the remote executable when it's not set so the register info can be loaded properly (and thus the callstacks work)

2013-10-14 Thread Carlo Kok
Author: carlokok Date: Mon Oct 14 02:09:13 2013 New Revision: 192571 URL: http://llvm.org/viewvc/llvm-project?rev=192571&view=rev Log: Set the architecture from the remote executable when it's not set so the register info can be loaded properly (and thus the callstacks work) Modified: lldb/t