2017-11-08 21:41:21 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
|
|
; RUN: llc -mtriple=riscv32 -verify-machineinstrs < %s \
|
|
|
|
; RUN: | FileCheck -check-prefix=RV32I %s
|
|
|
|
|
|
|
|
declare i32 @external_function(i32)
|
|
|
|
|
|
|
|
define i32 @test_call_external(i32 %a) nounwind {
|
|
|
|
; RV32I-LABEL: test_call_external:
|
2017-12-05 01:18:51 +08:00
|
|
|
; RV32I: # %bb.0:
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, -16
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: sw ra, 12(sp)
|
2018-04-25 22:19:12 +08:00
|
|
|
; RV32I-NEXT: call external_function
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: lw ra, 12(sp)
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, 16
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-11-08 21:41:21 +08:00
|
|
|
%1 = call i32 @external_function(i32 %a)
|
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @defined_function(i32 %a) nounwind {
|
|
|
|
; RV32I-LABEL: defined_function:
|
2017-12-05 01:18:51 +08:00
|
|
|
; RV32I: # %bb.0:
|
2017-11-08 21:41:21 +08:00
|
|
|
; RV32I-NEXT: addi a0, a0, 1
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-11-08 21:41:21 +08:00
|
|
|
%1 = add i32 %a, 1
|
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test_call_defined(i32 %a) nounwind {
|
|
|
|
; RV32I-LABEL: test_call_defined:
|
2017-12-05 01:18:51 +08:00
|
|
|
; RV32I: # %bb.0:
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, -16
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: sw ra, 12(sp)
|
2018-04-25 22:19:12 +08:00
|
|
|
; RV32I-NEXT: call defined_function
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: lw ra, 12(sp)
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, 16
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-12-11 20:49:02 +08:00
|
|
|
%1 = call i32 @defined_function(i32 %a)
|
2017-11-08 21:41:21 +08:00
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test_call_indirect(i32 (i32)* %a, i32 %b) nounwind {
|
|
|
|
; RV32I-LABEL: test_call_indirect:
|
2017-12-05 01:18:51 +08:00
|
|
|
; RV32I: # %bb.0:
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, -16
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: sw ra, 12(sp)
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: mv a2, a0
|
|
|
|
; RV32I-NEXT: mv a0, a1
|
|
|
|
; RV32I-NEXT: jalr a2
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: lw ra, 12(sp)
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, 16
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-11-08 21:41:21 +08:00
|
|
|
%1 = call i32 %a(i32 %b)
|
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
; Ensure that calls to fastcc functions aren't rejected. Such calls may be
|
|
|
|
; introduced when compiling with optimisation.
|
|
|
|
|
|
|
|
define fastcc i32 @fastcc_function(i32 %a, i32 %b) nounwind {
|
|
|
|
; RV32I-LABEL: fastcc_function:
|
2017-12-05 01:18:51 +08:00
|
|
|
; RV32I: # %bb.0:
|
2017-11-08 21:41:21 +08:00
|
|
|
; RV32I-NEXT: add a0, a0, a1
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-11-08 21:41:21 +08:00
|
|
|
%1 = add i32 %a, %b
|
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test_call_fastcc(i32 %a, i32 %b) nounwind {
|
|
|
|
; RV32I-LABEL: test_call_fastcc:
|
2017-12-05 01:18:51 +08:00
|
|
|
; RV32I: # %bb.0:
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, -16
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: sw ra, 12(sp)
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: sw s1, 8(sp)
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: mv s1, a0
|
2018-04-25 22:19:12 +08:00
|
|
|
; RV32I-NEXT: call fastcc_function
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: mv a0, s1
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: lw s1, 8(sp)
|
2017-12-11 19:53:54 +08:00
|
|
|
; RV32I-NEXT: lw ra, 12(sp)
|
2017-12-11 20:34:11 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, 16
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-11-08 21:41:21 +08:00
|
|
|
%1 = call fastcc i32 @fastcc_function(i32 %a, i32 %b)
|
|
|
|
ret i32 %a
|
|
|
|
}
|
2017-12-11 20:49:02 +08:00
|
|
|
|
|
|
|
declare i32 @external_many_args(i32, i32, i32, i32, i32, i32, i32, i32, i32, i32) nounwind
|
|
|
|
|
|
|
|
define i32 @test_call_external_many_args(i32 %a) nounwind {
|
|
|
|
; RV32I-LABEL: test_call_external_many_args:
|
|
|
|
; RV32I: # %bb.0:
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, -16
|
|
|
|
; RV32I-NEXT: sw ra, 12(sp)
|
|
|
|
; RV32I-NEXT: sw s1, 8(sp)
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: mv s1, a0
|
2018-02-28 16:20:47 +08:00
|
|
|
; RV32I-NEXT: sw a0, 4(sp)
|
|
|
|
; RV32I-NEXT: sw a0, 0(sp)
|
2018-04-25 22:19:12 +08:00
|
|
|
; RV32I-NEXT: mv a1, a0
|
|
|
|
; RV32I-NEXT: mv a2, a0
|
|
|
|
; RV32I-NEXT: mv a3, a0
|
|
|
|
; RV32I-NEXT: mv a4, a0
|
|
|
|
; RV32I-NEXT: mv a5, a0
|
|
|
|
; RV32I-NEXT: mv a6, a0
|
|
|
|
; RV32I-NEXT: mv a7, a0
|
|
|
|
; RV32I-NEXT: call external_many_args
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: mv a0, s1
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: lw s1, 8(sp)
|
|
|
|
; RV32I-NEXT: lw ra, 12(sp)
|
|
|
|
; RV32I-NEXT: addi sp, sp, 16
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-12-11 20:49:02 +08:00
|
|
|
%1 = call i32 @external_many_args(i32 %a, i32 %a, i32 %a, i32 %a, i32 %a,
|
|
|
|
i32 %a, i32 %a, i32 %a, i32 %a, i32 %a)
|
|
|
|
ret i32 %a
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @defined_many_args(i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 %j) nounwind {
|
|
|
|
; RV32I-LABEL: defined_many_args:
|
|
|
|
; RV32I: # %bb.0:
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: lw a0, 4(sp)
|
2017-12-11 20:49:02 +08:00
|
|
|
; RV32I-NEXT: addi a0, a0, 1
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-12-11 20:49:02 +08:00
|
|
|
%added = add i32 %j, 1
|
|
|
|
ret i32 %added
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test_call_defined_many_args(i32 %a) nounwind {
|
|
|
|
; RV32I-LABEL: test_call_defined_many_args:
|
|
|
|
; RV32I: # %bb.0:
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: addi sp, sp, -16
|
|
|
|
; RV32I-NEXT: sw ra, 12(sp)
|
2017-12-11 20:49:02 +08:00
|
|
|
; RV32I-NEXT: sw a0, 4(sp)
|
|
|
|
; RV32I-NEXT: sw a0, 0(sp)
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: mv a1, a0
|
|
|
|
; RV32I-NEXT: mv a2, a0
|
|
|
|
; RV32I-NEXT: mv a3, a0
|
|
|
|
; RV32I-NEXT: mv a4, a0
|
|
|
|
; RV32I-NEXT: mv a5, a0
|
|
|
|
; RV32I-NEXT: mv a6, a0
|
|
|
|
; RV32I-NEXT: mv a7, a0
|
2018-04-25 22:19:12 +08:00
|
|
|
; RV32I-NEXT: call defined_many_args
|
2018-01-18 19:34:02 +08:00
|
|
|
; RV32I-NEXT: lw ra, 12(sp)
|
|
|
|
; RV32I-NEXT: addi sp, sp, 16
|
2017-12-15 17:47:01 +08:00
|
|
|
; RV32I-NEXT: ret
|
2017-12-11 20:49:02 +08:00
|
|
|
%1 = call i32 @defined_many_args(i32 %a, i32 %a, i32 %a, i32 %a, i32 %a,
|
|
|
|
i32 %a, i32 %a, i32 %a, i32 %a, i32 %a)
|
|
|
|
ret i32 %1
|
|
|
|
}
|