Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								dae49df407 
								
							 
						 
						
							
							
								
								Fix Transforms/ScalarRepl/2006-04-20-PromoteCrash.ll  
							
							 
							
							... 
							
							
							
							llvm-svn: 27912 
							
						 
						
							2006-04-20 20:48:50 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								3323ce165d 
								
							 
						 
						
							
							
								
								Teach scalarrepl to promote unions of vectors and floats, producing  
							
							 
							
							... 
							
							
							
							insert/extractelement operations.  This implements
Transforms/ScalarRepl/vector_promote.ll
llvm-svn: 27710 
							
						 
						
							2006-04-14 21:42:41 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								fc34f8bb48 
								
							 
						 
						
							
							
								
								Fix a miscompilation of 188.ammp with the new CFE.  188.ammp is accessing  
							
							 
							
							... 
							
							
							
							arrays out of range in a horrible way, but we shouldn't break it anyway.
Details in the comments.
llvm-svn: 26606 
							
						 
						
							2006-03-08 01:05:29 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								c0f633a598 
								
							 
						 
						
							
							
								
								Fix Regression/Transforms/ScalarRepl/2006-01-24-IllegalUnionPromoteCrash.ll  
							
							 
							
							... 
							
							
							
							llvm-svn: 25587 
							
						 
						
							2006-01-24 19:36:27 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								c597b8a55e 
								
							 
						 
						
							
							
								
								Make iostream #inclusion explicit  
							
							 
							
							... 
							
							
							
							llvm-svn: 25514 
							
						 
						
							2006-01-22 23:32:06 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								8c9e14620f 
								
							 
						 
						
							
							
								
								Fix Transforms/ScalarRepl/2005-12-14-UnionPromoteCrash.ll, a crash on undefined  
							
							 
							
							... 
							
							
							
							behavior in 126.gcc on big-endian systems.
llvm-svn: 24708 
							
						 
						
							2005-12-14 17:23:59 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								3b0a62d8a5 
								
							 
						 
						
							
							
								
								Implement a little hack for parity with GCC on crafty.  This speeds up  
							
							 
							
							... 
							
							
							
							186.crafty by about 16% (from 15.109s to 13.045s) on my system.
This turns allocas with unions/casts into scalars.  For example crafty has
something like this:
    union doub {
      unsigned short i[4];
      long long d;
    };
int f(long long a) {
  return ((union doub){.d=a}).i[1];
}
Instead of generating loads and stores to an alloca, we now promote the
whole thing to a scalar long value.
This implements: Transforms/ScalarRepl/AggregatePromote.ll
llvm-svn: 24667 
							
						 
						
							2005-12-12 07:19:13 +00:00  
						
					 
				
					
						
							
							
								 
								Nate Begeman
							
						 
						
							 
							
							
							
							
								
							
							
								848622f87f 
								
							 
						 
						
							
							
								
								Add support alignment of allocation instructions.  
							
							 
							
							... 
							
							
							
							Add support for specifying alignment and size of setjmp jmpbufs.
No targets currently do anything with this information, nor is it presrved
in the bytecode representation.  That's coming up next.
llvm-svn: 24196 
							
						 
						
							2005-11-05 09:21:28 +00:00  
						
					 
				
					
						
							
							
								 
								Misha Brukman
							
						 
						
							 
							
							
							
							
								
							
							
								b1c9317bb4 
								
							 
						 
						
							
							
								
								Remove trailing whitespace  
							
							 
							
							... 
							
							
							
							llvm-svn: 21427 
							
						 
						
							2005-04-21 23:48:37 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								ce274ce93d 
								
							 
						 
						
							
							
								
								Silence warnings  
							
							 
							
							... 
							
							
							
							llvm-svn: 19379 
							
						 
						
							2005-01-08 19:34:41 +00:00  
						
					 
				
					
						
							
							
								 
								Reid Spencer
							
						 
						
							 
							
							
							
							
								
							
							
								9339638e9c 
								
							 
						 
						
							
							
								
								Remove unused variable for compilation by VC++.  
							
							 
							
							... 
							
							
							
							Patch contributed by Morten Ofstad.
llvm-svn: 17830 
							
						 
						
							2004-11-15 17:29:41 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								fe3f4e6ebd 
								
							 
						 
						
							
							
								
								Teach SROA how to promote an array index that is variable, if the dimension  
							
							 
							
							... 
							
							
							
							of the array is just two.  This occurs 8 times in gcc, 6 times in crafty, and
