Skip to content
  1. Jun 10, 2011
    • Greg Clayton's avatar
      I modified the StringMap that was being used to unique our debugger C strings · c3ae1cef
      Greg Clayton authored
      to have the value for the map be a "const char *" instead of an unused uint32_t.
      This allows us to store the uniqued mangled/demangled counterpart in this map
      for mangled names. This also speeds up the mangled/demangled counterpart lookup
      that used to be maintained in a STL map by having direct access to the data.
      If we eventually need to associate other strings to strings to more data, we
      can make the value of the StringMap have a more complex value.
      
      Added the start of a history source and history event class. It isn't being
      used by anything yet, but might be shortly.
      
      llvm-svn: 132813
      c3ae1cef
  2. Jun 04, 2011
  3. Jun 03, 2011
  4. Jun 02, 2011
  5. Jun 01, 2011
    • Charles Davis's avatar
      Fix remaining Python issues leftover from my previous patch. · 4ce288e3
      Charles Davis authored
      - The Swig post-processing scripts are now run.
      - edit-swig-python-wrapper-file.py has been modified so it can be run
      from the Makefile.
      - The issue that prompted me to pass -classic to swig is fixed by this,
      so -classic isn't passed anymore.
      
      Python shouldn't complain anymore about a missing method 'FindDebuggerByID'
      on the SBDebugger object whenever lldb is run.
      
      llvm-svn: 132383
      4ce288e3
  6. May 31, 2011
  7. May 30, 2011
  8. May 29, 2011
  9. May 26, 2011
  10. May 25, 2011
    • Greg Clayton's avatar
      Added some comments. · 1cbc52cd
      Greg Clayton authored
      llvm-svn: 132066
      1cbc52cd
    • Greg Clayton's avatar
      ABI plug-ins must implement the following pure virtual functions: · 9b72eb71
      Greg Clayton authored
      virtual bool
      ABI::StackUsesFrames () = 0;
      
      Should return true if your ABI uses frames when doing stack backtraces. This
      means a frame pointer is used that points to the previous stack frame in some
      way or another.
      
      virtual bool
      ABI::CallFrameAddressIsValid (lldb::addr_t cfa) = 0;
      
      Should take a look at a call frame address (CFA) which is just the stack
      pointer value upon entry to a function. ABIs usually impose alignment
      restrictions (4, 8 or 16 byte aligned), and zero is usually not allowed.
      This function should return true if "cfa" is valid call frame address for
      the ABI, and false otherwise. This is used by the generic stack frame unwinding
      code to help determine when a stack ends.
      
      virtual bool
      ABI::CodeAddressIsValid (lldb::addr_t pc) = 0;    
      
      Validates a possible PC value and returns true if an opcode can be at "pc".
      Some ABIs or architectures have fixed width instructions and must be aligned
      to a 2 or 4 byte boundary. "pc" can be an opcode or a callable address which
      means the load address might be decorated with extra bits (such as bit zero
      to indicate a thumb function call for ARM targets), so take this into account
      when returning true or false. The address should also be validated to ensure
      it is a valid address for the address size of the inferior process. 32 bit
      targets should make sure the address is less than UINT32_MAX.
      
      Modified UnwindLLDB to use the new ABI functions to help it properly terminate
      stacks.
      
      
      Modified the mach-o function that extracts dependent files to not resolve the
      path as the paths inside a binary might not match those on the current
      host system.
      
      llvm-svn: 132021
      9b72eb71
  11. May 24, 2011
  12. May 23, 2011
    • Sean Callanan's avatar
      This commit integrates support for the LLVM MCJIT · 79763a42
      Sean Callanan authored
      into the mainline LLDB codebase.  MCJIT introduces
      API improvements and better architectural support.
      
      This commit adds a new subsystem, the
      ProcessDataAllocator, which is responsible for
      performing static data allocations on behalf of the
      IR transformer.  MCJIT currently does not support
      the relocations required to store the constant pool
      in the same allocation as the function body, so we
      allocate a heap region separately and redirect
      static data references from the expression to that
      heap region in a new IR modification pass.
      
      This patch also fixes bugs in the IR
      transformations that were exposed by the transition
      to the MCJIT.  Finally, the patch also pulls in a
      more recent revision of LLVM so that the MCJIT is
      available for use.
      
      llvm-svn: 131923
      79763a42
    • Greg Clayton's avatar
      Calculate the dyld slide from all in memory info without having to use the · cdbf8667
      Greg Clayton authored
      lldb module.
      
      llvm-svn: 131914
      cdbf8667
Loading