mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	This is different from the argument passing convention which puts the first float argument in %f1. With this patch, all returned floats are treated as if the 'inreg' flag were set. This means multiple float return values get packed in %f0, %f1, %f2, ... Note that when returning a struct in registers, clang will set the 'inreg' flag on the return value, so that behavior is unchanged. This also happens when returning a float _Complex. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199028 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc < %s -march=sparc   -relocation-model=static -code-model=small  | FileCheck --check-prefix=abs32 %s
 | |
| ; RUN: llc < %s -march=sparcv9 -relocation-model=static -code-model=small  | FileCheck --check-prefix=abs32 %s
 | |
| ; RUN: llc < %s -march=sparcv9 -relocation-model=static -code-model=medium | FileCheck --check-prefix=abs44 %s
 | |
| ; RUN: llc < %s -march=sparcv9 -relocation-model=static -code-model=large  | FileCheck --check-prefix=abs64 %s
 | |
| ; RUN: llc < %s -march=sparc   -relocation-model=pic    -code-model=medium | FileCheck --check-prefix=v8pic32 %s
 | |
| ; RUN: llc < %s -march=sparcv9 -relocation-model=pic    -code-model=medium | FileCheck --check-prefix=v9pic32 %s
 | |
| 
 | |
| define float @floatCP() {
 | |
| entry:
 | |
|   ret float 1.000000e+00
 | |
| }
 | |
| 
 | |
| ; abs32: floatCP
 | |
| ; abs32: sethi %hi(.LCPI0_0), %[[R:[gilo][0-7]]]
 | |
| ; abs32: retl
 | |
| ; abs32: ld [%[[R]]+%lo(.LCPI0_0)], %f
 | |
| 
 | |
| 
 | |
| ; abs44: floatCP
 | |
| ; abs44: sethi %h44(.LCPI0_0), %[[R1:[gilo][0-7]]]
 | |
| ; abs44: add %[[R1]], %m44(.LCPI0_0), %[[R2:[gilo][0-7]]]
 | |
| ; abs44: sllx %[[R2]], 12, %[[R3:[gilo][0-7]]]
 | |
| ; abs44: retl
 | |
| ; abs44: ld [%[[R3]]+%l44(.LCPI0_0)], %f0
 | |
| 
 | |
| 
 | |
| ; abs64: floatCP
 | |
| ; abs64: sethi %hi(.LCPI0_0), %[[R1:[gilo][0-7]]]
 | |
| ; abs64: add %[[R1]], %lo(.LCPI0_0), %[[R2:[gilo][0-7]]]
 | |
| ; abs64: sethi %hh(.LCPI0_0), %[[R3:[gilo][0-7]]]
 | |
| ; abs64: add %[[R3]], %hm(.LCPI0_0), %[[R4:[gilo][0-7]]]
 | |
| ; abs64: sllx %[[R4]], 32, %[[R5:[gilo][0-7]]]
 | |
| ; abs64: retl
 | |
| ; abs64: ld [%[[R5]]+%[[R2]]], %f0
 | |
| 
 | |
| 
 | |
| ; v8pic32: floatCP
 | |
| ; v8pic32: _GLOBAL_OFFSET_TABLE_
 | |
| ; v8pic32: sethi %hi(.LCPI0_0), %[[R1:[gilo][0-7]]]
 | |
| ; v8pic32: add %[[R1]], %lo(.LCPI0_0), %[[Goffs:[gilo][0-7]]]
 | |
| ; v8pic32: ld [%[[GOT:[gilo][0-7]]]+%[[Goffs]]], %[[Gaddr:[gilo][0-7]]]
 | |
| ; v8pic32: ld [%[[Gaddr]]], %f0
 | |
| ; v8pic32: ret
 | |
| ; v8pic32: restore
 | |
| 
 | |
| 
 | |
| 
 | |
| ; v9pic32: floatCP
 | |
| ; v9pic32: _GLOBAL_OFFSET_TABLE_
 | |
| ; v9pic32: sethi %hi(.LCPI0_0), %[[R1:[gilo][0-7]]]
 | |
| ; v9pic32: add %[[R1]], %lo(.LCPI0_0), %[[Goffs:[gilo][0-7]]]
 | |
| ; v9pic32: ldx [%[[GOT:[gilo][0-7]]]+%[[Goffs]]], %[[Gaddr:[gilo][0-7]]]
 | |
| ; v9pic32: ld [%[[Gaddr]]], %f0
 | |
| ; v9pic32: ret
 | |
| ; v9pic32: restore
 | |
| 
 | |
| 
 |