summaryrefslogtreecommitdiff
path: root/projects
Commit message (Collapse)AuthorAge
* Must link against new LLVMsystem libraryNate Begeman2004-08-29
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16104 91177308-0d34-0410-b5e6-96231b3b80d8
* RemoveFileOnSignal is now in sys:: namespaceNate Begeman2004-08-29
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16103 91177308-0d34-0410-b5e6-96231b3b80d8
* Add dependent library support for Stacker. It now inserts "stkr_runtime" asReid Spencer2004-08-24
| | | | | | | a dependent library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16040 91177308-0d34-0410-b5e6-96231b3b80d8
* Moved the "SmallExamples" out of the /projects directory and into a newReid Spencer2004-08-23
| | | | | | | | /examples directory. History was maintained. These programs do not need to be configured but things in /projects must be. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16002 91177308-0d34-0410-b5e6-96231b3b80d8
* Change the makefile back so it descends any directory with a Makefile.Reid Spencer2004-08-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15999 91177308-0d34-0410-b5e6-96231b3b80d8
* Avoid building samples. Require explicit list of directory names to build.Reid Spencer2004-08-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15937 91177308-0d34-0410-b5e6-96231b3b80d8
* Make people explicitly add dirs to this. Remove ModuleMaker as it currentlyChris Lattner2004-08-20
| | | | | | | does not build (it must be configured before it will work) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15936 91177308-0d34-0410-b5e6-96231b3b80d8
* Only build project dirs with a Makefile in them. This should fix theChris Lattner2004-08-20
| | | | | | | | problem where Depend or Debug directories prevent CVS from nuking an obsolete project dir git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15935 91177308-0d34-0410-b5e6-96231b3b80d8
* Moved these files to "SmallExamples" directory.Reid Spencer2004-08-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15925 91177308-0d34-0410-b5e6-96231b3b80d8
* Add the fibonacci example provided by Valery Khamenya.Reid Spencer2004-08-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15924 91177308-0d34-0410-b5e6-96231b3b80d8
* Make the SmallExamples programs compile in their new home.Reid Spencer2004-08-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15923 91177308-0d34-0410-b5e6-96231b3b80d8
* Switch to using the JIT now that it can directly call zeroarg functionsChris Lattner2004-08-15
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15795 91177308-0d34-0410-b5e6-96231b3b80d8
* Simplify code, make it print the constructed module before it is run.Chris Lattner2004-08-15
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15792 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix a copy & paste error .. correct the description of the program.Reid Spencer2004-08-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15623 91177308-0d34-0410-b5e6-96231b3b80d8
* Adding a simple example of how to use the JIT.Reid Spencer2004-08-10
| | | | | | | Contributed by Valery A. Khamenya. THANKS, Valery! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15622 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix #includes of i*.h => Instructions.h as per PR403.Misha Brukman2004-07-29
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15334 91177308-0d34-0410-b5e6-96231b3b80d8
* Group the hidden command line arguments.Reid Spencer2004-07-10
| | | | | | | Make the -s option actually work and default to the right value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14735 91177308-0d34-0410-b5e6-96231b3b80d8
* Add #include <iostream> since Value.h doesn't include it any more.Reid Spencer2004-07-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14624 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for dos-style filesChris Lattner2004-05-27
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13840 91177308-0d34-0410-b5e6-96231b3b80d8
* Header movedChris Lattner2004-05-27
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13812 91177308-0d34-0410-b5e6-96231b3b80d8
* Use inttypes.h, which exists on all of Linux, Solaris and Darwin.Brian Gaeke2004-05-11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13461 91177308-0d34-0410-b5e6-96231b3b80d8
* Unbreak the build on X86.Chris Lattner2004-05-11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13460 91177308-0d34-0410-b5e6-96231b3b80d8
* Squash warnings on Solaris/sparc... the test suite is not working for me so IBrian Gaeke2004-05-11
| | | | | | | can't be sure if these are OK, but they look OK. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13459 91177308-0d34-0410-b5e6-96231b3b80d8
* Do not hardcode the name of gcc, because its full pathname may have beenBrian Gaeke2004-05-11
| | | | | | | specified by top-level configure git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13458 91177308-0d34-0410-b5e6-96231b3b80d8
* Do not depend on the path to bashBrian Gaeke2004-05-11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13457 91177308-0d34-0410-b5e6-96231b3b80d8
* Include <sys/types.h> to get the definition of int64_t on Solaris.Brian Gaeke2004-05-11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13456 91177308-0d34-0410-b5e6-96231b3b80d8
* Changes to make the Stacker Stack use 64 bit values. This *should* getReid Spencer2004-05-09
| | | | | | | | around the problem with Stacker on Solaris because the Stack can handle 64-bit entries (pointer sized). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13441 91177308-0d34-0410-b5e6-96231b3b80d8
* If we're going to use tabs, use them consistently. Maybe doxygen will find theMisha Brukman2004-04-15
| | | | | | | @parameter line documentation that way, too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12966 91177308-0d34-0410-b5e6-96231b3b80d8
* Avoid TRUE and FALSE which apparently conflict with some macros on OSXChris Lattner2004-03-31
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12566 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove dependence on the return type of ConstantArray::getChris Lattner2004-02-15
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11463 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix apparent copy-and-paste-o.Brian Gaeke2003-12-10
| | | | | | | Get rid of %debug - Mac OS X bison doesn't have it. sigh. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10352 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a missing semi colon, which breaks bison 1.5Chris Lattner2003-12-08
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10325 91177308-0d34-0410-b5e6-96231b3b80d8
* Makefile updates contributed by ReidChris Lattner2003-12-08
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10317 91177308-0d34-0410-b5e6-96231b3b80d8
* * Squelch warning on SunChris Lattner2003-11-27
| | | | | | | | * stdlib and friends are system headers * 'long long' is the type that consistently turns into the LLVM 'long' type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10241 91177308-0d34-0410-b5e6-96231b3b80d8
* Adjusted the projects Makefile so that it picks up the name of projectsJohn Criswell2003-11-25
| | | | | | | by scanning the source tree (not the object tree). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10223 91177308-0d34-0410-b5e6-96231b3b80d8
* Configure script for ModuleMaker.John Criswell2003-11-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10216 91177308-0d34-0410-b5e6-96231b3b80d8
* Auto-confed ModuleMaker.John Criswell2003-11-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10215 91177308-0d34-0410-b5e6-96231b3b80d8
* Auto-conf'ed the ModuleMaker code.John Criswell2003-11-25
| | | | | | | Moved Makefile.common to Makefile.common.in. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10214 91177308-0d34-0410-b5e6-96231b3b80d8
* Apply patches from PR136Brian Gaeke2003-11-24
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10192 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a script I missedChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10188 91177308-0d34-0410-b5e6-96231b3b80d8
* Checkin testsChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10187 91177308-0d34-0410-b5e6-96231b3b80d8
* Disable test.Chris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10186 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix these assertions:Chris Lattner2003-11-23
| | | | | | | | | | | | stkrc -e -f -o testing.bc testing.st Global is external, but doesn't have external linkage! [1024 x int]* %_stack_ Global is external, but doesn't have external linkage! long* %_index_ Broken module found, compilation aborted! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10185 91177308-0d34-0410-b5e6-96231b3b80d8
* Checkin the stacker compilerChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10184 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix file headerChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10183 91177308-0d34-0410-b5e6-96231b3b80d8
* Initial checkinChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10182 91177308-0d34-0410-b5e6-96231b3b80d8
* Initial checkin of stacker samplesChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10181 91177308-0d34-0410-b5e6-96231b3b80d8
* Adjust file headerChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10180 91177308-0d34-0410-b5e6-96231b3b80d8
* Initial checkin of stacker runtimeChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10179 91177308-0d34-0410-b5e6-96231b3b80d8
* Initial stacker checkinChris Lattner2003-11-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10178 91177308-0d34-0410-b5e6-96231b3b80d8