Skip to content
  1. May 12, 2011
    • Greg Clayton's avatar
      Cleaned up the ABI::PrepareTrivialCall() function to take three argument · fdeb1563
      Greg Clayton authored
      pointers:
      
              virtual bool
              PrepareTrivialCall (Thread &thread, 
                                  lldb::addr_t sp,
                                  lldb::addr_t functionAddress,
                                  lldb::addr_t returnAddress, 
                                  lldb::addr_t *arg1_ptr,
                                  lldb::addr_t *arg2_ptr,
                                  lldb::addr_t *arg3_ptr) const = 0;
      
      Prior to this it was:
      
              virtual bool
              PrepareTrivialCall (Thread &thread, 
                                  lldb::addr_t sp,
                                  lldb::addr_t functionAddress,
                                  lldb::addr_t returnAddress, 
                                  lldb::addr_t arg,
                                  lldb::addr_t *this_arg,
                                  lldb::addr_t *cmd_arg) const = 0;
      
      This was because the function that called this slowly added more features to
      be able to call a C++ member function that might have a "this" pointer, and 
      then later added "self + cmd" support for objective C. Cleaning this code up
      and the code that calls it makes it easier to implement the functions for
      new targets.
      
      The MacOSX_arm::PrepareTrivialCall() is now filled in and ready for testing.
      
      llvm-svn: 131221
      fdeb1563
    • Jim Ingham's avatar
      Target::EvaluateExpression should suppress stop hooks. · 6026ca37
      Jim Ingham authored
      llvm-svn: 131219
      6026ca37
    • Greg Clayton's avatar
      Remove the custom working directory form the xcscheme. · 822a298c
      Greg Clayton authored
      llvm-svn: 131218
      822a298c
    • Jim Ingham's avatar
      48028b68
    • Johnny Chen's avatar
      Add two utility functions: · ad7372c5
      Johnny Chen authored
          o get_parent_frame(frame)
          o get_args_as_string(frame)
      
      to lldbutil.py and create TestFrameUtils.py to exercise the utils.
      Plus re-arrange the test/python_api/lldbutil to have three directories
      for testing iteration, process stack traces, and the just added frame utils.
      
      llvm-svn: 131213
      ad7372c5
  2. May 11, 2011
  3. May 10, 2011
  4. May 09, 2011
  5. May 08, 2011
  6. May 07, 2011
  7. May 06, 2011
  8. May 05, 2011
Loading