summaryrefslogtreecommitdiffstats
path: root/llvm
Commit message (Collapse)AuthorAgeFilesLines
* eliminate the std::ostream forms of the bitcode writing APIs.Chris Lattner2009-08-239-128/+80
| | | | llvm-svn: 79840
* remove uses of llvm/Support/Streams.h.Chris Lattner2009-08-234-47/+47
| | | | llvm-svn: 79838
* use raw_fd_ostream instead of fstream with graphwriter,Chris Lattner2009-08-232-7/+8
| | | | | | flush the right stream in opt.cpp. llvm-svn: 79837
* convert LoopInfo.h and GraphWriter.h to use raw_ostreamChris Lattner2009-08-2310-88/+89
| | | | llvm-svn: 79836
* eliminate DOUT and make Debug.h not include Streams.h anymore, woo!Chris Lattner2009-08-232-60/+23
| | | | llvm-svn: 79835
* eliminate uses of cerr()Chris Lattner2009-08-2316-116/+136
| | | | llvm-svn: 79834
* eliminate the last DOUTs from the targets.Chris Lattner2009-08-2312-164/+112
| | | | llvm-svn: 79833
* remove a few DOUTs here and there.Chris Lattner2009-08-2319-173/+195
| | | | llvm-svn: 79832
* convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since Chris Lattner2009-08-231-128/+129
| | | | | | ConstantRange doesn't have an std::ostream inserter anymore. llvm-svn: 79831
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-2350-191/+138
| | | | | | update all code that this affects. llvm-svn: 79830
* Don't install the man page for FileCheckDouglas Gregor2009-08-231-2/+8
| | | | llvm-svn: 79826
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-2316-124/+101
| | | | | | This also updates dominator related stuff. llvm-svn: 79825
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-238-40/+11
| | | | llvm-svn: 79823
* upgrade for removed functions.Chris Lattner2009-08-231-11/+16
| | | | llvm-svn: 79822
* remove some DOUTsChris Lattner2009-08-237-54/+55
| | | | llvm-svn: 79821
* Don't install FileCheck or FileUpdateDouglas Gregor2009-08-232-0/+6
| | | | llvm-svn: 79820
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-2335-292/+298
| | | | | | This required converting a bunch of stuff off DOUT and other cleanups. llvm-svn: 79819
* Update release document with more details.Tanya Lattner2009-08-231-12/+24
| | | | llvm-svn: 79818
* Use standard LLVM-style headers.Owen Anderson2009-08-233-3/+3
| | | | llvm-svn: 79817
* switch a couple things off std::ostreamChris Lattner2009-08-232-28/+28
| | | | llvm-svn: 79816
* switch from std::ostream to raw ostream, fix file header.Chris Lattner2009-08-231-9/+8
| | | | llvm-svn: 79815
* shoot a few more std::ostream print methods in the head.Chris Lattner2009-08-235-45/+12
| | | | llvm-svn: 79814
* remove various std::ostream version of printing methods fromChris Lattner2009-08-2319-118/+78
| | | | | | | | MachineInstr and MachineOperand. This required eliminating a bunch of stuff that was using DOUT, I hope that bill doesn't mind me stealing his fun. ;-) llvm-svn: 79813
* remove some DOUTsChris Lattner2009-08-232-68/+73
| | | | llvm-svn: 79812
* remove std::ostream versions of printing stuff for MBB and MF,Chris Lattner2009-08-239-53/+35
| | | | | | upgrading a few things to use raw_ostream llvm-svn: 79811
* simplify output file selection, fixing two FIXMEs about binary outputChris Lattner2009-08-232-35/+22
| | | | llvm-svn: 79808
* Change raw_fd_ostream to take flags as an optional bitmask Chris Lattner2009-08-2316-232/+215
| | | | | | | | | | | | | | | | instead of as two bools. Use this to add a F_Append flag which has the obvious behavior. Other unrelated changes conflated into this patch: 1. REmove EH stuff from llvm-dis and llvm-as, the try blocks are dead. 2. Simplify the filename inference code in llvm-as/llvm-dis, because raw_fd_ostream does the right thing with '-'. 3. Switch machine verifier to use raw_ostream instead of ostream (Which is the thing that needed append in the first place). llvm-svn: 79807
* This was supposed to go with r79803Chris Lattner2009-08-231-0/+1
| | | | llvm-svn: 79804
* convert some stuff to work on raw_ostreams instead of std::ostream.Chris Lattner2009-08-233-21/+22
| | | | llvm-svn: 79803
* fix a gone file.Chris Lattner2009-08-231-1/+0
| | | | llvm-svn: 79802
* remove some dead print method variants.Chris Lattner2009-08-233-13/+2
| | | | llvm-svn: 79801
* convert the DIE printing stuff to use raw_ostream instead of std::ostream.Chris Lattner2009-08-234-54/+37
| | | | | | Tweak #includes. llvm-svn: 79800
* random code cleanups.Chris Lattner2009-08-231-19/+17
| | | | llvm-svn: 79798
* remove some random indentation stuff, yay for efficiency.Chris Lattner2009-08-232-19/+6
| | | | llvm-svn: 79797
* remove dead PrefixPrinter class.Chris Lattner2009-08-236-111/+20
| | | | llvm-svn: 79796
* remove a dead class.Chris Lattner2009-08-232-37/+0
| | | | llvm-svn: 79795
* random cleanups.Chris Lattner2009-08-231-25/+24
| | | | llvm-svn: 79794
* Add check for completeness. Note that this doesn't actually have any Eli Friedman2009-08-231-1/+1
| | | | | | effect with the way the current code is structured. llvm-svn: 79792
* switch formattedstream to use raw_ostream::indent. This eliminatesChris Lattner2009-08-222-15/+1
| | | | | | the weird MAX_COLUMN_PAD limitation. llvm-svn: 79785
* add a raw_ostream::indent method, to be used like:Chris Lattner2009-08-222-0/+21
| | | | | | | | OS.indent(i) << "whatever"; people seem to like indenting things ;-) llvm-svn: 79784
* Forgot to update some CMakeLists.Benjamin Kramer2009-08-2212-12/+12
| | | | llvm-svn: 79780
* Update CMake build, unbreak linux build.Benjamin Kramer2009-08-223-4/+4
| | | | llvm-svn: 79779
* fix a build error on the clang-i686-linux tester.Chris Lattner2009-08-221-1/+1
| | | | llvm-svn: 79778
* rename TAI -> MAI, being careful not to make MAILJMP instructions :)Chris Lattner2009-08-2250-517/+517
| | | | llvm-svn: 79777
* mcasminfo doesn't use std::stringChris Lattner2009-08-221-1/+0
| | | | llvm-svn: 79774
* rename COFFMCAsmInfo -> MCAsmInfoCOFF, likewise for darwin.Chris Lattner2009-08-2213-25/+25
| | | | llvm-svn: 79773
* Regenerate configure.Tanya Lattner2009-08-221-3/+3
| | | | llvm-svn: 79772
* Update copyright date.Tanya Lattner2009-08-221-2/+2
| | | | llvm-svn: 79771
* move the MCAsmInfo .cpp/.h files into the right Chris Lattner2009-08-229-586/+580
| | | | | | directories and rename them. llvm-svn: 79768
* revert 79764, my dependencies failed me again.Chris Lattner2009-08-223-2/+5
| | | | llvm-svn: 79767
OpenPOWER on IntegriCloud