summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-db/Commands.cpp
Commit message (Collapse)AuthorAgeFilesLines
* remove llvm-db: it is completely broken and if anyone wants to do a debugger,Chris Lattner2009-10-051-866/+0
| | | | | | they should not base it on llvm-db (which not following almost any "best practices"). llvm-svn: 83288
* Prune #includes from llvm/Linker.h and llvm/System/Path.h,Chris Lattner2009-08-231-63/+64
| | | | | | | | | | | | | | | | | | forcing them down into various .cpp files. This change also: 1. Renames TimeValue::toString() and Path::toString() to ::str() for similarity with the STL. 2. Removes all stream insertion support for sys::Path, forcing clients to call .str(). 3. Removes a use of Config/alloca.h from bugpoint, using smallvector instead. 4. Weans llvm-db off <iostream> sys::Path really needs to be gutted, but I don't have the desire to do it at this point. llvm-svn: 79869
* Use errs() instead of std::cerr.Dan Gohman2009-07-151-1/+1
| | | | llvm-svn: 75791
* Add a pointer to the owning LLVMContext to Module. This requires threading ↵Owen Anderson2009-07-011-2/+2
| | | | | | | | | | LLVMContext through a lot of the bitcode reader and ASM parser APIs, as well as supporting it in all of the tools. Patches for Clang and LLVM-GCC to follow. llvm-svn: 74614
* And final pack of warnings silencingAnton Korobeynikov2008-02-201-1/+3
| | | | llvm-svn: 47372
* remove attributions from tools.Chris Lattner2007-12-291-2/+2
| | | | llvm-svn: 45421
* Here is the bulk of the sanitizing.Gabor Greif2007-07-051-1/+1
| | | | | | Almost all occurrences of "bytecode" in the sources have been eliminated. llvm-svn: 37913
* Avoid temporary construction and potential for corrupted data access.Reid Spencer2007-04-081-3/+2
| | | | llvm-svn: 35771
* For PR1291:Reid Spencer2007-04-071-1/+2
| | | | | | | Change uses of sys::Path class to sys::PathWithStatus in those places where the file status information is needed. llvm-svn: 35743
* For PR789:Reid Spencer2007-03-291-3/+3
| | | | | | | | Make the sys::Path::getFileStatus function more efficient by having it return a pointer to the FileStatus structure rather than copy it. Adjust uses of the function accordingly. Also, fix some memory issues in sys::Path. llvm-svn: 35476
* Change Path::getStatusInfo to return a boolean and error string on an errorChris Lattner2006-07-281-2/+6
| | | | | | | | instead of throwing an exception. This reduces the amount of code that is exposed to exceptions (e.g. FileUtilities), though it is clearly only one step along the way. llvm-svn: 29395
* Remove trailing whitespaceMisha Brukman2005-04-221-17/+17
| | | | llvm-svn: 21428
* For PR351: \Reid Spencer2004-12-131-3/+3
| | | | | | | | The getFileTimestamp and getFileSize functions have been removed from \ FileUtilities.{h,cpp}. They are replaced by Path::getTimestamp and \ Path::getSize,respectively. llvm-svn: 18892
* Fix a bug that caused stuff like this:Chris Lattner2004-11-191-1/+2
| | | | | | | | | | | main at ./eh.cpp:1414 -> printf("a\n"); to be printed, instead of this: main at ./eh.cpp:14 14 -> printf("a\n"); llvm-svn: 18005
* Improve help output from llvm-db 'info' command. Patch contributed byChris Lattner2004-10-261-2/+5
| | | | | | Michael McCracken! llvm-svn: 17241
* Changes For Bug 352Reid Spencer2004-09-011-2/+2
| | | | | | | | Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
* Minor change to breakpoint (lack of) supportChris Lattner2004-02-081-1/+5
| | | | llvm-svn: 11169
* Ugh, fix some copy and pasted code that somehow never got compiled or somethingChris Lattner2004-01-061-1/+1
| | | | | | :( llvm-svn: 10706
* * Implement set/show argsChris Lattner2004-01-061-7/+55
| | | | | | | * Implement support for arguments to the 'run' command * Minor cleanups and fixes llvm-svn: 10703
* Initial checkin of the LLVM Source-Level Debugger. This is incomplete, butChris Lattner2004-01-051-0/+803
a good start. The status is documented in docs/SourceLevelDebugging.html llvm-svn: 10687
OpenPOWER on IntegriCloud