Skip to content
  1. Apr 11, 2013
  2. Apr 10, 2013
  3. Apr 09, 2013
  4. Apr 08, 2013
  5. Apr 06, 2013
  6. Apr 05, 2013
    • Enrico Granata's avatar
      <rdar://problem/13563628> · f15ee4e8
      Enrico Granata authored
      Introducing a negative cache for ObjCLanguageRuntime::LookupInCompleteClassCache()
      This helps speed up the (common) case of us looking for classes that are hidden deep within Cocoa internals and repeatedly failing at finding type information for them.
      In order for this to work, we need to clean this cache whenever debug information is added. A new symbols loaded event is added that is triggered with add-dsym (before modules loaded would be triggered for both adding modules and adding symbols).
      Interested parties can register for this event. Internally, we make sure to clean the negative cache whenever symbols are added.
      Lastly, ClassDescriptor::IsTagged() has been refactored to GetTaggedPointerInfo() that also (optionally) returns info and value bits. In this way, data formatters can share tagged pointer code instead of duplicating the required arithmetic.
      
      llvm-svn: 178897
      f15ee4e8
    • Jim Ingham's avatar
      Fixme comment. · 0b55b438
      Jim Ingham authored
      llvm-svn: 178889
      0b55b438
    • Jason Molenda's avatar
      Add support for Platform plugins to have settings. · 9b837a1e
      Jason Molenda authored
      Add two initial settings for the PlatformDarwinKernel plugin,
      
      plugin.platform.darwin-kernel.search-locally-for-kexts [true|false]
      plugin.platform.darwin-kernel.kext-directories [directory list]
      
      llvm-svn: 178846
      9b837a1e
    • Jason Molenda's avatar
      Change CommandObjectPlatform commands to get the current platform · 8c1157cc
      Jason Molenda authored
      from the current Target, if there is one, else back off to getting
      the currently selected platform from the Debugger (as it ws doing
      previously.)
      
      Remove code from DynamicLoaderDarwinKernel that was setting the platform
      in both the Target and in the Debugger.
      
      llvm-svn: 178836
      8c1157cc
    • 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
  7. Apr 04, 2013
Loading