mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	Only Linux is supported at the moment, and other platforms quickly fault. As a result these tests would fail on non-Linux hosts. It may be worth making the tests more generic again as more platforms are supported. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174170 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			95 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu -tailcallopt | FileCheck %s
 | |
| 
 | |
| declare fastcc void @callee_stack0()
 | |
| declare fastcc void @callee_stack8([8 x i32], i64)
 | |
| declare fastcc void @callee_stack16([8 x i32], i64, i64)
 | |
| 
 | |
| define fastcc void @caller_to0_from0() nounwind {
 | |
| ; CHECK: caller_to0_from0:
 | |
| ; CHECK-NEXT: // BB
 | |
|   tail call fastcc void @callee_stack0()
 | |
|   ret void
 | |
| ; CHECK-NEXT: b callee_stack0
 | |
| }
 | |
| 
 | |
| define fastcc void @caller_to0_from8([8 x i32], i64) {
 | |
| ; CHECK: caller_to0_from8:
 | |
| 
 | |
|   tail call fastcc void @callee_stack0()
 | |
|   ret void
 | |
| ; CHECK: add sp, sp, #16
 | |
| ; CHECK-NEXT: b callee_stack0
 | |
| }
 | |
| 
 | |
| define fastcc void @caller_to8_from0() {
 | |
| ; CHECK: caller_to8_from0:
 | |
| ; CHECK: sub sp, sp, #32
 | |
| 
 | |
| ; Key point is that the "42" should go #16 below incoming stack
 | |
| ; pointer (we didn't have arg space to reuse).
 | |
|   tail call fastcc void @callee_stack8([8 x i32] undef, i64 42)
 | |
|   ret void
 | |
| ; CHECK: str {{x[0-9]+}}, [sp, #16]
 | |
| ; CHECK-NEXT: add sp, sp, #16
 | |
| ; CHECK-NEXT: b callee_stack8
 | |
| }
 | |
| 
 | |
| define fastcc void @caller_to8_from8([8 x i32], i64 %a) {
 | |
| ; CHECK: caller_to8_from8:
 | |
| ; CHECK: sub sp, sp, #16
 | |
| 
 | |
| ; Key point is that the "%a" should go where at SP on entry.
 | |
|   tail call fastcc void @callee_stack8([8 x i32] undef, i64 42)
 | |
|   ret void
 | |
| ; CHECK: str {{x[0-9]+}}, [sp, #16]
 | |
| ; CHECK-NEXT: add sp, sp, #16
 | |
| ; CHECK-NEXT: b callee_stack8
 | |
| }
 | |
| 
 | |
| define fastcc void @caller_to16_from8([8 x i32], i64 %a) {
 | |
| ; CHECK: caller_to16_from8:
 | |
| ; CHECK: sub sp, sp, #16
 | |
| 
 | |
| ; Important point is that the call reuses the "dead" argument space
 | |
| ; above %a on the stack. If it tries to go below incoming-SP then the
 | |
| ; callee will not deallocate the space, even in fastcc.
 | |
|   tail call fastcc void @callee_stack16([8 x i32] undef, i64 42, i64 2)
 | |
| ; CHECK: str {{x[0-9]+}}, [sp, #24]
 | |
| ; CHECK: str {{x[0-9]+}}, [sp, #16]
 | |
| ; CHECK: add sp, sp, #16
 | |
| ; CHECK: b callee_stack16
 | |
|   ret void
 | |
| }
 | |
| 
 | |
| 
 | |
| define fastcc void @caller_to8_from24([8 x i32], i64 %a, i64 %b, i64 %c) {
 | |
| ; CHECK: caller_to8_from24:
 | |
| ; CHECK: sub sp, sp, #16
 | |
| 
 | |
| ; Key point is that the "%a" should go where at #16 above SP on entry.
 | |
|   tail call fastcc void @callee_stack8([8 x i32] undef, i64 42)
 | |
|   ret void
 | |
| ; CHECK: str {{x[0-9]+}}, [sp, #32]
 | |
| ; CHECK-NEXT: add sp, sp, #32
 | |
| ; CHECK-NEXT: b callee_stack8
 | |
| }
 | |
| 
 | |
| 
 | |
| define fastcc void @caller_to16_from16([8 x i32], i64 %a, i64 %b) {
 | |
| ; CHECK: caller_to16_from16:
 | |
| ; CHECK: sub sp, sp, #16
 | |
| 
 | |
| ; Here we want to make sure that both loads happen before the stores:
 | |
| ; otherwise either %a or %b will be wrongly clobbered.
 | |
|   tail call fastcc void @callee_stack16([8 x i32] undef, i64 %b, i64 %a)
 | |
|   ret void
 | |
| 
 | |
| ; CHECK: ldr x0,
 | |
| ; CHECK: ldr x1,
 | |
| ; CHECK: str x1,
 | |
| ; CHECK: str x0,
 | |
| 
 | |
| ; CHECK: add sp, sp, #16
 | |
| ; CHECK: b callee_stack16
 | |
| }
 |