summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support
Commit message (Collapse)AuthorAgeFilesLines
* Include llvm/Support/Mangler.h first. Don't include <iostream>, <set>,Brian Gaeke2003-07-251-5/+1
| | | | | | <string>, or llvm/Value.h. Move up the inclusion of llvm/Support/Mangler.h. llvm-svn: 7321
* Cleanups:Brian Gaeke2003-07-241-4/+5
| | | | | | | | | Mangler.cpp: Constify parameter to makeNameProper, and use const_iterator. Make Count an unsigned int, and use utostr(). Don't name parameters things that start with underscore. Mangler.h: All of the above, and also: Add Emacs mode-line. Include <set>. llvm-svn: 7301
* Factor out name-mangling from X86/Printer, which is derived from CWriter,Brian Gaeke2003-07-241-0/+83
| | | | | | into this new support class. llvm-svn: 7300
* Simplify code by using ConstantInt::getRawValue instead of checking to seeChris Lattner2003-07-231-4/+1
| | | | | | whether the constant is signed or unsigned, then casting llvm-svn: 7252
* The word `separate' only has one `e'.Misha Brukman2003-07-141-1/+1
| | | | llvm-svn: 7173
* Fixed grammatical error.Misha Brukman2003-07-101-1/+1
| | | | llvm-svn: 7160
* Lowercase versions of `occurrence' need to be spelled correctly, too.Misha Brukman2003-07-101-15/+15
| | | | llvm-svn: 7142
* `Occurrence' has no `a' and the `r' is doubled.Misha Brukman2003-07-101-21/+21
| | | | llvm-svn: 7140
* Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell2003-06-304-18/+21
| | | | | | system. llvm-svn: 7014
* Add support for 'unsigned' command line argumentsChris Lattner2003-06-281-2/+13
| | | | llvm-svn: 6928
* Remove usage of sys/unistd.hChris Lattner2003-06-191-1/+0
| | | | llvm-svn: 6788
* Put ifdefs around use of malloc.h/mallinfo, which isn't available on FreeBSD.Brian Gaeke2003-06-171-2/+5
| | | | llvm-svn: 6750
* Actually, change it to use explicit new/delete, which is more likely to beChris Lattner2003-06-161-6/+7
| | | | | | optimized INTO an alloca llvm-svn: 6727
* Remove usage of allocaChris Lattner2003-06-161-6/+6
| | | | llvm-svn: 6726
* Isolate machine-dependent use of <alloca.h> in "Support/Alloca.h",Brian Gaeke2003-06-161-1/+1
| | | | | | | so that we can easily change its use to be conditional on the result of an autoconf test later. llvm-svn: 6723
* Fix compilation problem with some versions of G++Chris Lattner2003-06-061-1/+1
| | | | llvm-svn: 6660
* Fix problem with perrorChris Lattner2003-06-061-0/+1
| | | | llvm-svn: 6659
* Make _sure_ we don't go into an infinite loop if a signal happens!Chris Lattner2003-05-271-0/+1
| | | | llvm-svn: 6351
* Add using declarationsChris Lattner2003-05-222-13/+8
| | | | llvm-svn: 6305
* Add new CommaSeparated option modifierChris Lattner2003-05-221-0/+20
| | | | llvm-svn: 6294
* Destroy using declarationsChris Lattner2003-05-221-64/+60
| | | | llvm-svn: 6291
* Add a new info-output-file option (hidden from --help) which is to be used byChris Lattner2003-05-092-45/+111
| | | | | | the testing scripts to avoid breaking diffs while still gathering stats. llvm-svn: 6067
* Make more compatible with GCC 2.96Chris Lattner2003-02-131-4/+5
| | | | llvm-svn: 5550
* Remove gunk that was supposed to make space evaluation more precise, but ↵Chris Lattner2003-02-131-64/+1
| | | | | | never worked. llvm-svn: 5549
* Don't output times in "scientific" notationChris Lattner2003-02-121-2/+3
| | | | llvm-svn: 5544
* Remove the -debug option from release executablesChris Lattner2003-02-091-0/+3
| | | | llvm-svn: 5521
* Squelch warningChris Lattner2003-02-051-1/+1
| | | | llvm-svn: 5494
* * Add new -track-memory option to tools which enables the mem usage column ↵Chris Lattner2003-01-301-2/+14
| | | | | | | | | in the reports. This is now optional (and defaults to off) because mallinfo can be VERY slow as it seems to touch every page of allocated memory. llvm-svn: 5448
* Fix build problem on sparcChris Lattner2003-01-291-1/+2
| | | | llvm-svn: 5428
* Move annotation to support libraryChris Lattner2003-01-141-1/+1
| | | | llvm-svn: 5268
* Fix static initializer ordering dependencyChris Lattner2003-01-131-2/+17
| | | | llvm-svn: 5236
* Fix compilation on GCC 3.2Chris Lattner2002-12-241-0/+1
| | | | llvm-svn: 5136
* New files for miscompilation detectionChris Lattner2002-12-231-0/+189
| | | | llvm-svn: 5120
* Add peak memory usage measurement capabilityChris Lattner2002-11-181-8/+121
| | | | | | Add (currently disabled) faciility to try to filter out pool allocation overhead from memory usage stats llvm-svn: 4753
* Simplify codeChris Lattner2002-11-041-3/+1
| | | | llvm-svn: 4547
* Sun can now use mallinfo()Chris Lattner2002-11-041-5/+0
| | | | llvm-svn: 4546
* Allow memory sizes to be negative, remove obsolete TmpRSS fieldChris Lattner2002-11-041-14/+11
| | | | llvm-svn: 4538
* mallinfo is not available on sun apparently :(Chris Lattner2002-11-041-2/+7
| | | | llvm-svn: 4537
* Minor fix to space accountingChris Lattner2002-11-041-1/+1
| | | | llvm-svn: 4520
* Implement MaxRSS in terms of mallinfo instead of the system RSS. This givesChris Lattner2002-11-041-18/+8
| | | | | | us much more accurate numbers and actually WORKS. llvm-svn: 4518
* Add #includeChris Lattner2002-10-272-0/+2
| | | | llvm-svn: 4291
* Added #include<unistd.h> to compile with solaris gcc3.2Anand Shukla2002-10-041-0/+1
| | | | llvm-svn: 4042
* added cast to unsigned to compile with gcc3.2 (sparc)Anand Shukla2002-10-041-2/+4
| | | | llvm-svn: 4041
* - Rework Statistics:Chris Lattner2002-10-011-6/+59
| | | | | | | | | | | * Renamed StatisticReporter.h/cpp to Statistic.h/cpp * Broke constructor to take two const char * arguments instead of one, so that indendation can be taken care of automatically. * Sort the list by pass name when printing * Make sure to print all statistics as a group, instead of randomly when the statistics dtors are called. llvm-svn: 3999
* Checkin generic interval timer supportChris Lattner2002-10-011-0/+203
| | | | llvm-svn: 3992
* Add an optimization to support the most common access pattern for theChris Lattner2002-09-191-5/+22
| | | | | | library. This speeds debug builds up significantly. llvm-svn: 3826
* Submitted by Casey Carter:Chris Lattner2002-09-131-2/+4
| | | | | | | | ISSUE: Linux doesn't have any steenking SIGEMT signal, as referred to in lib/Support/Signals.cpp. ACTION: Wrap the use with a #ifdef SIGEMT / #endif. llvm-svn: 3700
* Remove extra #includeChris Lattner2002-09-101-1/+0
| | | | llvm-svn: 3652
* Checkin initial support for automatic memory leak detection routinesChris Lattner2002-09-081-0/+66
| | | | llvm-svn: 3618
* Minor bug fix.Chris Lattner2002-09-031-2/+2
| | | | llvm-svn: 3577
OpenPOWER on IntegriCloud