Skip to content

Commit 4c7e656

Browse files
authored
Rollup merge of #153411 - Sa4dUs:offload-slices, r=ZuseZ4
Offload slice support This PR allows offload to support slice type arguments. ~NOTE: this is built on top of #152283 r? @ZuseZ4
2 parents 66da6ca + af839a8 commit 4c7e656

5 files changed

Lines changed: 130 additions & 14 deletions

File tree

compiler/rustc_codegen_llvm/src/builder/gpu_offload.rs

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -448,14 +448,19 @@ pub(crate) fn gen_define_handling<'ll>(
448448
transfer.iter().map(|m| m.intersection(valid_begin_mappings).bits()).collect();
449449
let transfer_from: Vec<u64> =
450450
transfer.iter().map(|m| m.intersection(MappingFlags::FROM).bits()).collect();
451+
let valid_kernel_mappings = MappingFlags::LITERAL | MappingFlags::IMPLICIT;
451452
// FIXME(offload): add `OMP_MAP_TARGET_PARAM = 0x20` only if necessary
452-
let transfer_kernel = vec![MappingFlags::TARGET_PARAM.bits(); transfer_to.len()];
453+
let transfer_kernel: Vec<u64> = transfer
454+
.iter()
455+
.map(|m| (m.intersection(valid_kernel_mappings) | MappingFlags::TARGET_PARAM).bits())
456+
.collect();
453457

454458
let actual_sizes = sizes
455459
.iter()
456460
.map(|s| match s {
457461
OffloadSize::Static(sz) => *sz,
458-
OffloadSize::Dynamic => 0,
462+
// NOTE(Sa4dUs): set `.offload_sizes` entry to 0 for sizes that we determine at runtime, just like clang
463+
_ => 0,
459464
})
460465
.collect::<Vec<_>>();
461466
let offload_sizes =
@@ -542,12 +547,20 @@ pub(crate) fn scalar_width<'ll>(cx: &'ll SimpleCx<'_>, ty: &'ll Type) -> u64 {
542547
}
543548

544549
fn get_runtime_size<'ll, 'tcx>(
545-
_cx: &CodegenCx<'ll, 'tcx>,
546-
_val: &'ll Value,
547-
_meta: &OffloadMetadata,
550+
builder: &mut Builder<'_, 'll, 'tcx>,
551+
args: &[&'ll Value],
552+
index: usize,
553+
meta: &OffloadMetadata,
548554
) -> &'ll Value {
549-
// FIXME(Sa4dUs): handle dynamic-size data (e.g. slices)
550-
bug!("offload does not support dynamic sizes yet");
555+
match meta.payload_size {
556+
OffloadSize::Slice { element_size } => {
557+
let length_idx = index + 1;
558+
let length = args[length_idx];
559+
let length_i64 = builder.intcast(length, builder.cx.type_i64(), false);
560+
builder.mul(length_i64, builder.cx.get_const_i64(element_size))
561+
}
562+
_ => bug!("unexpected offload size {:?}", meta.payload_size),
563+
}
551564
}
552565

