Skip to content
  1. Nov 04, 2011
    • Sean Callanan's avatar
      Occasionally LLDB runs into contexts where the · 744756e3
      Sean Callanan authored
      target is stopped in a C++ or Objective-C method
      but the "self" pointer's valid range actually
      doesn't cover the current location.  Before, that
      was confusing Clang to the point where it crashed;
      now, we sanity-check and fall back to pretending
      we're in a C function if "self" or "this" isn't
      available.
      
      llvm-svn: 143676
      744756e3
    • Johnny Chen's avatar
      Add a utility script: · e79a8d3d
      Johnny Chen authored
      Greps and returns the first svn log entry containing a line matching the regular
      expression pattern passed as the only arg.
      
      Example:
      
      svn log -v | grep-svn-log.py '^   D.+why_are_you_missing.h$'
      
      llvm-svn: 143671
      e79a8d3d
  2. Nov 03, 2011
  3. Nov 02, 2011
    • Benjamin Kramer's avatar
      Try to unbreak Makefile builds. · 4832e297
      Benjamin Kramer authored
      llvm-svn: 143566
      4832e297
    • Sean Callanan's avatar
      Updated LLVM/Clang to pull in an MCJIT fix that · c832475c
      Sean Callanan authored
      allows us to set __attribute__ ((used)) on expressions
      that masquerade as methods.  When we are stopped in
      classes in anonymous namespaces, this fix (and enabling
      __attribute__ ((used)) on the method) will allow
      expressions to run.
      
      llvm-svn: 143560
      c832475c
    • Greg Clayton's avatar
      <rdar://problem/10020849> · 8b867b47
      Greg Clayton authored
      Fixed an issue where the DWARF might mention that a class has a constructor
      (default, copy or move), destructor, or an assignment operator (copy or move)
      and it might not have an actual implementation in your code. Then you try and
      use this struct or class in an expression and the JIT would ask for the 
      address of these methods that were in the declaration, yet there are none.
      We now "do the right thing" for trivial ctors, dtors and assignment operators
      by telling the methods that they are are defaulted and trivial, and clang will
      then just do all of the work with builtins!
      
      llvm-svn: 143528
      8b867b47
    • Sean Callanan's avatar
      Sometimes the debug information includes artifically- · dbb58399
      Sean Callanan authored
      generated special member functions (constructors,
      destructors, etc.) for classes that don't really have
      them.  We needed to mark these as artificial to reflect
      the debug information; this bug does that for
      constructors and destructors.
      
      The "etc." case (certain assignment operators, mostly)
      remains to be fixed.
      
      llvm-svn: 143526
      dbb58399
    • Sean Callanan's avatar
      Added functionality to call Objective-C class methods · fc89c142
      Sean Callanan authored
      correctly, and added a testcase to check that it works.
      
      The main problem here is that Objective-C class method
      selectors are external references stored in a special
      data structure in the LLVM IR module for an expression.
      I just had to extract them and ensure that the real
      class object locations were properly resolved.
      
      llvm-svn: 143520
      fc89c142
  4. Nov 01, 2011
  5. Oct 31, 2011
Loading