Skip to content
  1. Dec 21, 2011
    • Sean Callanan's avatar
      The "desired result type" code in the expression · 20bb3aa5
      Sean Callanan authored
      parser has hitherto been an implementation waiting
      for a use.  I have now tied the '-o' option for
      the expression command -- which indicates that the
      result is an Objective-C object and needs to be
      printed -- to the ExpressionParser, which
      communicates the desired type to Clang.
      
      Now, if the result of an expression is determined
      by an Objective-C method call for which there is
      no type information, that result is implicitly
      cast to id if and only if the -o option is passed
      to the expression command.  (Otherwise if there
      is no explicit cast Clang will issue an error.
      This behavior is identical to what happened before
      r146756.)
      
      Also added a testcase for -o enabled and disabled.
      
      llvm-svn: 147099
      20bb3aa5
    • Sean Callanan's avatar
      Fixed a bug in the ASTImporter that affects · 5bc5a76d
      Sean Callanan authored
      types that have been imported multiple times.
      
      The discussion below uses this diagram:
      
      ASTContext     A      B      C
      Decl           Da     Db     Dc
      ASTImporter    \-Iab-/\-Iac-/
                     \-----Iac----/
      
      When a Decl D is imported from ASTContext A to
      ASTContext B, the ASTImporter Iab records the
      pair <Da, Db> in a DenseMap.  That way, if Iab
      ever encounters Da again (for example, as the
      DeclContext for another Decl), it can use the
      imported version.  This is not an optimization,
      it is critical: if I import the field "st_dev"
      as part of importing "struct stat," the field
      must have DeclContext equal to the parent
      structure or we end up with multiple different
      Decls containing different parts of "struct
      stat."  "struct stat" is imported once and
      recorded in the DenseMap; then the ASTImporter
      finds that same version when looking for the
      DeclContext of "st_dev."
      
      The bug arises when Db is imported into another
      ASTContext C and ASTContext B goes away.  This
      often occurs when LLDB produces result variables
      for expressions.  Ibc is aware of the transport
      of Db to Dc, but a brand new ASTImporter, Iac,
      is responsible for completing Dc from its source
      upon request.  That ASTImporter has no mappings,
      so it will produce a clone of Dc when attempting
      to import its children.  That means that type
      completion operations on Dc will fail.
      
      The solution is to create Iac as soon as Ibc
      imports D from B to C, and inform Iac of the
      mapping between Da and Dc.  This allows type
      completion to happen correctly.
      
      llvm-svn: 147016
      5bc5a76d
  2. Dec 20, 2011
  3. Dec 19, 2011
  4. Dec 17, 2011
    • Johnny Chen's avatar
      Fixed code rot pointed out by Jim. · 290fa41b
      Johnny Chen authored
      SBThread::GetStopReasonDataCount/GetStopReasonDataAtIndex() need to handle eStopReasonWatchpoint.
      
      llvm-svn: 146812
      290fa41b
    • Jim Ingham's avatar
      Add the ability to capture the return value in a thread's stop info, and print it · 73ca05a2
      Jim Ingham authored
      as part of the thread format output.
      Currently this is only done for the ThreadPlanStepOut.
      Add a convenience API ABI::GetReturnValueObject.
      Change the ValueObject::EvaluationPoint to BE an ExecutionContextScope, rather than
      trying to hand out one of its subsidiary object's pointers.  That way this will always
      be good.
      
      llvm-svn: 146806
      73ca05a2
    • Greg Clayton's avatar
      Modified LLDB to be able to handle our updated __apple_types accelerator tables · 3cac132d
      Greg Clayton authored
      which have the dwarf DIE tag (DW_TAG_XXX enum) and TypeFlags for each type.
      
      llvm-svn: 146802
      3cac132d
    • 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
  5. 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
  6. 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
  7. 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
  8. 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
  9. 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
  10. 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
Loading