Skip to content
  1. Jun 05, 2013
  2. Jun 03, 2013
  3. May 31, 2013
    • Daniel Malea's avatar
      Skipping test case for clang 3.4 due to llvm.org/pr16191 · fac51ab5
      Daniel Malea authored
      - should resolve remaining buildbot issues with debian/clang builder
      
      llvm-svn: 183044
      fac51ab5
    • Enrico Granata's avatar
      <rdar://problem/14035604> · b294fd20
      Enrico Granata authored
      Fixing an issue where formats would not propagate from parents to children in all cases
      Details follow:
      an SBValue has children and those are fetched along with their values
      Now, one calls SBValue::SetFormat() on the parent
      Technically, the format choices should propagate onto the children (see ValueObject::GetFormat())
      But if the children values are already fetched, they won't notice the format change and won't update themselves
      This commit fixes that by making ValueObject::GetValueAsCString() check if any format change intervened from the previous call to the current one
      A test case is also added
      
      llvm-svn: 183030
      b294fd20
    • Sean Callanan's avatar
      Fixed value evaluation to handle null constants. · 7d01ddd6
      Sean Callanan authored
      <rdar://problem/14005311>
      
      llvm-svn: 183022
      7d01ddd6
    • Enrico Granata's avatar
      <rdar://problem/11109316> · e0c70f1b
      Enrico Granata authored
      command script import now does reloads - for real
      If you invoke command script import foo and it detects that foo has already been imported, it will
       - invoke reload(foo) to reload the module in Python
       - re-invoke foo.__lldb_init_module
       This second step is necessary to ensure that LLDB does not keep cached copies of any formatter, command, ... that the module is providing
      
      Usual caveats with Python imports persist. Among these:
       - if you have objects lurking around, reloading the module won't magically update them to reflect changes
       - if module A imports module B, reloading A won't reload B
      These are Python-specific issues independent of LLDB that would require more extensive design work
      
      The --allow-reload (-r) option is maintained for compatibility with existing scripts, but is clearly documented as redundant - reloading is always enabled whether you use it or not
      
      llvm-svn: 182977
      e0c70f1b
  4. May 30, 2013
  5. May 29, 2013
  6. May 24, 2013
  7. May 23, 2013
    • Sean Callanan's avatar
      Fixed a bug where persistent variables did not · fbf5c682
      Sean Callanan authored
      live as long as they needed to.  This led to
      equality tests involving persistent variables
      often failing or succeeding when they had no
      business doing so.
      
      To do this, I introduced the ability for a
      memory allocation to "leak" - that is, to
      persist in the process beyond the lifetime of
      the expression.  Hand-declared persistent
      variables do this now.
      
      <rdar://problem/13956311>
      
      llvm-svn: 182528
      fbf5c682
  8. May 22, 2013
  9. May 21, 2013
    • Greg Clayton's avatar
      Added a test case that verifies that LLDB can debug across a process exec'ing... · 8cda7f08
      Greg Clayton authored
      Added a test case that verifies that LLDB can debug across a process exec'ing itself into a new program. This currently is only enabled for Darwin since we exec from 64 bit to 32 bit and vice versa for 'x86_64' targets.
      
      This can easily be adapted for linux and other platforms, but I didn't want to break any buildbots by assuming it will work.
      
      llvm-svn: 182428
      8cda7f08
  10. May 17, 2013
  11. May 16, 2013
  12. May 15, 2013
Loading