January 2014 Archives by subject
Starting: Thu Jan 2 13:59:32 PST 2014
Ending: Mon Jan 27 13:47:44 PST 2014
Messages: 52
- [llvm-branch-commits] [cfe-branch] r198626 - Clang 3.4 release notes: Fix description of enum increment/decrement change in
Richard Smith
- [llvm-branch-commits] [lldb] r198360 - Making a new "iohandler" branch since I have completely replaced the old InputReader stack with a new IOHandler stack.
Greg Clayton
- [llvm-branch-commits] [lldb] r198366 - IOHandler rewrite which replaced InputReader classes with classes that properly manage stdin/out/err.
Greg Clayton
- [llvm-branch-commits] [lldb] r198378 - Fixed a crasher if you use the new "gui" command with no target or process.
Greg Clayton
- [llvm-branch-commits] [lldb] r198381 - For Apple builds, handle the F1-F4 defaults for Terminal.app since they default to \033OP, \033OQ, \033OR, \033OS instead of \033[11~, \033[12~, \033[13~, \033[14~.
Greg Clayton
- [llvm-branch-commits] [lldb] r198383 - Don't push chars when we don't get valid chars for the Apple Terminal.app work around for function keys.
Greg Clayton
- [llvm-branch-commits] [lldb] r198390 - Fix a crasher when launching due to changes to the ExecutionContext class.
Greg Clayton
- [llvm-branch-commits] [lldb] r198452 - Removed unneeded python function.
Greg Clayton
- [llvm-branch-commits] [lldb] r198471 - Started to hook some of the menus up. Made it so the variables view can be hidden and shown using the "View->Variables" menu.
Greg Clayton
- [llvm-branch-commits] [lldb] r198472 - Update cmake build for iohandler changes
Ed Maste
- [llvm-branch-commits] [lldb] r198473 - Remove explicit global namespace scope to build on FreeBSD
Ed Maste
- [llvm-branch-commits] [lldb] r198517 - Undid most changes to ExecutionContext as they affected ExecutionContext objects that were being used when the process was privately stopped.
Greg Clayton
- [llvm-branch-commits] [lldb] r198521 - Added a register window delegate. It isn't hookup up yet, but it does work.
Greg Clayton
- [llvm-branch-commits] [lldb] r198627 - Checking in work from the weekend that implements a register window. The menu View->Registers can make it appear/disappear.
Greg Clayton
- [llvm-branch-commits] [lldb] r198629 - Fixed interactive interpreter.
Greg Clayton
- [llvm-branch-commits] [lldb] r198674 - Fix a case where we hide the variables window, then show the registers window, and show the variables window again.
Greg Clayton
- [llvm-branch-commits] [lldb] r198719 - Fixed remaining test suite failures on this branch.
Greg Clayton
- [llvm-branch-commits] [lldb] r198773 - Fix the build of iohandler branch of Linux.
Hafiz Abid Qadeer
- [llvm-branch-commits] [lldb] r198801 - Be sure to remove the lisenter hijack from the process in all cases.
Greg Clayton
- [llvm-branch-commits] [lldb] r198802 - Be sure to update the selected thread like the debugger used to when stopping.
Greg Clayton
- [llvm-branch-commits] [lldb] r198823 - Override the builtin quit() and exit() functions when using the embedded interactive interpreter so we don't close stdio and exit the process when the user types "quit()" or "sys.exit()" in the python interpreter.
Greg Clayton
- [llvm-branch-commits] [lldb] r198824 - Make sure we execute the commands after the "file" command in the driver.
Greg Clayton
- [llvm-branch-commits] [lldb] r198826 - Detect interactive mode and don't use editline if we don't have a terminal.
Greg Clayton
- [llvm-branch-commits] [lldb] r198827 - Header file needed for previous checkin.
Greg Clayton
- [llvm-branch-commits] [lldb] r198834 - Fixed moving and setting window bounds functions to make it happen correctly for subwindows. Subwindows in curses can't be moved and must be deleted and re-created, but the user shouldn't have to worry about that.
Greg Clayton
- [llvm-branch-commits] [lldb] r198876 - Added the ability to use a delegate based tree display which currently implements a threads view where the threads can be expanded to view each thread's frames.
Greg Clayton
- [llvm-branch-commits] [lldb] r198947 - Added back some API that Xcode needs. The SBInputReader is being deprecated and we will eventually take it all out once we get all clients off of it.
Greg Clayton
- [llvm-branch-commits] [lldb] r198948 - Display disassembly in the "gui" source view when the sources aren't available.
Greg Clayton
- [llvm-branch-commits] [lldb] r198951 - Fix build issues on Ubuntu 12.04 x86_64 with gcc 4.8.
Todd Fiala
- [llvm-branch-commits] [lldb] r198964 - Fix a multi-line failure exposed by TestCommandRegex.py
Todd Fiala
- [llvm-branch-commits] [lldb] r198989 - Merged top of tree.
Greg Clayton
- [llvm-branch-commits] [lldb] r198992 - Fix a build breakage after the merge.
Greg Clayton
- [llvm-branch-commits] [lldb] r199060 - Improvements to the source window's disassembly view:
Greg Clayton
- [llvm-branch-commits] [lldb] r199322 - Added help dialog box for the "source" view.
Greg Clayton
- [llvm-branch-commits] [lldb] r199341 - Adding some support in the IOHandler branch that is required for Xcode.
Greg Clayton
- [llvm-branch-commits] [lldb] r199406 - Fixed the CommandInterpreter::Confirm() to work correctly again after IOHandler changes.
Greg Clayton
- [llvm-branch-commits] [lldb] r199433 - Added a way to check if the lldb command interpreter is the active IO handler. The Xcode UI does its own history and needs to know when the user presses enter and when to be able to send the last command.
Greg Clayton
- [llvm-branch-commits] [lldb] r199435 - Make SBCommandInterpreter::IsActive() not have to take a lock.
Greg Clayton
- [llvm-branch-commits] [lldb] r199440 - Start the IO handler thread if asked, not another event thread.
Greg Clayton
- [llvm-branch-commits] [lldb] r199445 - Initialize the script interpreter during SBDebugger::Initialize() to make sure we don't end up with a deadlock later due to Python trying to flockfile(stdin) during its initialization call.
Greg Clayton
- [llvm-branch-commits] [lldb] r199524 - Fixed some issues with the embedded python interpreter:
Greg Clayton
- [llvm-branch-commits] [lldb] r199534 - Checking some changes for the curses:
Greg Clayton
- [llvm-branch-commits] [lldb] r199912 - Merge with top of tree.
Greg Clayton
- [llvm-branch-commits] [lldb] r199920 - Make lldb_private::File safe to use when mixing "FILE *" and "fd" usage where if we call fdopen, we don't want to close the m_descriptor.
Greg Clayton
- [llvm-branch-commits] [lldb] r199931 - Allow GUIs that use the LLDB framework to translate "control + char" into strings that can be written into the file handle that will feed the debugger input file.
Greg Clayton
- [llvm-branch-commits] [lldb] r199935 - Don't crash when our input file is closed when a lower IO handler is active.
Greg Clayton
- [llvm-branch-commits] [lldb] r199936 - Don't allow CTRL+D when file handle isn't terminal with a valid size as this means we are using the slave end of a pseudo terminal.
Greg Clayton
- [llvm-branch-commits] [lldb] r200025 - Merge with top of tree.
Greg Clayton
- [llvm-branch-commits] [lldb] r200026 - Remove the prompt_delimiter hack as it is no longer needed and wasn't a good addition to the public API.
Greg Clayton
- [llvm-branch-commits] [lldb] r200055 - Fixed source display to show source/disassembly when the windows first appear and also fixed a crasher when running using the 'c' command in the source window.
Greg Clayton
- [llvm-branch-commits] [lldb] r200241 - Merged with top of tree.
Greg Clayton
- [llvm-branch-commits] [lldb] r200250 - Merged with top of tree.
Greg Clayton
Last message date:
Mon Jan 27 13:47:44 PST 2014
Archived on: Tue Aug 4 16:03:49 PDT 2015
This archive was generated by
Pipermail 0.09 (Mailman edition).