| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | New testcase for PR355 | Chris Lattner | 2004-06-08 | 1 | -0/+17 | |
| | | | | | llvm-svn: 14062 | |||||
| * | Testcase for PR355 | Chris Lattner | 2004-06-08 | 1 | -0/+5 | |
| | | | | | llvm-svn: 14061 | |||||
| * | Add documentation to the TargetFrameInfo class, contributed by Vladimir Prus | Chris Lattner | 2004-06-08 | 1 | -0/+7 | |
| | | | | | llvm-svn: 14060 | |||||
| * | Clean up the documentation. | Reid Spencer | 2004-06-08 | 1 | -60/+24 | |
| | | | | | | | Simplify the file handling. It now only writes to std::cout. llvm-svn: 14059 | |||||
| * | Clean up documentation and make it possible for the BytecodeAnalyzer to | Reid Spencer | 2004-06-08 | 1 | -6/+17 | |
| | | | | | | | store the output of the bytecode dumper. llvm-svn: 14058 | |||||
| * | Fix the bug that was preventing the parser from working on all bytecode | Reid Spencer | 2004-06-08 | 2 | -10/+10 | |
| | | | | | | | | | files. It was reading non-initialized global vars when the flag said it was initialized and vice versa. Causes mis-alignment since initialized and non-initialized constants have different bytecode lengths. llvm-svn: 14057 | |||||
| * | Make it #include Parser.h instead of AnalyzerInternals.h since it only | Reid Spencer | 2004-06-08 | 1 | -1/+1 | |
| | | | | | | | needs the BytecodeHandler interface which is now in Parser.h llvm-svn: 14056 | |||||
| * | Adjust what's included to compensate for changes in Parser.h | Reid Spencer | 2004-06-08 | 2 | -0/+22 | |
| | | | | | llvm-svn: 14055 | |||||
| * | Merged BytecodeHandler.h into Parser.h since the parser and the handler | Reid Spencer | 2004-06-08 | 3 | -359/+752 | |
| | | | | | | | | | must always coexist. Cleaned up the documentation on these interfaces significantly. This is in preparation for moving Parser.h to the include directories to make it a public interface. llvm-svn: 14054 | |||||
| * | Fix PR361. | Chris Lattner | 2004-06-07 | 1 | -1/+2 | |
| | | | | | | | Dominance properties don't hold in unreachable code llvm-svn: 14053 | |||||
| * | New testcase for PR361 | Chris Lattner | 2004-06-07 | 1 | -0/+11 | |
| | | | | | llvm-svn: 14052 | |||||
| * | Make all of this functionality work directly on win32. Properly conditionalize | Chris Lattner | 2004-06-07 | 1 | -13/+29 | |
| | | | | | | | system specific stuff on HAVE_MKSTEMP llvm-svn: 14051 | |||||
| * | Implement getTimeRecord natively in Win32, properly conditionalize the | Chris Lattner | 2004-06-07 | 1 | -7/+28 | |
| | | | | | | | getrusage implementation on HAVE_GETRUSAGE llvm-svn: 14050 | |||||
| * | Eliminate more traces of the -c option | Chris Lattner | 2004-06-07 | 1 | -14/+3 | |
| | | | | | llvm-svn: 14049 | |||||
| * | Commit For New Tool: llvm-abcd (Analysis of ByteCode Dumper). This tool | Reid Spencer | 2004-06-07 | 22 | -3/+4577 | |
| | | | | | | | | | | | | | | | | | | | | | | will (eventually) provide statistical analysis of bytecode files as well as the ability to dump them in a low level format (slot numbers not resolved). The purpose of this is to aid in the Type!=Value change of bug 122. With this initial release, llvm-abcd merely dumps out the bytecode. However, the infrastructure for separating bytecode parsing from handling the parsing events is in place. The style chosen is similar to SAX XML parsing where a handler object is called to handlign the parsing events. This probably isn't useful to anyone but me right now as there is no analysis yet, and the dumper doesn't work on every bytecode file. It will probably be useful by the end of this week. Note that there is some duplication of code from the bytecode reader. This was done to eliminate errors from being introduced in the reader and to minimize the impact to other LLVM developers. At some point, the Analyzer and the Reader will be integrated to use the same infrastructure. Also, sorry for the minor change to Instruction.h but I just couldn't bring myself to write code that depends on Instruction internals. llvm-svn: 14048 | |||||
| * | Added checks for mkstemp and getrusage. | John Criswell | 2004-06-07 | 3 | -34/+42 | |
| | | | | | llvm-svn: 14047 | |||||
| * | Add some notes so I can throw away one of my many todo lists. | Chris Lattner | 2004-06-05 | 1 | -0/+6 | |
| | | | | | llvm-svn: 14046 | |||||
| * | Fix GCC warning | Chris Lattner | 2004-06-05 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14045 | |||||
| * | Fix GCC warnings | Chris Lattner | 2004-06-05 | 1 | -2/+2 | |
| | | | | | llvm-svn: 14044 | |||||
| * | Fix a few typos, spellos, grammaros. | Reid Spencer | 2004-06-05 | 1 | -15/+17 | |
| | | | | | llvm-svn: 14043 | |||||
| * | Add "work in progress" warning. | Reid Spencer | 2004-06-05 | 1 | -0/+3 | |
| | | | | | llvm-svn: 14042 | |||||
| * | Include cerrno. | Alkis Evlogimenos | 2004-06-05 | 1 | -1/+2 | |
| | | | | | llvm-svn: 14041 | |||||
| * | Remove an unused variable. | Chris Lattner | 2004-06-05 | 1 | -7/+10 | |
| | | | | | | | | Work around for bogus errors: no those static functions don't need to be executed to be initialized! llvm-svn: 14040 | |||||
| * | Macros are baaad. | Chris Lattner | 2004-06-05 | 1 | -0/+2 | |
| | | | | | llvm-svn: 14039 | |||||
| * | Don't #include <unistd.h> directly, go through the config files | Chris Lattner | 2004-06-05 | 2 | -10/+4 | |
| | | | | | llvm-svn: 14038 | |||||
| * | Add missing #include | Chris Lattner | 2004-06-05 | 1 | -0/+1 | |
| | | | | | llvm-svn: 14037 | |||||
| * | Work around VS bug | Chris Lattner | 2004-06-05 | 1 | -3/+2 | |
| | | | | | llvm-svn: 14036 | |||||
| * | Warning foo | Chris Lattner | 2004-06-05 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14035 | |||||
| * | As much as I dislike doing this, it's the only fix for VC8.0 that I can come | Chris Lattner | 2004-06-05 | 1 | -2/+4 | |
| | | | | | | | up with, even though it's perfectly conformant code. :( llvm-svn: 14034 | |||||
| * | Remove unused var | Chris Lattner | 2004-06-05 | 1 | -1/+0 | |
| | | | | | llvm-svn: 14033 | |||||
| * | Squelch a warning | Chris Lattner | 2004-06-04 | 1 | -1/+2 | |
| | | | | | llvm-svn: 14032 | |||||
| * | Delete some unreachable code | Chris Lattner | 2004-06-04 | 1 | -5/+0 | |
| | | | | | llvm-svn: 14031 | |||||
| * | * No more CachedWriter::setStream() | Misha Brukman | 2004-06-04 | 1 | -52/+47 | |
| | | | | | | | | * ostream is back to being a reference instead of a pointer * Output single characters as chars, not as length-1 strings llvm-svn: 14030 | |||||
| * | Revert ostream back to reference: the only user (llvm-tv) no longer needs it. | Misha Brukman | 2004-06-04 | 1 | -8/+5 | |
| | | | | | llvm-svn: 14029 | |||||
| * | Add some constants for VC | Chris Lattner | 2004-06-04 | 1 | -3/+11 | |
| | | | | | llvm-svn: 14028 | |||||
| * | Fix up some spacing & fix a typo in an assertion in cpValue2Value. | Brian Gaeke | 2004-06-04 | 1 | -3/+3 | |
| | | | | | llvm-svn: 14027 | |||||
| * | Ugh, apparently there is no common ground here. | Chris Lattner | 2004-06-04 | 1 | -0/+5 | |
| | | | | | llvm-svn: 14026 | |||||
| * | Fix a *really* dumb warning on VC | Chris Lattner | 2004-06-04 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14025 | |||||
| * | Fix more warnings | Chris Lattner | 2004-06-04 | 1 | -4/+4 | |
| | | | | | llvm-svn: 14024 | |||||
| * | Remove support for printing strings from the cached writer | Chris Lattner | 2004-06-04 | 1 | -4/+0 | |
| | | | | | llvm-svn: 14023 | |||||
| * | Don't send random junk to CachedWriter's. Also remove a cast that could be | Chris Lattner | 2004-06-04 | 1 | -4/+6 | |
| | | | | | | | problematic when Type does not derive from Value. llvm-svn: 14022 | |||||
| * | GCC doesn't like prefix form of cast with two identifiers I guess. | Chris Lattner | 2004-06-04 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14021 | |||||
| * | Squish a warning | Chris Lattner | 2004-06-04 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14020 | |||||
| * | Silence a warning | Chris Lattner | 2004-06-04 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14019 | |||||
| * | Add ssize_t for VC++ | Chris Lattner | 2004-06-04 | 1 | -2/+3 | |
| | | | | | llvm-svn: 14018 | |||||
| * | <io.h> provides read/write/open/... | Chris Lattner | 2004-06-04 | 1 | -1/+2 | |
| | | | | | llvm-svn: 14017 | |||||
| * | Visual C has something resembling a stat function, but it doesn't provide ↵ | Chris Lattner | 2004-06-04 | 2 | -1/+5 | |
| | | | | | | | S_ISREG llvm-svn: 14016 | |||||
| * | Make this work on VC++, pull the HAVE_ALLOCA_H case out instead of duplicating | Chris Lattner | 2004-06-04 | 1 | -16/+12 | |
| | | | | | | | | it. This code can probably be dramatically simplified, as I suspect that the pragma and other stuff is not needed with C++ compilers. llvm-svn: 14015 | |||||
| * | Add more needed typedefs | Chris Lattner | 2004-06-04 | 1 | -0/+2 | |
| | | | | | llvm-svn: 14014 | |||||
| * | Add explicit casts to silence warnings. There is no need to use snprintf here. | Chris Lattner | 2004-06-04 | 1 | -4/+4 | |
| | | | | | llvm-svn: 14013 | |||||

