summaryrefslogtreecommitdiffstats
path: root/llvm
Commit message (Collapse)AuthorAgeFilesLines
* Add support for compressed bytecodeReid Spencer2004-11-065-27/+138
| | | | llvm-svn: 17535
* Adding RUN line.Tanya Lattner2004-11-061-0/+1
| | | | llvm-svn: 17534
* Adding RUN lines.Tanya Lattner2004-11-0630-0/+60
| | | | llvm-svn: 17533
* Adding RUN lines.Tanya Lattner2004-11-06107-0/+214
| | | | llvm-svn: 17532
* Adding RUN lines.Tanya Lattner2004-11-0626-0/+52
| | | | llvm-svn: 17529
* Adding RUN lines.Tanya Lattner2004-11-0629-2/+60
| | | | llvm-svn: 17528
* Adding RUN lines.Tanya Lattner2004-11-0646-0/+92
| | | | llvm-svn: 17527
* Adjust to printing user+system times instead of wall times. Run the oldenChris Lattner2004-11-061-6/+7
| | | | | | numbers in 'stable' mode so that the numbers are more stable. llvm-svn: 17525
* Add missing run lineChris Lattner2004-11-062-2/+4
| | | | llvm-svn: 17522
* First crack at support to run tests using dejagnu. This file contains a ↵Tanya Lattner2004-11-061-0/+103
| | | | | | procedure to run a test like TestRunner.sh does. llvm-svn: 17521
* Add a run lineChris Lattner2004-11-061-0/+4
| | | | llvm-svn: 17520
* Add a missing run lineChris Lattner2004-11-062-0/+2
| | | | llvm-svn: 17519
* This pass has been removed from LLVMChris Lattner2004-11-062-30/+0
| | | | llvm-svn: 17518
* Add missing run lineChris Lattner2004-11-061-0/+1
| | | | llvm-svn: 17517
* Adding XFAIL lines for dejagnu support.Tanya Lattner2004-11-0636-24/+39
| | | | llvm-svn: 17514
* Implement the GetBytecodeSymbols interface function to extract just theReid Spencer2004-11-061-0/+39
| | | | | | externally visible defined symbols from a bytecode file. llvm-svn: 17503
* Provide an interface for getting just the external symbols from aReid Spencer2004-11-061-0/+10
| | | | | | Bytecode file. llvm-svn: 17502
* Deprecate constructors we don't want users to use.Reid Spencer2004-11-061-0/+23
| | | | | | Temporarily comment out two interface methods we might not implement. llvm-svn: 17501
* Makefile for the LLVMArchive library.Reid Spencer2004-11-061-0/+18
| | | | llvm-svn: 17500
* First kinda/sorta working version of the Archive library. Reading is notReid Spencer2004-11-063-0/+466
| | | | | | yet supported but writing works. Way too early to review this. More to come llvm-svn: 17499
* Stop propagating method names that violate the coding standardReid Spencer2004-11-0521-241/+252
| | | | llvm-svn: 17498
* Go ahead and trust the client not to mess with the ModuleProvider* returnedReid Spencer2004-11-051-6/+11
| | | | | | by the findModuleContainingSymbol method. llvm-svn: 17491
* * Documentation corrections (thanks to Chris for nit-picking)Reid Spencer2004-11-051-18/+11
| | | | | | | * Remove dead typedefs. * Redefine how getAllPaths treats its argument. llvm-svn: 17489
* Fix compilation problem; make the cast and the LHS be the same type.John Criswell2004-11-051-1/+1
| | | | llvm-svn: 17488
* First version of the interface to Archive files. This introduces theReid Spencer2004-11-051-0/+261
| | | | | | | | | llvm::Archive class to provide for reading, writing, indexing and search functions on standard ar(1) format files that contain bytecode modules. Implementation to follow. llvm-svn: 17487
* Remove dead varChris Lattner2004-11-051-1/+0
| | | | llvm-svn: 17485
* Quiet VC++ warningsChris Lattner2004-11-053-4/+4
| | | | llvm-svn: 17484
* Do not make i have bigger scope that we needChris Lattner2004-11-051-2/+2
| | | | llvm-svn: 17483
* Remove dead varsChris Lattner2004-11-052-2/+0
| | | | llvm-svn: 17482
* Fix some warnings on VC++Chris Lattner2004-11-051-3/+1
| | | | llvm-svn: 17481
* Remove this file as suggested by Jeff CohenChris Lattner2004-11-051-0/+0
| | | | llvm-svn: 17480
* Fix project file, patch contributed by Jeff CohenChris Lattner2004-11-051-1/+0
| | | | llvm-svn: 17479
* Clean up code layout, delete extra blank line, say `fibonacci' instead of `foo'Misha Brukman2004-11-051-4/+2
| | | | llvm-svn: 17478
* Thanks to sabre for pointing out that we were incorrectly codegen'ingNate Begeman2004-11-041-1/+4
| | | | | | | | | int test(int x) { return 32768 - x; } Fixed by teaching the function that checks a constant's validity to be used as an immediate argument about subtract-from instructions. llvm-svn: 17476
* Fix typeoChris Lattner2004-11-041-1/+1
| | | | llvm-svn: 17466
* Handle "call" operands of type long/ulong passed in registers.Brian Gaeke2004-11-041-5/+11
| | | | llvm-svn: 17464
* Cleanup this example, simplifying it and making it conform to LLVM codingChris Lattner2004-11-031-147/+76
| | | | | | standards llvm-svn: 17459
* Don't call Constant::getNullValue when the argument could be VoidTyChris Lattner2004-11-031-2/+3
| | | | llvm-svn: 17457
* defining __STDC_LIMIT_MACROS on the command line is not really necessaryChris Lattner2004-11-031-5/+6
| | | | | | | | | | for Visual Studio, and is a bit of a pain when you want to include the LLVM headers from your own project, so I moved the check a bit down into the Unix case to avoid the hassle... Here is a patch Patch by Morten Ofstad! llvm-svn: 17450
* CONFIGURATION isn't spelled Configuration, it's spelled BuildMode.Brian Gaeke2004-11-031-1/+1
| | | | | | | | | Due to qmtest's or llvm.py's lousy error checking, this single error causes qmtest to fork-bomb the machine, filling the process table with python processes that do nothing. Clearly, better error checking is needed. llvm-svn: 17449
* Top level files for building natively on win32Reid Spencer2004-11-034-0/+183
| | | | llvm-svn: 17447
* MS Visual Studio files for building LLVM on Win32 platforms.Reid Spencer2004-11-0312-0/+2455
| | | | llvm-svn: 17446
* Fix this function to not say that longs have 8-byte alignment on X86/PPC.Chris Lattner2004-11-021-1/+1
| | | | | | | | | This method is really a gross hack, but at least we can make it work on the targets we support right now. This bug fix stops a crash in a testcase reduced from 176.gcc llvm-svn: 17443
* Added gross hacks such as creating my own def-use map, and picking on ↵Tanya Lattner2004-11-022-70/+73
| | | | | | Instruction that I can add all my TmpInstructions to its MCFI. llvm-svn: 17441
* Fix typo, contributed by Henrik Bach!Chris Lattner2004-11-021-1/+1
| | | | llvm-svn: 17434
* * New Recursive Target: clean-all. This target will recursively descend theReid Spencer2004-11-021-19/+21
| | | | | | | | | $(ObjDir) and clean out all build modes (Debug, Release, Profile) in addition to the normal "clean" rules. * Fix "clean" problems with Lex/Yacc so all files are remove properly. * Ensure errors from "rm" don't thwart the uninstall and clean targets. llvm-svn: 17433
* * New Recursive Target: clean-allReid Spencer2004-11-021-11/+19
| | | | llvm-svn: 17432
* Fix a warningChris Lattner2004-11-021-1/+2
| | | | llvm-svn: 17431
* * Rearrange code slightlyChris Lattner2004-11-021-11/+20
| | | | | | | * Disable broken transforms for simplifying (setcc (cast X to larger), CI) where CC is not != or == llvm-svn: 17422
* List the individual tools for easier reference.Reid Spencer2004-11-011-3/+23
| | | | | | | | Make the bugpoint link reference the man page in the CommandGuide until the Bugpoint.html file can describe bugpoint in a little more of a tutorial style instead of just being a man page. llvm-svn: 17416
OpenPOWER on IntegriCloud