mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	as the BinaryOperator, *not* in the block where the IRBuilder is currently inserting into. Fixes a bug where scalarizePHI would create instructions that would not dominate all uses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182639 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: opt < %s -instcombine -S | FileCheck %s
 | |
| 
 | |
| define void @f(i64 %val, i32  %limit, i32 *%ptr) {
 | |
| ;CHECK: %0 = trunc i64
 | |
| ;CHECK: %1 = phi i32
 | |
| entry:
 | |
|   %tempvector = insertelement <16 x i64> undef, i64 %val, i32 0
 | |
|   %vector = shufflevector <16 x i64> %tempvector, <16 x i64> undef, <16 x i32> zeroinitializer
 | |
|   %0 = add <16 x i64> %vector, <i64 0, i64 1, i64 2, i64 3, i64 4, i64 5, i64 6, i64 7, i64 8, i64 9, i64 10, i64 11, i64 12, i64 13, i64 14, i64 15>
 | |
|   %1 = trunc <16 x i64> %0 to <16 x i32>
 | |
|   br label %loop
 | |
| 
 | |
| loop:
 | |
|   %2 = phi <16 x i32> [ %1, %entry ], [ %inc, %loop ]
 | |
|   %elt = extractelement <16 x i32> %2, i32 0
 | |
|   %end = icmp ult i32 %elt, %limit
 | |
|   %3 = add i32 10, %elt
 | |
|   %4 = sext i32 %elt to i64
 | |
|   %5 = getelementptr i32* %ptr, i64 %4
 | |
|   store i32 %3, i32* %5
 | |
|   %inc = add <16 x i32> %2, <i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16, i32 16>
 | |
|   br i1 %end, label %loop, label %ret
 | |
| 
 | |
| ret:
 | |
|   ret void
 | |
| }
 | |
| 
 | |
| define i1 @g(<3 x i32> %input_2) {
 | |
| ; CHECK: extractelement
 | |
| entry:
 | |
|   br label %for.cond
 | |
| 
 | |
| for.cond:
 | |
| ; CHECK: phi i32
 | |
|   %input_2.addr.0 = phi <3 x i32> [ %input_2, %entry ], [ %div45, %for.body ]
 | |
|   %input_1.addr.1 = phi <3 x i32> [ undef, %entry ], [ %dec43, %for.body ]
 | |
|   br i1 undef, label %for.end, label %for.body
 | |
| 
 | |
| ; CHECK extractelement
 | |
| for.body:
 | |
|   %dec43 = add <3 x i32> %input_1.addr.1, <i32 -1, i32 -1, i32 -1>
 | |
|   %sub44 = sub <3 x i32> zeroinitializer, %dec43
 | |
|   %div45 = sdiv <3 x i32> %input_2.addr.0, %sub44
 | |
|   br label %for.cond
 | |
| 
 | |
| for.end:
 | |
|   %0 = extractelement <3 x i32> %input_2.addr.0, i32 0
 | |
|   %.89 = select i1 false, i32 0, i32 %0
 | |
|   %tobool313 = icmp eq i32 %.89, 0
 | |
|   ret i1 %tobool313
 | |
| }
 | |
| 
 |