Skip to content
  1. Dec 17, 2011
    • Jim Ingham's avatar
      Remove an unnecessary #include. · 105d7234
      Jim Ingham authored
      llvm-svn: 146798
      105d7234
    • Johnny Chen's avatar
      http://llvm.org/bugs/show_bug.cgi?id=11588 · b456b792
      Johnny Chen authored
      valobj.AddressOf() returns None when an address is expected in a SyntheticChildrenProvider
      
      Patch from Enrico Granata:
      
      The problem was that the frozen object created by the expression parser was a copy of the contents of the StgClosure, rather than a pointer to it. Thus, the expression parser was correctly computing the result of the arithmetic&cast operation along with its address, but only saving it in the live object. This meant that the frozen copy acted as an address-less variable, hence the problem.
      
      The fix attached to this email lets the expression parser store the "live address" in the frozen copy of the address when the object is built without a valid address of its own.
      Doing so, along with delegating ValueObjectConstResult to calculate its own address when necessary, solves the issue. I have also added a new test case to check for regressions in this area, and checked that existing test cases pass correctly.
      
      llvm-svn: 146768
      b456b792
  2. Dec 16, 2011
    • Sean Callanan's avatar
      Updated Clang to take an enhancement to the way · bb12004c
      Sean Callanan authored
      we handle Objective-C method calls.  Currently,
      LLDB treats the result of an Objective-C method
      as unknown if the type information doesn't have
      the method's signature.  Now Clang can cast the
      result to id if it isn't explicitly cast.
      
      I also added a test case for this, as well as a
      fix for a type import problem that this feature
      exposed.
      
      llvm-svn: 146756
      bb12004c
    • Greg Clayton's avatar
      Handle all of the "thumb" target triple architecture variants that llvm · b5c39fe9
      Greg Clayton authored
      handles.
      
      llvm-svn: 146746
      b5c39fe9
    • Jason Molenda's avatar
      When we're unwinding out of frame 0 and we end up with a bogus frame · 9d828ac0
      Jason Molenda authored
      1 -- an address pointing off into non-executable memory -- don't
      abort the unwind.  We'll use the ABI's default UnwindPlan to try
      to get out of frame 1 and on many platforms with a standard frame
      chain stack layout we can get back on track and get a valid frame
      2.  This preserves the lldb behavior to-date; the change last week
      to require the memory region to be executable broke it.
      
      I'd like to mark this frame specially when displayed to the user;
      I tried to override the places where the frame's pc value is returned
      to change it to a sentinel value (e.g. LLDB_INVALID_ADDRESS) but
      couldn't get that to work cleanly so I backed that part out for
      now.  When this happens we'll often miss one of the user's actual
      frames, the one that's of most interest to the user, so I'd like
      to make this visually distinctive.
      
      Note that a frame in non-executable memory region is only allowed
      for frame 1.  After that we should be solid on the unwind and any
      pc address in non-executable memory indicates a failure and we
      should stop unwinding.
      
      llvm-svn: 146723
      9d828ac0
    • Jim Ingham's avatar
      Remove unnecessary #include. · 30b74fa8
      Jim Ingham authored
      llvm-svn: 146717
      30b74fa8
    • Jim Ingham's avatar
      Fix a bug where when debugging with .o files, we end up with two symbols for... · 918533bc
      Jim Ingham authored
      Fix a bug where when debugging with .o files, we end up with two symbols for each real OBJC_CLASS_$_whatever, one of which is correctly classified as an ObjCClass symbol, and the other is just a data symbol.  This was messing up the ObjC dynamic type detection.
      <rdar://problem/10589527>
      
      llvm-svn: 146712
      918533bc
  3. Dec 15, 2011
    • Greg Clayton's avatar
      <rdar://problem/10584789> · f9322415
      Greg Clayton authored
      Added a static memory pressure function in SBDebugger:
      
          void SBDebugger::MemoryPressureDetected ()
      
      This can be called by applications that detect memory pressure to cause LLDB to release cached information.
      
      llvm-svn: 146640
      f9322415
    • Greg Clayton's avatar
      Expose new read memory fucntion through python in SBProcess: · e91b7957
      Greg Clayton authored
          size_t
          SBProcess::ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &error);
      
          uint64_t
          SBProcess::ReadUnsignedFromMemory (addr_t addr, uint32_t byte_size, lldb::SBError &error);
      
          lldb::addr_t
          SBProcess::ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
      
      These ReadCStringFromMemory() has some SWIG type magic that makes it return the
      python string directly and the "buf" is not needed:
      
      error = SBError()
      max_cstr_len = 256
      cstr = lldb.process.ReadCStringFromMemory (0x1000, max_cstr_len, error)
      if error.Success():
          ....
      
      The other two functions behave as expteced. This will make it easier to get integer values
      from the inferior process that are correctly byte swapped. Also for pointers, the correct
      pointer byte size will be used.
      
      Also cleaned up a few printf style warnings for the 32 bit lldb build on darwin.
      
      llvm-svn: 146636
      e91b7957
    • Johnny Chen's avatar
      http://llvm.org/bugs/show_bug.cgi?id=11579 · 95873a68
      Johnny Chen authored
      lldb::SBValue::CreateValueFromAddress does not verify SBType::GetPointerType succeeds
      
      SBValue::CreateValueFromAddress() should check the validity of type and its derived pointer type
      before using it.  Add a test case.
      
      llvm-svn: 146629
      95873a68
    • Sean Callanan's avatar
      I have added a function to SBTarget that allows · 50952e95
      Sean Callanan authored
      clients to disassemble a series of raw bytes as
      demonstrated by a new testcase.
      
      In the future, this API will also allow clients
      to provide a callback that adds comments for
      addresses in the disassembly.
      
      I also modified the SWIG harness to ensure that
      Python ByteArrays work as well as strings as
      sources of raw data.
      
      llvm-svn: 146611
      50952e95
  4. Dec 14, 2011
    • Jason Molenda's avatar
      On Mac OS X the Objective-C runtime (libobjc) has many critical · 4f6f5f9c
      Jason Molenda authored
      dispatch functions that are implemented in hand-written assembly.
      There is also hand-written eh_frame instructions for unwinding
      from these functions.
      
      Normally we don't use eh_frame instructions for the currently
      executing function, prefering the assembly instruction profiling
      method.  But in these hand-written dispatch functions, the
      profiling is doomed and we should use the eh_frame instructions.
      
      Unfortunately there's no easy way to flag/extend the eh_frame/debug_frame
      sections to annotate if the unwind instructions are accurate at
      all addresses ("asynchronous") or if they are only accurate at locations
      that can throw an exception ("synchronous" and the normal case for 
      gcc/clang generated eh_frame/debug_frame CFI).
      
      <rdar://problem/10508134>
      
      llvm-svn: 146551
      4f6f5f9c
    • Johnny Chen's avatar
      http://llvm.org/bugs/show_bug.cgi?id=11560 lldb::SBTarget::FindFirstType crashes when passed None · c6770763
      Johnny Chen authored
      Add null checks to several functions.  Plus add test scenario for passing None to SBTarget.FindFirstType(None) and friends.
      
      llvm-svn: 146540
      c6770763
    • Sean Callanan's avatar
      This commit is the result of a general audit of · fc4f2fb0
      Sean Callanan authored
      the expression parser to locate instances where
      dyn_cast<>() and isa<>() are used on types, and
      replace them with getAs<>() as appropriate.
      
      The difference is that dyn_cast<>() and isa<>()
      are essentially LLVM/Clang's equivalent of RTTI
      -- that is, they try to downcast the object and
      return NULL if they cannot -- but getAs<>() can
      traverse typedefs to perform a semantic cast.
      
      llvm-svn: 146537
      fc4f2fb0
  5. Dec 13, 2011
    • Jason Molenda's avatar
      Add two new memory region based checks to the Unwinder: · 87698349
      Jason Molenda authored
      Check that the pc value for frames up the stack is in a
      mapped+executable region of memory.
      
      Check that the stack pointer for frames up the stack is
      in a mapped+readable region of memory.
      
      If the unwinder ever makes a mistake walking the stack,
      these checks will help to keep it from going too far into
      the weeds.
      
      These aren't fixing any bugs that I know of, but they
      add extra robustness to a complicated task.
      
      llvm-svn: 146478
      87698349
    • Jason Molenda's avatar
      When unwinding from the first frame, try to ask the remote debugserver · cb349ee1
      Jason Molenda authored
      if this is a mapped/executable region of memory.  If it isn't, we've jumped
      through a bad pointer and we know how to unwind the stack correctly based
      on the ABI.  
      
      Previously I had 0x0 special cased but if you jumped to 0x2 on x86_64 one
      frame would be skipped because the unwinder would try using the x86_64 
      ArchDefaultUnwindPlan which relied on the rbp.
      
      Fixes <rdar://problem/10508291>
      
      llvm-svn: 146477
      cb349ee1
    • Greg Clayton's avatar
      Use forward declarations more of the time to save on things that we need to · 8eb732e9
      Greg Clayton authored
      parse.
      
      llvm-svn: 146473
      8eb732e9
    • Sean Callanan's avatar
      I have modified the part of the code that finds and · d5cc132b
      Sean Callanan authored
      validates the "self," "this," and "_cmd" pointers
      that get passed into expressions.  It used to check
      them aggressively for validity before allowing the
      expression to run as an object method; now, this
      functionality is gated by a bool and off by default.
      
      Now the default is that when LLDB is stopped in a
      method of a class, code entered using "expr" will
      always masquerade as an instance method.  If for
      some reason "self," "this," or "_cmd" is unavailable
      it will be reported as NULL.  This may cause the
      expression to crash if it relies on those pointers,
      but for example getting the addresses of ivars will
      now work as the user would expect.
      
      llvm-svn: 146465
      d5cc132b
  6. Dec 12, 2011
    • Johnny Chen's avatar
      rdar://problem/10227672 · 64bab489
      Johnny Chen authored
      There were two problems associated with this radar:
      1. "settings show target.source-map" failed to show the source-map after, for example,
         "settings set target.source-map /Volumes/data/lldb/svn/trunk/test/source-manager /Volumes/data/lldb/svn/trunk/test/source-manager/hidden"
         has been executed to set the source-map.
      2. "list -n main" failed to display the source of the main() function after we properly set the source-map.
      
      The first was fixed by adding the missing functionality to TargetInstanceSettings::GetInstanceSettingsValue (Target.cpp)
      and updating the support files PathMappingList.h/.cpp; the second by modifying SourceManager.cpp to fix several places
      with incorrect logic.
      
      Also added a test case test_move_and_then_display_source() to TestSourceManager.py, which moves main.c to hidden/main.c,
      sets target.source-map to perform the directory mapping, and then verifies that "list -n main" can still show the main()
      function.
      
      llvm-svn: 146422
      64bab489
    • Greg Clayton's avatar
      Use forward types where possible to avoid having to parse extra DWARF when · 42ce2f35
      Greg Clayton authored
      it is not required.
      
      llvm-svn: 146418
      42ce2f35
  7. Dec 10, 2011
    • Greg Clayton's avatar
      <rdar://problem/9958446> · 6f6bf26a
      Greg Clayton authored
      <rdar://problem/10561406>
      
      Stopped the SymbolFileDWARF::FindFunctions (...) from always calculating
      the line table entry for all functions that were found. This can slow down
      the expression parser if it ends up finding a bunch of matches. Fixed the 
      places that were relying on the line table entry being filled in.
      
      Discovered a recursive stack blowout that happened when "main" didn't have
      line info for it and there was no line information for "main"
      
      llvm-svn: 146330
      6f6bf26a
    • Sean Callanan's avatar
      Fixed a problem where if a frame was present the · fd1ba911
      Sean Callanan authored
      expression parser would never try getting typed
      variables from the target.
      
      llvm-svn: 146317
      fd1ba911
    • Sean Callanan's avatar
      Two fixes for file variables: · 9b3569ba
      Sean Callanan authored
      - Even if a frame isn't present, we always try
        to use FindGlobalVariable to find variables.
        Instead of using frame->TrackGlobalVariable()
        to promote the VariableSP into a ValueObject,
        we now simply use ValueObjectVariable.
      
      - When requesting the value of a variable, we
        allow returning of the "live version" of the
        variable -- that is, the variable in the
        target instead of a pointer to its freeze
        dried version in LLDB -- even if there is no
        process present.
      
      llvm-svn: 146315
      9b3569ba
    • Greg Clayton's avatar
      <rdar://problem/10559329> · 3bffb085
      Greg Clayton authored
      An assertion was firing when parsing types due to trying to complete parent
      class decl contenxt types too often.
      
      Also, relax where "dsymutil" binary can come from in the Makefile.rules.
      
      llvm-svn: 146310
      3bffb085
    • Jim Ingham's avatar
      Don't try to cache the ExecutionContextScope in the ValueObject::EvaluationPoint, it is too · 9ee01151
      Jim Ingham authored
      hard to ensure it doesn't get invalidated out from under us.  Instead look it up from the ThreadID
      and StackID when asked for it.
      <rdar://problem/10554409>
      
      llvm-svn: 146309
      9ee01151
    • Sean Callanan's avatar
      Fixed a problem with properties where LLDB was not · 8a6a6acd
      Sean Callanan authored
      creating appropriate setter/getter methods for
      property definitions.
      
      llvm-svn: 146295
      8a6a6acd
  8. Dec 09, 2011
    • Greg Clayton's avatar
      Tested a theory on the where when we lookup things in the accelerator tables · 220a0077
      Greg Clayton authored
      that if we prefer the current compile unit, followed by any compile units that
      already had their DIEs parsed, followed by the rest of the matches, that we
      might save some memory. This turned out not to help much. The code is commented
      out, but I want to check it in so I don't lose the code in case it could help
      later.
      
      Added the ability to efficiently find the objective C class implementation
      when using the new .apple_types acclerator tables with the type flags. If the
      type flags are not available, we default back to what we were doing before.
      
      llvm-svn: 146250
      220a0077
    • Jason Molenda's avatar
      Move the ARM specific arch picker from PlatformRemoteiOS.cpp to · d74db47a
      Jason Molenda authored
      PlatformDarwin.cpp -- call it from both PlatformRemoteiOS.cpp
      and the native process PlatformDarwin.cpp when running on an arm
      system.
      
      Bump lldb version number to 94.
      
      llvm-svn: 146249
      d74db47a
    • Jim Ingham's avatar
      Rework how the breakpoint conditions & callbacks are handled. We now iterate... · 79ea1d88
      Jim Ingham authored
      Rework how the breakpoint conditions & callbacks are handled.  We now iterate over all the locations at the site
      that got hit, and first check the condition, and if that location's condition says we should stop, then we
      run the callback.  In the end if any location's condition and callback say we should stop, then we stop. 
      
      llvm-svn: 146242
      79ea1d88
    • Sean Callanan's avatar
      If the expression parser is unable to complete a TagDecl · 12014a04
      Sean Callanan authored
      in the context in which it was originally found, the
      expression parser now goes hunting for it in all modules
      (in the appropriate namespace, if applicable).  This means
      that forward-declared types that exist in another shared
      library will now be resolved correctly.
      
      Added a test case to cover this.  The test case also tests
      "frame variable," which does not have this functionality
      yet.
      
      llvm-svn: 146204
      12014a04
  9. Dec 08, 2011
    • Jim Ingham's avatar
      60dbabba
    • Sean Callanan's avatar
      Added the ability to dereference an Objective-C object · 5780f9df
      Sean Callanan authored
      pointer to make the result of an expression.  LLDB now
      dumps the ivars of the Objective-C object and all of
      its parents.  This just required fixing a bug where we
      didn't distinguish between Objective-C object pointers
      and regular C-style pointers.
      
      Also added a testcase to verify that this continues to
      work.
      
      llvm-svn: 146164
      5780f9df
    • Greg Clayton's avatar
      Fixed an issue where we are asking to get the decl context for a function · cab36a3a
      Greg Clayton authored
      that is in a class from the expression parser, and it was causing an
      assertion. There is now a function that will correctly resolve a type
      even if it is in a class.
      
      llvm-svn: 146141
      cab36a3a
    • Jim Ingham's avatar
      Get the bit-field offset & size for ObjC ivars that are bitfields. · f80bc3f4
      Jim Ingham authored
      <rdar://problem/10535460> lldb expression evaluation doesn't handle bit fields in ObjC classes properly
      
      llvm-svn: 146134
      f80bc3f4
    • Greg Clayton's avatar
      Added a new class called lldb_private::SymbolFileType which is designed to · d1767f05
      Greg Clayton authored
      take a SymbolFile reference and a lldb::user_id_t and be used in objects
      which represent things in debug symbols that have types where we don't need
      to know the true type yet, such as in lldb_private::Variable objects. This
      allows us to defer resolving the type until something is used. More specifically
      this allows us to get 1000 local variables from the current function, and if
      the user types "frame variable argc", we end up _only_ resolving the type for
      "argc" and not for the 999 other local variables. We can expand the use of this
      as needed in the future.
      
      Modified the DWARFMappedHash class to be able to read the HashData that has
      more than just the DIE offset. It currently will read the atoms in the header
      definition and read the data correctly. Currently only the DIE offset and 
      type flags are supported. This is needed for adding type flags to the 
      .apple_types hash accelerator tables.
      
      Fixed a assertion crash that would happen if we have a variable that had a
      DW_AT_const_value instead of a location where "location.LocationContains_DW_OP_addr()"
      would end up asserting when it tried to parse the variable location as a
      DWARF opcode list.
      
      Decreased the amount of memory that LLDB would use when evaluating an expression
      by 3x - 4x for clang. There was a place in the namespace lookup code that was
      parsing all namespaces with a certain name in a DWARF file instead of stopping
      when it found the first match. This was causing all of the compile units with
      a matching namespace to get parsed into memory and causing unnecessary memory
      bloat. 
      
      Improved "Target::EvaluateExpression(...)" to not try and find a variable
      when the expression contains characters that would certainly cause an expression
      to need to be evaluated by the debugger. 
      
      llvm-svn: 146130
      d1767f05
    • Sean Callanan's avatar
      Removed function information from the symbol table · 6c62c83c
      Sean Callanan authored
      for now to fix testcases.  Once we have a valid use
      for the function information (i.e., once properties
      returning UnknownAnyTy are allowed, once we read
      return type information from the runtime, among
      other uses) I will re-enable this.
      
      llvm-svn: 146129
      6c62c83c
    • Greg Clayton's avatar
      Don't crash due to not checking log shared pointer. · 161f3670
      Greg Clayton authored
      llvm-svn: 146126
      161f3670
  10. Dec 07, 2011
    • Sean Callanan's avatar
      Fixed a few details of method lookup in Objective-C · 610baf42
      Sean Callanan authored
      symbols.  Now we find the correct method.
      
      Unfortunately we don't get the superclass from the
      runtime yet so the method doesn't import correctly
      (and I added a check to make sure that doesn't hurt
      us) but once we get that information right we will
      report methods correctly to the parser as well.
      
      Getting superclass information requires a common AST
      context for all Objective-C runtime information,
      meaning that the superclass and the subclass are in
      the same AST context in all cases.  That is the next
      thing that needs to be done here.
      
      llvm-svn: 146089
      610baf42
    • Sean Callanan's avatar
      Fixed a potential crasher if the frame is not · ae6d6141
      Sean Callanan authored
      avalable when a global variable is looked up.
      In ClangExpressionDeclMap, a frame should usually
      be available.
      
      llvm-svn: 146066
      ae6d6141
    • Jim Ingham's avatar
      Fix assert string to be more informative. · b3527409
      Jim Ingham authored
      llvm-svn: 146061
      b3527409
Loading