Skip to content

Commit f664326

Browse files
committed
Remove the opaque pointers flag from tools
This has been the default for a while and the flags are slowly going away. NFCI.
1 parent b2929be commit f664326

File tree

3 files changed

+9
-32
lines changed

3 files changed

+9
-32
lines changed

mlir/test/lib/Dialect/LLVM/TestLowerToLLVM.cpp

+3-11
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,6 @@ void buildTestLowerToLLVM(OpPassManager &pm,
4848
// unrealized casts, but there needs to be the final module-wise cleanup in
4949
// the end. Keep module-level for now.
5050

51-
auto enableOpaquePointers = [](auto options) {
52-
options.useOpaquePointers = true;
53-
return options;
54-
};
55-
5651
// Blanket-convert any remaining high-level vector ops to loops if any remain.
5752
pm.addNestedPass<func::FuncOp>(createConvertVectorToSCFPass());
5853
// Blanket-convert any remaining linalg ops to loops if any remain.
@@ -67,20 +62,17 @@ void buildTestLowerToLLVM(OpPassManager &pm,
6762
// Convert vector to LLVM (always needed).
6863
pm.addPass(createConvertVectorToLLVMPass(
6964
// TODO: add more options on a per-need basis.
70-
enableOpaquePointers(
71-
ConvertVectorToLLVMPassOptions{options.reassociateFPReductions})));
65+
ConvertVectorToLLVMPassOptions{options.reassociateFPReductions}));
7266
// Convert Math to LLVM (always needed).
7367
pm.addNestedPass<func::FuncOp>(createConvertMathToLLVMPass());
7468
// Expand complicated MemRef operations before lowering them.
7569
pm.addPass(memref::createExpandStridedMetadataPass());
7670
// The expansion may create affine expressions. Get rid of them.
7771
pm.addPass(createLowerAffinePass());
7872
// Convert MemRef to LLVM (always needed).
79-
pm.addPass(createFinalizeMemRefToLLVMConversionPass(
80-
enableOpaquePointers(FinalizeMemRefToLLVMConversionPassOptions{})));
73+
pm.addPass(createFinalizeMemRefToLLVMConversionPass());
8174
// Convert Func to LLVM (always needed).
82-
pm.addPass(createConvertFuncToLLVMPass(
83-
enableOpaquePointers(ConvertFuncToLLVMPassOptions{})));
75+
pm.addPass(createConvertFuncToLLVMPass());
8476
// Convert Index to LLVM (always needed).
8577
pm.addPass(createConvertIndexToLLVMPass());
8678
// Convert remaining unrealized_casts (always needed).

mlir/tools/mlir-spirv-cpu-runner/mlir-spirv-cpu-runner.cpp

+2-9
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,11 @@ static LogicalResult runMLIRPasses(Operation *module,
8484
passManager.addPass(createGpuKernelOutliningPass());
8585
passManager.addPass(createConvertGPUToSPIRVPass(/*mapMemorySpace=*/true));
8686

87-
auto enableOpaquePointers = [](auto options) {
88-
options.useOpaquePointers = true;
89-
return options;
90-
};
91-
9287
OpPassManager &nestedPM = passManager.nest<spirv::ModuleOp>();
9388
nestedPM.addPass(spirv::createSPIRVLowerABIAttributesPass());
9489
nestedPM.addPass(spirv::createSPIRVUpdateVCEPass());
95-
passManager.addPass(createLowerHostCodeToLLVMPass(
96-
enableOpaquePointers(LowerHostCodeToLLVMPassOptions{})));
97-
passManager.addPass(
98-
createConvertSPIRVToLLVMPass(ConvertSPIRVToLLVMPassOptions{}));
90+
passManager.addPass(createLowerHostCodeToLLVMPass());
91+
passManager.addPass(createConvertSPIRVToLLVMPass());
9992
return passManager.run(module);
10093
}
10194

mlir/tools/mlir-vulkan-runner/mlir-vulkan-runner.cpp

+4-12
Original file line numberDiff line numberDiff line change
@@ -70,25 +70,17 @@ static LogicalResult runMLIRPasses(Operation *op,
7070
if (options.spirvWebGPUPrepare)
7171
modulePM.addPass(spirv::createSPIRVWebGPUPreparePass());
7272

73-
auto enableOpaquePointers = [](auto passOption) {
74-
passOption.useOpaquePointers = true;
75-
return passOption;
76-
};
77-
7873
passManager.addPass(createConvertGpuLaunchFuncToVulkanLaunchFuncPass());
79-
passManager.addPass(createFinalizeMemRefToLLVMConversionPass(
80-
enableOpaquePointers(FinalizeMemRefToLLVMConversionPassOptions{})));
81-
passManager.addPass(createConvertVectorToLLVMPass(
82-
enableOpaquePointers(ConvertVectorToLLVMPassOptions{})));
74+
passManager.addPass(createFinalizeMemRefToLLVMConversionPass());
75+
passManager.addPass(createConvertVectorToLLVMPass());
8376
passManager.nest<func::FuncOp>().addPass(LLVM::createRequestCWrappersPass());
8477
ConvertFuncToLLVMPassOptions funcToLLVMOptions{};
8578
funcToLLVMOptions.indexBitwidth =
8679
DataLayout(module).getTypeSizeInBits(IndexType::get(module.getContext()));
8780
passManager.addPass(
88-
createConvertFuncToLLVMPass(enableOpaquePointers(funcToLLVMOptions)));
81+
createConvertFuncToLLVMPass(funcToLLVMOptions));
8982
passManager.addPass(createReconcileUnrealizedCastsPass());
90-
passManager.addPass(createConvertVulkanLaunchFuncToVulkanCallsPass(
91-
enableOpaquePointers(ConvertVulkanLaunchFuncToVulkanCallsPassOptions{})));
83+
passManager.addPass(createConvertVulkanLaunchFuncToVulkanCallsPass());
9284

9385
return passManager.run(module);
9486
}

0 commit comments

Comments
 (0)