summaryrefslogtreecommitdiffstats
path: root/llvm/runtime/libtrace
Commit message (Collapse)AuthorAgeFilesLines
* the old trace values pass has been removed, remove its runtime library.Chris Lattner2007-01-074-452/+0
| | | | llvm-svn: 32999
* Undo removal of the runtime libraries. While this may have been a bitReid Spencer2006-11-174-0/+452
| | | | | | | premature, these libraries will be going away for the 2.0 release. Other arrangements for profiling, gc, etc. should be made in the next few months. llvm-svn: 31807
* In LLVM 2.0 we won't use the runtime libraries as llvm-gcc3 support willReid Spencer2006-11-164-452/+0
| | | | | | be dropped. This patch pertains to removing the runtime directory from LLVM. llvm-svn: 31793
* Use archive libraries instead of object files for VMCore, BCReader,Reid Spencer2006-06-011-0/+2
| | | | | | | BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate these changes. This was done to speed up link times. llvm-svn: 28610
* Remove trailing whitespaceMisha Brukman2005-04-211-1/+1
| | | | llvm-svn: 21427
* Hrm, who knows what 'uint' is, but it seems to work sometimes? Wierd.Chris Lattner2005-01-281-4/+4
| | | | llvm-svn: 19876
* For PR432:Reid Spencer2004-12-221-1/+1
| | | | | | * Variable name change: cferuntime_libdir -> CFERuntimeLibDir llvm-svn: 19096
* Use the new BYTECODE_DESTINATION to override the default bytecode installReid Spencer2004-12-131-0/+1
| | | | | | | | | destination for this library so that it goes to $(cferuntime_libdir) rather than just $(libdir). Normal bytecode libraries should be installed in the $(libdir), but these ones are "special" because they're part of the the C/C++ front end. llvm-svn: 18882
* Standardize the makefiles with space around = to match the rest of LLVM.Reid Spencer2004-12-021-2/+2
| | | | llvm-svn: 18429
* Standardize the format of the runtime libraries makefiles.Reid Spencer2004-12-021-1/+1
| | | | | | | | * Don't have lines longer than 80 cols * Blank line after the header * Reduce spaces in var definitions. llvm-svn: 18427
* We're not doing automake any moreReid Spencer2004-10-221-657/+0
| | | | llvm-svn: 17168
* We won't use automakeReid Spencer2004-10-221-14/+0
| | | | llvm-svn: 17155
* Initial automake generated Makefile templateReid Spencer2004-10-181-0/+657
| | | | llvm-svn: 17136
* Initial Makefile.am for building with automakeReid Spencer2004-10-171-0/+14
| | | | llvm-svn: 17073
* Changes For Bug 352Reid Spencer2004-09-011-1/+1
| | | | | | | | 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
* Fit comment into 80 cols.Misha Brukman2004-04-161-1/+1
| | | | llvm-svn: 12996
* Added LLVM copyright to Makefiles.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9314
* This really isn't the gcc library!Chris Lattner2003-08-171-1/+1
| | | | llvm-svn: 7917
* initial checkin, adjust LEVELChris Lattner2003-08-152-1/+3
| | | | llvm-svn: 7862
* Convert libraries into the BYTECODE_LIBRARY styleChris Lattner2003-08-151-20/+4
| | | | llvm-svn: 7858
* 1. Make table size prime -- improves hashing performance vastly.Vikram S. Adve2003-07-301-24/+43
| | | | | | | 2. Reduce #hashes from 2 to 1 for initial inserts. 3. Fix incorrect assertion from last checkin. llvm-svn: 7417
* Bug fix: after reallocating the hash table, we have to re-insert each valueVikram S. Adve2003-07-291-33/+25
| | | | | | instead of copying table entries! llvm-svn: 7396
* Remove unneccesary #ifdefsChris Lattner2003-07-211-12/+6
| | | | llvm-svn: 7214
* Fix warningsChris Lattner2003-07-211-1/+1
| | | | llvm-svn: 7213
* Use uint32_t for table index and size: table will never be > 4GB.Vikram S. Adve2003-07-111-8/+12
| | | | | | Also, make Pointer type depend on architecture. llvm-svn: 7170
* Pointer hash table reallocation code seems never to have been tested!Vikram S. Adve2003-07-081-21/+38
| | | | | | | Unfortunately, reallocation also means that the pointer numbering will change, so increase table size to try to avoid it. llvm-svn: 7130
* Native libraries (libinstr*.a) should not have been taken out whenVikram S. Adve2003-07-081-0/+17
| | | | | | | | | taking out the rule for compiling the test driver. We need the native libraries for libinstr because they are directly linked into the native CBE or LLC code. That is the only practical way to debug them! llvm-svn: 7129
* Prevented inclusion of (non-existent) stdint.h on Sparc.Joel Stanley2003-06-241-0/+2
| | | | llvm-svn: 6876
* Update to match the reality that is now.Chris Lattner2003-05-272-6/+1
| | | | llvm-svn: 6362
* Tracelib is now an LLVM library just like all other libraries in thisChris Lattner2002-05-201-21/+6
| | | | | | | | | directory. If the test code needs to be resurrected in the future, it should be moved into the test/Programs directory, linking with tracelib. llvm-svn: 2672
* * If hashing a pointer, cast it to a 64 bit number so gcc doesn't warnChris Lattner2002-05-202-3/+2
| | | | | | * Don't put extra stuff after #endif llvm-svn: 2671
* Runtime routines to support tracing.Vikram S. Adve2002-05-193-0/+431
Currently includes code to hash pointers to sequence numbers. The hash table should be separated out into a separate file since that is generic. The rest of this code is pretty small. llvm-svn: 2655
OpenPOWER on IntegriCloud