- Aug 14, 2006
-
-
Reid Spencer authored
source dir for LLVM to be specified explicitly. This removes the dependency on the llvm-config script. If the option is not given, then the scripts use llvm-config which should be both built and in the PATH. This arrangement provides a useful default for most developers but also allows the nightly tester to execute countloc.sh before llvm-config is built and without altering the PATH. llvm-svn: 29663
-
Patrick Jenkins authored
llvm-svn: 29658
-
- Aug 13, 2006
-
-
Reid Spencer authored
2. make use of the -code-only option on llvmdo 3. Add some debug print statements to find #1 llvm-svn: 29655
-
Reid Spencer authored
nightly test graph. And, documentation is important. llvm-svn: 29654
-
Reid Spencer authored
are considered to be code. This will give a drop in the LOC count on the nightly testers, but it is more accurate than previous estimates. llvm-svn: 29653
-
Reid Spencer authored
files that are considered to be code. Documentation is excluded. llvm-svn: 29652
-
Reid Spencer authored
1. Remove tabs 2. Wrap to 80 columns 3. Put spaces between "if" or "elsif" and expression 4. Put { on same line as if statement. 5. Make indentation be 2 spaces. Functionality change: Run utils/countloc.sh after the build is done. This is necessary because that script now uses llvm-config to find the top src directory. llvm-svn: 29651
-
- Aug 12, 2006
-
-
Reid Spencer authored
so we remove it from being counted. llvm-svn: 29641
-
Reid Spencer authored
llvm-svn: 29638
-
Reid Spencer authored
previously missed. llvm-svn: 29637
-
Patrick Jenkins authored
Added two flags (-submit-server and -submit-script) which allow the user to specify where the test results are submitted too. If these are not specified they default to the LLVM.org server. llvm-svn: 29633
-
- Aug 11, 2006
-
-
Reid Spencer authored
root from the llvm-config script. llvm-svn: 29632
-
Reid Spencer authored
the llvm source root from the llvm-config command. The dependency now is that the correct llvm-config command is in the path. For most developers this is the case. llvm-svn: 29630
-
Reid Spencer authored
lines contributed by each user to each file. llvm-svn: 29624
-
Reid Spencer authored
llvm-svn: 29623
-
Reid Spencer authored
particular directory, just pass that directory to the script. Also, clean up the HTML output, put list of skipped dirs at the end, and make a few other minor improvements. llvm-svn: 29620
-
Evan Cheng authored
llvm-svn: 29619
-
Evan Cheng authored
introduced by previous commit. - SelectCode now returns a SDNode*. If it is not null, the selected node produces the same number of results as the input node. The seletion loop is responsible for calling ReplaceAllUsesWith() to replace the input node with the output target node. For other cases, e.g. when load is folded, the selection code is responsible for calling ReplaceAllUsesOfValueWith() and SelectCode returns NULL. - Other clean ups. llvm-svn: 29602
-
- Aug 09, 2006
-
-
Reid Spencer authored
llvm-svn: 29590
-
Chris Lattner authored
llvm-svn: 29585
-
Tanya Lattner authored
llvm-svn: 29584
-
Evan Cheng authored
llvm-svn: 29579
-
- Aug 08, 2006
-
-
Chris Lattner authored
in the start of an array and a count of operands where applicable. In many cases, the number of operands is known, so this static array can be allocated on the stack, avoiding the heap. In many other cases, a SmallVector can be used, which has the same benefit in the common cases. I updated a lot of code calling getNode that takes a vector, but ran out of time. The rest of the code should be updated, and these methods should be removed. We should also do the same thing to eliminate the methods that take a vector of MVT::ValueTypes. It would be extra nice to convert the dagiselemitter to avoid creating vectors for operands when calling getTargetNode. llvm-svn: 29566
-
Patrick Jenkins authored
llvm-svn: 29565
-
Evan Cheng authored
llvm-svn: 29548
-
- Aug 07, 2006
-
-
Patrick Jenkins authored
Reinstated the sending of a list of all dejagnutests run. Also fixed a rather embarresing error introduced during version 1.41 where i commented out the actual sending of the data to the results server. llvm-svn: 29538
-
- Aug 06, 2006
-
-
Patrick Jenkins authored
llvm-svn: 29537
-
- Aug 04, 2006
-
-
Patrick Jenkins authored
Changed a = to a .= so we now append tests we have performed to the master list of all tests instead of assigning it as the master list. llvm-svn: 29531
-
Patrick Jenkins authored
Made some more changes to the print statements in the nightly tester. The last commit was a preemptive strike. llvm-svn: 29526
-
Patrick Jenkins authored
Encapsulated all of the print statements in "if( $VERBOSE) { }". The testing script will be absoutely silent now except for errors, which will still be printed to the annoyance of the user. llvm-svn: 29525
-
Patrick Jenkins authored
We should now send the correct list of dejagnu tests instead of the csv file of test results when we submit results back to the nightly tester. llvm-svn: 29523
-
- Aug 03, 2006
-
-
Reid Spencer authored
directory. llvm-svn: 29508
-
Patrick Jenkins authored
One of the directories we were searching in for .o and .a files was wrong. We now search /lib instead of /libs. llvm-svn: 29496
-
Chris Lattner authored
llvm-svn: 29492
-
Chris Lattner authored
llvm-svn: 29491
-
Patrick Jenkins authored
utils/ libs/ tools/ Release/ & Debug/ as per Chris. llvm-svn: 29488
-
- Aug 02, 2006
-
-
Patrick Jenkins authored
Removed some dead code and hopefully fixed the issue where the total list of tests was not being sent llvm-svn: 29476
-
- Aug 01, 2006
-
-
Reid Spencer authored
the first argument is omitted. Attempt to use a standard/default font. Make the generation of the DOT file readable. llvm-svn: 29429
-
Evan Cheng authored
llvm-svn: 29423
-
- Jul 31, 2006
-
-
Evan Cheng authored
moved to outside the actual select routine. llvm-svn: 29415
-