SBValue::CreateValueFromData didn’t check if the SBType argument was in fact a
nullptr. This leads to a crash when dereferencing it of course. I followed the
naming used in SBValue CreateValueFromAddress above.
Regards,
Sebastian
--
Dr. Sebastian Theophil | stheop...@think-cell.com
Senior Softw
Author: tberghammer
Date: Fri May 20 05:58:55 2016
New Revision: 270201
URL: http://llvm.org/viewvc/llvm-project?rev=270201&view=rev
Log:
Work around android-arm NDK bug exposed by rL269992
In the android-arm ndk there is a duplicated typedef in link.h
and in unwind.h causing build erros. This CL
tberghammer abandoned this revision.
tberghammer added a comment.
Abandoning. as http://reviews.llvm.org/rL270062 fixed the same issue before I
managed to add a test for this CL.
http://reviews.llvm.org/D19535
___
lldb-commits mailing list
lldb-com
nitesh.jain added inline comments.
Comment at: source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp:39
@@ +38,3 @@
+int regset = NT_PRSTATUS;
+Error error = NativeProcessLinux::PtraceWrapper(PTRACE_GETREGSET, tid,
®set, &ioVec, sizeof_native_regs_struct);
+Host
labath added inline comments.
Comment at: source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp:39
@@ +38,3 @@
+int regset = NT_PRSTATUS;
+Error error = NativeProcessLinux::PtraceWrapper(PTRACE_GETREGSET, tid,
®set, &ioVec, sizeof_native_regs_struct);
+HostInfo:
Author: slthakur
Date: Fri May 20 07:07:27 2016
New Revision: 270207
URL: http://llvm.org/viewvc/llvm-project?rev=270207&view=rev
Log:
[LLDB][MIPS] Fix floating point handling in case of thread step-out
Patch by Nitesh Jain.
Summary: These patch fix thread step-out for hard and soft float.
Revi
Author: slthakur
Date: Fri May 20 07:11:52 2016
New Revision: 270208
URL: http://llvm.org/viewvc/llvm-project?rev=270208&view=rev
Log:
[LLDB][MIPS] Fix Floating point Registers Encoding
Patch by Nitesh Jain.
Summary: Currently floating point regsiters has eEncodingUint encoding. Hence
register
nitesh.jain closed this revision.
nitesh.jain added a comment.
Committed in revision 270208.
Repository:
rL LLVM
http://reviews.llvm.org/D18853
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listin
nitesh.jain added a comment.
committed in revision 270207
Repository:
rL LLVM
http://reviews.llvm.org/D20416
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
labath added inline comments.
Comment at: source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp:39
@@ +38,3 @@
+int regset = NT_PRSTATUS;
+Error error = NativeProcessLinux::PtraceWrapper(PTRACE_GETREGSET, tid,
®set, &ioVec, sizeof_native_regs_struct);
+HostInfo:
Author: tberghammer
Date: Fri May 20 08:07:16 2016
New Revision: 270214
URL: http://llvm.org/viewvc/llvm-project?rev=270214&view=rev
Log:
Revert rL270207: "[LLDB][MIPS] Fix floating point handling in case of thread
step-out"
The CL causes a build breakage on platforms where sizeof(double) == siz
I had to revert this CL with rL270214 as it causes a build breakage (see
http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-buildserver/builds/7282)
and makes a false assumption regarding host-target compatibility. Please
see my commit message in http://reviews.llvm.org/rL270214 for more de
omjavaid accepted this revision.
omjavaid added a comment.
Seems to be causing no regressions on arm-linux.
http://reviews.llvm.org/D20368
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-
ldrumm added a comment.
gentle ping, if @spyffe or @jingham is available to take another pass at this.
http://reviews.llvm.org/D17027
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commi
Author: gclayton
Date: Fri May 20 14:18:20 2016
New Revision: 270254
URL: http://llvm.org/viewvc/llvm-project?rev=270254&view=rev
Log:
Adopt mmap flags that allow mmap'ed memory to be less crash prone.
On Darwin if a mmap file is code signed and the code signature is invalid, it
used to crash. I
> On May 20, 2016, at 2:35 AM, Sebastian Theophil via lldb-commits
> wrote:
>
> SBValue::CreateValueFromData didn’t check if the SBType argument was in fact
> a nullptr. This leads to a crash when dereferencing it of course. I followed
> the naming used in SBValue CreateValueFromAddress above
zturner added a comment.
I'm still getting a lot of crashes after this, but this will at least fix the
compiler errors. I will try to look at the crashes on Monday.
Comment at: source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp:354-355
@@ -358,5 +353,4 @@
{
-//
17 matches
Mail list logo