- Aug 12, 2011
-
-
Enrico Granata authored
llvm-svn: 137490
-
Johnny Chen authored
A8.6.391 VST1 (multiple single elements) alignment = if align == '00' then 1 else 4 << UInt(align); llvm-svn: 137477
-
Greg Clayton authored
time after recently backing out another fix. llvm-svn: 137475
-
Enrico Granata authored
llvm-svn: 137462
-
Greg Clayton authored
as this function is what parses the blocks for a function... llvm-svn: 137461
-
Greg Clayton authored
is contained inside a function. llvm-svn: 137438
-
Greg Clayton authored
was failing if the DWARF was laid out in a certain way. The way we detect C++ classes is now more robust so that a class method can be defined outside of the class and refer to a definition inside the class with a DW_AT_specification or DW_AT_abstract_origin attribute. Fixed a case in Thread.cpp where we were looking up info in the frame when we didn't need to. This was from some changes to support external editors. Now the info is only looked up if needed. llvm-svn: 137436
-
Jason Molenda authored
If the IOChannel has already freed out its m_driver member, and there's still a character to be read/written (that is, the ^D character), just skip that char instead of trying to write through a null object pointer. llvm-svn: 137421
-
Enrico Granata authored
*New setting target.max-children-count gives an upper-bound to the number of child objects that will be displayed at each depth-level This might be a breaking change in some scenarios. To override the new limit you can use the --show-all-children (-A) option to frame variable or increase the limit in your lldbinit file *Command "type synthetic" has been split in two: - "type synthetic" now only handles Python synthetic children providers - the new command "type filter" handles filters Because filters and synthetic providers are both ways to replace the children of a ValueObject, only one can be effective at any given time. llvm-svn: 137416
-
Johnny Chen authored
llvm-svn: 137407
-
Johnny Chen authored
The initialization of 'replicated_element' to 0 is needed, otherwise we get a garbage value to start with. llvm-svn: 137405
-
Johnny Chen authored
llvm-svn: 137396
-
Johnny Chen authored
llvm-svn: 137394
-
Sean Callanan authored
causing problems with printing the values of persistent variables with struct types. llvm-svn: 137392
-
Johnny Chen authored
llvm-svn: 137387
-
Johnny Chen authored
llvm-svn: 137374
-
- Aug 11, 2011
-
-
Johnny Chen authored
llvm-svn: 137360
-
Enrico Granata authored
llvm-svn: 137357
-
Johnny Chen authored
llvm-svn: 137355
-
Johnny Chen authored
On Lion, printf is defined in libsystem_c.dylib. llvm-svn: 137348
-
Johnny Chen authored
llvm-svn: 137343
-
Sean Callanan authored
problem in which the following cast: – expr (int (*)(const char*, ...))printf - caused a crash. This had several causes: - First, Clang did not support implicit casts of a function of unknown type to a function pointer. - Second, after this was fixed, the Clang AST importer did not support importing function pointer types produced by resolving these casts. These two problems are now resolved, and I have added a test case to verify that they work. I also did a little bit of build-system cleanup because we now use libEnhancedDisassembly.a instead of the .dylib. llvm-svn: 137338
-
Johnny Chen authored
llvm-svn: 137334
-
Enrico Granata authored
Fixed an issue where LLDB was complaining about the lack of 'update' in a synthetic provider, despite it being optional llvm-svn: 137330
-
Johnny Chen authored
llvm-svn: 137329
-
Johnny Chen authored
llvm-svn: 137328
-
Johnny Chen authored
llvm-svn: 137326
-
Johnny Chen authored
llvm-svn: 137319
-
Enrico Granata authored
Access to synthetic children by name: if your object has a synthetic child named foo you can now type frame variable object.foo (or ->foo if you have a pointer) and that will print the value of the synthetic child (if your object has an actual child named foo, the actual child prevails!) this behavior should also work in summaries, and you should be able to use ${var.foo} and ${svar.foo} interchangeably (but using svar.foo will mask an actual child named foo) llvm-svn: 137314
-
Greg Clayton authored
Filipe was attempting to do a: (lldb) process load ~/path/foo.dylib But the process load command wasn't resolving the path. We have to be careful about resolving the path here because we want to do it in terms of the platform we are using. the "~/" can mean a completely different path if you are remotely debugging on another machine as another user. So to support this, platforms now can resolve remote paths: bool Platform::ResolveRemotePath (const FileSpec &platform_path, FileSpec &resolved_platform_path); The host/local platform will just resolve the path. llvm-svn: 137307
-
Greg Clayton authored
llvm-svn: 137300
-
Greg Clayton authored
This is helping us track down some extra references to ModuleSP objects that are causing things to get kept around for too long. Added a module pointer accessor to target and change a lot of code to use it where it would be more efficient. "taret delete" can now specify "--clean=1" which will cleanup the global module list for any orphaned module in the shared module cache which can save memory and also help track down module reference leaks like we have now. llvm-svn: 137294
-
Johnny Chen authored
Add code to test case to create an evil linked list with: task_evil -> task_2 -> task_3 -> task_evil ... and to check that the linked list iterator only iterates 3 times. llvm-svn: 137291
-
Johnny Chen authored
Change the SBValue.linked_list_iter() to treat the value object as a homogeneous linked list data structure where an empty linked list is represented as a value object with a NULL value, instead of a special value object which 'points' to NULL. Also modifies the test case to comply. rdar://problem/9933692 llvm-svn: 137289
-
Johnny Chen authored
llvm-svn: 137288
-
Jim Ingham authored
llvm-svn: 137287
-
Johnny Chen authored
When a benchmarks test fails, the re-run command should include the '+b' option instead of the '-t' option. llvm-svn: 137285
-
Johnny Chen authored
llvm-svn: 137275
-
Johnny Chen authored
llvm-svn: 137267
-
Johnny Chen authored
llvm-svn: 137257
-