Skip to content
  1. Mar 19, 2013
    • Sean Callanan's avatar
      Refactored the expression parser so that the IR · 8dfb68e0
      Sean Callanan authored
      and the JITted code are managed by a standalone
      class that handles memory management itself.
      
      I have removed RecordingMemoryManager and
      ProcessDataAllocator, which filled similar roles
      and had confusing ownership, with a common class
      called IRExecutionUnit.  The IRExecutionUnit
      manages all allocations ever made for an expression
      and frees them when it goes away.  It also contains
      the code generator and can vend the Module for an
      expression to other clases.
      
      The end goal here is to make the output of the
      expression parser re-usable; that is, to avoid
      re-parsing when re-parsing isn't necessary.
      
      I've also cleaned up some code and used weak pointers
      in more places.  Please let me know if you see any
      leaks; I checked myself as well but I might have
      missed a case.
      
      llvm-svn: 177364
      8dfb68e0
    • Greg Clayton's avatar
      Fixed the README to match the current code. · a45a5d86
      Greg Clayton authored
      llvm-svn: 177346
      a45a5d86
    • Jim Ingham's avatar
      Add a comment about how to add a target for a test case. · 3793322d
      Jim Ingham authored
      llvm-svn: 177343
      3793322d
    • Jim Ingham's avatar
      Move the performance test cases into their own project. · 65423de8
      Jim Ingham authored
      llvm-svn: 177341
      65423de8
  2. Mar 18, 2013
    • Greg Clayton's avatar
      Code cleanup: · 7b8f7382
      Greg Clayton authored
      - don't use preprocessor macros
      - use switch statements
      - don't put anything in the lldb namespace, use "lldb_perf" namespace.
      - Pass the action struct into each TestStep() for each step fill in
      - Modify the ActionWanted class to have accessors to make the continue, next, finish, kill instead of using preproc macros
      
      llvm-svn: 177332
      7b8f7382
  3. Mar 16, 2013
  4. Mar 15, 2013
  5. Mar 14, 2013
  6. Mar 13, 2013
Loading