1 // RUN: mlir-opt -inline --split-input-file %s | FileCheck %s
3 // CHECK-LABEL: @byval_2_000_000_000
4 llvm.func @byval_2_000_000_000(%ptr : !llvm.ptr) {
5 // CHECK: %[[SIZE:.+]] = llvm.mlir.constant(2000000000 : i64)
6 // CHECK: "llvm.intr.memcpy"(%{{.*}}, %{{.*}}, %[[SIZE]]
8 llvm.call @with_byval_arg(%ptr) : (!llvm.ptr) -> ()
12 llvm.func @with_byval_arg(%ptr : !llvm.ptr { llvm.byval = !llvm.array<1000 x array<1000 x array <500 x i32>>> }) {
18 // This exceeds representational capacity of 32-bit unsigned value.
20 // CHECK-LABEL: @byval_8_000_000_000
21 llvm.func @byval_8_000_000_000(%ptr : !llvm.ptr) {
22 // CHECK: %[[SIZE:.+]] = llvm.mlir.constant(8000000000 : i64)
23 // CHECK: "llvm.intr.memcpy"(%{{.*}}, %{{.*}}, %[[SIZE]]
25 llvm.call @with_byval_arg(%ptr) : (!llvm.ptr) -> ()
29 llvm.func @with_byval_arg(%ptr : !llvm.ptr { llvm.byval = !llvm.array<2000 x array<2000 x array <500 x i32>>> }) {