12 times in 099.go.
This implements ScalarRepl/sroa_two.ll
llvm-svn: 17727 
							
						 
						
							2004-11-14 05:00:19 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								8881912d71 
								
							 
						 
						
							
							
								
								Rearrange some code, no functionality changes.  
							
							 
							
							... 
							
							
							
							llvm-svn: 17724 
							
						 
						
							2004-11-14 04:24:28 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								3e86084641 
								
							 
						 
						
							
							
								
								Prototype these functions more accurately  
							
							 
							
							... 
							
							
							
							llvm-svn: 16432 
							
						 
						
							2004-09-20 04:43:15 +00:00  
						
					 
				
					
						
							
							
								 
								Reid Spencer
							
						 
						
							 
							
							
							
							
								
							
							
								7c16caa336 
								
							 
						 
						
							
							
								
								Changes For Bug 352  
							
							 
							
							... 
							
							
							
							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 
							
						 
						
							2004-09-01 22:55:40 +00:00  
						
					 
				
					
						
							
							
								 
								Misha Brukman
							
						 
						
							 
							
							
							
							
								
							
							
								2b3387a6d9 
								
							 
						 
						
							
							
								
								Fix #includes of i*.h => Instructions.h as per PR403.  
							
							 
							
							... 
							
							
							
							llvm-svn: 15328 
							
						 
						
							2004-07-29 17:05:13 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								9a63520b1a 
								
							 
						 
						
							
							
								
								Fixes working towards PR341  
							
							 
							
							... 
							
							
							
							llvm-svn: 14839 
							
						 
						
							2004-07-15 01:50:47 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								b5f8eb8315 
								
							 
						 
						
							
							
								
								Do not loop over uses as we delete them.  This causes iterators to be  
							
							 
							
							... 
							
							
							
							invalidated out from under us.  This bug goes back to revision 1.1: scary.
llvm-svn: 14242 
							
						 
						
							2004-06-19 02:02:22 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								69193f93b6 
								
							 
						 
						
							
							
								
								Support getelementptr instructions which use uint's to index into structure  
							
							 
							
							... 
							
							
							
							types and can have arbitrary 32- and 64-bit integer types indexing into
sequential types.
llvm-svn: 12653 
							
						 
						
							2004-04-05 01:30:19 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								40d2aeb28f 
								
							 
						 
						
							
							
								
								Finegrainify namespacification  
							
							 
							
							... 
							
							
							
							Fix regressions ScalarRepl/basictest.ll & arraytest.ll
llvm-svn: 10287 
							
						 
						
							2003-12-02 17:43:55 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								52310702a1 
								
							 
						 
						
							
							
								
								Do not use index type to determine what it is indexing into!  
							
							 
							
							... 
							
							
							
							llvm-svn: 10226 
							
						 
						
							2003-11-25 21:09:18 +00:00  
						
					 
				
					
						
							
							
								 
								Brian Gaeke
							
						 
						
							 
							
							
							
							
								
							
							
								960707c335 
								
							 
						 
						
							
							
								
								Put all LLVM code into the llvm namespace, as per bug 109.  
							
							 
							
							... 
							
							
							
							llvm-svn: 9903 
							
						 
						
							2003-11-11 22:41:34 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								bcb0f4bf2e 
								
							 
						 
						
							
							
								
								Fix PR66 & ScalarRepl/2003-10-29-ArrayProblem.ll  
							
							 
							
							... 
							
							
							
							llvm-svn: 9585 
							
						 
						
							2003-10-29 17:55:44 +00:00  
						
					 
				
					
						
							
							
								 
								John Criswell
							
						 
						
							 
							
							
							
							
								
							
							
								482202a601 
								
							 
						 
						
							
							
								
								Added LLVM project notice to the top of every C++ source file.  
							
							 
							
							... 
							
							
							
							Header files will be on the way.
