Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 18f51e1

Browse files
committedJun 5, 2024··
Repair several riscv64gc-unknown-linux-gnu codegen tests
Fix tests/codegen/riscv-abi/call-llvm-intrinsics.rs Fix tests/codegen/riscv-abi/riscv64-lp64d-abi.rs Fix tests/codegen/riscv-abi/riscv64-lp64f-lp64d-abi.rs On riscv64gc ignore tests/ui/debuginfo/debuginfo-emit-llvm-ir-and-split-debuginfo.rs Make tests/codegen/riscv-abi/riscv64-lp64d-abi.rs no_core Make tests/codegen/riscv-abi/riscv64-lp64f-lp64d-abi.rs no_core Set -O for tests/codegen/riscv-abi/riscv64-lp64d-abi.rs Set -O for tests/codegen/riscv-abi/riscv64-lp64f-lp64d-abi.rs
1 parent b21b74b commit 18f51e1

File tree

4 files changed

+28
-15
lines changed

4 files changed

+28
-15
lines changed
 

‎tests/codegen/riscv-abi/call-llvm-intrinsics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn do_call() {
2323

2424
unsafe {
2525
// Ensure that we `call` LLVM intrinsics instead of trying to `invoke` them
26-
// CHECK: store float 4.000000e+00, float* %{{.}}, align 4
26+
// CHECK: store float 4.000000e+00, ptr %{{.}}, align 4
2727
// CHECK: call float @llvm.sqrt.f32(float %{{.}}
2828
sqrt(4.0);
2929
}

‎tests/codegen/riscv-abi/riscv64-lp64d-abi.rs

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
//
2-
//@ compile-flags: -C no-prepopulate-passes
3-
//@ only-riscv64
4-
//@ only-linux
1+
//@ compile-flags: -O -C no-prepopulate-passes --target riscv64gc-unknown-linux-gnu
2+
//@ needs-llvm-components: riscv
3+
4+
#![feature(no_core, lang_items)]
55
#![crate_type = "lib"]
6+
#![no_std]
7+
#![no_core]
8+
9+
#[lang="sized"] trait Sized { }
10+
#[lang="freeze"] trait Freeze { }
11+
#[lang="copy"] trait Copy { }
612

7-
// CHECK: define void @f_fpr_tracking(double %0, double %1, double %2, double %3, double %4, double %5, double %6, double %7, i8 zeroext %i)
13+
// CHECK: define void @f_fpr_tracking(double %0, double %1, double %2, double %3, double %4, double %5, double %6, double %7, i8 noundef zeroext %i)
814
#[no_mangle]
915
pub extern "C" fn f_fpr_tracking(
1016
a: f64,
@@ -144,7 +150,7 @@ pub extern "C" fn f_ret_double_int64_s() -> DoubleInt64 {
144150
DoubleInt64 { f: 1., i: 2 }
145151
}
146152

147-
// CHECK: define void @f_double_int8_s_arg_insufficient_gprs(i32 signext %a, i32 signext %b, i32 signext %c, i32 signext %d, i32 signext %e, i32 signext %f, i32 signext %g, i32 signext %h, [2 x i64] %0)
153+
// CHECK: define void @f_double_int8_s_arg_insufficient_gprs(i32 noundef signext %a, i32 noundef signext %b, i32 noundef signext %c, i32 noundef signext %d, i32 noundef signext %e, i32 noundef signext %f, i32 noundef signext %g, i32 noundef signext %h, [2 x i64] %0)
148154
#[no_mangle]
149155
pub extern "C" fn f_double_int8_s_arg_insufficient_gprs(
150156
a: i32,
@@ -250,11 +256,11 @@ pub struct IntDoubleInt {
250256
c: i32,
251257
}
252258

253-
// CHECK: define void @f_int_double_int_s_arg(%IntDoubleInt* {{.*}}%a)
259+
// CHECK: define void @f_int_double_int_s_arg(ptr {{.*}} %a)
254260
#[no_mangle]
255261
pub extern "C" fn f_int_double_int_s_arg(a: IntDoubleInt) {}
256262

257-
// CHECK: define void @f_ret_int_double_int_s(%IntDoubleInt* {{.*}}sret
263+
// CHECK: define void @f_ret_int_double_int_s(ptr {{.*}} sret([24 x i8]) align 8 dereferenceable(24) %_0)
258264
#[no_mangle]
259265
pub extern "C" fn f_ret_int_double_int_s() -> IntDoubleInt {
260266
IntDoubleInt { a: 1, b: 2., c: 3 }

‎tests/codegen/riscv-abi/riscv64-lp64f-lp64d-abi.rs

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
//
2-
//@ compile-flags: -C no-prepopulate-passes
3-
//@ only-riscv64
4-
//@ only-linux
1+
//@ compile-flags: -O -C no-prepopulate-passes --target riscv64gc-unknown-linux-gnu
2+
//@ needs-llvm-components: riscv
3+
4+
#![feature(no_core, lang_items)]
55
#![crate_type = "lib"]
6+
#![no_std]
7+
#![no_core]
8+
9+
#[lang="sized"] trait Sized { }
10+
#[lang="freeze"] trait Freeze { }
11+
#[lang="copy"] trait Copy { }
612

7-
// CHECK: define void @f_fpr_tracking(float %0, float %1, float %2, float %3, float %4, float %5, float %6, float %7, i8 zeroext %i)
13+
// CHECK: define void @f_fpr_tracking(float %0, float %1, float %2, float %3, float %4, float %5, float %6, float %7, i8 noundef zeroext %i)
814
#[no_mangle]
915
pub extern "C" fn f_fpr_tracking(
1016
a: f32,
@@ -128,7 +134,7 @@ pub extern "C" fn f_ret_float_int64_s() -> FloatInt64 {
128134
FloatInt64 { f: 1., i: 2 }
129135
}
130136

131-
// CHECK: define void @f_float_int8_s_arg_insufficient_gprs(i32 signext %a, i32 signext %b, i32 signext %c, i32 signext %d, i32 signext %e, i32 signext %f, i32 signext %g, i32 signext %h, i64 %0)
137+
// CHECK: define void @f_float_int8_s_arg_insufficient_gprs(i32 noundef signext %a, i32 noundef signext %b, i32 noundef signext %c, i32 noundef signext %d, i32 noundef signext %e, i32 noundef signext %f, i32 noundef signext %g, i32 noundef signext %h, i64 %0)
132138
#[no_mangle]
133139
pub extern "C" fn f_float_int8_s_arg_insufficient_gprs(
134140
a: i32,

‎tests/ui/debuginfo/debuginfo-emit-llvm-ir-and-split-debuginfo.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//@ build-pass
22
//@ only-linux
3+
//@ ignore-riscv64 On this platform `-Csplit-debuginfo=unpacked` is unstable, see #120518
34
//
45
//@ compile-flags: -g --emit=llvm-ir -Csplit-debuginfo=unpacked
56
//

0 commit comments

Comments
 (0)
Please sign in to comment.