Skip to content
  1. Apr 05, 2013
    • Sean Callanan's avatar
      Factored out memory access into the target process · 5a1af4e6
      Sean Callanan authored
      from IRExecutionUnit into a superclass called
      IRMemoryMap.  IRMemoryMap handles all reading and
      writing, ensuring that areas are kept track of and
      memory is properly cached (and deleted).
      
      Also fixed several cases where we would simply leak
      binary data in the target process over time.  Now
      the expression objects explicitly own their
      IRExecutionUnit and delete it when they go away.  This
      is why I had to modify ClangUserExpression,
      ClangUtilityFunction, and ClangFunction.
      
      As a side effect of this, I am removing the JIT
      mutex for an IRMemoryMap.  If it turns out that we
      need this mutex, I'll add it in then, but right now
      it's just adding complexity.
      
      This is part of a more general project to make
      expressions fully reusable.  The next step is to
      make materialization and dematerialization use
      the IRMemoryMap API rather than writing and
      reading directly from the process's memory. 
      This will allow the IR interpreter to use the
      same data, but in the host's memory, without having
      to use a different set of pointers.
      
      llvm-svn: 178832
      5a1af4e6
    • Jason Molenda's avatar
      5d5c49ce
    • Jason Molenda's avatar
      Add a new PlatformDarwinKernel for kernel debugging. This Platform · 1c627543
      Jason Molenda authored
      plugin will index the kext bundles on the local filesystem when
      created.  During a kernel debug session, when the DynamicLoader
      plugin needs to locate a kext by name like
      "com.apple.com.apple.filesystems.autofs", the Platform can quickly
      look for a UUID match in those kernel debug kit directories it
      previously indexed.
      
      I'm still working on profiling the performance impact of the inital
      kext bundle scan; there will likely need to be a switch to enable
      or disable this plugin's scan.
      
      This only affects Mac kernel debugging and the code is only built
      on Apple systems because of some use of low-level CoreFoundation
      to parse plists.
      
      <rdar://problem/13503583> 
      
      llvm-svn: 178827
      1c627543
    • Greg Clayton's avatar
      <rdar://problem/13477795> · a16cb16a
      Greg Clayton authored
      crashlog.py was always subtracting 1 to point to the previous instruction when symbolicating ARM backtraces. Many times the backtraces will include bit zero set to 1 to indicate thumb, so we need to make sure we mask the address and then backup one for non frame zero frames.
      
      llvm-svn: 178812
      a16cb16a
  2. Apr 04, 2013
  3. Apr 03, 2013
    • Greg Clayton's avatar
      <rdar://problem/12789467> · de3d01e2
      Greg Clayton authored
      Fixed an attach case for ARM that was imporperly detecting an application bundle when there wasn't one.
      
      llvm-svn: 178704
      de3d01e2
    • Greg Clayton's avatar
      <rdar://problem/13384801> · bc43cab5
      Greg Clayton authored
      Make lldb_private::RegularExpression thread safe everywhere. This was done by removing the m_matches array from the lldb_private::RegularExpression class and putting it into the new lldb_private::RegularExpression::Match class. When executing a regular expression you now have the option to create a lldb_private::RegularExpression::Match object and pass a pointer in if you want to get parenthesized matching. If you don't want any matching, you pass in NULL. The lldb_private::RegularExpression::Match object is initialized with the number of matches you desire. Any matching strings are now extracted from the lldb_private::RegularExpression::Match objects. This makes the regular expression objects thread safe and as a result many more regex objects were turned into static objects that end up using a local lldb_private::RegularExpression::Match object when executing.
      
      llvm-svn: 178702
      bc43cab5
    • Rafael Espindola's avatar
      Fix build. · f24933f6
      Rafael Espindola authored
      This should fix the build breakage caused by the api change in 178663.
      
      llvm-svn: 178700
      f24933f6
    • Greg Clayton's avatar
      <rdar://problem/13561911> · a75f0ca3
      Greg Clayton authored
      Modify LLDB to handle DW_FORM_ref_addr attributes for DWARF3 and DWARF4.
      
      llvm-svn: 178696
      a75f0ca3
    • Jason Molenda's avatar
      #include clang's AST/DeclCXX.h to pick up CXXRecordDecl definition, · c01e1b72
      Jason Molenda authored
      needed for some versions of clang.
      
      llvm-svn: 178692
      c01e1b72
    • Greg Clayton's avatar
      <rdar://problem/13416800> · 927fa01e
      Greg Clayton authored
      ptr_refs command frequently doesn't work when run in large applicaton. This was due to the default timeout of 500ms. The timeouts have now been increased and all expression evaluations have been modified.
      
      llvm-svn: 178628
      927fa01e
    • Jason Molenda's avatar
      Remove a bit of code duplication in RNBRemote::HandlePacket_qProcessInfo - · 69535e00
      Jason Molenda authored
      call DNBProcessGetCPUType() to get the cputype of the process we're debugging.
      
      llvm-svn: 178620
      69535e00
    • Jason Molenda's avatar
      Fix another old usage of GetCurrentThread() to get a mach port · d5318c0c
      Jason Molenda authored
      number in RNBRemote::HandlePacket_qProcessInfo -- add a new
      GetCurrentThreadMachPort() so callers who need to make a mach
      thred_get_state() call at the RNBRemote level will have a way to
      get the port number.
      
      llvm-svn: 178619
      d5318c0c
    • Greg Clayton's avatar
      <rdar://problem/13506727> · 43fe217b
      Greg Clayton authored
      Symbol table function names should support lookups like symbols with debug info. 
      
      To fix this I:
      - Gutted the way FindFunctions is used, there used to be way too much smarts only in the DWARF plug-in
      - Made it more efficient by chopping the name up once and using simpler queries so that SymbolFile and Symtab plug-ins don't need to do as much
      - Filter the results at a higher level
      - Make the lldb_private::Symtab able to chop up C++ mangled names and make as much sense out of them as possible and also be able to search by basename, fullname, method name, and selector name.
      
      llvm-svn: 178608
      43fe217b
    • Enrico Granata's avatar
      <rdar://problem/13563403> · eb8bd925
      Enrico Granata authored
      Reimplemented the NSDictionary synthetic children provider for added performance.
      Instead of generating pairs by running an expression, we now create a pair type using clang-level APIs and fill in a buffer with the pointers to key and value
      This strategy takes the time required to dump a 10k items __NSDictionaryM from ~45s to <4s
      
      llvm-svn: 178601
      eb8bd925
    • Jim Ingham's avatar
    • Sean Callanan's avatar
      Improved reporting of faults on i386. · e29f61d8
      Sean Callanan authored
      <rdar://problem/13558979>
      
      llvm-svn: 178596
      e29f61d8
    • Greg Clayton's avatar
      Fixed the version test for darwin. · 1a400cf4
      Greg Clayton authored
      llvm-svn: 178595
      1a400cf4
    • Enrico Granata's avatar
      23ab35ae
  4. Apr 02, 2013
  5. Apr 01, 2013
Loading