llvm-6502/lib/Debugger
Chris Lattner 74382b7c69 Prune #includes from llvm/Linker.h and llvm/System/Path.h,
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.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79869 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-23 22:45:37 +00:00
..
CMakeLists.txt Initial support for the CMake build system. 2008-09-22 01:08:49 +00:00
Debugger.cpp Make the use of const with respect to LLVMContext sane. Hopefully this is the last time, for the 2009-07-01 23:13:44 +00:00
Makefile Removed trailing whitespace from Makefiles. 2009-01-09 16:44:42 +00:00
ProgramInfo.cpp Prune #includes from llvm/Linker.h and llvm/System/Path.h, 2009-08-23 22:45:37 +00:00
README.txt Test commit 2009-03-08 11:43:20 +00:00
RuntimeInfo.cpp Remove attribution from file headers, per discussion on llvmdev. 2007-12-29 20:36:04 +00:00
SourceFile.cpp rewrite SourceFile to be in terms of MemoryBuffer, not MappedFile. 2008-04-01 03:59:34 +00:00
SourceLanguage-CFamily.cpp Remove attribution from file headers, per discussion on llvmdev. 2007-12-29 20:36:04 +00:00
SourceLanguage-CPlusPlus.cpp Remove attribution from file headers, per discussion on llvmdev. 2007-12-29 20:36:04 +00:00
SourceLanguage-Unknown.cpp remove some uses of llvm/Support/Streams.h 2009-08-23 08:43:55 +00:00
SourceLanguage.cpp Remove attribution from file headers, per discussion on llvmdev. 2007-12-29 20:36:04 +00:00

//===-- llvm/lib/Debugger/ - LLVM Debugger interfaces ---------------------===//

This directory contains the implementation of the LLVM debugger backend.  This
directory builds into a library which can be used by various debugger 
front-ends to debug LLVM programs.  The current command line LLVM debugger, 
llvm-db is currently the only client of this library, but others could be 
built, to provide a GUI front-end for example.