forked from intel/llvm
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBareMemRefToLLVM.cpp
More file actions
670 lines (591 loc) · 26.8 KB
/
Copy pathBareMemRefToLLVM.cpp
File metadata and controls
670 lines (591 loc) · 26.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
//===- BareMemRefToLLVM.cpp - MemRef to LLVM with bare ptr call conv ------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/Polygeist/Transforms/Passes.h"
#include "mlir/Conversion/LLVMCommon/Pattern.h"
#include "mlir/Conversion/LLVMCommon/TypeConverter.h"
#include "mlir/Dialect/LLVMIR/FunctionCallUtils.h"
#include "mlir/Dialect/LLVMIR/LLVMDialect.h"
#include "mlir/Dialect/MemRef/IR/MemRef.h"
#include "mlir/Dialect/Polygeist/Utils/Utils.h"
#include <numeric>
using namespace mlir;
using namespace mlir::polygeist;
namespace {
/// Conversion similar to the canonical one, but not inserting the obtained
/// pointer in a struct.
struct GetGlobalMemrefOpLowering
: public ConvertOpToLLVMPattern<memref::GetGlobalOp> {
using ConvertOpToLLVMPattern<memref::GetGlobalOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::GetGlobalOp getGlobalOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto memrefTy = getGlobalOp.getType();
if (!canBeLoweredToBarePtr(memrefTy))
return failure();
// LLVM type for a global memref will be a multi-dimension array. For
// declarations or uninitialized global memrefs, we can potentially flatten
// this to a 1D array. However, for memref.global's with an initial value,
// we do not intend to flatten the ElementsAttribute when going from std ->
// LLVM dialect, so the LLVM type needs to me a multi-dimension array.
const auto convElemType =
typeConverter->convertType(memrefTy.getElementType());
if (!convElemType)
return failure();
const auto addressOf =
static_cast<Value>(rewriter.create<LLVM::AddressOfOp>(
getGlobalOp.getLoc(),
LLVM::LLVMPointerType::get(memrefTy.getContext(),
memrefTy.getMemorySpaceAsInt()),
adaptor.getName()));
// Get the address of the first element in the array by creating a GEP with
// the address of the GV as the base, and (rank + 1) number of 0 indices.
rewriter.replaceOpWithNewOp<LLVM::GEPOp>(
getGlobalOp, typeConverter->convertType(memrefTy), convElemType,
addressOf, SmallVector<LLVM::GEPArg>(memrefTy.getRank() + 1, 0),
/* inbounds */ true);
return success();
}
};
/// Simply replace by the source, as we don't care about the shape.
struct ReshapeMemrefOpLowering
: public ConvertOpToLLVMPattern<memref::ReshapeOp> {
using ConvertOpToLLVMPattern<memref::ReshapeOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::ReshapeOp reshape, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
if (!canBeLoweredToBarePtr(reshape.getType()) ||
!canBeLoweredToBarePtr(
reshape.getSource().getType().cast<MemRefType>()))
return failure();
rewriter.replaceOp(reshape, adaptor.getSource());
return success();
}
};
/// Conversion similar to the canonical one, but not inserting the obtained
/// pointer in a struct.
struct AllocaMemrefOpLowering
: public ConvertOpToLLVMPattern<memref::AllocaOp> {
using ConvertOpToLLVMPattern<memref::AllocaOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::AllocaOp allocaOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto memrefType = allocaOp.getType();
if (!memrefType.hasStaticShape() || !memrefType.getLayout().isIdentity())
return failure();
const auto ptrType = typeConverter->convertType(allocaOp.getType());
if (!ptrType)
return failure();
const auto convElemType =
typeConverter->convertType(memrefType.getElementType());
const auto loc = allocaOp.getLoc();
auto nullPtr = rewriter.create<LLVM::NullOp>(loc, ptrType);
auto gepPtr = rewriter.create<LLVM::GEPOp>(
loc, ptrType, convElemType, nullPtr,
createIndexConstant(rewriter, loc, memrefType.getNumElements()));
auto sizeBytes =
rewriter.create<LLVM::PtrToIntOp>(loc, getIndexType(), gepPtr);
rewriter.replaceOpWithNewOp<LLVM::AllocaOp>(
allocaOp, ptrType, convElemType, sizeBytes,
allocaOp.getAlignment().value_or(0));
return success();
}
};
static Value createAligned(ConversionPatternRewriter &rewriter, Location loc,
Value input, Value alignment) {
auto one = rewriter.create<LLVM::ConstantOp>(loc, alignment.getType(), 1);
auto bump = rewriter.create<LLVM::SubOp>(loc, alignment, one);
auto bumped = rewriter.create<LLVM::AddOp>(loc, input, bump);
auto mod = rewriter.create<LLVM::URemOp>(loc, bumped, alignment);
return rewriter.create<LLVM::SubOp>(loc, bumped, mod);
}
/// Conversion similar to the canonical one, but not inserting the obtained
/// pointer in a struct.
struct AllocMemrefOpLowering : public ConvertOpToLLVMPattern<memref::AllocOp> {
using ConvertOpToLLVMPattern<memref::AllocOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::AllocOp allocOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto memrefType = allocOp.getType();
const auto elementPtrType = typeConverter->convertType(memrefType);
if (!elementPtrType || !memrefType.hasStaticShape() ||
!memrefType.getLayout().isIdentity())
return failure();
const auto loc = allocOp.getLoc();
SmallVector<Value, 4> sizes;
SmallVector<Value, 4> strides;
Value sizeBytes;
getMemRefDescriptorSizes(loc, memrefType, adaptor.getOperands(), rewriter,
sizes, strides, sizeBytes);
const auto alignment =
llvm::transformOptional(allocOp.getAlignment(), [&](auto val) {
return createIndexConstant(rewriter, loc, val);
});
if (alignment) {
// Adjust the allocation size to consider alignment.
sizeBytes = rewriter.create<LLVM::AddOp>(loc, sizeBytes, *alignment);
}
auto module = allocOp->getParentOfType<ModuleOp>();
const auto allocFuncOp =
getAllocFn(*getTypeConverter(), module, getIndexType());
auto alignedPtr = static_cast<Value>(
rewriter.create<LLVM::CallOp>(loc, allocFuncOp, sizeBytes)
.getResults()
.front());
if (alignment) {
// Compute the aligned pointer.
const auto allocatedInt = static_cast<Value>(
rewriter.create<LLVM::PtrToIntOp>(loc, getIndexType(), alignedPtr));
const auto alignmentInt =
createAligned(rewriter, loc, allocatedInt, *alignment);
alignedPtr =
rewriter.create<LLVM::IntToPtrOp>(loc, elementPtrType, alignmentInt);
}
rewriter.replaceOp(allocOp, {alignedPtr});
return success();
}
};
/// Conversion similar to the canonical one, but not extracting the allocated
/// pointer from a struct.
struct DeallocOpLowering : public ConvertOpToLLVMPattern<memref::DeallocOp> {
using ConvertOpToLLVMPattern<memref::DeallocOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::DeallocOp deallocOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
if (!canBeLoweredToBarePtr(
deallocOp.getMemref().getType().cast<MemRefType>()))
return failure();
// Insert the `free` declaration if it is not already present.
const auto freeFunc =
getFreeFn(*getTypeConverter(), deallocOp->getParentOfType<ModuleOp>());
rewriter.replaceOpWithNewOp<LLVM::CallOp>(deallocOp, freeFunc,
adaptor.getMemref());
return success();
}
};
/// Lowers to an identity operation.
struct CastMemrefOpLowering : public ConvertOpToLLVMPattern<memref::CastOp> {
using ConvertOpToLLVMPattern<memref::CastOp>::ConvertOpToLLVMPattern;
LogicalResult match(memref::CastOp castOp) const override {
const auto srcType = castOp.getOperand().getType().cast<MemRefType>();
const auto dstType = castOp.getType().cast<MemRefType>();
// This will be replaced by an identity function, so we need input and
// output types to match.
return success(canBeLoweredToBarePtr(dstType) &&
canBeLoweredToBarePtr(srcType) &&
typeConverter->convertType(srcType) ==
typeConverter->convertType(dstType));
}
void rewrite(memref::CastOp castOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
rewriter.replaceOp(castOp, adaptor.getSource());
}
};
struct MemorySpaceCastMemRefOpLowering
: public ConvertOpToLLVMPattern<memref::MemorySpaceCastOp> {
using ConvertOpToLLVMPattern<
memref::MemorySpaceCastOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::MemorySpaceCastOp castOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto newTy = getTypeConverter()->convertType(castOp.getType());
rewriter.replaceOpWithNewOp<LLVM::AddrSpaceCastOp>(castOp, newTy,
adaptor.getSource());
return success();
}
};
/// Base class for lowering operations implementing memory accesses.
struct MemAccessLowering : public ConvertToLLVMPattern {
using ConvertToLLVMPattern::ConvertToLLVMPattern;
/// Obtains offset from a memory access indices
Value getStridedElementBarePtr(Location loc, MemRefType type, Value base,
ValueRange indices,
ConversionPatternRewriter &rewriter) const {
int64_t offset;
SmallVector<int64_t, 4> strides;
LogicalResult successStrides = getStridesAndOffset(type, strides, offset);
assert(succeeded(successStrides) && "unexpected non-strided memref");
(void)successStrides;
auto index =
offset == 0 ? Value{} : createIndexConstant(rewriter, loc, offset);
for (const auto &iter : llvm::enumerate(llvm::zip(indices, strides))) {
auto increment = std::get<0>(iter.value());
const auto stride = std::get<1>(iter.value());
if (stride != 1) { // Skip if stride is 1.
increment = rewriter.create<LLVM::MulOp>(
loc, increment, createIndexConstant(rewriter, loc, stride));
}
index = index ? rewriter.create<LLVM::AddOp>(loc, index, increment)
: increment;
}
const auto elementPtrType = getTypeConverter()->convertType(type);
if (!elementPtrType)
return {};
const auto convElemType =
getTypeConverter()->convertType(type.getElementType());
return index ? rewriter.create<LLVM::GEPOp>(loc, elementPtrType,
convElemType, base, index)
: base;
}
};
struct LoadMemRefOpLowering : public MemAccessLowering {
LoadMemRefOpLowering(LLVMTypeConverter &typeConverter,
PatternBenefit benefit = 1)
: MemAccessLowering{memref::LoadOp::getOperationName(),
&typeConverter.getContext(), typeConverter, benefit} {
}
LogicalResult
matchAndRewrite(Operation *op, ArrayRef<Value> args,
ConversionPatternRewriter &rewriter) const override {
auto loadOp = cast<memref::LoadOp>(op);
if (!canBeLoweredToBarePtr(loadOp.getMemRefType()))
return failure();
memref::LoadOp::Adaptor adaptor{args};
const Value DataPtr = getStridedElementBarePtr(
loadOp.getLoc(), loadOp.getMemRefType(), adaptor.getMemref(),
adaptor.getIndices(), rewriter);
if (!DataPtr)
return failure();
rewriter.replaceOpWithNewOp<LLVM::LoadOp>(
op, typeConverter->convertType(loadOp.getType()), DataPtr);
return success();
}
};
struct StoreMemRefOpLowering : public MemAccessLowering {
StoreMemRefOpLowering(LLVMTypeConverter &typeConverter,
PatternBenefit benefit = 1)
: MemAccessLowering{memref::StoreOp::getOperationName(),
&typeConverter.getContext(), typeConverter, benefit} {
}
LogicalResult
matchAndRewrite(Operation *op, ArrayRef<Value> args,
ConversionPatternRewriter &rewriter) const override {
auto storeOp = cast<memref::StoreOp>(op);
if (!canBeLoweredToBarePtr(storeOp.getMemRefType()))
return failure();
memref::StoreOp::Adaptor adaptor{args};
const Value DataPtr = getStridedElementBarePtr(
storeOp.getLoc(), storeOp.getMemRefType(), adaptor.getMemref(),
adaptor.getIndices(), rewriter);
if (!DataPtr)
return failure();
rewriter.replaceOpWithNewOp<LLVM::StoreOp>(op, adaptor.getValue(), DataPtr);
return success();
}
};
} // namespace
// The following patterns are outdated and only used in case typed pointers
// should be used for the lowering. They will be removed soon.
namespace {
/// Conversion similar to the canonical one, but not inserting the obtained
/// pointer in a struct.
struct GetGlobalMemrefOpLoweringOld
: public ConvertOpToLLVMPattern<memref::GetGlobalOp> {
using ConvertOpToLLVMPattern<memref::GetGlobalOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::GetGlobalOp getGlobalOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto memrefTy = getGlobalOp.getType();
if (!canBeLoweredToBarePtr(memrefTy))
return failure();
const auto arrayTy =
convertGlobalMemrefTypeToLLVM(memrefTy, *typeConverter);
if (!arrayTy)
return failure();
const auto addressOf =
static_cast<Value>(rewriter.create<LLVM::AddressOfOp>(
getGlobalOp.getLoc(),
LLVM::LLVMPointerType::get(arrayTy, memrefTy.getMemorySpaceAsInt()),
adaptor.getName()));
// Get the address of the first element in the array by creating a GEP with
// the address of the GV as the base, and (rank + 1) number of 0 indices.
rewriter.replaceOpWithNewOp<LLVM::GEPOp>(
getGlobalOp, typeConverter->convertType(memrefTy), addressOf,
SmallVector<LLVM::GEPArg>(memrefTy.getRank() + 1, 0),
/* inbounds */ true);
return success();
}
private:
/// Returns the LLVM type of the global variable given the memref type `type`.
static Type convertGlobalMemrefTypeToLLVM(MemRefType type,
TypeConverter &typeConverter) {
// LLVM type for a global memref will be a multi-dimension array. For
// declarations or uninitialized global memrefs, we can potentially flatten
// this to a 1D array. However, for memref.global's with an initial value,
// we do not intend to flatten the ElementsAttribute when going from std ->
// LLVM dialect, so the LLVM type needs to me a multi-dimension array.
const auto convElemTy = typeConverter.convertType(type.getElementType());
if (!convElemTy)
return {};
// Shape has the outermost dim at index 0, so need to walk it backwards
const auto shape = type.getShape();
return std::accumulate(
shape.rbegin(), shape.rend(), convElemTy,
[](auto ty, auto dim) { return LLVM::LLVMArrayType::get(ty, dim); });
}
};
/// Simply replace by the source, as we don't care about the shape.
struct ReshapeMemrefOpLoweringOld
: public ConvertOpToLLVMPattern<memref::ReshapeOp> {
using ConvertOpToLLVMPattern<memref::ReshapeOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::ReshapeOp reshape, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
if (!canBeLoweredToBarePtr(reshape.getType()) ||
!canBeLoweredToBarePtr(
reshape.getSource().getType().cast<MemRefType>()))
return failure();
rewriter.replaceOp(reshape, adaptor.getSource());
return success();
}
};
/// Conversion similar to the canonical one, but not inserting the obtained
/// pointer in a struct.
struct AllocaMemrefOpLoweringOld
: public ConvertOpToLLVMPattern<memref::AllocaOp> {
using ConvertOpToLLVMPattern<memref::AllocaOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::AllocaOp allocaOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto memrefType = allocaOp.getType();
if (!memrefType.hasStaticShape() || !memrefType.getLayout().isIdentity())
return failure();
const auto ptrType = typeConverter->convertType(allocaOp.getType());
if (!ptrType)
return failure();
const auto loc = allocaOp.getLoc();
auto nullPtr = rewriter.create<LLVM::NullOp>(loc, ptrType);
auto gepPtr = rewriter.create<LLVM::GEPOp>(
loc, ptrType, nullPtr,
createIndexConstant(rewriter, loc,
allocaOp.getType().getNumElements()));
auto sizeBytes =
rewriter.create<LLVM::PtrToIntOp>(loc, getIndexType(), gepPtr);
rewriter.replaceOpWithNewOp<LLVM::AllocaOp>(
allocaOp, ptrType, sizeBytes, allocaOp.getAlignment().value_or(0));
return success();
}
};
static Value createAlignedOld(ConversionPatternRewriter &rewriter, Location loc,
Value input, Value alignment) {
auto one = rewriter.create<LLVM::ConstantOp>(loc, alignment.getType(), 1);
auto bump = rewriter.create<LLVM::SubOp>(loc, alignment, one);
auto bumped = rewriter.create<LLVM::AddOp>(loc, input, bump);
auto mod = rewriter.create<LLVM::URemOp>(loc, bumped, alignment);
return rewriter.create<LLVM::SubOp>(loc, bumped, mod);
}
/// Conversion similar to the canonical one, but not inserting the obtained
/// pointer in a struct.
struct AllocMemrefOpLoweringOld
: public ConvertOpToLLVMPattern<memref::AllocOp> {
using ConvertOpToLLVMPattern<memref::AllocOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::AllocOp allocOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto memrefType = allocOp.getType();
const auto elementPtrType = typeConverter->convertType(memrefType);
if (!elementPtrType || !memrefType.hasStaticShape() ||
!memrefType.getLayout().isIdentity())
return failure();
const auto loc = allocOp.getLoc();
SmallVector<Value, 4> sizes;
SmallVector<Value, 4> strides;
Value sizeBytes;
getMemRefDescriptorSizes(loc, memrefType, adaptor.getOperands(), rewriter,
sizes, strides, sizeBytes);
const auto alignment =
llvm::transformOptional(allocOp.getAlignment(), [&](auto val) {
return createIndexConstant(rewriter, loc, val);
});
if (alignment) {
// Adjust the allocation size to consider alignment.
sizeBytes = rewriter.create<LLVM::AddOp>(loc, sizeBytes, *alignment);
}
auto module = allocOp->getParentOfType<ModuleOp>();
const auto allocFuncOp =
getAllocFn(*getTypeConverter(), module, getIndexType());
const auto results =
rewriter.create<LLVM::CallOp>(loc, allocFuncOp, sizeBytes).getResults();
auto alignedPtr = static_cast<Value>(
rewriter.create<LLVM::BitcastOp>(loc, elementPtrType, results));
if (alignment) {
// Compute the aligned pointer.
const auto allocatedInt = static_cast<Value>(
rewriter.create<LLVM::PtrToIntOp>(loc, getIndexType(), alignedPtr));
const auto alignmentInt =
createAlignedOld(rewriter, loc, allocatedInt, *alignment);
alignedPtr =
rewriter.create<LLVM::IntToPtrOp>(loc, elementPtrType, alignmentInt);
}
rewriter.replaceOp(allocOp, {alignedPtr});
return success();
}
};
/// Conversion similar to the canonical one, but not extracting the allocated
/// pointer from a struct.
struct DeallocOpLoweringOld : public ConvertOpToLLVMPattern<memref::DeallocOp> {
using ConvertOpToLLVMPattern<memref::DeallocOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::DeallocOp deallocOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
if (!canBeLoweredToBarePtr(
deallocOp.getMemref().getType().cast<MemRefType>()))
return failure();
// Insert the `free` declaration if it is not already present.
const auto freeFunc =
getFreeFn(*getTypeConverter(), deallocOp->getParentOfType<ModuleOp>());
const auto casted =
rewriter
.create<LLVM::BitcastOp>(deallocOp.getLoc(), getVoidPtrType(),
adaptor.getMemref())
.getRes();
rewriter.replaceOpWithNewOp<LLVM::CallOp>(deallocOp, freeFunc, casted);
return success();
}
};
/// Lowers to an identity operation.
struct CastMemrefOpLoweringOld : public ConvertOpToLLVMPattern<memref::CastOp> {
using ConvertOpToLLVMPattern<memref::CastOp>::ConvertOpToLLVMPattern;
LogicalResult match(memref::CastOp castOp) const override {
const auto srcType = castOp.getOperand().getType().cast<MemRefType>();
const auto dstType = castOp.getType().cast<MemRefType>();
// This will be replaced by an identity function, so we need input and
// output types to match.
return success(canBeLoweredToBarePtr(dstType) &&
canBeLoweredToBarePtr(srcType) &&
typeConverter->convertType(srcType) ==
typeConverter->convertType(dstType));
}
void rewrite(memref::CastOp castOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
rewriter.replaceOp(castOp, adaptor.getSource());
}
};
struct MemorySpaceCastMemRefOpLoweringOld
: public ConvertOpToLLVMPattern<memref::MemorySpaceCastOp> {
using ConvertOpToLLVMPattern<
memref::MemorySpaceCastOp>::ConvertOpToLLVMPattern;
LogicalResult
matchAndRewrite(memref::MemorySpaceCastOp castOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
const auto newTy = getTypeConverter()->convertType(castOp.getType());
rewriter.replaceOpWithNewOp<LLVM::AddrSpaceCastOp>(castOp, newTy,
adaptor.getSource());
return success();
}
};
/// Base class for lowering operations implementing memory accesses.
struct MemAccessLoweringOld : public ConvertToLLVMPattern {
using ConvertToLLVMPattern::ConvertToLLVMPattern;
/// Obtains offset from a memory access indices
Value getStridedElementBarePtr(Location loc, MemRefType type, Value base,
ValueRange indices,
ConversionPatternRewriter &rewriter) const {
int64_t offset;
SmallVector<int64_t, 4> strides;
LogicalResult successStrides = getStridesAndOffset(type, strides, offset);
assert(succeeded(successStrides) && "unexpected non-strided memref");
(void)successStrides;
auto index =
offset == 0 ? Value{} : createIndexConstant(rewriter, loc, offset);
for (const auto &iter : llvm::enumerate(llvm::zip(indices, strides))) {
auto increment = std::get<0>(iter.value());
const auto stride = std::get<1>(iter.value());
if (stride != 1) { // Skip if stride is 1.
increment = rewriter.create<LLVM::MulOp>(
loc, increment, createIndexConstant(rewriter, loc, stride));
}
index = index ? rewriter.create<LLVM::AddOp>(loc, index, increment)
: increment;
}
const auto elementPtrType = getTypeConverter()->convertType(type);
if (!elementPtrType)
return {};
return index
? rewriter.create<LLVM::GEPOp>(loc, elementPtrType, base, index)
: base;
}
};
struct LoadMemRefOpLoweringOld : public MemAccessLowering {
LoadMemRefOpLoweringOld(LLVMTypeConverter &typeConverter,
PatternBenefit benefit = 1)
: MemAccessLowering{memref::LoadOp::getOperationName(),
&typeConverter.getContext(), typeConverter, benefit} {
}
LogicalResult
matchAndRewrite(Operation *op, ArrayRef<Value> args,
ConversionPatternRewriter &rewriter) const override {
auto loadOp = cast<memref::LoadOp>(op);
if (!canBeLoweredToBarePtr(loadOp.getMemRefType()))
return failure();
memref::LoadOp::Adaptor adaptor{args};
const Value DataPtr = getStridedElementBarePtr(
loadOp.getLoc(), loadOp.getMemRefType(), adaptor.getMemref(),
adaptor.getIndices(), rewriter);
if (!DataPtr)
return failure();
rewriter.replaceOpWithNewOp<LLVM::LoadOp>(op, DataPtr);
return success();
}
};
struct StoreMemRefOpLoweringOld : public MemAccessLowering {
StoreMemRefOpLoweringOld(LLVMTypeConverter &typeConverter,
PatternBenefit benefit = 1)
: MemAccessLowering{memref::StoreOp::getOperationName(),
&typeConverter.getContext(), typeConverter, benefit} {
}
LogicalResult
matchAndRewrite(Operation *op, ArrayRef<Value> args,
ConversionPatternRewriter &rewriter) const override {
auto storeOp = cast<memref::StoreOp>(op);
if (!canBeLoweredToBarePtr(storeOp.getMemRefType()))
return failure();
memref::StoreOp::Adaptor adaptor{args};
const Value DataPtr = getStridedElementBarePtr(
storeOp.getLoc(), storeOp.getMemRefType(), adaptor.getMemref(),
adaptor.getIndices(), rewriter);
if (!DataPtr)
return failure();
rewriter.replaceOpWithNewOp<LLVM::StoreOp>(op, adaptor.getValue(), DataPtr);
return success();
}
};
} // namespace
void mlir::polygeist::populateBareMemRefToLLVMConversionPatterns(
mlir::LLVMTypeConverter &converter, RewritePatternSet &patterns,
bool useOpaquePointers) {
assert(converter.getOptions().useBarePtrCallConv &&
"Expecting \"bare pointer\" calling convention");
if (useOpaquePointers) {
patterns.add<GetGlobalMemrefOpLowering, ReshapeMemrefOpLowering,
AllocMemrefOpLowering, AllocaMemrefOpLowering,
CastMemrefOpLowering, DeallocOpLowering, LoadMemRefOpLowering,
MemorySpaceCastMemRefOpLowering, StoreMemRefOpLowering>(
converter, 2);
} else {
patterns.add<GetGlobalMemrefOpLoweringOld, ReshapeMemrefOpLoweringOld,
AllocMemrefOpLoweringOld, AllocaMemrefOpLoweringOld,
CastMemrefOpLoweringOld, DeallocOpLoweringOld,
LoadMemRefOpLoweringOld, MemorySpaceCastMemRefOpLoweringOld,
StoreMemRefOpLoweringOld>(converter, 2);
}
// Patterns are tried in reverse add order, so this is tried before the
// one added by default.
converter.addConversion(
[&, useOpaquePointers](MemRefType type) -> Optional<Type> {
if (!canBeLoweredToBarePtr(type))
return std::nullopt;
if (useOpaquePointers) {
return LLVM::LLVMPointerType::get(type.getContext(),
type.getMemorySpaceAsInt());
}
const auto elemType = converter.convertType(type.getElementType());
if (!elemType)
return Type{};
return LLVM::LLVMPointerType::get(elemType, type.getMemorySpaceAsInt());
});
}