Chris Lattner 
							
						 
					 
					
						
						
							
						
						519f40ba4e 
					 
					
						
						
							
							remove one more occurance of this that snuck in  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21271  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-13 02:46:17 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						c951d87fe9 
					 
					
						
						
							
							Elimate handling of ZERO_EXTEND_INREG.  This causes the PPC backend to emit  
						
						... 
						
						
						
						andi instructions instead of rlwinm instructions for zero extend, but they
seem like they would take the same time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21268  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-13 02:40:26 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						b882752bd0 
					 
					
						
						
							
							Fold shift by size larger than type size to undef  
						
						... 
						
						
						
						Make llvm undef values generate ISD::UNDEF nodes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21261  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-12 23:12:17 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						9765c25eb7 
					 
					
						
						
							
							Implement setcc op, -1 sequences  
						
						... 
						
						
						
						Remove dead setcc op, 0 sequences
Coming later: generalization of op, imm
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21260  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-12 21:22:28 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						7af0248af4 
					 
					
						
						
							
							Initial support for allocation condition registers  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21246  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-12 07:04:16 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						9f833d3085 
					 
					
						
						
							
							Implement bitfield clears  
						
						... 
						
						
						
						Implement divide by negative power of two
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21240  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-12 00:10:02 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						ef9531efed 
					 
					
						
						
							
							Update PPC readme.  Remove things that are done or aren't ppc specific  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21232  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-11 20:48:57 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						5eef9f3bc9 
					 
					
						
						
							
							ORo sets CR0  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21227  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-11 15:03:48 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						6b4ea2cfa2 
					 
					
						
						
							
							Revert the previous patch, which I didn't mean to check in.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21226  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-11 15:03:41 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						26d4fdb968 
					 
					
						
						
							
							Fix a minor bug (ORo didn't mark that it set CR0).  
						
						... 
						
						
						
						Refactor how . instructions are handled.  In particular, instead of passing
the RC flag all the way up the inheritance hierarchy, just make a new tblgen
class 'DOT' which can be added to an instruction definition.
For example, instead of this:
-def AND  : XForm_6<31,  28, 0, 0, 0, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
-let Defs = [CR0] in
-def ANDo : XForm_6<31,  28, 1, 0, 0, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
-                   "and. $rA, $rS, $rB">;
We now have this:
+def AND  : XForm_6<31,  28, 0, 0, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
                    "and $rA, $rS, $rB">;
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21225  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-11 15:01:39 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						c7bd4827cd 
					 
					
						
						
							
							Add recording variants of ISD::AND and ISD::OR.  This kills almost 1000  
						
						... 
						
						
						
						(1.5%) instructions in 186.crafty
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21222  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-11 06:34:10 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						709c806a1e 
					 
					
						
						
							
							Fix another fixme: factor out the constant fp generation code.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21207  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-10 06:06:10 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						c5b1cd22b5 
					 
					
						
						
							
							Fix 64 bit argument loading that straddles the args in regs / args on stack  
						
						... 
						
						
						
						boundary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21206  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-10 05:53:14 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						340f290783 
					 
					
						
						
							
							Remove unnecessary Implicit Defs.  Since r0 is not in allocation, we do not  
						
						... 
						
						
						
						have to inform the register allocator it might be stepped on.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21202  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-10 03:59:42 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						27499e3f1b 
					 
					
						
						
							
							Make sure that BRCOND branches can be converted into long branches too.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21198  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-10 01:48:29 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						a0e3e9474f 
					 
					
						
						
							
							Don't hand ISD::CALL nodes off to SelectExprFP.  This fixes siod.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21197  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-10 01:14:13 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						51d2ed976f 
					 
					
						
						
							
							rename getPPCOpcodeForSetCCNumber -> getPPCOpcodeForSetCCOpode to be more  
						
						... 
						
						
						
						correct.  Remove the EmitComparison retvalue, as it is always the first arg.
Fix a place where we incorrectly passed in the setcc opcode instead of the
setcc number, causing us to miscompile crafty.  Crafty now works!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21195  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-10 01:03:31 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						706471e291 
					 
					
						
						
							
							fix ISD::BRCONDTWOWAY codegen to not deference the end() iterator  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21193  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 23:35:05 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9184bfbbf4 
					 
					
						
						
							
							Fix CodeGen/Generic/2005-05-09-GlobalInPHI.ll, which was reduced from 254.gap.  
						
						... 
						
						
						
						This caused the "use before a def" assertion on some programs.
With this patch, 254.gap now passes with the PPC backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21191  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 22:05:17 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						91277ea45c 
					 
					
						
						
							
							do not set the root to null if an argument is dead  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21188  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 21:23:24 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						cd08e4cb7e 
					 
					
						
						
							
							Add rlwnm instruction for variable rotate  
						
						... 
						
						
						
						Generate rotate left/right immediate
Generate code for brcondtwoway
Use new livein/liveout functionality
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21187  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 20:09:12 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						27ee3a332d 
					 
					
						
						
							
							Fix a crash on 173.applu by asking for a constant bigger than 32-bits.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21185  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 19:47:21 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						f429a3e0f6 
					 
					
						
						
							
							Switch this instruction selector over to using liveins and liveouts, eliminating  
						
						... 
						
						
						
						implicit defs on entry to the function.  yaay :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21184  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 16:32:30 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						af4ab1b103 
					 
					
						
						
							
							Optimize FSEL a bit for fneg arguments.  This fixes the recently added test  
						
						... 
						
						
						
						case so that we emit
_test_fneg_sel:
.LBB_test_fneg_sel_0:   ;
        fsel f1, f1, f3, f2
        blr
instead of:
_test_fneg_sel:
.LBB_test_fneg_sel_0:   ;
        fneg f0, f1
        fneg f0, f0
        fsel f1, f0, f3, f2
        blr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21177  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 09:33:07 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						644db4ec5f 
					 
					
						
						
							
							This target does not yet support ISD::BRCONDTWOWAY  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21163  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 03:22:30 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						e88aa5b4d1 
					 
					
						
						
							
							64b: Expand S/UREM  
						
						... 
						
						
						
						32b: No longer pattern match fneg(fsub(fmul)) as fnmsub
     Pattern match fsub a, mul(b, c) as fnmsub
     Pattern match fadd a, mul(b, c) as fmadd
Those changes speed up hydro2d by 2.5%, distray by 6%, and scimark by 8%
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21161  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-09 03:05:51 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						a9532d5dde 
					 
					
						
						
							
							Fix 64b shifts  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21159  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-08 23:45:01 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						f3f2d6d378 
					 
					
						
						
							
							Match Mac OS X 64 bit calling conventions  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21157  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-08 21:26:05 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						7e7fadd2ea 
					 
					
						
						
							
							Optimized code sequences for setcc reg, 0  
						
						... 
						
						
						
						Optimized code sequence for (a < 0) ? b : 0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21150  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-07 20:30:01 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						cbd06fc3d7 
					 
					
						
						
							
							PowerPC zero extends setcc results  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21147  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-07 19:41:49 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						7ddecb4186 
					 
					
						
						
							
							Pattern match bitfield insert, which helps shift long by immediate, among  
						
						... 
						
						
						
						other things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21127  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-06 23:51:40 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						020ef42c19 
					 
					
						
						
							
							Fix some shift bugs  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21126  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-06 22:42:08 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						27b4c23b80 
					 
					
						
						
							
							Fixed version of optimized integer divide is now fixed.  Calculate the  
						
						... 
						
						
						
						quotient, not the remainder.  Also, make sure to remove the old div operand
from the ExprMap and let SelectExpr insert the new one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21111  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-06 06:44:57 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						8f52980f03 
					 
					
						
						
							
							Turn off the div -> mul optimization until it works correctly 100% of the  
						
						... 
						
						
						
						time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21105  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-06 03:36:33 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						815d6dac1e 
					 
					
						
						
							
							Add support for MULHS and MULHU nodes  
						
						... 
						
						
						
						Have LegalizeDAG handle SREM and UREM for us
Codegen SDIV and UDIV by constant as a multiply by magic constant instead
of integer divide, which is very slow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21104  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-06 00:25:27 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						ad5f65c74b 
					 
					
						
						
							
							Behold, rlwinm with certain immediate arguments is printed as the much more  
						
						... 
						
						
						
						readable slwi or srwi (shift left/right word immediate).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21099  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-05 18:19:50 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						a3829d5580 
					 
					
						
						
							
							Fix cut & paste errors (32->64), and codegen float->int more optimally.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21098  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-05 17:32:30 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						d3e6b94020 
					 
					
						
						
							
							Remove 64 bit simple ISel, it never worked correctly  
						
						... 
						
						
						
						Add initial (buggy) implementation of 64 bit pattern ISel
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21096  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-05 08:51:15 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						c8c5c8f0fa 
					 
					
						
						
							
							Back out the previous change to SelectBranchCC, since there are cases it  
						
						... 
						
						
						
						could miscompile.  A correct solution will be found in the near future.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21095  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-05 04:32:16 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						439b444cad 
					 
					
						
						
							
							Rename canUseAsImmediateForOpcode to getImmediateForOpcode to better  
						
						... 
						
						
						
						indicate that it is not a boolean function.
Properly emit the pseudo instruction for conditional branch, so that we
  can fix up conditional branches whose displacements are too large.
Reserve the right amount of opcode space for said pseudo instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21094  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-05 04:22:58 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						80196b1331 
					 
					
						
						
							
							Implement SDIV by power of 2 as srawi/addze rather than load imm, divw  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21091  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-05 00:15:08 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						93075ec0a5 
					 
					
						
						
							
							Pattern match fp mul-add, mul-sub, neg-mul-add, and neg-mul-sub  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21090  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-04 23:40:36 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						178bb34ee5 
					 
					
						
						
							
							Add support for multiply-add, multiply-sub, and their negated versions  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21089  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-04 23:01:51 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						d860aa62ac 
					 
					
						
						
							
							Make sure that arg regs used by the call instruction are marked as such, so  
						
						... 
						
						
						
						that regalloc doesn't cleverly reuse early arg regs loading later arg regs.
This fixes almost all outstanding failures in the pattern isel.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21086  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-04 22:17:48 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						04ec80173b 
					 
					
						
						
							
							Remove unnecessary register copy now that regalloc is fixed  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21085  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-04 21:48:13 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						c3e2db407e 
					 
					
						
						
							
							i1 loads should also be from the low byte of the argument word.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21077  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-04 09:09:00 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						e584668f04 
					 
					
						
						
							
							Fix i64 return, fix CopyFromReg  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21076  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-04 06:52:38 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						6644d4c933 
					 
					
						
						
							
							Full varargs support.  All of UnitTests now passes  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21070  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-03 23:11:17 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						4ec0cbdf15 
					 
					
						
						
							
							Pass the correct value for the chain to the store  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21066  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-03 22:22:56 +00:00 
						 
				 
			
				
					
						
							
							
								Nate Begeman 
							
						 
					 
					
						
						
							
						
						fa55470e39 
					 
					
						
						
							
							Fix SHL_PARTS  
						
						... 
						
						
						
						Start implementation of integer varargs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21065  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2005-04-03 22:13:27 +00:00