mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	TableGen had been nicely generating code to print a number of instructions using shorter aliases (and PowerPC has plenty of short mnemonics), but we were not calling it. For some of the aliases we support in the parser, TableGen can't infer the "inverse" alias relationship, so there is still more to do. Thus, after some hours of updating test cases... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235616 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc -mcpu=pwr8 -mattr=+vsx -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
 | |
| 
 | |
| define <2 x double> @testi0(<2 x double>* %p1, double* %p2) {
 | |
|   %v = load <2 x double>, <2 x double>* %p1
 | |
|   %s = load double, double* %p2
 | |
|   %r = insertelement <2 x double> %v, double %s, i32 0
 | |
|   ret <2 x double> %r
 | |
| 
 | |
| ; CHECK-LABEL: testi0
 | |
| ; CHECK: lxvd2x 0, 0, 3
 | |
| ; CHECK: lxsdx 34, 0, 4
 | |
| ; CHECK: xxswapd 0, 0
 | |
| ; CHECK: xxspltd 1, 34, 0
 | |
| ; CHECK: xxpermdi 34, 0, 1, 1
 | |
| }
 | |
| 
 | |
| define <2 x double> @testi1(<2 x double>* %p1, double* %p2) {
 | |
|   %v = load <2 x double>, <2 x double>* %p1
 | |
|   %s = load double, double* %p2
 | |
|   %r = insertelement <2 x double> %v, double %s, i32 1
 | |
|   ret <2 x double> %r
 | |
| 
 | |
| ; CHECK-LABEL: testi1
 | |
| ; CHECK: lxvd2x 0, 0, 3
 | |
| ; CHECK: lxsdx 34, 0, 4
 | |
| ; CHECK: xxswapd 0, 0
 | |
| ; CHECK: xxspltd 1, 34, 0
 | |
| ; CHECK: xxmrgld 34, 1, 0
 | |
| }
 | |
| 
 | |
| define double @teste0(<2 x double>* %p1) {
 | |
|   %v = load <2 x double>, <2 x double>* %p1
 | |
|   %r = extractelement <2 x double> %v, i32 0
 | |
|   ret double %r
 | |
| 
 | |
| ; FIXME: Swap optimization will collapse this into lxvd2x 1, 0, 3.
 | |
| 
 | |
| ; CHECK-LABEL: teste0
 | |
| ; CHECK: lxvd2x 0, 0, 3
 | |
| ; CHECK: xxswapd 0, 0
 | |
| ; CHECK: xxswapd 1, 0
 | |
| }
 | |
| 
 | |
| define double @teste1(<2 x double>* %p1) {
 | |
|   %v = load <2 x double>, <2 x double>* %p1
 | |
|   %r = extractelement <2 x double> %v, i32 1
 | |
|   ret double %r
 | |
| 
 | |
| ; CHECK-LABEL: teste1
 | |
| ; CHECK: lxvd2x 0, 0, 3
 | |
| ; CHECK: xxswapd 1, 0
 | |
| }
 |