553566
// For each kernel *call*, we now use some of our previous declared globals to move data to and from
@@ -588,7 +601,7 @@ pub(crate) fn gen_call_handling<'ll, 'tcx>(
588601
let OffloadKernelDims { num_workgroups, threads_per_block, workgroup_dims, thread_dims } =
589602
offload_dims;
590603

591-
let has_dynamic = metadata.iter().any(|m| matches!(m.payload_size, OffloadSize::Dynamic));
604+
let has_dynamic = metadata.iter().any(|m| !matches!(m.payload_size, OffloadSize::Static(_)));
592605

593606
let tgt_decl = offload_globals.launcher_fn;
594607
let tgt_target_kernel_ty = offload_globals.launcher_ty;
@@ -683,9 +696,9 @@ pub(crate) fn gen_call_handling<'ll, 'tcx>(
683696
let gep2 = builder.inbounds_gep(ty, a2, &[i32_0, idx]);
684697
builder.store(geps[i as usize], gep2, Align::EIGHT);
685698

686-
if matches!(metadata[i as usize].payload_size, OffloadSize::Dynamic) {
699+
if !matches!(metadata[i as usize].payload_size, OffloadSize::Static(_)) {
687700
let gep3 = builder.inbounds_gep(ty2, a4, &[i32_0, idx]);
688-
let size_val = get_runtime_size(cx, args[i as usize], &metadata[i as usize]);
701+
let size_val = get_runtime_size(builder, args, i as usize, &metadata[i as usize]);
689702
builder.store(size_val, gep3, Align::EIGHT);
690703
}
691704
}

compiler/rustc_codegen_llvm/src/intrinsic.rs

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1813,9 +1813,20 @@ fn codegen_offload<'ll, 'tcx>(
18131813
let sig = tcx.instantiate_bound_regions_with_erased(sig);
18141814
let inputs = sig.inputs();
18151815

1816-
let metadata = inputs.iter().map(|ty| OffloadMetadata::from_ty(tcx, *ty)).collect::<Vec<_>>();
1816+
let fn_abi = cx.fn_abi_of_instance(fn_target, ty::List::empty());
18171817

1818-
let types = inputs.iter().map(|ty| cx.layout_of(*ty).llvm_type(cx)).collect::<Vec<_>>();
1818+
let mut metadata = Vec::new();
1819+
let mut types = Vec::new();
1820+
1821+
for (i, arg_abi) in fn_abi.args.iter().enumerate() {
1822+
let ty = inputs[i];
1823+
let decomposed = OffloadMetadata::handle_abi(cx, tcx, ty, arg_abi);
1824+
1825+
for (meta, entry_ty) in decomposed {
1826+
metadata.push(meta);
1827+
types.push(bx.cx.layout_of(entry_ty).llvm_type(bx.cx));
1828+
}
1829+
}
18191830

18201831
let offload_globals_ref = cx.offload_globals.borrow();
18211832
let offload_globals = match offload_globals_ref.as_ref() {

compiler/rustc_middle/src/ty/offload_meta.rs

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
use bitflags::bitflags;
2+
use rustc_abi::{BackendRepr, TyAbiInterface};
3+
use rustc_target::callconv::ArgAbi;
24

35
use crate::ty::{self, PseudoCanonicalInput, Ty, TyCtxt, TypingEnv};
46

7+
#[derive(Debug, Copy, Clone)]
58
pub struct OffloadMetadata {
69
pub payload_size: OffloadSize,
710
pub mode: MappingFlags,
811
}
912

1013
#[derive(Debug, Copy, Clone)]
1114
pub enum OffloadSize {
12-
Dynamic,
1315
Static(u64),
16+
Slice { element_size: u64 },
1417
}
1518

1619
bitflags! {
1720
/// Mirrors `OpenMPOffloadMappingFlags` from Clang/OpenMP.
18-
#[derive(Debug, Copy, Clone)]
21+
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
1922
#[repr(transparent)]
2023
pub struct MappingFlags: u64 {
2124
/// No flags.
@@ -62,11 +65,38 @@ impl OffloadMetadata {
6265
mode: MappingFlags::from_ty(tcx, ty),
6366
}
6467
}
68+
69+
pub fn handle_abi<'tcx, C>(
70+
cx: &C,
71+
tcx: TyCtxt<'tcx>,
72+
ty: Ty<'tcx>,
73+
arg_abi: &ArgAbi<'tcx, Ty<'tcx>>,
74+
) -> Vec<(Self, Ty<'tcx>)>
75+
where
76+
Ty<'tcx>: TyAbiInterface<'tcx, C>,
77+
{
78+
match arg_abi.layout.backend_repr {
79+
BackendRepr::ScalarPair(_, _) => (0..2)
80+
.map(|i| {
81+
let ty = arg_abi.layout.field(cx, i).ty;
82+
(OffloadMetadata::from_ty(tcx, ty), ty)
83+
})
84+
.collect(),
85+
_ => vec![(OffloadMetadata::from_ty(tcx, ty), ty)],
86+
}
87+
}
6588
}
6689

6790
// FIXME(Sa4dUs): implement a solid logic to determine the payload size
6891
fn get_payload_size<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> OffloadSize {
6992
match ty.kind() {
93+
ty::Slice(elem_ty) => {
94+
let layout = tcx.layout_of(PseudoCanonicalInput {
95+
typing_env: TypingEnv::fully_monomorphized(),
96+
value: *elem_ty,
97+
});
98+
OffloadSize::Slice { element_size: layout.unwrap().size.bytes() }
99+
}
70100
ty::RawPtr(inner, _) | ty::Ref(_, inner, _) => get_payload_size(tcx, *inner),
71101
_ => OffloadSize::Static(
72102
tcx.layout_of(PseudoCanonicalInput {
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//@ add-minicore
2+
//@ revisions: amdgpu nvptx
3+
//@[nvptx] compile-flags: -Copt-level=3 -Zunstable-options -Zoffload=Device --target nvptx64-nvidia-cuda --crate-type=rlib
4+
//@[nvptx] needs-llvm-components: nvptx
5+
//@[amdgpu] compile-flags: -Copt-level=3 -Zunstable-options -Zoffload=Device --target amdgcn-amd-amdhsa -Ctarget-cpu=gfx900 --crate-type=rlib
6+
//@[amdgpu] needs-llvm-components: amdgpu
7+
//@ no-prefer-dynamic
8+
//@ needs-offload
9+
10+
#![feature(abi_gpu_kernel, rustc_attrs, no_core)]
11+
#![no_core]
12+
13+
extern crate minicore;
14+
15+
// CHECK: ; Function Attrs
16+
// nvptx-NEXT: define ptx_kernel void @foo
17+
// amdgpu-NEXT: define amdgpu_kernel void @foo
18+
// CHECK-SAME: ptr readnone captures(none) %dyn_ptr
19+
// nvptx-SAME: [2 x i64] %0
20+
// amdgpu-SAME: ptr noalias {{.*}} %0, i64 {{.*}} %1
21+
// CHECK-NEXT: entry:
22+
// CHECK-NEXT: ret void
23+
// CHECK-NEXT: }
24+
25+
#[unsafe(no_mangle)]
26+
#[rustc_offload_kernel]
27+
pub unsafe extern "gpu-kernel" fn foo(x: &[f32]) {}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
//@ compile-flags: -Zoffload=Test -Zunstable-options -C opt-level=1 -Clto=fat
2+
//@ no-prefer-dynamic
3+
//@ needs-offload
4+
5+
// This test verifies that offload is properly handling slices passing them properly to the device
6+
7+
#![feature(abi_gpu_kernel)]
8+
#![feature(rustc_attrs)]
9+
#![feature(core_intrinsics)]
10+
#![no_main]
11+
12+
// CHECK: @anon.[[ID:.*]].0 = private unnamed_addr constant [23 x i8] c";unknown;unknown;0;0;;\00", align 1
13+
14+
// CHECK-DAG: @.offload_sizes.[[K:[^ ]*foo]] = private unnamed_addr constant [2 x i64] [i64 0, i64 8]
15+
// CHECK-DAG: @.offload_maptypes.[[K]].begin = private unnamed_addr constant [2 x i64] [i64 1, i64 768]
16+
// CHECK-DAG: @.offload_maptypes.[[K]].kernel = private unnamed_addr constant [2 x i64] [i64 32, i64 800]
17+
// CHECK-DAG: @.offload_maptypes.[[K]].end = private unnamed_addr constant [2 x i64] [i64 2, i64 0]
18+
19+
// CHECK: define{{( dso_local)?}} void @main()
20+
// CHECK: %.offload_sizes = alloca [2 x i64], align 8
21+
// CHECK: call void @llvm.memcpy.p0.p0.i64(ptr {{.*}} %.offload_sizes, ptr {{.*}} @.offload_sizes.foo, i64 16, i1 false)
22+
// CHECK: store i64 16, ptr %.offload_sizes, align 8
23+
// CHECK: call void @__tgt_target_data_begin_mapper(ptr nonnull @anon.[[ID]].1, i64 -1, i32 2, ptr nonnull %.offload_baseptrs, ptr nonnull %.offload_ptrs, ptr nonnull %.offload_sizes, ptr nonnull @.offload_maptypes.[[K]].begin, ptr null, ptr null)
24+
// CHECK: %11 = call i32 @__tgt_target_kernel(ptr nonnull @anon.[[ID]].1, i64 -1, i32 1, i32 1, ptr nonnull @.foo.region_id, ptr nonnull %kernel_args)
25+
// CHECK-NEXT: call void @__tgt_target_data_end_mapper(ptr nonnull @anon.[[ID]].1, i64 -1, i32 2, ptr nonnull %.offload_baseptrs, ptr nonnull %.offload_ptrs, ptr nonnull %.offload_sizes, ptr nonnull @.offload_maptypes.[[K]].end, ptr null, ptr null)
26+
27+
#[unsafe(no_mangle)]
28+
fn main() {
29+
let mut x = [0.0, 0.0, 0.0, 0.0];
30+
core::intrinsics::offload::<_, _, ()>(foo, [1, 1, 1], [1, 1, 1], ((&mut x) as &mut [f64],));
31+
}
32+
33+
unsafe extern "C" {
34+
pub fn foo(x: &mut [f32]);
35+
}

0 commit comments

Comments
 (0)