- 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
llvm-svn: 132281
-
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: 132271
-
Greg Clayton authored
llvm-svn: 132270
-
- May 28, 2011
-
-
Johnny Chen authored
llvm-svn: 132232
-
Johnny Chen authored
Remove an unnecessary __import__() function call. llvm-svn: 132231
-
- May 27, 2011
-
-
Johnny Chen authored
llvm-svn: 132221
-
Johnny Chen authored
llvm-svn: 132160
-
- May 26, 2011
-
-
Johnny Chen authored
llvm-svn: 132152
-
Johnny Chen authored
llvm-svn: 132150
-
Johnny Chen authored
llvm-svn: 132147
-
Jim Ingham authored
llvm-svn: 132141
-
Greg Clayton authored
llvm-svn: 132123
-
Johnny Chen authored
Add a little spice to the script to allow us to specify a function name to break at and to disassemble. Usage: disasm.py [-n name] executable-image By default, it breaks at and disassembles the 'main' function. llvm-svn: 132090
-
Johnny Chen authored
by entering 'Ctrl-D' or 'quit'. llvm-svn: 132088
-
- May 25, 2011
-
-
Johnny Chen authored
llvm-svn: 132082
-
Johnny Chen authored
llvm-svn: 132079
-
Johnny Chen authored
llvm-svn: 132078
-
Johnny Chen authored
llvm-svn: 132072
-
Greg Clayton authored
llvm-svn: 132067
-
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
-
Johnny Chen authored
llvm-svn: 132019
-
Johnny Chen authored
llvm-svn: 132018
-
Johnny Chen authored
method definition before other method definitions. Instead, do without it and process the class with IsValid() method definition in all possible states. llvm-svn: 132016
-
- May 24, 2011
-
-
Johnny Chen authored
llvm-svn: 132002
-
Johnny Chen authored
llvm-svn: 131998
-
Jim Ingham authored
llvm-svn: 131984
-
Johnny Chen authored
those lldb objects which implement the IsValid() method, let's change the rest of the test suite to use the more compact truth value testing pattern (the Python way). llvm-svn: 131970
-
Charles Davis authored
llvm-svn: 131949
-
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
-
-
Johnny Chen authored
llvm-svn: 131925
-
Johnny Chen authored
Add a Python utility to help convert the Mail.app saved 'Raw Message Source' .eml file to a git-am friendly file. llvm-svn: 131924
-
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
-