- Jun 10, 2011
-
-
Greg Clayton authored
to have the value for the map be a "const char *" instead of an unused uint32_t. This allows us to store the uniqued mangled/demangled counterpart in this map for mangled names. This also speeds up the mangled/demangled counterpart lookup that used to be maintained in a STL map by having direct access to the data. If we eventually need to associate other strings to strings to more data, we can make the value of the StringMap have a more complex value. Added the start of a history source and history event class. It isn't being used by anything yet, but might be shortly. llvm-svn: 132813
-
- Jun 04, 2011
-
-
Greg Clayton authored
cleaned up all base classes that had their own copy. Added a SetDescription accessor to the StopInfo class. llvm-svn: 132615
-
Greg Clayton authored
the thread we were running on (other thread crashed or had exceptional stop reason). llvm-svn: 132599
-
- Jun 03, 2011
-
-
Peter Collingbourne authored
llvm-svn: 132588
-
Peter Collingbourne authored
llvm-svn: 132587
-
Peter Collingbourne authored
llvm-svn: 132586
-
Peter Collingbourne authored
llvm-svn: 132585
-
Peter Collingbourne authored
llvm-svn: 132584
-
Peter Collingbourne authored
Currently the runtime dynamic linker lacks object file support for anything other than Mach-O. llvm-svn: 132583
-
Peter Collingbourne authored
llvm-svn: 132582
-
Jim Ingham authored
Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse errors when we go to run a breakpoint condition. llvm-svn: 132517
-
Johnny Chen authored
llvm-svn: 132511
-
Johnny Chen authored
llvm-svn: 132507
-
Johnny Chen authored
When emulating an ill-formed instruction, we should bail out instead of asserting and bringing down the whole process. llvm-svn: 132506
-
Greg Clayton authored
true/false in an extra boolean parameter and not cause the the binary that us using the LLDB framework to crash. llvm-svn: 132501
-
Greg Clayton authored
GDB server doesn't support the LLDB specific qThreadStopInfo packet. llvm-svn: 132499
-
Caroline Tice authored
Use Py_InitializeEx(0) instead of Py_Initialize, to prevent Python from installing its own signal handlers. llvm-svn: 132492
-
- Jun 02, 2011
-
-
Johnny Chen authored
llvm-svn: 132484
-
Caroline Tice authored
Create new class, InputReaderStack, to better handle mutexes around input readers and prevent deadlocking; modify Debugger to use the new class. llvm-svn: 132475
-
Johnny Chen authored
llvm-svn: 132470
-
Greg Clayton authored
llvm-svn: 132449
-
Jim Ingham authored
llvm-svn: 132440
-
Johnny Chen authored
rdar://problem/9530511 llvm-svn: 132435
-
- Jun 01, 2011
-
-
Charles Davis authored
- The Swig post-processing scripts are now run. - edit-swig-python-wrapper-file.py has been modified so it can be run from the Makefile. - The issue that prompted me to pass -classic to swig is fixed by this, so -classic isn't passed anymore. Python shouldn't complain anymore about a missing method 'FindDebuggerByID' on the SBDebugger object whenever lldb is run. llvm-svn: 132383
-
- May 31, 2011
-
-
Greg Clayton authored
value fails to evaluate. llvm-svn: 132354
-
- May 30, 2011
-
-
Greg Clayton authored
llvm-svn: 132304
-
Greg Clayton authored
they don't update correctly. Currently if a variable is unavailable due to a register not being available in a higher frame or due to the PC value not being a valid location list value, "<unknown type>" will get displayed as the variable type. I am not sure what other things will fail, so I am disabling it for now just by letting the default enumeration value default to it being disabled. llvm-svn: 132303
-
Greg Clayton authored
llvm-svn: 132301
-
- May 29, 2011
-
-
Greg Clayton authored
its definition, that the first enumeration doesn't always get used as the default. llvm-svn: 132289
-
Greg Clayton authored
(or anything running in a terminal) wants. Not what a UI (Xcode) would want where it creates a debugger per debug window. The current code had an infinite loop after a debug session ended. llvm-svn: 132280
-
Greg Clayton authored
llvm-svn: 132270
-
- May 26, 2011
-
-
Jim Ingham authored
llvm-svn: 132141
-
- May 25, 2011
-
-
Greg Clayton authored
llvm-svn: 132066
-
Greg Clayton authored
virtual bool ABI::StackUsesFrames () = 0; Should return true if your ABI uses frames when doing stack backtraces. This means a frame pointer is used that points to the previous stack frame in some way or another. virtual bool ABI::CallFrameAddressIsValid (lldb::addr_t cfa) = 0; Should take a look at a call frame address (CFA) which is just the stack pointer value upon entry to a function. ABIs usually impose alignment restrictions (4, 8 or 16 byte aligned), and zero is usually not allowed. This function should return true if "cfa" is valid call frame address for the ABI, and false otherwise. This is used by the generic stack frame unwinding code to help determine when a stack ends. virtual bool ABI::CodeAddressIsValid (lldb::addr_t pc) = 0; Validates a possible PC value and returns true if an opcode can be at "pc". Some ABIs or architectures have fixed width instructions and must be aligned to a 2 or 4 byte boundary. "pc" can be an opcode or a callable address which means the load address might be decorated with extra bits (such as bit zero to indicate a thumb function call for ARM targets), so take this into account when returning true or false. The address should also be validated to ensure it is a valid address for the address size of the inferior process. 32 bit targets should make sure the address is less than UINT32_MAX. Modified UnwindLLDB to use the new ABI functions to help it properly terminate stacks. Modified the mach-o function that extracts dependent files to not resolve the path as the paths inside a binary might not match those on the current host system. llvm-svn: 132021
-
- May 24, 2011
-
-
Johnny Chen authored
llvm-svn: 131998
-
Jim Ingham authored
llvm-svn: 131984
-
Johnny Chen authored
a new file static utility function AddSymbolicInfo() which is called from places within InstructionLLVM::Dump(). llvm-svn: 131937
-
Greg Clayton authored
can end up with an invalid path if the path resolves to something different on the local machine. It is very important not to since remote debugging will mention paths that might exist on the current machine (like "/System/Library/Frameworks/CoreFoundation/CoreFoundation" which on the desktop systems is a symlink to "/System/Library/Frameworks/CoreFoundation/Versions/A/CoreFoundation"). We will let the platform plug-ins resolve the paths in a later stage. llvm-svn: 131934
-
- May 23, 2011
-
-
Sean Callanan authored
into the mainline LLDB codebase. MCJIT introduces API improvements and better architectural support. This commit adds a new subsystem, the ProcessDataAllocator, which is responsible for performing static data allocations on behalf of the IR transformer. MCJIT currently does not support the relocations required to store the constant pool in the same allocation as the function body, so we allocate a heap region separately and redirect static data references from the expression to that heap region in a new IR modification pass. This patch also fixes bugs in the IR transformations that were exposed by the transition to the MCJIT. Finally, the patch also pulls in a more recent revision of LLVM so that the MCJIT is available for use. llvm-svn: 131923
-
Greg Clayton authored
lldb module. llvm-svn: 131914
-