mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	Add some Windows on ARM specific library calls. These are provided by msvcrt, and can be used to perform integer to floating-point conversions (and vice-versa) mirroring similar functions in the RTABI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208949 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc -mtriple thumbv7-windows -filetype asm -o - %s | FileCheck %s
 | |
| 
 | |
| define arm_aapcs_vfpcc i64 @stoi64(float %f) {
 | |
| entry:
 | |
|   %conv = fptosi float %f to i64
 | |
|   ret i64 %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: stoi64
 | |
| ; CHECK: bl __stoi64
 | |
| 
 | |
| define arm_aapcs_vfpcc i64 @stou64(float %f) {
 | |
| entry:
 | |
|   %conv = fptoui float %f to i64
 | |
|   ret i64 %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: stou64
 | |
| ; CHECK: bl __stou64
 | |
| 
 | |
| define arm_aapcs_vfpcc float @i64tos(i64 %i64) {
 | |
| entry:
 | |
|   %conv = sitofp i64 %i64 to float
 | |
|   ret float %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: i64tos
 | |
| ; CHECK: bl __i64tos
 | |
| 
 | |
| define arm_aapcs_vfpcc float @u64tos(i64 %u64) {
 | |
| entry:
 | |
|   %conv = uitofp i64 %u64 to float
 | |
|   ret float %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: u64tos
 | |
| ; CHECK: bl __u64tos
 | |
| 
 | |
| define arm_aapcs_vfpcc i64 @dtoi64(double %d) {
 | |
| entry:
 | |
|   %conv = fptosi double %d to i64
 | |
|   ret i64 %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: dtoi64
 | |
| ; CHECK: bl __dtoi64
 | |
| 
 | |
| define arm_aapcs_vfpcc i64 @dtou64(double %d) {
 | |
| entry:
 | |
|   %conv = fptoui double %d to i64
 | |
|   ret i64 %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: dtou64
 | |
| ; CHECK: bl __dtou64
 | |
| 
 | |
| define arm_aapcs_vfpcc double @i64tod(i64 %i64) {
 | |
| entry:
 | |
|   %conv = sitofp i64 %i64 to double
 | |
|   ret double %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: i64tod
 | |
| ; CHECK: bl __i64tod
 | |
| 
 | |
| define arm_aapcs_vfpcc double @u64tod(i64 %i64) {
 | |
| entry:
 | |
|   %conv = uitofp i64 %i64 to double
 | |
|   ret double %conv
 | |
| }
 | |
| 
 | |
| ; CHECK-LABEL: u64tod
 | |
| ; CHECK: bl __u64tod
 | |
| 
 |