| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | * Fix compilation on AIX: GCC's fixincludes eliminates isinf() declaration | Misha Brukman | 2004-10-29 | 1 | -5/+7 | |
| | | | | | | | * Move file comment to the top of the header where it belongs llvm-svn: 17349 | |||||
| * | Change Library Names Not To Conflict With Others When Installed | Reid Spencer | 2004-10-27 | 1 | -1/+1 | |
| | | | | | llvm-svn: 17286 | |||||
| * | Patch to support MSVC, contributed by Morten Ofstad | Chris Lattner | 2004-10-25 | 1 | -0/+3 | |
| | | | | | llvm-svn: 17220 | |||||
| * | Patch to support MSVC, contributed by Morten Ofstad | Chris Lattner | 2004-10-25 | 1 | -0/+3 | |
| | | | | | llvm-svn: 17219 | |||||
| * | We won't use automake | Reid Spencer | 2004-10-22 | 2 | -721/+0 | |
| | | | | | llvm-svn: 17155 | |||||
| * | Initial automake generated Makefile template | Reid Spencer | 2004-10-18 | 1 | -0/+692 | |
| | | | | | llvm-svn: 17136 | |||||
| * | Pass -single_module option to gcc when linking dynamic libraries for use ↵ | Nate Begeman | 2004-10-17 | 1 | -0/+1 | |
| | | | | | | | with bugpoint, so that we can bugpoint multiple .cp files llvm-svn: 17102 | |||||
| * | Update to reflect changes in Makefile rules. | Reid Spencer | 2004-10-13 | 1 | -1/+1 | |
| | | | | | llvm-svn: 16950 | |||||
| * | Initial version of automake Makefile.am file. | Reid Spencer | 2004-10-10 | 1 | -0/+29 | |
| | | | | | llvm-svn: 16885 | |||||
| * | Excise the ill-advised RLCOMP compression algorithm and simply leave the | Reid Spencer | 2004-10-04 | 1 | -159/+20 | |
| | | | | | | | | | previously temporary NULLCOMP implementation that merely copies the data verbatim without compression. Also, don't warn if there's no compression library as that is taken care of during configuration time. llvm-svn: 16654 | |||||
| * | Add a context for the callback so different compression scenarios can be | Reid Spencer | 2004-10-04 | 1 | -18/+18 | |
| | | | | | | | distinguished. Tidy up documentation. Thanks, Chris. llvm-svn: 16652 | |||||
| * | Fix build if not HAVE_BZIP2 | Chris Lattner | 2004-10-04 | 1 | -1/+1 | |
| | | | | | llvm-svn: 16650 | |||||
| * | First version of a support utility to provide generalized compression in | Reid Spencer | 2004-10-04 | 1 | -0/+526 | |
| | | | | | | | LLVM that handles availability and unavailability of bzip2 and zlib. llvm-svn: 16648 | |||||
| * | Add includes and use std:: for standard library calls to make code | Alkis Evlogimenos | 2004-09-28 | 1 | -1/+2 | |
| | | | | | | | compile on windows. This patch was contributed by Paolo Invernizzi. llvm-svn: 16539 | |||||
| * | Put in a #error in the event that we don't have an mmap that can map a file | Reid Spencer | 2004-09-20 | 1 | -0/+1 | |
| | | | | | | | | | into memor. This is just a reminder that the ReadFileIntoAddressSpace function needs to be properly converted to lib/System and implemented via read/write if there's no mmap of file support. llvm-svn: 16428 | |||||
| * | Changes For Bug 352 | Reid Spencer | 2004-09-01 | 14 | -44/+44 | |
| | | | | | | | | | 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 | |||||
| * | Make CommandLine prefix error output with the name of the program. | Reid Spencer | 2004-09-01 | 1 | -13/+20 | |
| | | | | | llvm-svn: 16129 | |||||
| * | Signals support has been moved to lib/System | Reid Spencer | 2004-08-29 | 1 | -138/+0 | |
| | | | | | llvm-svn: 16097 | |||||
| * | Move these files (which are dependent on VMCore) into VMCore | Misha Brukman | 2004-08-16 | 3 | -584/+0 | |
| | | | | | llvm-svn: 15825 | |||||
| * | Allow any cl::opt to use the method getPosition() to retrieve the option's | Reid Spencer | 2004-08-13 | 1 | -19/+32 | |
| | | | | | | | | | | | | | | absolute position on the command line. Similarly allow any cl::list to use the method getPosition(n) to retrieve the absolute position of the nth option in the list. This provides support for two things: (a) options like -l that are actually positional and their order of occurrence matters when they are intermixed with positional arguments like "a.o"; and (b) options like -x LANG which affect only the positional arguments that come after the option. In both cases, knowing the absolute position of a given option helps. llvm-svn: 15725 | |||||
| * | It is not possible to catch SIGKILL, don't bother trying. | Chris Lattner | 2004-08-04 | 1 | -1/+1 | |
| | | | | | llvm-svn: 15496 | |||||
| * | Add a --version option for every tool that prints out: | Reid Spencer | 2004-08-04 | 1 | -1/+18 | |
| | | | | | | | Low Level Virtual Machine ($PACKAGE_NAME) $PACKAGE_VERSION llvm-svn: 15454 | |||||
| * | Remove linux/solaris specific stuff. | Chris Lattner | 2004-07-25 | 1 | -1/+3 | |
| | | | | | llvm-svn: 15195 | |||||
| * | Get rid of the printout from the low-level system interface | Chris Lattner | 2004-07-24 | 1 | -24/+13 | |
| | | | | | llvm-svn: 15161 | |||||
| * | Pass timeouts into the low level "execute program with timeout" function | Chris Lattner | 2004-07-24 | 1 | -12/+18 | |
| | | | | | llvm-svn: 15160 | |||||
| * | Add support for killing the program if it executes for too long. | Chris Lattner | 2004-07-24 | 1 | -12/+42 | |
| | | | | | llvm-svn: 15158 | |||||
| * | These files don't need to include <iostream> since they include ↵ | Brian Gaeke | 2004-07-21 | 1 | -1/+0 | |
| | | | | | | | "Support/Debug.h". llvm-svn: 15089 | |||||
| * | Solaris hack for isinf() | Brian Gaeke | 2004-07-21 | 1 | -0/+5 | |
| | | | | | llvm-svn: 15058 | |||||
| * | Add platform-independent wrapper function for isinf(). | Brian Gaeke | 2004-07-21 | 1 | -0/+31 | |
| | | | | | | | Patch contributed by Bill Wendling. llvm-svn: 15050 | |||||
| * | Err, fix last checkin | Chris Lattner | 2004-07-19 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14995 | |||||
| * | Fix bugpoint miscompilation support on OS/X | Chris Lattner | 2004-07-19 | 1 | -1/+3 | |
| | | | | | | | Patch contributed by the fabulous Nate Begeman. llvm-svn: 14994 | |||||
| * | Add a workaround for a GCC 3.3.2 bug | Chris Lattner | 2004-07-18 | 1 | -1/+6 | |
| | | | | | llvm-svn: 14976 | |||||
| * | Correctly build shared objects on MacOS X for debugging code generators | Misha Brukman | 2004-07-16 | 1 | -1/+5 | |
| | | | | | llvm-svn: 14892 | |||||
| * | Bug fixes for PR341 | Chris Lattner | 2004-07-15 | 2 | -5/+19 | |
| | | | | | llvm-svn: 14838 | |||||
| * | Implicitly getting a new option by linking to support.o instead of support.a | Chris Lattner | 2004-07-11 | 1 | -23/+8 | |
| | | | | | | | | is a bad idea. Make tools that want the option #include PluginSupport.h explicitly. llvm-svn: 14738 | |||||
| * | Do not call Type::getUniqueID | Chris Lattner | 2004-07-08 | 1 | -4/+12 | |
| | | | | | llvm-svn: 14706 | |||||
| * | Work around apparent Apple compiler bug which was making all mangled | Brian Gaeke | 2004-07-06 | 1 | -2/+2 | |
| | | | | | | | names start with l0_. llvm-svn: 14651 | |||||
| * | Add #include <iostream> since Value.h does not #include it any more. | Reid Spencer | 2004-07-04 | 2 | -0/+3 | |
| | | | | | llvm-svn: 14622 | |||||
| * | Fix compilation on internix | Chris Lattner | 2004-07-03 | 1 | -0/+1 | |
| | | | | | llvm-svn: 14588 | |||||
| * | Wrapper for c99 isnan() | Brian Gaeke | 2004-06-22 | 1 | -0/+31 | |
| | | | | | llvm-svn: 14338 | |||||
| * | * Fix file header and name | Misha Brukman | 2004-06-18 | 1 | -8/+8 | |
| | | | | | | | * Order #includes alphabetically llvm-svn: 14234 | |||||
| * | Use the machine-independent method of querying the page size. | Misha Brukman | 2004-06-18 | 1 | -1/+2 | |
| | | | | | llvm-svn: 14233 | |||||
| * | 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 | |||||
| * | Include cerrno. | Alkis Evlogimenos | 2004-06-05 | 1 | -1/+2 | |
| | | | | | llvm-svn: 14041 | |||||
| * | Implement the new CopyFile function | Chris Lattner | 2004-06-02 | 1 | -0/+35 | |
| | | | | | llvm-svn: 13945 | |||||
| * | Fix spelling, trim empty space, tighten up function header comment. | Misha Brukman | 2004-06-02 | 1 | -10/+3 | |
| | | | | | llvm-svn: 13940 | |||||
| * | Moved this file to lib/Bytecode/Writer because its used there only. | Reid Spencer | 2004-05-30 | 1 | -116/+0 | |
| | | | | | llvm-svn: 13900 | |||||
| * | Thoroughly rehack the dynamic linking mechanisms on Win32. The Win32 | Chris Lattner | 2004-05-28 | 1 | -16/+41 | |
| | | | | | | | | | | | | dynamic linker does not automatically search libraries when looking up symbols with GetProcAddress. Because of this we have to emulate it. The only detail is that there doesn't seem to be a way to enumerate the libraries loaded, so we have a gross hack (tm). This make the JIT functional on win32 under cygwin. llvm-svn: 13887 | |||||
| * | Prune #includes | Chris Lattner | 2004-05-28 | 1 | -2/+1 | |
| | | | | | llvm-svn: 13886 | |||||

