Skip to content
  1. Jul 18, 2014
  2. Jul 17, 2014
  3. Jul 16, 2014
    • Greg Clayton's avatar
      Modify the EFI KDP debugging to not use any dynamic loader since it does... · a1bce2ef
      Greg Clayton authored
      Modify the EFI KDP debugging to not use any dynamic loader since it does manual dynamic loading itself via python modules.
      
      Also track down the required binary by trying to locate the main executable module through LLDB's symbol and executable file locating code.
      
      <rdar://problem/16570258>
      
      llvm-svn: 213199
      a1bce2ef
    • Greg Clayton's avatar
      ^C wasn't interrupting an expression during a long evaluation or deadlock. · 0fdd3ae5
      Greg Clayton authored
      The problem was that we have an IOHandler thread that services the IOHandler stack. The command interepter is on the top of the stack and it receives a "expression ..." command, and it calls the IOHandlerIsComplete() callback in the command interpereter delegate which runs an expression. This causes the IOHandlerProcessSTDIO to be pushed, but since we are running the code from the IOHandler thread, it won't get run. When CTRL+C is pressed, we do deliver the interrupt to the IOHandlerProcessSTDIO::Interrupt() function, but it was always writing 'i' to the interrupt pipe, even if we weren't actively reading from the debugger input and the pipes. This fix works around the issue by directly issuing the async interrupt to the process if the process is running.
      
      A longer term more correct fix would to be run the IOHandler thread and have it just do the determination of the input and when complete input is received, run the code that handles that input on another thread and syncronize with that other thread to detect when more input is desired. That change is too big to make right now, so this fix will tide us over until we can get there.
      
      <rdar://problem/16556228>
      
      llvm-svn: 213196
      0fdd3ae5
    • Zachary Turner's avatar
      Fix some warnings in the Windows build. · 40411165
      Zachary Turner authored
      llvm-svn: 213194
      40411165
    • Todd Fiala's avatar
      Add Host::MAX_THREAD_NAME_LENGTH constant. · 17096d76
      Todd Fiala authored
      This value gets set to a max uint32_t value when there is no known limit; otherwise,
      it is set to a value appropriate for the platform.  For the moment, only
      Linux, FreeBSD and NetBSD set it to 16.  All other platforms set it to
      the max uint32_t value.
      
      Modifies the Process private state thread names to fit within a 16-character limit
      when the max thread name length is <= 16.  These guarantee that the thread names
      can be distinguished within the first 16 characters.  Prior to this change, those
      threads had names in the final dotted name segment that were not distinguishable
      within the first 16 characters.
      
      llvm-svn: 213183
      17096d76
    • Zachary Turner's avatar
      Fix build broken as a result of r213171. · 0152e73a
      Zachary Turner authored
      r213171 renames the 'clangRewriteCore' library to 'clangRewrite'.
      This change simply updates the makefiles to reference the correct
      library name.
      
      llvm-svn: 213181
      0152e73a
    • Todd Fiala's avatar
      gdb-remote test noise suppression on MacOSX. · f9ad21d2
      Todd Fiala authored
      This change adds a member to the base test case for gdb-remote that
      indicates whether a stub makes two X stop notification reports on kill
      commands.  This is set to true for debugserver tests.
      
      The test for killing an attached process after it's first stop notification
      has been modified to look at that flag and add an extra X packet matcher
      so the "unmatched packet warning" doesn't get emitted for the second X on
      MacOSX with debugserver.
      
      I also broke those tests out of the monolithic TestLldbGdbServer mega test
      case and put it in its own, new TestGdbRemoteKill.py file and test case.
      
      Tested:
      Ubuntu 14.04 x86_64, clang-3.5 built lldb, no test failures.
      MacOSX 10.9.4, Xcode 6.0 Beta 3 built lldb, no test failures.
      
      llvm-svn: 213166
      f9ad21d2
    • Todd Fiala's avatar
      Add kalimba as a platform. · cfee9632
      Todd Fiala authored
      This change comprises of additions and some minor changes in order that
      "kalimba" is listed as a supported platform and that debugging any
      kalimbas results in PlatformKalimba being associated with the target.
      
      The changes are as follows:
      
      * The PlatformKalimba implementation itself
      * A tweak to ArchSpec
      * .note parsing for Kalimba in ObjectFileELF.cpp
      * Plugin registration
      * Makefile additions
      
      Change by Matthew Gardiner
      
      Minor tweak for cmake and Xcode by Todd Fiala
      
      Tested:
      Ubuntu 14.04 x86_64, clang 3.5-built lldb, all tests pass.
      MacOSX 10.9.4, Xcode 6.0 Beta 1-built lldb, all tests pass.
      
      llvm-svn: 213158
      cfee9632
    • Greg Clayton's avatar
      Fixed the an objective C test case so it passes correctly. · 2c156f85
      Greg Clayton authored
      Fixed the test case to use a runtime function prototype that will be correct ([NSString stringWithCString: "new"]) instead of one that won't (expression str = [NSString stringWithFormat: @"%cew", 'N']). The runtime doesn't track vararg functions correctly so we can't reconstitute the function correctly.
      
      Also fixed some expressions that used "str_id" whose type was "id" and do the necessary casting since "id" doesn't have any methods.
      
      llvm-svn: 213113
      2c156f85
    • Greg Clayton's avatar
      TestObjCMethods.FoundationTestCase was failing due to an error, fixed now. · 0d830b42
      Greg Clayton authored
      <rdar://problem/16322133>
      llvm.org/pr20267
      
      llvm-svn: 213111
      0d830b42
    • Greg Clayton's avatar
      Fix compile warning. · 325948cc
      Greg Clayton authored
      llvm-svn: 213106
      325948cc
  4. Jul 15, 2014
  5. Jul 14, 2014
    • Todd Fiala's avatar
      Modified gdb-remote tests to run with automatically-chosen ports. · 24189d4c
      Todd Fiala authored
      Now that llgs supports communicating the 0-port choose-a-port
      mechanism and can communicate that back to a caller via the
      --named-pipe option (at parity with debugserver), we use this
      mechanism to always start llgs and debugserver gdb-remote
      protocol tests without needing to use some port arbitration
      mechanism.  This eliminates some potential intermittent failures vs. the
      previous random port and collision-avoidance strategy used.
      
      llvm-svn: 212923
      24189d4c
  6. Jul 12, 2014
  7. Jul 11, 2014
Loading