- Mar 07, 2012
-
-
rdar://10996650Han Ming Ong authored
Passed in the right number of parameters for CFDictionaryCreate llvm-svn: 152182
-
Enrico Granata authored
Using the new ScriptInterpreterObject in the implementation of synthetic children to enhance type safety Several places in the ScriptInterpreter interface used StringList objects where an std::string would suffice - Fixed Refactoring calls that generated special-purposes functions in the Python interpreter to use helper functions instead of duplicating blobs of code llvm-svn: 152164
-
Enrico Granata authored
Fixing an issue where a ValueObject had changed its value but the 'value changed' flag was not being set. This was breaking one of our test cases llvm-svn: 152161
-
- Mar 06, 2012
-
-
Greg Clayton authored
This was done in SBTarget: lldb::SBInstructionList lldb::SBTarget::ReadInstructions (lldb::SBAddress base_addr, uint32_t count); Also cleaned up a few files in the LLDB.framework settings. llvm-svn: 152152
-
Sean Callanan authored
but gated by an #ifdef until we roll LLVM/Clang to bring in the necessary parser support. llvm-svn: 152149
-
Sean Callanan authored
inside a namespace. This bypasses local variables. llvm-svn: 152144
-
Jim Ingham authored
more aggressive about trapping exceptions than a user would be. Make it so... llvm-svn: 152125
-
Greg Clayton authored
llvm-svn: 152103
-
rdar://problem/10840355Greg Clayton authored
Fixed STDERR to not be opened as readable. Also cleaned up some of the code that implemented the file actions as some of the code was using the wrong variables, they now use the right ones (in for stdin, out for stdout, err for stderr). llvm-svn: 152102
-
Jim Ingham authored
llvm-svn: 152101
-
Greg Clayton authored
llvm-svn: 152088
-
Enrico Granata authored
Fixing a crasher bug where we were not checking for NULL before trying to retrieve the format for a type llvm-svn: 152087
-
Johnny Chen authored
Clarification on the error message when the display format (eFormatBytes/eFormatBytesWithASCII) conflicts with the byte size. llvm-svn: 152084
-
Jim Ingham authored
Add a command and an SB API to create exception breakpoints. Make the break output prettier for Exception breakpoints. llvm-svn: 152081
-
rdar://problem/10986692Greg Clayton authored
Safeguard against building on next OS and run on current OS. llvm-svn: 152077
-
- Mar 05, 2012
-
-
Sean Callanan authored
C++ method. llvm-svn: 152064
-
Enrico Granata authored
llvm-svn: 152053
-
Enrico Granata authored
(a) the SystemParameters object is now passed around to the formatters; doing so enables the formatters to reuse computed values for things such as pointer-size and endianness instead of repeatedly computing these on their own (b) replacing the global ISA cache with a per-process one (c) providing a per-process types cache where each formatter can store the types it needs to operate, and be sure to find them the next time without recalculating them this also enables formatters to share types if they agree on a local naming convention (d) lazy fetching of data from Objective-C runtime data structures data is fetched as needed and we stop reading as soon as we determine that an ISA is actually garbage llvm-svn: 152052
-
Johnny Chen authored
Add SBFrame::IsEqual(const SBFrame &that) method and export it to the Python binding. Alos add a test case test_frame_api_IsEqual() to TestFrames.py file. llvm-svn: 152050
-
Johnny Chen authored
llvm-svn: 152049
-
Johnny Chen authored
llvm-svn: 152038
-
Jim Ingham authored
have a process, then fetch the right runtime resolver when the process is made. llvm-svn: 152015
-
- Mar 03, 2012
-
-
Enrico Granata authored
llvm-svn: 151982
-
Jason Molenda authored
files in source/Plugins/Disassembler/llvm not being handled properly by git. llvm-svn: 151969
-
Enrico Granata authored
Currently TestDataFormatterPythonSynth is failing because of an issue with children capping. Splitting the test case in two so we better isolate the issue and also for better logical separation llvm-svn: 151966
-
Jim Ingham authored
<rdar://problem/10196277> llvm-svn: 151965
-
Enrico Granata authored
fixed a few potential NULL-pointer derefs in ValueObject we have a way to provide docstrings for properties we add to the SWIG layer - a few of these properties have a docstring already, more will come in future commits added a new bunch of properties to SBData to make it more natural and Python-like to access the data they contain llvm-svn: 151962
-
rdar://problem/10974749Greg Clayton authored
Added more cases to deal with new default compiler driver flags that were making builds fail. llvm-svn: 151954
-
Sean Callanan authored
(from the mnemonic) whether an instruction is a branch. This function's result is exposed through DoesBranch(). llvm-svn: 151953
-
- Mar 02, 2012
-
-
Greg Clayton authored
llvm-svn: 151948
-
rdar://problem/10974749Greg Clayton authored
Hack our project file to deal with new default compiler driver flags that were making builds fail. llvm-svn: 151946
-
Jim Ingham authored
llvm-svn: 151941
-
Jim Ingham authored
llvm-svn: 151940
-
Johnny Chen authored
Add logic to GDBRemoteRegisterContext class to be able to read/write a "composite" register which has "primordial" registers as its constituents. In particular, Read/WriteRegisterBytes() now delegate to Get/SetPrimordialRegister() helper methods to read/write register contents. Also modify RegisterValue class to be able to parse "register write" string value for the NEON quadword registers which is displayed as a vector of uint8's. Example: (lldb) register write q0 "{0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10}" (lldb) register read q0 q0 = {0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10} (lldb) register read --format uint8_t[] s0 s0 = {0x01 0x02 0x03 0x04} (lldb) register read --format uint8_t[] d0 d0 = {0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08} (lldb) register read --format uint8_t[] d1 d1 = {0x09 0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10} llvm-svn: 151939
-
Sean Callanan authored
while still ensuring that the sections get remote allocations. llvm-svn: 151936
-
Enrico Granata authored
Adding a test case for a bug where types CFGregorianDate and CFRange were improperly uniqued by LLDB such that both where shown as having the same structure contents - The bug itself is fixed in TOT but we want to catch regressions ASAP llvm-svn: 151929
-
Enrico Granata authored
llvm-svn: 151928
-
Greg Clayton authored
llvm-svn: 151924
-
Greg Clayton authored
llvm-svn: 151878
-
Jim Ingham authored
<rdar://problem/10720345> "break set -n" name matching should only match at namespace boundaries llvm-svn: 151876
-