Emit MLIR trampoline wrapper function with LLVM private linkage
The wrapper, as most of compiler-generated functions, are intended to serve the IR for the current module. The safest linkage is to keep these private to avoid any possible collision with other modules. Differential Revision: https://reviews.llvm.org/D153255
This commit is contained in:
parent
65a2cde771
commit
9ef73f2f58
@ -208,6 +208,8 @@ static void wrapExternalFunction(OpBuilder &builder, Location loc,
|
||||
wrapperType, LLVM::Linkage::External, /*dsoLocal*/ false,
|
||||
/*cconv*/ LLVM::CConv::C, attributes);
|
||||
|
||||
// The wrapper that we synthetize here should only be visible in this module.
|
||||
newFuncOp.setLinkage(LLVM::Linkage::Private);
|
||||
builder.setInsertionPointToStart(newFuncOp.addEntryBlock());
|
||||
|
||||
// Get a ValueRange containing arguments.
|
||||
|
@ -1,38 +1,38 @@
|
||||
// RUN: mlir-opt -llvm-request-c-wrappers -convert-func-to-llvm='use-opaque-pointers=1' %s | FileCheck %s
|
||||
|
||||
// CHECK: llvm.func @res_attrs_with_memref_return() -> (!llvm.struct{{.*}} {test.returnOne})
|
||||
// CHECK: llvm.func private @res_attrs_with_memref_return() -> (!llvm.struct{{.*}} {test.returnOne})
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_res_attrs_with_memref_return
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-NOT: test.returnOne
|
||||
func.func private @res_attrs_with_memref_return() -> (memref<f32> {test.returnOne})
|
||||
|
||||
// CHECK: llvm.func @res_attrs_with_value_return() -> (f32 {test.returnOne = 1 : i64})
|
||||
// CHECK: llvm.func private @res_attrs_with_value_return() -> (f32 {test.returnOne = 1 : i64})
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_res_attrs_with_value_return
|
||||
// CHECK-SAME: -> (f32 {test.returnOne = 1 : i64})
|
||||
func.func private @res_attrs_with_value_return() -> (f32 {test.returnOne = 1})
|
||||
|
||||
// CHECK: llvm.func @multiple_return() -> !llvm.struct<{{.*}}>
|
||||
// CHECK: llvm.func private @multiple_return() -> !llvm.struct<{{.*}}>
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_multiple_return
|
||||
// CHECK-NOT: test.returnOne
|
||||
// CHECK-NOT: test.returnTwo
|
||||
// CHECK-NOT: test.returnThree
|
||||
func.func private @multiple_return() -> (memref<f32> {test.returnOne = 1}, f32 {test.returnTwo = 2, test.returnThree = 3})
|
||||
|
||||
// CHECK: llvm.func @multiple_return_missing_res_attr() -> !llvm.struct<{{.*}}>
|
||||
// CHECK: llvm.func private @multiple_return_missing_res_attr() -> !llvm.struct<{{.*}}>
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_multiple_return_missing_res_attr
|
||||
// CHECK-NOT: test.returnOne
|
||||
// CHECK-NOT: test.returnTwo
|
||||
// CHECK-NOT: test.returnThree
|
||||
func.func private @multiple_return_missing_res_attr() -> (memref<f32> {test.returnOne = 1}, i64, f32 {test.returnTwo = 2, test.returnThree = 3})
|
||||
|
||||
// CHECK: llvm.func @one_arg_attr_no_res_attrs_with_memref_return({{.*}}) -> !llvm.struct{{.*}}
|
||||
// CHECK: llvm.func private @one_arg_attr_no_res_attrs_with_memref_return({{.*}}) -> !llvm.struct{{.*}}
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_one_arg_attr_no_res_attrs_with_memref_return
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-SAME: {test.argOne = 1 : i64})
|
||||
func.func private @one_arg_attr_no_res_attrs_with_memref_return(%arg0: memref<f32> {test.argOne = 1}) -> memref<f32>
|
||||
|
||||
// CHECK: llvm.func @one_arg_attr_one_res_attr_with_memref_return({{.*}}) -> (!llvm.struct<{{.*}}> {test.returnOne = 1 : i64})
|
||||
// CHECK: llvm.func private @one_arg_attr_one_res_attr_with_memref_return({{.*}}) -> (!llvm.struct<{{.*}}> {test.returnOne = 1 : i64})
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_one_arg_attr_one_res_attr_with_memref_return
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-NOT: test.returnOne
|
||||
@ -40,14 +40,14 @@ func.func private @one_arg_attr_no_res_attrs_with_memref_return(%arg0: memref<f3
|
||||
// CHECK-SAME: {test.argOne = 1 : i64})
|
||||
func.func private @one_arg_attr_one_res_attr_with_memref_return(%arg0: memref<f32> {test.argOne = 1}) -> (memref<f32> {test.returnOne = 1})
|
||||
|
||||
// CHECK: llvm.func @one_arg_attr_one_res_attr_with_value_return({{.*}}) -> (f32 {test.returnOne = 1 : i64})
|
||||
// CHECK: llvm.func private @one_arg_attr_one_res_attr_with_value_return({{.*}}) -> (f32 {test.returnOne = 1 : i64})
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_one_arg_attr_one_res_attr_with_value_return
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-SAME: {test.argOne = 1 : i64}
|
||||
// CHECK-SAME: -> (f32 {test.returnOne = 1 : i64})
|
||||
func.func private @one_arg_attr_one_res_attr_with_value_return(%arg0: memref<f32> {test.argOne = 1}) -> (f32 {test.returnOne = 1})
|
||||
|
||||
// CHECK: llvm.func @multiple_arg_attr_multiple_res_attr({{.*}}) -> !llvm.struct<{{.*}}>
|
||||
// CHECK: llvm.func private @multiple_arg_attr_multiple_res_attr({{.*}}) -> !llvm.struct<{{.*}}>
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_multiple_arg_attr_multiple_res_attr
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-NOT: test.returnOne
|
||||
@ -58,7 +58,7 @@ func.func private @one_arg_attr_one_res_attr_with_value_return(%arg0: memref<f32
|
||||
// CHECK-SAME: i32 {test.argTwo = 2 : i64})
|
||||
func.func private @multiple_arg_attr_multiple_res_attr(%arg0: memref<f32> {test.argZero = 0}, %arg1: f32, %arg2: i32 {test.argTwo = 2}) -> (f32, memref<i32> {test.returnOne = 1}, i32 {test.returnTwo = 2})
|
||||
|
||||
// CHECK: llvm.func weak @drop_linkage_attr() -> (!llvm.struct{{.*}} {test.returnOne})
|
||||
// CHECK: llvm.func private @drop_linkage_attr() -> (!llvm.struct{{.*}} {test.returnOne})
|
||||
// CHECK-LABEL: llvm.func @_mlir_ciface_drop_linkage_attr
|
||||
// CHECK-SAME: !llvm.ptr
|
||||
// CHECK-NOT: llvm.linkage
|
||||
|
Loading…
x
Reference in New Issue
Block a user