Skip to content
  1. Dec 15, 2010
  2. Dec 14, 2010
    • Johnny Chen's avatar
      Added a test case LoadUnloadTestCase.test_dyld_library_path to test launching a process · ea7215f5
      Johnny Chen authored
      linked with a dylib which has been relocated by specifying the DYLD_LIBRARY_PATH environment
      variable.  Test that the function name breakpoint defined in the dylib is resolved.
      
      llvm-svn: 121796
      ea7215f5
    • Jim Ingham's avatar
      Fix the completion of "fr " and the like. · fe0c4253
      Jim Ingham authored
      llvm-svn: 121785
      fe0c4253
    • Johnny Chen's avatar
      Modify test cases to accomodate Python API change: · 94f928b8
      Johnny Chen authored
      o SBFrame.LookupVar -> FindVariable
      o SBFrame.LookupVarInScope -> FindValue
      
      llvm-svn: 121782
      94f928b8
    • Caroline Tice's avatar
      · 472362e6
      Caroline Tice authored
      Fix small bugs:
      
      - Make sure cmd_obj & cmd_obj_sp contain a valid objects before attempting to 
      dereference, in CommandObjectCommandsAlias::Execute and 
      CommandInterpreter::HandleCommand.
      
      - Modify CommandInterpreter::GetCommandSPExact to properly handle
      multi-word command inputs.
      
      llvm-svn: 121779
      472362e6
    • Greg Clayton's avatar
      Changed: · 69b582fa
      Greg Clayton authored
      	SBValue SBFrame::LookupVar(const char *name);
      To
      	SBValue SBFrame::FindVariable (const char *name);
      
      Changed:
      	SBValue LookupVarInScope (const char *name, const char *scope);
      to
      	SBValue FindValue (const char *name, ValueType value_type);
      
      The latter makes it possible to not only find variables (params, locals, globals, and statics), but we can also now get register sets, registers and persistent variables using the frame as the context.
      
      llvm-svn: 121777
      69b582fa
    • Johnny Chen's avatar
      Change the golden output so that merely evaluating an existing persistent variable · 6b4896fd
      Johnny Chen authored
      does not result in a newly created persistent variable.  The old one is returned,
      instead.
      
      llvm-svn: 121775
      6b4896fd
    • Johnny Chen's avatar
      Fixed rdar://problem/8767055 test suite failure TestStaticVariables.py (ToT r121745). · e85d9cb8
      Johnny Chen authored
      Populate the variable list from the stack frame, first.
      
      llvm-svn: 121773
      e85d9cb8
    • Greg Clayton's avatar
      Fixed SBFrame to properly check to make sure it has a valid m_opaque_sp object · 72eff18a
      Greg Clayton authored
      before trying to use it.
      
      llvm-svn: 121748
      72eff18a
    • Greg Clayton's avatar
      Modified LLDB expressions to not have to JIT and run code just to see variable · 8b2fe6dc
      Greg Clayton authored
      values or persistent expression variables. Now if an expression consists of
      a value that is a child of a variable, or of a persistent variable only, we
      will create a value object for it and make a ValueObjectConstResult from it to
      freeze the value (for program variables only, not persistent variables) and
      avoid running JITed code. For everything else we still parse up and JIT code
      and run it in the inferior. 
      
      There was also a lot of clean up in the expression code. I made the 
      ClangExpressionVariables be stored in collections of shared pointers instead
      of in collections of objects. This will help stop a lot of copy constructors on
      these large objects and also cleans up the code considerably. The persistent
      clang expression variables were moved over to the Target to ensure they persist
      across process executions.
      
      Added the ability for lldb_private::Target objects to evaluate expressions.
      We want to evaluate expressions at the target level in case we aren't running
      yet, or we have just completed running. We still want to be able to access the
      persistent expression variables between runs, and also evaluate constant 
      expressions. 
      
      Added extra logging to the dynamic loader plug-in for MacOSX. ModuleList objects
      can now dump their contents with the UUID, arch and full paths being logged with
      appropriate prefix values.
      
      Thread hardened the Communication class a bit by making the connection auto_ptr
      member into a shared pointer member and then making a local copy of the shared
      pointer in each method that uses it to make sure another thread can't nuke the
      connection object while it is being used by another thread.
      
      Added a new file to the lldb/test/load_unload test that causes the test a.out file
      to link to the libd.dylib file all the time. This will allow us to test using
      the DYLD_LIBRARY_PATH environment variable after moving libd.dylib somewhere else.
      
      llvm-svn: 121745
      8b2fe6dc
    • Sean Callanan's avatar
      Bugfixes for the new "self" pointer handling. Specifically, · 9d48e804
      Sean Callanan authored
      the code to pass the _cmd pointer has been improved, and _cmd
      is now set to the value of _cmd for the current context, as
      opposed to being simply NULL.
      
      llvm-svn: 121739
      9d48e804
  3. Dec 13, 2010
  4. Dec 12, 2010
    • Greg Clayton's avatar
      Fixed a multi-threaded race condition that could happen when communication... · bfae66ae
      Greg Clayton authored
      Fixed a multi-threaded race condition that could happen when communication classes are shutting down. We currently don't protect communication connection classes against multi-threaded access. The connection is stored in the lldb_private::Communication.m_connection_ap auto_ptr member. We either need to add protections when accessing this class or not let anything racy occur. With this fix, we are doing the latter.
      
      llvm-svn: 121647
      bfae66ae
    • Greg Clayton's avatar
      Fixed an issue where the macosx dynamic loader, on the first shared library... · 7d07a45f
      Greg Clayton authored
      Fixed an issue where the macosx dynamic loader, on the first shared library loaded notification, wasn't properly removing shared libraries from the target that didn't get loaded. This usually happens when a different shared library is loaded in place of another due to DYLD_LIBRARY_PATH or DYLD_FRAMEWORK_PATH environment variables. We now properly remove any images that didn't make it into the executable.
      
      llvm-svn: 121641
      7d07a45f
    • Greg Clayton's avatar
      Added the ability for SBTarget to resolve load addresses (convert lldb::addr_t... · ac2eb9b1
      Greg Clayton authored
      Added the ability for SBTarget to resolve load addresses (convert lldb::addr_t values into resolved SBAddress objects). These SBAddress objects can then be used to resolve a symbol context using "lldb::SBSymbolContext ResolveSymbolContextForAddress (const lldb::SBAddress& addr, uint32_t resolve_scope);".
      
      llvm-svn: 121638
      ac2eb9b1
  5. Dec 11, 2010
  6. Dec 10, 2010
Loading