llvm-svn: 9298 
							
						 
						
							2003-10-20 19:43:21 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								a906bacfdd 
								
							 
						 
						
							
							
								
								Change the interface to PromoteMemToReg to also take a DominatorTree  
							
							 
							
							... 
							
							
							
							llvm-svn: 8883 
							
						 
						
							2003-10-05 21:20:13 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								5dac64f629 
								
							 
						 
						
							
							
								
								Rename Function::getEntryNode -> getEntryBlock  
							
							 
							
							... 
							
							
							
							llvm-svn: 8625 
							
						 
						
							2003-09-20 14:39:18 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								7fdde92b1f 
								
							 
						 
						
							
							
								
								Do not return success after checking only the FIRST USE of a gep instruction.  
							
							 
							
							... 
							
							
							
							Instead, check all uses.
This fixes bug: ScalarRepl/2003-09-12-IncorrectPromote.ll
This also fixes the miscompilation of Ptrdist/bc
llvm-svn: 8493 
							
						 
						
							2003-09-12 16:02:12 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								9a95f2a944 
								
							 
						 
						
							
							
								
								Minor optimization efficiency improvement:  
							
							 
							
							... 
							
							
							
							- Run mem2reg promotion first
  - Only rerun passes if the previous thing changed something
llvm-svn: 8490 
							
						 
						
							2003-09-12 15:36:03 +00:00  
						
					 
				
					
						
							
							
								 
								Misha Brukman
							
						 
						
							 
							
							
							
							
								
							
							
								217ca0bcb9 
								
							 
						 
						
							
							
								
								Apostrophes are only used for possession and quoting.  
							
							 
							
							... 
							
							
							
							llvm-svn: 8473 
							
						 
						
							2003-09-11 16:58:31 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								5d8a12e094 
								
							 
						 
						
							
							
								
								Integrate functionality of the mem2reg pass directly into this pass to make  
							
							 
							
							... 
							
							
							
							the combination more effective
llvm-svn: 8471 
							
						 
						
							2003-09-11 16:45:55 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								c817458b66 
								
							 
						 
						
							
							
								
								ScalarRepl does not modify the CFG.  Say so!  
							
							 
							
							... 
							
							
							
							llvm-svn: 8243 
							
						 
						
							2003-08-31 00:45:13 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								8abcd56c74 
								
							 
						 
						
							
							
								
								DEBUG got moved to Support/Debug.h  
							
							 
							
							... 
							
							
							
							llvm-svn: 7492 
							
						 
						
							2003-08-01 22:15:03 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								6077c3195f 
								
							 
						 
						
							
							
								
								Simplify code by using ConstantInt::getRawValue instead of checking to see  
							
							 
							
							... 
							
							
							
							whether the constant is signed or unsigned, then casting
llvm-svn: 7252 
							
						 
						
							2003-07-23 15:22:26 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								0078d9c5bb 
								
							 
						 
						
							
							
								
								Okay totally give up on trying to optimize aggregates that cannot be completely  
							
							 
							
							... 
							
							
							
							broken up into their elements.  Too many programs break because of this.
llvm-svn: 6440 
							
						 
						
							2003-05-30 19:22:14 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								d847be0539 
								
							 
						 
						
							
							
								
								add a check that allows the SRoA pass to avoid breaking programs, even if their  
							
							 
							
							... 
							
							
							
							behavior is technically undefined
llvm-svn: 6438 
							
						 
						
							2003-05-30 18:09:57 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								38d88c07f4 
								
							 
						 
						
							
							
								
								Fix bug: ScalarRepl/2003-05-30-MultiLevel.ll  
							
							 
							
							... 
							
							
							
							llvm-svn: 6428 
							
						 
						
							2003-05-30 05:26:30 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								6e5398d69d 
								
							 
						 
						
							
							
								
								Fix bug: ScalarRepl/2003-05-29-ArrayFail.ll  
							
							 
							
							... 
							
							
							
							llvm-svn: 6425 
							
						 
						
							2003-05-30 04:15:41 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								c16b210349 
								
							 
						 
						
							
							
								
								* Actually USE the statistic that we made  
							
							 
							
							... 
							
							
							
							* Implement SRoA for arrays
llvm-svn: 6349 
							
						 
						
							2003-05-27 16:09:27 +00:00  
						
					 
				
					
						
							
							
								 
								Chris Lattner
							
						 
						
							 
							
							
							
							
								
							
							
								fb41a50d15 
								
							 
						 
						
							
							
								
								Implementation of the simple "scalar replacement of aggregates" transformation  
							
							 
							
							... 
							
							
							
							llvm-svn: 6346 
							
						 
						
							2003-05-27 15:45:27 +00:00