Jeff Cohen [Mon, 20 Dec 2004 03:24:56 +0000 (03:24 +0000)]
Keep up with lib/System changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19057
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Mon, 20 Dec 2004 03:23:46 +0000 (03:23 +0000)]
Fix problems uncovered by VC++ (first time compiled by VC++)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19056
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:59:28 +0000 (00:59 +0000)]
For PR351:
* Implement GetMallocUsage to get usage of malloc heap
* Implement GetMemoryUsage to get total memory usage of process
* Implement GetTimeUsage to get elapsed/user/system time
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19055
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:59:16 +0000 (00:59 +0000)]
For PR351:
No need for Unix/SUS/Process.cpp any more, just ifdef it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19054
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:59:04 +0000 (00:59 +0000)]
For PR351:
* Move system dependent implementation out of this file.
* Make implementation use sys::Process::GetMallocUsage where necessary.
* Make implementation use sys::Process::GetTimeUsage where necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19053
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:59:04 +0000 (00:59 +0000)]
For PR351:
* Add checks for sbrk and getpagesize functions
* Alphebetize the checks for functions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19052
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:58:53 +0000 (00:58 +0000)]
For PR351:
* Add GetMallocUsage as a wrapper around mallinfo()
* Add GetTotalMemoryUsage to get approximate RSS size
* Add GetTimeUsage to get elapsed/system/user time
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19051
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:58:41 +0000 (00:58 +0000)]
Wrap long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19050
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Mon, 20 Dec 2004 00:58:25 +0000 (00:58 +0000)]
For PR351:
This file is no longer needed as system dependent functions have been
encapsulated into lib/System.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19049
91177308-0d34-0410-b5e6-
96231b3b80d8
Misha Brukman [Mon, 20 Dec 2004 00:16:38 +0000 (00:16 +0000)]
* Use "" for LLVM include files, not <>
* llvm/Config/alloca.h already #includes config.h
* Minor readability/stylistic changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19048
91177308-0d34-0410-b5e6-
96231b3b80d8
Brian Gaeke [Sun, 19 Dec 2004 21:08:07 +0000 (21:08 +0000)]
Make this compile on Solaris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19047
91177308-0d34-0410-b5e6-
96231b3b80d8
Misha Brukman [Sun, 19 Dec 2004 19:27:11 +0000 (19:27 +0000)]
Use <> for system #include files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19046
91177308-0d34-0410-b5e6-
96231b3b80d8
Brian Gaeke [Sun, 19 Dec 2004 18:58:11 +0000 (18:58 +0000)]
Make references to 'struct sigaction' compile under Solaris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19045
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 18:00:56 +0000 (18:00 +0000)]
For PR351:
* Support changes in sys::Program::ExecuteAndWait interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19044
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 18:00:44 +0000 (18:00 +0000)]
For PR351:
Move the functionality of RunProgramWithTimeout into the ExecuteAndWait
function: support a timeout and I/O redirects
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19043
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 18:00:32 +0000 (18:00 +0000)]
For PR351:
Add a needed include.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19042
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 18:00:21 +0000 (18:00 +0000)]
For PR351:
* Pass sys::Path instead of std::string for paths
* Correct the types of arguments passed to RunProgramWithTimeout due to its
interface using sys::Path instead of std::string
* Replace "/dev/null" (not portable) with empty string which
sys::Program::ExecuteAndWait recognizes as "redirect to bit bucket"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19041
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 18:00:09 +0000 (18:00 +0000)]
For PR351:
* Remove unneeded header files.
* Move RedirectFD static function to lib/System/Unix/Program.cpp
* Delete RunProgramWithTimeout, now implemented by
sys::Program::ExecuteAndWait. RunProgramWithTimeout is now a convenience func.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19040
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 17:59:57 +0000 (17:59 +0000)]
For PR351:
Incorporate the abilities of RunPRogramWithTimeout into
sys::Program::ExecuteAndWait so that redirection and a timeout are optionally
supported.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19039
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 17:59:45 +0000 (17:59 +0000)]
For PR351:
Turn path instance variables into sys::Path instead of std::string
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19038
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sun, 19 Dec 2004 17:59:33 +0000 (17:59 +0000)]
For PR351:
Replace RunProgramWithTimeout with an inline function that calls
sys::Program::ExecuteAndWait. This is now just a convenience function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19037
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sun, 19 Dec 2004 17:53:47 +0000 (17:53 +0000)]
Add llc project to Visual Studio
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19036
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sun, 19 Dec 2004 06:40:39 +0000 (06:40 +0000)]
Add lli project to Visual Studio
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19035
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sun, 19 Dec 2004 02:29:00 +0000 (02:29 +0000)]
Enable browse information in Visual Studio
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19034
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sat, 18 Dec 2004 08:01:43 +0000 (08:01 +0000)]
Improve dependency management for lib/system/win32/* files. Instead of copying the
files from win32/* to platform/*, create one line files in platform that include the
corresponding file in win32. This makes life much more enjoyable!
The cruel irony is that NTFS has hard links just like Unix, but there's no way to
get to them from the DOS prompt!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19033
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sat, 18 Dec 2004 07:05:59 +0000 (07:05 +0000)]
Don't forget about release configuration...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19032
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sat, 18 Dec 2004 06:55:41 +0000 (06:55 +0000)]
Rationalize warning suppression. First, 64-bit portability warnings are disabled. The
specific warnings they produced were being suppressed anyway. The truncation warnings
that were suppressed are now enabled, and the few that still occur ought to be fixed.
The only warnings suppressed now are the "negating an unsigned is still unsigned", the
validity of which Chris does not accept, and the "implicit conversion of <type> to bool
performance warning". Making the conversion explicit won't make it run any faster and
this is an easier way to shut the compiler up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19031
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sat, 18 Dec 2004 06:54:21 +0000 (06:54 +0000)]
sys::CopyFile returns void and throws an exception on error which will be
caught by llvm-ld's main function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19030
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sat, 18 Dec 2004 06:53:10 +0000 (06:53 +0000)]
sys::CopyString throws an exception on error which will be caught by gccld
main function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19029
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Sat, 18 Dec 2004 06:42:15 +0000 (06:42 +0000)]
Fix win32 breakage
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19028
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sat, 18 Dec 2004 00:19:32 +0000 (00:19 +0000)]
The CopyFile function got moved into the sys namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19026
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Sat, 18 Dec 2004 00:14:24 +0000 (00:14 +0000)]
Correct the name of the method. CopyFiles -> CopyFile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19025
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 22:41:46 +0000 (22:41 +0000)]
Remove unused enum value
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19024
91177308-0d34-0410-b5e6-
96231b3b80d8
Tanya Lattner [Fri, 17 Dec 2004 20:58:34 +0000 (20:58 +0000)]
Always print out DejagnuTest results to stdout so that it gets emailed to the nightly test manager. Eventually Dejagnu should be merged into the added/removed tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19023
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 19:09:16 +0000 (19:09 +0000)]
Move the #include of sys/stat.h inside the linux "hack" for the stat
family of functions so it gets noticed if we ever remove this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19022
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 19:07:04 +0000 (19:07 +0000)]
Remove unused #include
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19021
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 18:56:29 +0000 (18:56 +0000)]
Only #include sys/stat.h if we're on linux where we have the PR274 problem.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19020
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 17:14:00 +0000 (17:14 +0000)]
Make this testcase a bit more challanging
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19019
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 17:12:24 +0000 (17:12 +0000)]
Actually overload the virtual method. This fixes
Regression/Analysis/GlobalsModRef/purecse.ll. Isn't this what the
-Woverload-whatever flag would warn about :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19018
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 17:11:41 +0000 (17:11 +0000)]
Change the test to check to see that CSE happens not dead call elim
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19017
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 17:02:54 +0000 (17:02 +0000)]
Make code fit in 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19016
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 08:00:40 +0000 (08:00 +0000)]
Reverse the logic for Win32 to ensure that bugpoint and llvm-db are NOT
built on this platform.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19015
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 07:59:53 +0000 (07:59 +0000)]
Fix this file to actually work. ifneq was incorrectly used. Subtract out
llvm-db and bugpoint for Win32 rather than add them in
subtr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19014
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 07:46:45 +0000 (07:46 +0000)]
Describe the new "reconfigure" and "spotless" targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19013
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 07:45:03 +0000 (07:45 +0000)]
Complete the implementation of the spotless rule and make it not depend on
the .. directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19012
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 02:06:36 +0000 (02:06 +0000)]
Makefile.JIT doesn't exist any more so it doesn't need to be distributed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19009
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Fri, 17 Dec 2004 01:46:41 +0000 (01:46 +0000)]
Disable bugpoint and llvm-db tools for Win32. They can't be supported on
that platform without a lot of work because they depend on process image
copy behavior of fork(2).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19008
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 00:46:51 +0000 (00:46 +0000)]
Change the sentinal
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19007
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Fri, 17 Dec 2004 00:07:46 +0000 (00:07 +0000)]
Create a stack slot for the return address lazily instead of eagerly. This
save small amounts of time for functions that don't call llvm.returnaddress
or llvm.frameaddress (which is almost all functions).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19006
91177308-0d34-0410-b5e6-
96231b3b80d8
Tanya Lattner [Thu, 16 Dec 2004 23:16:16 +0000 (23:16 +0000)]
Chris is a pain ;) Removing reassociate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19005
91177308-0d34-0410-b5e6-
96231b3b80d8
Tanya Lattner [Thu, 16 Dec 2004 23:13:16 +0000 (23:13 +0000)]
Removing commented out lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19004
91177308-0d34-0410-b5e6-
96231b3b80d8
Tanya Lattner [Thu, 16 Dec 2004 23:07:36 +0000 (23:07 +0000)]
Removed LICM and GCSE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19003
91177308-0d34-0410-b5e6-
96231b3b80d8
Tanya Lattner [Thu, 16 Dec 2004 23:07:13 +0000 (23:07 +0000)]
Linking in all of ScalarOpts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19002
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 23:04:20 +0000 (23:04 +0000)]
For PR351:
* removeFile() -> sys::Path::destroyFile()
* remove extraneous toString() calls
* convert local variables representing path names from std::string to
sys::Path
* Use sys::Path objects with FileRemove instead of std::string
* Use sys::Path methods for construction of path names
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19001
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 23:01:34 +0000 (23:01 +0000)]
For PR351:
* Make the OutputC and OutputAsm functions work with sys::Path for the output
file name instead of using std::string.
* Get rid of extraneous "toString" calls.
* Change "removeFile" to sys::Path::destroyFile()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19000
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 23:00:05 +0000 (23:00 +0000)]
For PR351:
* Remove the "removeFile" function, now implemented by the
sys::Path::destroyFile method.
* Make the FileRemove work with a sys::Path instead of a std::string
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18999
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 19:40:10 +0000 (19:40 +0000)]
X86 doesn't actually use SelectionDAG yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18996
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 19:39:45 +0000 (19:39 +0000)]
No targets actually use this library
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18995
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 19:32:38 +0000 (19:32 +0000)]
Remove dead #include
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18994
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 19:19:24 +0000 (19:19 +0000)]
Fix a compile error. config.h is now needed because DataTypes.h doesn't
include it any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18993
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 18:47:17 +0000 (18:47 +0000)]
Get rid of inclusion of config.h because this file is autoconf'd.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18992
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 18:26:53 +0000 (18:26 +0000)]
Some minor upgrades
* Convert "cmp" usage to $(CMP)
* Convert "cp" usage to $(CP)
* Fix some build messages to reflect what's actually going on
* Add a "reconfigure" target for forcing a reconfigure. Helps with testing
things like Chris's recent changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18991
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 17:48:14 +0000 (17:48 +0000)]
Add CMP and CP configuration variables for the unix cmp and cp programs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18990
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 17:38:56 +0000 (17:38 +0000)]
Factor all of the .inc : .inc.tmp rules into one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18989
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 17:34:04 +0000 (17:34 +0000)]
Add spaces between rule groups to make it more obvious which ones pair
Remove instrselector generation, remove Intel/ATT specifics from Makefile.rules.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18988
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 17:33:24 +0000 (17:33 +0000)]
Adjust to changes in asmwriter filenames
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18987
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 17:28:50 +0000 (17:28 +0000)]
When tblgen changes, regenerate all .inc files, but do not rebuild any .o
files that USE the .inc file unless the contents of the .inc file changes.
This should fix the problem where reconfiguring causes all targets to be
completely rebuilt (because config.h is usually modified, causing libsystem
to be rebuilt, causing tblgen to be rebuilt, causing .inc files to be
rebuilt, causing .o files to be rebuilt).
This patch also checks in a gross hack where .o files now explicitly depend
on $(BUILT_SOURCES), to avoid problems where the .inc files are not completely
generated before the .o files start to compile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18986
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 17:26:44 +0000 (17:26 +0000)]
Specify all of the targets built.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18985
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 16:47:56 +0000 (16:47 +0000)]
Use the rules in Makefile.rules to build SparcV9GenCodeEmitter.inc instead
of custom rules.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18984
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 16:47:03 +0000 (16:47 +0000)]
Fix header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18983
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 16:31:57 +0000 (16:31 +0000)]
Factor out common .td file chunks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18982
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 08:00:46 +0000 (08:00 +0000)]
Add a "make spotless" rule for environments with BUILD_OBJ_ROOT not equal
to BUILD_OBJ_SRC. This will save the config.status and mklib files, then
wipe out the BUILD_OBJ_ROOT, copy back config.status and mklib, and then
run config.status to regenerate the makefiles. This target gives you a
completely clean/fresh BUILD_OBJ_ROOT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18981
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 07:36:08 +0000 (07:36 +0000)]
Get rid of extraneous dependencies on $(BUILT_SOURCES) now that we've fixed
the bug with BUILT_SOURCES being dependencies of the user targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18980
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 07:15:16 +0000 (07:15 +0000)]
Fix a major bug with BUILT_SOURCES. You actually have to dereference a
variable before you can filter its value. Duh!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18979
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Thu, 16 Dec 2004 07:14:19 +0000 (07:14 +0000)]
Revert last patch which breaks PowerPC target because it fails to build
the 32bit and 64bit variants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18978
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 16 Dec 2004 04:56:34 +0000 (04:56 +0000)]
Portability fix, thanks to Markus F.X.J. Oberhumer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18977
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Thu, 16 Dec 2004 04:06:56 +0000 (04:06 +0000)]
Expository comment submitted by Henrik Bach
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18976
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 23:38:13 +0000 (23:38 +0000)]
Make %'s a bit more explicit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18975
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 23:13:15 +0000 (23:13 +0000)]
Fix PR485, instead of emitting zero sized arrays, emit arrays of size 1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18974
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 23:02:10 +0000 (23:02 +0000)]
Change the signatures of the destroyFile and destroyDirectory methods to
const because they affect the file system, not the Path object.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18973
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 22:49:18 +0000 (22:49 +0000)]
Adjust documentation of GetBytecodeLibraryPaths after removing LLVMGCCDIR
support from it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18972
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 22:28:35 +0000 (22:28 +0000)]
Remove LLVMGCCDIR.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18971
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 22:27:51 +0000 (22:27 +0000)]
Remove LLVMGCCDIR from the set of defines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18970
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 22:22:51 +0000 (22:22 +0000)]
Remove the CFE's lib directory from the bytecode path because LLVM should
be agnostic to the needs of any specific FE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18969
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 22:21:42 +0000 (22:21 +0000)]
Remove automatic insertion of CFE's lib directory into the bytecode path
because LLVM should be agnostic to the needs of specific front ends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18968
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 21:58:03 +0000 (21:58 +0000)]
Unbreak all archive reading operations introduced by the last patch which
always exited the program with exit code 1 in these cases, regardless of
whether an error occurred or not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18966
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 20:23:49 +0000 (20:23 +0000)]
Add a verifier assertion
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18965
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 18:14:04 +0000 (18:14 +0000)]
Eliminate a virtual method call
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18964
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 17:14:06 +0000 (17:14 +0000)]
Make archive rules properly depend on llvm-ar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18963
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 17:13:24 +0000 (17:13 +0000)]
Fix a bug in -no-aa that caused two DSGraph tests to XPASS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18962
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 08:32:45 +0000 (08:32 +0000)]
Fix a file overwrite bug in llvm-ar introduced by changes to
createTemporaryFile semantics where it doesn't create a fully unique name
if the basename doesn't exist. This functionality is now optionally
provided by the boolean reuse_current parameter to createTemporaryFile and
makeUnique. The default values differ because of the way these functions
are used in LLVM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18961
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 08:15:48 +0000 (08:15 +0000)]
Disable libprofile as llvm-ar bus errors on it, and I don't want to break
the nightly testers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18960
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 07:44:15 +0000 (07:44 +0000)]
Do not fail an assertion on a broken archive
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18959
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 07:22:25 +0000 (07:22 +0000)]
Adjust to new interfaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18958
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 07:22:13 +0000 (07:22 +0000)]
Adjust to new alias analysis interfaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18957
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 07:21:39 +0000 (07:21 +0000)]
Make the AliasAnalysis interface more precise for common cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18956
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 15 Dec 2004 07:04:32 +0000 (07:04 +0000)]
Move virtual method call out of loop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18955
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Wed, 15 Dec 2004 04:28:44 +0000 (04:28 +0000)]
Make Win32 TimeValue::toString() re-entrant and work with mingw
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18954
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeff Cohen [Wed, 15 Dec 2004 04:08:15 +0000 (04:08 +0000)]
Fix VC++ compilation errors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18953
91177308-0d34-0410-b5e6-
96231b3b80d8
Reid Spencer [Wed, 15 Dec 2004 04:01:48 +0000 (04:01 +0000)]
Don't put newlines in AC macros that can't handle them!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18952
91177308-0d34-0410-b5e6-
96231b3b80d8