summaryrefslogtreecommitdiffstats
path: root/llvm/projects/Stacker
Commit message (Collapse)AuthorAgeFilesLines
* Make the value to -s not be interpreted as a file nameReid Spencer2005-05-191-2/+2
| | | | llvm-svn: 22134
* Add an llvmc specification file for the "st" suffix. This allows StackerReid Spencer2005-05-192-1/+65
| | | | | | programs to benefit from the optimization capabilities of the llvmc. llvm-svn: 22133
* The previous hack didn't work because tools-only isn't defined and isn'tReid Spencer2005-05-131-4/+1
| | | | | | | | a target at this level of build. There shouldn't be a problem with building the runtime library without llvm-gcc because the Makefile.rules checks for an empty LLVMGCC variable before building bytecode modules. llvm-svn: 21942
* Don't build runtime if tools-only :)Reid Spencer2005-05-131-1/+4
| | | | llvm-svn: 21938
* WHILE does not "pop" a value, it "examines" to top of stack. Make thisReid Spencer2005-05-041-1/+1
| | | | | | clear in the applicable comment. llvm-svn: 21682
* Eliminate tabs and trailing spacesJeff Cohen2005-04-234-1070/+1070
| | | | llvm-svn: 21479
* Remove trailing whitespaceMisha Brukman2005-04-213-203/+203
| | | | llvm-svn: 21427
* Rename createPromoteMemoryToRegister() toAlkis Evlogimenos2005-03-281-1/+1
| | | | | | | createPromoteMemoryToRegisterPass() to be consistent with other pass creation functions. llvm-svn: 20885
* Update makefile to use PROJ_* makefile variables intead of BUILD_* asReid Spencer2005-02-141-2/+2
| | | | | | | required by changes to the Makefile.rules. Patch contributed by Vladimir Merzliakov. llvm-svn: 20175
* Update per new Makefile requirements for projectsReid Spencer2005-01-161-17/+10
| | | | llvm-svn: 19594
* Ignore some filesReid Spencer2005-01-011-0/+2
| | | | llvm-svn: 19221
* Clean up some autoconf cruftReid Spencer2004-12-272-33/+37
| | | | | | | | * Make the source detection use a file unique to Stacker * Configure Makefile.common.in with AC_CONFIG_FILES not AC_CONFIG_MAKEFILE * Use new autoconf format for invoking AC_OUTPUT llvm-svn: 19165
* Correct build script for stkr_runtime moduleReid Spencer2004-12-051-1/+1
| | | | llvm-svn: 18526
* Build a module instead of a library so main() is not missedReid Spencer2004-12-051-13/+9
| | | | llvm-svn: 18525
* Add LLVMbzip2 library, now required.Reid Spencer2004-11-251-1/+1
| | | | llvm-svn: 18255
* Use llvmc to compile test casesReid Spencer2004-11-201-18/+11
| | | | llvm-svn: 18053
* Fix usage of changed function prototypeReid Spencer2004-11-141-1/+1
| | | | llvm-svn: 17798
* Change macro names per naming standard in Makefile.rules.Reid Spencer2004-10-301-5/+5
| | | | llvm-svn: 17361
* Correct macro names per naming standard in Makefile.rulesReid Spencer2004-10-301-12/+12
| | | | llvm-svn: 17360
* Disable the build in the samples directory so that llvmc dependencies don'tReid Spencer2004-10-291-1/+1
| | | | | | mess up the build. llvm-svn: 17342
* Make sure the LLVM_CONFIG_DIR environment variable is set so we don't getReid Spencer2004-10-291-1/+1
| | | | | | error messages from the compiler. llvm-svn: 17335
* Make sure the sources get distributed (use EXTRA_DIST)Reid Spencer2004-10-281-5/+3
| | | | | | Add the goof.st sample. llvm-svn: 17312
* Use llvmc to compile the Stacker programsReid Spencer2004-10-281-30/+7
| | | | llvm-svn: 17300
* Add the samples directory to the buildReid Spencer2004-10-281-2/+2
| | | | llvm-svn: 17299
* Get rid of drivel.Reid Spencer2004-10-281-12/+3
| | | | | | | Ensure the lex/yacc output are specified as BUILT_SOURCES so they get built first. llvm-svn: 17290
* Change Library Names Not To Conflict With Others When InstalledReid Spencer2004-10-272-5/+6
| | | | llvm-svn: 17286
* Make sure the samples and test directories get distributed.Reid Spencer2004-10-261-0/+1
| | | | llvm-svn: 17248
* Adjust to changes in Makefile.rulesReid Spencer2004-10-221-0/+2
| | | | llvm-svn: 17167
* Remove exhuberant-style comments which remained from copying file from `sample'Misha Brukman2004-10-111-10/+0
| | | | llvm-svn: 16909
* Fix file header comment; remove sample project (extra-verbose) commentsMisha Brukman2004-10-111-11/+1
| | | | llvm-svn: 16908
* Fix file header commentMisha Brukman2004-10-111-2/+2
| | | | llvm-svn: 16907
* This pass is not needed, as there is only ever one global: the stackChris Lattner2004-10-071-2/+0
| | | | llvm-svn: 16800
* Stacker compiler library doesn't need to be shared and it can causeReid Spencer2004-09-151-1/+0
| | | | | | problems on some platforms (like Solaris). llvm-svn: 16365
* Attempt to solve the libtool problem on Solaris.Reid Spencer2004-09-152-4/+16920
| | | | llvm-svn: 16364
* Use llvm-link to link the .bc with testing.bc. This helps test the newReid Spencer2004-09-111-4/+5
| | | | | | llvm-link dependent libraries feature. llvm-svn: 16276
* Added the configuration of the test/Makefile.Reid Spencer2004-09-052-0/+7
| | | | llvm-svn: 16185
* Convert makefile to use standard LLVM macros for tool namesReid Spencer2004-09-041-22/+13
| | | | | | Utilize new stkrc -O4 option for optimization during translation. llvm-svn: 16168
* Make Stacker into a complete project with its own configuration.Reid Spencer2004-09-0417-12/+18336
| | | | llvm-svn: 16167
* Make the StackerCompiler and optimizing translator by running specificReid Spencer2004-09-042-3/+92
| | | | | | | optimizations after construction of the Module. The OptLevel argument to the compile function controls the level of optimization. llvm-svn: 16166
* Make the Stacker compiler handle -O1 .. -O5 options so it is compliant withReid Spencer2004-09-042-72/+99
| | | | | | | the compiler driver interface as an optimizing translator. Also clean up error message handling. llvm-svn: 16165
* Unbreak buildBrian Gaeke2004-09-022-2/+2
| | | | llvm-svn: 16139
* Changes For Bug 352Reid Spencer2004-09-013-4/+5
| | | | | | | | 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
* Must link against new LLVMsystem libraryNate Begeman2004-08-291-1/+1
| | | | llvm-svn: 16104
* RemoveFileOnSignal is now in sys:: namespaceNate Begeman2004-08-291-1/+1
| | | | llvm-svn: 16103
* Add dependent library support for Stacker. It now inserts "stkr_runtime" asReid Spencer2004-08-241-1/+5
| | | | | | a dependent library. llvm-svn: 16040
* Fix #includes of i*.h => Instructions.h as per PR403.Misha Brukman2004-07-292-8/+2
| | | | llvm-svn: 15334
* Group the hidden command line arguments.Reid Spencer2004-07-101-7/+6
| | | | | | Make the -s option actually work and default to the right value. llvm-svn: 14735
* Add #include <iostream> since Value.h doesn't include it any more.Reid Spencer2004-07-041-0/+1
| | | | llvm-svn: 14624
* Add support for dos-style filesChris Lattner2004-05-271-1/+1
| | | | llvm-svn: 13840
* Header movedChris Lattner2004-05-271-1/+1
| | | | llvm-svn: 13812
OpenPOWER on IntegriCloud