- Dec 20, 2010
-
-
Johnny Chen authored
Provide full qualification for #include's. llvm-svn: 122274
-
Johnny Chen authored
# Set prompt to 'lldb2'. self.runCmd("settings set prompt lldb2") llvm-svn: 122272
-
Johnny Chen authored
POSIX does not define sockaddr_un.sun_len. Set only when required by the platform. llvm-svn: 122266
-
Greg Clayton authored
llvm-svn: 122262
-
Johnny Chen authored
Fix a typo where a qualification was being interpreted as a label. llvm-svn: 122260
-
Caroline Tice authored
Add code to make sure InputReaders finish and are cleaned up when a Debugger object is destroyed or re-set. (Thus making sure that, for example, the Python interpreter finishes and exits cleanly rather than being left in an undefined state.) llvm-svn: 122255
-
- Dec 19, 2010
-
-
Greg Clayton authored
table offset where the offset is within a section. Increased the section offset for line table entries to be 32 bits (from 24 bits), giving each section a 4G offset, and increased the section index to 32 bits (from 8 bits). llvm-svn: 122200
-
Greg Clayton authored
llvm-svn: 122198
-
Greg Clayton authored
a shell would interpret it. A few examples that we now handle correctly INPUT: "Hello "world OUTPUT: "Hello World" INPUT: "Hello "' World' OUTPUT: "Hello World" INPUT: Hello" World" OUTPUT: "Hello World" This broke the setting of dictionary values for the "settings set" command for things like: (lldb) settings set target.process.env-vars ["MY_ENV_VAR"]=YES since we would drop the quotes. I fixed the user settings controller to use a regular expression so it can accept any of the following inputs for dictionary setting: settings set target.process.env-vars ["MY_ENV_VAR"]=YES settings set target.process.env-vars [MY_ENV_VAR]=YES settings set target.process.env-vars MY_ENV_VAR=YES We might want to eventually drop the first two syntaxes, but I won't make that decision right now. This allows more natural setting of the envirorment variables: settings set target.process.env-vars MY_ENV_VAR=YES ABC=DEF CWD=/tmp llvm-svn: 122166
-
- Dec 18, 2010
-
-
Greg Clayton authored
llvm-svn: 122130
-
Greg Clayton authored
llvm-svn: 122128
-
Greg Clayton authored
llvm-svn: 122127
-
Greg Clayton authored
llvm-svn: 122126
-
Greg Clayton authored
llvm-svn: 122125
-
Sean Callanan authored
ABI. llvm-svn: 122118
-
- Dec 17, 2010
-
-
Johnny Chen authored
in order to sort the output by address. llvm-svn: 122071
-
Greg Clayton authored
llvm-svn: 122061
-
Greg Clayton authored
Removed darwin specific CPU type defines to make UnwindAssemblyProfiler_x86 able to compile on linux (patch from Stephen Wilson). llvm-svn: 122060
-
Greg Clayton authored
llvm-svn: 122059
-
Greg Clayton authored
line commands can use the current thread/frame. Fixed an issue with expressions that get sandboxed in an objective C method where unichar wasn't being passed down. Added a "static size_t Scalar::GetMaxByteSize();" function in case we need to know the max supported by size of something within a Scalar object. llvm-svn: 122027
-
Johnny Chen authored
gud commands in order to more reliably locate the program counter and to display the file-and-line. llvm-svn: 122020
-
- Dec 16, 2010
-
-
Greg Clayton authored
llvm-svn: 122002
-
Greg Clayton authored
llvm-svn: 122001
-
Greg Clayton authored
Added header doc for the recently added Process::ReadUnsignedInteger (addr_t addr, size_t int_byte_size, Error &error) function. llvm-svn: 121999
-
Greg Clayton authored
uint64_t Process::ReadUnsignedInteger (addr_t addr, size_t int_byte_size, Error &error); llvm-svn: 121996
-
Johnny Chen authored
against. llvm-svn: 121989
-
Johnny Chen authored
llvm-svn: 121986
-
Jason Molenda authored
(from Sean's commit a minute ago) llvm-svn: 121954
-
Sean Callanan authored
can avoid running the code in the target if the expression's result is known and the expression has no side effects. Right now this feature is quite conservative in its guess about side effects, and it only computes integer results, but the machinery to make it more sophisticated is there. llvm-svn: 121952
-
Johnny Chen authored
Extend Swig's include search path. Cover both /usr/include and /usr/local/include. This should allow Swig to find system headers such as stdint.h on all platforms we currently support. llvm-svn: 121943
-
Johnny Chen authored
on a frame and to exercise the methods of SBSymbolContext. llvm-svn: 121941
-
Johnny Chen authored
Pass the test suite on Mac OS X Snow Leopard. llvm-svn: 121924
-
- Dec 15, 2010
-
-
Johnny Chen authored
"(MyString) *self" llvm-svn: 121907
-
Johnny Chen authored
for the two API calls. llvm-svn: 121898
-
Greg Clayton authored
Fix invalid conversion from "const char *" to "char *" for linux systems. strchr() on darwin returns "char *" so we weren't seeing this issue on MacOSX. llvm-svn: 121897
-
Greg Clayton authored
Fixed an error where the thread index was being returned as zero in "uint32_t SBBreakpoint::GetThreadIndex() const" even when it isn't specified. It should be UINT32_MAX to indicate there is no thread index set for the breakpoint (the breakpoint isn't thread specific). Also fixed the ThreadSpec.cpp to use UINT32_MAX instead of -1. Fixed the logging Printf statement in "uint32_t SBBreakpoint::GetThreadIndex() const" to not print the address of the "index" function from <string.h>! llvm-svn: 121896
-
Jim Ingham authored
in the DWARF to be incorrect. llvm-svn: 121894
-
Johnny Chen authored
due to crashes while running the entire test suite with clang-126. To reproduce: CC=clang ./dotest.py -v -w 2> ~/Developer/Log/lldbtest.log To skip this test case: CC=clang ./dotest.py -b blacklist.py -v -w 2> ~/Developer/Log/lldbtest.log llvm-svn: 121887
-
Caroline Tice authored
llvm-svn: 121884
-
Caroline Tice authored
Add test cases to test various aspect of the 'alias' command. llvm-svn: 121879
-