MLIR 23.0.0git
InlinerInterfaceImpl.cpp
Go to the documentation of this file.
1//===- InlinerInterfaceImpl.cpp - Inlining for LLVM the dialect -----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Logic for inlining LLVM functions and the definition of the
10// LLVMInliningInterface.
11//
12//===----------------------------------------------------------------------===//
13
17#include "mlir/IR/Matchers.h"
21#include "llvm/ADT/ScopeExit.h"
22#include "llvm/Support/Debug.h"
23
24#include "llvm/Support/DebugLog.h"
25
26#define DEBUG_TYPE "llvm-inliner"
27
28using namespace mlir;
29
30/// Check whether the given alloca is an input to a lifetime intrinsic,
31/// optionally passing through one or more casts on the way. This is not
32/// transitive through block arguments.
33static bool hasLifetimeMarkers(LLVM::AllocaOp allocaOp) {
34 SmallVector<Operation *> stack(allocaOp->getUsers().begin(),
35 allocaOp->getUsers().end());
36 while (!stack.empty()) {
37 Operation *op = stack.pop_back_val();
38 if (isa<LLVM::LifetimeStartOp, LLVM::LifetimeEndOp>(op))
39 return true;
40 if (isa<LLVM::BitcastOp>(op))
41 stack.append(op->getUsers().begin(), op->getUsers().end());
42 }
43 return false;
44}
45
46/// Handles alloca operations in the inlined blocks:
47/// - Moves all alloca operations with a constant size in the former entry block
48/// of the callee into the entry block of the caller, so they become part of
49/// the function prologue/epilogue during code generation.
50/// - Inserts lifetime intrinsics that limit the scope of inlined static allocas
51/// to the inlined blocks.
52/// - Inserts StackSave and StackRestore operations if dynamic allocas were
53/// inlined.
54static void
57 // Locate the entry block of the closest callsite ancestor that has either the
58 // IsolatedFromAbove or AutomaticAllocationScope trait. In pure LLVM dialect
59 // programs, this is the LLVMFuncOp containing the call site. However, in
60 // mixed-dialect programs, the callsite might be nested in another operation
61 // that carries one of these traits. In such scenarios, this traversal stops
62 // at the closest ancestor with either trait, ensuring visibility post
63 // relocation and respecting allocation scopes.
64 Block *callerEntryBlock = nullptr;
65 Operation *currentOp = call;
66 while (Operation *parentOp = currentOp->getParentOp()) {
67 if (parentOp->mightHaveTrait<OpTrait::IsIsolatedFromAbove>() ||
68 parentOp->mightHaveTrait<OpTrait::AutomaticAllocationScope>()) {
69 callerEntryBlock = &currentOp->getParentRegion()->front();
70 break;
71 }
72 currentOp = parentOp;
73 }
74
75 // Avoid relocating the alloca operations if the call has been inlined into
76 // the entry block already, which is typically the encompassing
77 // LLVM function, or if the relevant entry block cannot be identified.
78 Block *calleeEntryBlock = &(*inlinedBlocks.begin());
79 if (!callerEntryBlock || callerEntryBlock == calleeEntryBlock)
80 return;
81
83 bool shouldInsertLifetimes = false;
84 bool hasDynamicAlloca = false;
85 // Conservatively only move static alloca operations that are part of the
86 // entry block and do not inspect nested regions, since they may execute
87 // conditionally or have other unknown semantics.
88 for (auto allocaOp : calleeEntryBlock->getOps<LLVM::AllocaOp>()) {
89 IntegerAttr arraySize;
90 if (!matchPattern(allocaOp.getArraySize(), m_Constant(&arraySize))) {
91 hasDynamicAlloca = true;
92 continue;
93 }
94 bool shouldInsertLifetime =
95 arraySize.getValue() != 0 && !hasLifetimeMarkers(allocaOp);
96 shouldInsertLifetimes |= shouldInsertLifetime;
97 allocasToMove.emplace_back(allocaOp, arraySize, shouldInsertLifetime);
98 }
99 // Check the remaining inlined blocks for dynamic allocas as well.
100 for (Block &block : llvm::drop_begin(inlinedBlocks)) {
101 if (hasDynamicAlloca)
102 break;
103 hasDynamicAlloca =
104 llvm::any_of(block.getOps<LLVM::AllocaOp>(), [](auto allocaOp) {
105 return !matchPattern(allocaOp.getArraySize(), m_Constant());
106 });
107 }
108 if (allocasToMove.empty() && !hasDynamicAlloca)
109 return;
110 OpBuilder builder(calleeEntryBlock, calleeEntryBlock->begin());
111 Value stackPtr;
112 if (hasDynamicAlloca) {
113 // This may result in multiple stacksave/stackrestore intrinsics in the same
114 // scope if some are already present in the body of the caller. This is not
115 // invalid IR, but LLVM cleans these up in InstCombineCalls.cpp, along with
116 // other cases where the stacksave/stackrestore is redundant.
117 stackPtr = LLVM::StackSaveOp::create(
118 builder, call->getLoc(),
119 LLVM::LLVMPointerType::get(call->getContext()));
120 }
121 builder.setInsertionPointToStart(callerEntryBlock);
122 for (auto &[allocaOp, arraySize, shouldInsertLifetime] : allocasToMove) {
123 auto newConstant =
124 LLVM::ConstantOp::create(builder, allocaOp->getLoc(),
125 allocaOp.getArraySize().getType(), arraySize);
126 // Insert a lifetime start intrinsic where the alloca was before moving it.
127 if (shouldInsertLifetime) {
128 OpBuilder::InsertionGuard insertionGuard(builder);
129 builder.setInsertionPoint(allocaOp);
130 LLVM::LifetimeStartOp::create(builder, allocaOp.getLoc(),
131 allocaOp.getResult());
132 }
133 allocaOp->moveAfter(newConstant);
134 allocaOp.getArraySizeMutable().assign(newConstant.getResult());
135 }
136 if (!shouldInsertLifetimes && !hasDynamicAlloca)
137 return;
138 // Insert a lifetime end intrinsic before each return in the callee function.
139 for (Block &block : inlinedBlocks) {
140 if (!block.getTerminator()->hasTrait<OpTrait::ReturnLike>())
141 continue;
142 builder.setInsertionPoint(block.getTerminator());
143 if (hasDynamicAlloca)
144 LLVM::StackRestoreOp::create(builder, call->getLoc(), stackPtr);
145 for (auto &[allocaOp, arraySize, shouldInsertLifetime] : allocasToMove) {
146 if (shouldInsertLifetime)
147 LLVM::LifetimeEndOp::create(builder, allocaOp.getLoc(),
148 allocaOp.getResult());
149 }
150 }
151}
152
153/// Maps all alias scopes in the inlined operations to deep clones of the scopes
154/// and domain. This is required for code such as `foo(a, b); foo(a2, b2);` to
155/// not incorrectly return `noalias` for e.g. operations on `a` and `a2`.
156static void
159
160 // Register handles in the walker to create the deep clones.
161 // The walker ensures that an attribute is only ever walked once and does a
162 // post-order walk, ensuring the domain is visited prior to the scope.
163 AttrTypeWalker walker;
164
165 // Perform the deep clones while visiting. Builders create a distinct
166 // attribute to make sure that new instances are always created by the
167 // uniquer.
168 walker.addWalk([&](LLVM::AliasScopeDomainAttr domainAttr) {
169 mapping[domainAttr] = LLVM::AliasScopeDomainAttr::get(
170 domainAttr.getContext(), domainAttr.getDescription());
171 });
172
173 walker.addWalk([&](LLVM::AliasScopeAttr scopeAttr) {
174 mapping[scopeAttr] = LLVM::AliasScopeAttr::get(
175 cast<LLVM::AliasScopeDomainAttr>(mapping.lookup(scopeAttr.getDomain())),
176 scopeAttr.getDescription());
177 });
178
179 // Map an array of scopes to an array of deep clones.
180 auto convertScopeList = [&](ArrayAttr arrayAttr) -> ArrayAttr {
181 if (!arrayAttr)
182 return nullptr;
183
184 // Create the deep clones if necessary.
185 walker.walk(arrayAttr);
186
187 return ArrayAttr::get(arrayAttr.getContext(),
188 llvm::map_to_vector(arrayAttr, [&](Attribute attr) {
189 return mapping.lookup(attr);
190 }));
191 };
192
193 for (Block &block : inlinedBlocks) {
194 block.walk([&](Operation *op) {
195 if (auto aliasInterface = dyn_cast<LLVM::AliasAnalysisOpInterface>(op)) {
196 aliasInterface.setAliasScopes(
197 convertScopeList(aliasInterface.getAliasScopesOrNull()));
198 aliasInterface.setNoAliasScopes(
199 convertScopeList(aliasInterface.getNoAliasScopesOrNull()));
200 }
201
202 if (auto noAliasScope = dyn_cast<LLVM::NoAliasScopeDeclOp>(op)) {
203 // Create the deep clones if necessary.
204 walker.walk(noAliasScope.getScopeAttr());
205
206 noAliasScope.setScopeAttr(cast<LLVM::AliasScopeAttr>(
207 mapping.lookup(noAliasScope.getScopeAttr())));
208 }
209 });
210 }
211}
212
213/// Creates a new ArrayAttr by concatenating `lhs` with `rhs`.
214/// Returns null if both parameters are null. If only one attribute is null,
215/// return the other.
217 if (!lhs)
218 return rhs;
219 if (!rhs)
220 return lhs;
221
223 llvm::append_range(result, lhs);
224 llvm::append_range(result, rhs);
225 return ArrayAttr::get(lhs.getContext(), result);
226}
227
228/// Attempts to return the set of all underlying pointer values that
229/// `pointerValue` is based on. This function traverses through select
230/// operations and block arguments.
231static FailureOr<SmallVector<Value>>
234 WalkContinuation walkResult = walkSlice(pointerValue, [&](Value val) {
235 // Attempt to advance to the source of the underlying view-like operation.
236 // Examples of view-like operations include GEPOp and AddrSpaceCastOp.
237 if (auto viewOp = val.getDefiningOp<ViewLikeOpInterface>()) {
238 if (val == viewOp.getViewDest())
239 return WalkContinuation::advanceTo(viewOp.getViewSource());
240 }
241
242 // Attempt to advance to control flow predecessors.
243 std::optional<SmallVector<Value>> controlFlowPredecessors =
245 if (controlFlowPredecessors)
246 return WalkContinuation::advanceTo(*controlFlowPredecessors);
247
248 // For all non-control flow results, consider `val` an underlying object.
249 if (isa<OpResult>(val)) {
250 result.push_back(val);
251 return WalkContinuation::skip();
252 }
253
254 // If this place is reached, `val` is a block argument that is not
255 // understood. Therefore, we conservatively interrupt.
256 // Note: Dealing with function arguments is not necessary, as the slice
257 // would have to go through an SSACopyOp first.
259 });
260
261 if (walkResult.wasInterrupted())
262 return failure();
263
264 return result;
265}
266
267/// Creates a new AliasScopeAttr for every noalias parameter and attaches it to
268/// the appropriate inlined memory operations in an attempt to preserve the
269/// original semantics of the parameter attribute.
271 Operation *call, iterator_range<Region::iterator> inlinedBlocks) {
272
273 // First, collect all ssa copy operations, which correspond to function
274 // parameters, and additionally store the noalias parameters. All parameters
275 // have been marked by the `handleArgument` implementation by using the
276 // `ssa.copy` intrinsic. Additionally, noalias parameters have an attached
277 // `noalias` attribute to the intrinsics. These intrinsics are only meant to
278 // be temporary and should therefore be deleted after we're done using them
279 // here.
281 SetVector<LLVM::SSACopyOp> noAliasParams;
282 for (Value argument : cast<LLVM::CallOp>(call).getArgOperands()) {
283 for (Operation *user : argument.getUsers()) {
284 auto ssaCopy = llvm::dyn_cast<LLVM::SSACopyOp>(user);
285 if (!ssaCopy)
286 continue;
287 ssaCopies.insert(ssaCopy);
288
289 if (!ssaCopy->hasAttr(LLVM::LLVMDialect::getNoAliasAttrName()))
290 continue;
291 noAliasParams.insert(ssaCopy);
292 }
293 }
294
295 // Scope exit block to make it impossible to forget to get rid of the
296 // intrinsics.
297 llvm::scope_exit exit([&] {
298 for (LLVM::SSACopyOp ssaCopyOp : ssaCopies) {
299 ssaCopyOp.replaceAllUsesWith(ssaCopyOp.getOperand());
300 ssaCopyOp->erase();
301 }
302 });
303
304 // If there were no noalias parameters, we have nothing to do here.
305 if (noAliasParams.empty())
306 return;
307
308 // Create a new domain for this specific inlining and a new scope for every
309 // noalias parameter.
310 auto functionDomain = LLVM::AliasScopeDomainAttr::get(
311 call->getContext(), cast<LLVM::CallOp>(call).getCalleeAttr().getAttr());
313 for (LLVM::SSACopyOp copyOp : noAliasParams) {
314 auto scope = LLVM::AliasScopeAttr::get(functionDomain);
315 pointerScopes[copyOp] = scope;
316
317 auto builder = OpBuilder(call);
318 LLVM::NoAliasScopeDeclOp::create(builder, call->getLoc(), scope);
319 }
320
321 // Go through every instruction and attempt to find which noalias parameters
322 // it is definitely based on and definitely not based on.
323 for (Block &inlinedBlock : inlinedBlocks) {
324 inlinedBlock.walk([&](LLVM::AliasAnalysisOpInterface aliasInterface) {
325 // Collect the pointer arguments affected by the alias scopes.
326 SmallVector<Value> pointerArgs = aliasInterface.getAccessedOperands();
327
328 // Find the set of underlying pointers that this pointer is based on.
329 SmallPtrSet<Value, 4> basedOnPointers;
330 for (Value pointer : pointerArgs) {
331 FailureOr<SmallVector<Value>> underlyingObjectSet =
332 getUnderlyingObjectSet(pointer);
333 if (failed(underlyingObjectSet))
334 return;
335 llvm::copy(*underlyingObjectSet,
336 std::inserter(basedOnPointers, basedOnPointers.begin()));
337 }
338
339 bool aliasesOtherKnownObject = false;
340 // Go through the based on pointers and check that they are either:
341 // * Constants that can be ignored (undef, poison, null pointer).
342 // * Based on a pointer parameter.
343 // * Other pointers that we know can't alias with our noalias parameter.
344 //
345 // Any other value might be a pointer based on any noalias parameter that
346 // hasn't been identified. In that case conservatively don't add any
347 // scopes to this operation indicating either aliasing or not aliasing
348 // with any parameter.
349 if (llvm::any_of(basedOnPointers, [&](Value object) {
350 if (matchPattern(object, m_Constant()))
351 return false;
352
353 if (auto ssaCopy = object.getDefiningOp<LLVM::SSACopyOp>()) {
354 // If that value is based on a noalias parameter, it is guaranteed
355 // to not alias with any other object.
356 aliasesOtherKnownObject |= !noAliasParams.contains(ssaCopy);
357 return false;
358 }
359
360 if (isa_and_nonnull<LLVM::AllocaOp, LLVM::AddressOfOp>(
361 object.getDefiningOp())) {
362 aliasesOtherKnownObject = true;
363 return false;
364 }
365 return true;
366 }))
367 return;
368
369 // Add all noalias parameter scopes to the noalias scope list that we are
370 // not based on.
371 SmallVector<Attribute> noAliasScopes;
372 for (LLVM::SSACopyOp noAlias : noAliasParams) {
373 if (basedOnPointers.contains(noAlias))
374 continue;
375
376 noAliasScopes.push_back(pointerScopes[noAlias]);
377 }
378
379 if (!noAliasScopes.empty())
380 aliasInterface.setNoAliasScopes(
381 concatArrayAttr(aliasInterface.getNoAliasScopesOrNull(),
382 ArrayAttr::get(call->getContext(), noAliasScopes)));
383
384 // Don't add alias scopes to call operations or operations that might
385 // operate on pointers not based on any noalias parameter.
386 // Since we add all scopes to an operation's noalias list that it
387 // definitely doesn't alias, we mustn't do the same for the alias.scope
388 // list if other objects are involved.
389 //
390 // Consider the following case:
391 // %0 = llvm.alloca
392 // %1 = select %magic, %0, %noalias_param
393 // store 5, %1 (1) noalias=[scope(...)]
394 // ...
395 // store 3, %0 (2) noalias=[scope(noalias_param), scope(...)]
396 //
397 // We can add the scopes of any noalias parameters that aren't
398 // noalias_param's scope to (1) and add all of them to (2). We mustn't add
399 // the scope of noalias_param to the alias.scope list of (1) since
400 // that would mean (2) cannot alias with (1) which is wrong since both may
401 // store to %0.
402 //
403 // In conclusion, only add scopes to the alias.scope list if all pointers
404 // have a corresponding scope.
405 // Call operations are included in this list since we do not know whether
406 // the callee accesses any memory besides the ones passed as its
407 // arguments.
408 if (aliasesOtherKnownObject ||
409 isa<LLVM::CallOp>(aliasInterface.getOperation()))
410 return;
411
412 SmallVector<Attribute> aliasScopes;
413 for (LLVM::SSACopyOp noAlias : noAliasParams)
414 if (basedOnPointers.contains(noAlias))
415 aliasScopes.push_back(pointerScopes[noAlias]);
416
417 if (!aliasScopes.empty())
418 aliasInterface.setAliasScopes(
419 concatArrayAttr(aliasInterface.getAliasScopesOrNull(),
420 ArrayAttr::get(call->getContext(), aliasScopes)));
421 });
422 }
423}
424
425/// Appends any alias scopes of the call operation to any inlined memory
426/// operation.
427static void
429 iterator_range<Region::iterator> inlinedBlocks) {
430 auto callAliasInterface = dyn_cast<LLVM::AliasAnalysisOpInterface>(call);
431 if (!callAliasInterface)
432 return;
433
434 ArrayAttr aliasScopes = callAliasInterface.getAliasScopesOrNull();
435 ArrayAttr noAliasScopes = callAliasInterface.getNoAliasScopesOrNull();
436 // If the call has neither alias scopes or noalias scopes we have nothing to
437 // do here.
438 if (!aliasScopes && !noAliasScopes)
439 return;
440
441 // Simply append the call op's alias and noalias scopes to any operation
442 // implementing AliasAnalysisOpInterface.
443 for (Block &block : inlinedBlocks) {
444 block.walk([&](LLVM::AliasAnalysisOpInterface aliasInterface) {
445 if (aliasScopes)
446 aliasInterface.setAliasScopes(concatArrayAttr(
447 aliasInterface.getAliasScopesOrNull(), aliasScopes));
448
449 if (noAliasScopes)
450 aliasInterface.setNoAliasScopes(concatArrayAttr(
451 aliasInterface.getNoAliasScopesOrNull(), noAliasScopes));
452 });
453 }
454}
455
456/// Handles all interactions with alias scopes during inlining.
457static void handleAliasScopes(Operation *call,
458 iterator_range<Region::iterator> inlinedBlocks) {
459 deepCloneAliasScopes(inlinedBlocks);
460 createNewAliasScopesFromNoAliasParameter(call, inlinedBlocks);
461 appendCallOpAliasScopes(call, inlinedBlocks);
462}
463
464/// Appends any access groups of the call operation to any inlined memory
465/// operation.
467 iterator_range<Region::iterator> inlinedBlocks) {
468 auto callAccessGroupInterface = dyn_cast<LLVM::AccessGroupOpInterface>(call);
469 if (!callAccessGroupInterface)
470 return;
471
472 auto accessGroups = callAccessGroupInterface.getAccessGroupsOrNull();
473 if (!accessGroups)
474 return;
475
476 // Simply append the call op's access groups to any operation implementing
477 // AccessGroupOpInterface.
478 for (Block &block : inlinedBlocks)
479 for (auto accessGroupOpInterface :
480 block.getOps<LLVM::AccessGroupOpInterface>())
481 accessGroupOpInterface.setAccessGroups(concatArrayAttr(
482 accessGroupOpInterface.getAccessGroupsOrNull(), accessGroups));
483}
484
485/// Updates locations inside loop annotations to reflect that they were inlined.
486static void
488 iterator_range<Region::iterator> inlinedBlocks) {
489 // Attempt to extract a DISubprogram from the callee.
490 auto func = call->getParentOfType<FunctionOpInterface>();
491 if (!func)
492 return;
493 LocationAttr funcLoc = func->getLoc();
494 auto fusedLoc = dyn_cast_if_present<FusedLoc>(funcLoc);
495 if (!fusedLoc)
496 return;
497 auto scope =
498 dyn_cast_if_present<LLVM::DISubprogramAttr>(fusedLoc.getMetadata());
499 if (!scope)
500 return;
501
502 // Helper to build a new fused location that reflects the inlining of the loop
503 // annotation.
504 auto updateLoc = [&](FusedLoc loc) -> FusedLoc {
505 if (!loc)
506 return {};
507 Location callSiteLoc = CallSiteLoc::get(loc, call->getLoc());
508 return FusedLoc::get(loc.getContext(), callSiteLoc, scope);
509 };
510
511 AttrTypeReplacer replacer;
512 replacer.addReplacement([&](LLVM::LoopAnnotationAttr loopAnnotation)
513 -> std::pair<Attribute, WalkResult> {
514 FusedLoc newStartLoc = updateLoc(loopAnnotation.getStartLoc());
515 FusedLoc newEndLoc = updateLoc(loopAnnotation.getEndLoc());
516 if (!newStartLoc && !newEndLoc)
517 return {loopAnnotation, WalkResult::advance()};
518 auto newLoopAnnotation = LLVM::LoopAnnotationAttr::get(
519 loopAnnotation.getContext(), loopAnnotation.getDisableNonforced(),
520 loopAnnotation.getVectorize(), loopAnnotation.getInterleave(),
521 loopAnnotation.getUnroll(), loopAnnotation.getUnrollAndJam(),
522 loopAnnotation.getLicm(), loopAnnotation.getDistribute(),
523 loopAnnotation.getPipeline(), loopAnnotation.getPeeled(),
524 loopAnnotation.getUnswitch(), loopAnnotation.getMustProgress(),
525 loopAnnotation.getIsVectorized(), newStartLoc, newEndLoc,
526 loopAnnotation.getParallelAccesses());
527 // Needs to advance, as loop annotations can be nested.
528 return {newLoopAnnotation, WalkResult::advance()};
529 });
530
531 for (Block &block : inlinedBlocks)
532 for (Operation &op : block)
533 replacer.recursivelyReplaceElementsIn(&op);
534}
535
536/// If `requestedAlignment` is higher than the alignment specified on `alloca`,
537/// realigns `alloca` if this does not exceed the natural stack alignment.
538/// Returns the post-alignment of `alloca`, whether it was realigned or not.
539static uint64_t tryToEnforceAllocaAlignment(LLVM::AllocaOp alloca,
540 uint64_t requestedAlignment,
541 DataLayout const &dataLayout) {
542 uint64_t allocaAlignment = alloca.getAlignment().value_or(1);
543 if (requestedAlignment <= allocaAlignment)
544 // No realignment necessary.
545 return allocaAlignment;
546 uint64_t naturalStackAlignmentBits = dataLayout.getStackAlignment();
547 // If the natural stack alignment is not specified, the data layout returns
548 // zero. Optimistically allow realignment in this case.
549 if (naturalStackAlignmentBits == 0 ||
550 // If the requested alignment exceeds the natural stack alignment, this
551 // will trigger a dynamic stack realignment, so we prefer to copy...
552 8 * requestedAlignment <= naturalStackAlignmentBits ||
553 // ...unless the alloca already triggers dynamic stack realignment. Then
554 // we might as well further increase the alignment to avoid a copy.
555 8 * allocaAlignment > naturalStackAlignmentBits) {
556 alloca.setAlignment(requestedAlignment);
557 allocaAlignment = requestedAlignment;
558 }
559 return allocaAlignment;
560}
561
562/// Tries to find and return the alignment of the pointer `value` by looking for
563/// an alignment attribute on the defining allocation op or function argument.
564/// If the found alignment is lower than `requestedAlignment`, tries to realign
565/// the pointer, then returns the resulting post-alignment, regardless of
566/// whether it was realigned or not. If no existing alignment attribute is
567/// found, returns 1 (i.e., assume that no alignment is guaranteed).
568static uint64_t tryToEnforceAlignment(Value value, uint64_t requestedAlignment,
569 DataLayout const &dataLayout) {
570 if (Operation *definingOp = value.getDefiningOp()) {
571 if (auto alloca = dyn_cast<LLVM::AllocaOp>(definingOp))
572 return tryToEnforceAllocaAlignment(alloca, requestedAlignment,
573 dataLayout);
574 if (auto addressOf = dyn_cast<LLVM::AddressOfOp>(definingOp))
576 definingOp, addressOf.getGlobalNameAttr()))
577 return global.getAlignment().value_or(1);
578 // We don't currently handle this operation; assume no alignment.
579 return 1;
580 }
581 // Since there is no defining op, this is a block argument. Probably this
582 // comes directly from a function argument, so check that this is the case.
583 Operation *parentOp = value.getParentBlock()->getParentOp();
584 if (auto func = dyn_cast<LLVM::LLVMFuncOp>(parentOp)) {
585 // Use the alignment attribute set for this argument in the parent function
586 // if it has been set.
587 auto blockArg = llvm::cast<BlockArgument>(value);
588 if (Attribute alignAttr = func.getArgAttr(
589 blockArg.getArgNumber(), LLVM::LLVMDialect::getAlignAttrName()))
590 return cast<IntegerAttr>(alignAttr).getValue().getLimitedValue();
591 }
592 // We didn't find anything useful; assume no alignment.
593 return 1;
594}
595
596/// Introduces a new alloca and copies the memory pointed to by `argument` to
597/// the address of the new alloca, then returns the value of the new alloca.
599 Value argument, Type elementType,
600 uint64_t elementTypeSize,
601 uint64_t targetAlignment) {
602 // Allocate the new value on the stack.
603 Value allocaOp;
604 {
605 // Walk up from the call site to find the innermost AutomaticAllocationScope
606 // (e.g. an llvm.func or scf.forall). Placing the alloca at the entry block
607 // of that scope keeps it inside parallel regions rather than hoisting it
608 // out, while still landing at the function entry block for the common
609 // non-parallel case.
610 OpBuilder::InsertionGuard insertionGuard(builder);
611 Operation *scope = builder.getInsertionBlock()->getParentOp();
614 Block *entryBlock = &scope->getRegion(0).front();
615 builder.setInsertionPointToStart(entryBlock);
616 Value one = LLVM::ConstantOp::create(builder, loc, builder.getI64Type(),
617 builder.getI64IntegerAttr(1));
618 allocaOp = LLVM::AllocaOp::create(builder, loc, argument.getType(),
619 elementType, one, targetAlignment);
620 }
621 // Copy the pointee to the newly allocated value.
622 Value copySize =
623 LLVM::ConstantOp::create(builder, loc, builder.getI64Type(),
624 builder.getI64IntegerAttr(elementTypeSize));
625 // Preserve the alignment of the destination (alloca) in the memcpy's
626 // arg_attrs.
627 NamedAttribute dstAlignAttr =
628 builder.getNamedAttr(LLVM::LLVMDialect::getAlignAttrName(),
629 builder.getI64IntegerAttr(targetAlignment));
630 ArrayAttr argAttrs =
631 builder.getArrayAttr({builder.getDictionaryAttr({dstAlignAttr})});
632 LLVM::MemcpyOp::create(builder, loc, allocaOp, argument, copySize,
633 /*isVolatile=*/false,
634 /*access_groups=*/nullptr, /*alias_scopes=*/nullptr,
635 /*noalias_scopes=*/nullptr, /*tbaa=*/nullptr, argAttrs,
636 /*res_attrs=*/nullptr);
637 return allocaOp;
638}
639
640/// Handles a function argument marked with the byval attribute by introducing a
641/// memcpy or realigning the defining operation, if required either due to the
642/// pointee being writeable in the callee, and/or due to an alignment mismatch.
643/// `requestedAlignment` specifies the alignment set in the "align" argument
644/// attribute (or 1 if no align attribute was set).
645static Value handleByValArgument(OpBuilder &builder, Operation *callable,
646 Value argument, Type elementType,
647 uint64_t requestedAlignment) {
648 auto func = cast<LLVM::LLVMFuncOp>(callable);
649 LLVM::MemoryEffectsAttr memoryEffects = func.getMemoryEffectsAttr();
650 // If there is no memory effects attribute, assume that the function is
651 // not read-only.
652 bool isReadOnly = memoryEffects &&
653 memoryEffects.getArgMem() != LLVM::ModRefInfo::ModRef &&
654 memoryEffects.getArgMem() != LLVM::ModRefInfo::Mod;
655 // Check if there's an alignment mismatch requiring us to copy.
656 DataLayout dataLayout = DataLayout::closest(callable);
657 uint64_t minimumAlignment = dataLayout.getTypeABIAlignment(elementType);
658 if (isReadOnly) {
659 if (requestedAlignment <= minimumAlignment)
660 return argument;
661 uint64_t currentAlignment =
662 tryToEnforceAlignment(argument, requestedAlignment, dataLayout);
663 if (currentAlignment >= requestedAlignment)
664 return argument;
665 }
666 uint64_t targetAlignment = std::max(requestedAlignment, minimumAlignment);
668 builder, argument.getLoc(), argument, elementType,
669 dataLayout.getTypeSize(elementType), targetAlignment);
670}
671
672namespace {
673struct LLVMInlinerInterface : public DialectInlinerInterface {
674 using DialectInlinerInterface::DialectInlinerInterface;
675
676 LLVMInlinerInterface(Dialect *dialect)
677 : DialectInlinerInterface(dialect),
678 // Cache set of StringAttrs for fast lookup in `isLegalToInline`.
679 disallowedFunctionAttrs({
680 StringAttr::get(dialect->getContext(), "noduplicate"),
681 StringAttr::get(dialect->getContext(), "presplitcoroutine"),
682 StringAttr::get(dialect->getContext(), "returns_twice"),
683 StringAttr::get(dialect->getContext(), "strictfp"),
684 }) {}
685
686 bool isLegalToInline(Operation *call, Operation *callable,
687 bool wouldBeCloned) const final {
688 auto callOp = dyn_cast<LLVM::CallOp>(call);
689 if (!callOp) {
690 LDBG() << "Cannot inline: call is not an '"
691 << LLVM::CallOp::getOperationName() << "' op";
692 return false;
693 }
694 if (callOp.getNoInline()) {
695 LDBG() << "Cannot inline: call is marked no_inline";
696 return false;
697 }
698 auto funcOp = dyn_cast<LLVM::LLVMFuncOp>(callable);
699 if (!funcOp) {
700 LDBG() << "Cannot inline: callable is not an '"
701 << LLVM::LLVMFuncOp::getOperationName() << "' op";
702 return false;
703 }
704 if (funcOp.isNoInline()) {
705 LDBG() << "Cannot inline: function is marked no_inline";
706 return false;
707 }
708 if (funcOp.isVarArg()) {
709 LDBG() << "Cannot inline: callable is variadic";
710 return false;
711 }
712 // TODO: Generate aliasing metadata from noalias result attributes.
713 if (auto attrs = funcOp.getArgAttrs()) {
714 for (DictionaryAttr attrDict : attrs->getAsRange<DictionaryAttr>()) {
715 if (attrDict.contains(LLVM::LLVMDialect::getInAllocaAttrName())) {
716 LDBG() << "Cannot inline " << funcOp.getSymName()
717 << ": inalloca arguments not supported";
718 return false;
719 }
720 }
721 }
722 // TODO: Handle exceptions.
723 if (funcOp.getPersonality()) {
724 LDBG() << "Cannot inline " << funcOp.getSymName()
725 << ": unhandled function personality";
726 return false;
727 }
728 if (funcOp.getPassthrough()) {
729 // TODO: Used attributes should not be passthrough.
730 if (llvm::any_of(*funcOp.getPassthrough(), [&](Attribute attr) {
731 auto stringAttr = dyn_cast<StringAttr>(attr);
732 if (!stringAttr)
733 return false;
734 if (disallowedFunctionAttrs.contains(stringAttr)) {
735 LDBG() << "Cannot inline " << funcOp.getSymName()
736 << ": found disallowed function attribute " << stringAttr;
737 return true;
738 }
739 return false;
740 }))
741 return false;
742 }
743 // Refuse to inline if any block in the callee ends with an op that does
744 // not have the terminator trait. The MLIR verifier conservatively accepts
745 // unregistered ops as potential terminators (via mightHaveTrait), but
746 // handleTerminator uses cast<LLVM::ReturnOp> in the single-block path and
747 // would crash on such ops. Registered terminators from other dialects
748 // (e.g. cf.br) are safe: the multi-block path uses dyn_cast and skips
749 // non-llvm.return ops gracefully.
750 for (Block &block : funcOp.getBody()) {
751 if (!block.empty() && !block.back().hasTrait<OpTrait::IsTerminator>()) {
752 LDBG() << "Cannot inline " << funcOp.getSymName()
753 << ": block ends with non-terminator op";
754 return false;
755 }
756 }
757 return true;
758 }
759
760 bool isLegalToInline(Region *, Region *, bool, IRMapping &) const final {
761 return true;
762 }
763
764 bool isLegalToInline(Operation *op, Region *, bool, IRMapping &) const final {
765 // The inliner cannot handle variadic function arguments and blocktag
766 // operations prevent inlining since they the blockaddress operations
767 // reference them via the callee symbol.
768 return !(isa<LLVM::VaStartOp>(op) || isa<LLVM::BlockTagOp>(op));
769 }
770
771 /// Handle the given inlined return by replacing it with a branch. This
772 /// overload is called when the inlined region has more than one block.
773 void handleTerminator(Operation *op, Block *newDest) const final {
774 // Only return needs to be handled here.
775 auto returnOp = dyn_cast<LLVM::ReturnOp>(op);
776 if (!returnOp)
777 return;
778
779 // Replace the return with a branch to the dest.
780 OpBuilder builder(op);
781 LLVM::BrOp::create(builder, op->getLoc(), returnOp.getOperands(), newDest);
782 op->erase();
783 }
784
785 bool allowSingleBlockOptimization(
786 iterator_range<Region::iterator> inlinedBlocks) const final {
787 return !(!inlinedBlocks.empty() &&
788 isa<LLVM::UnreachableOp>(inlinedBlocks.begin()->getTerminator()));
789 }
790
791 /// Handle the given inlined return by replacing the uses of the call with the
792 /// operands of the return. This overload is called when the inlined region
793 /// only contains one block.
794 void handleTerminator(Operation *op, ValueRange valuesToRepl) const final {
795 // Return will be the only terminator present.
796 auto returnOp = cast<LLVM::ReturnOp>(op);
797
798 // Replace the values directly with the return operands.
799 assert(returnOp.getNumOperands() == valuesToRepl.size());
800 for (auto [dst, src] : llvm::zip(valuesToRepl, returnOp.getOperands()))
801 dst.replaceAllUsesWith(src);
802 }
803
804 Value handleArgument(OpBuilder &builder, Operation *call, Operation *callable,
805 Value argument,
806 DictionaryAttr argumentAttrs) const final {
807 if (std::optional<NamedAttribute> attr =
808 argumentAttrs.getNamed(LLVM::LLVMDialect::getByValAttrName())) {
809 Type elementType = cast<TypeAttr>(attr->getValue()).getValue();
810 uint64_t requestedAlignment = 1;
811 if (std::optional<NamedAttribute> alignAttr =
812 argumentAttrs.getNamed(LLVM::LLVMDialect::getAlignAttrName())) {
813 requestedAlignment = cast<IntegerAttr>(alignAttr->getValue())
814 .getValue()
815 .getLimitedValue();
816 }
817 return handleByValArgument(builder, callable, argument, elementType,
818 requestedAlignment);
819 }
820
821 // This code is essentially a workaround for deficiencies in the inliner
822 // interface: We need to transform operations *after* inlined based on the
823 // argument attributes of the parameters *before* inlining. This method runs
824 // prior to actual inlining and thus cannot transform the post-inlining
825 // code, while `processInlinedCallBlocks` does not have access to
826 // pre-inlining function arguments. Additionally, it is required to
827 // distinguish which parameter an SSA value originally came from. As a
828 // workaround until this is changed: Create an ssa.copy intrinsic with the
829 // noalias attribute (when it was present before) that can easily be found,
830 // and is extremely unlikely to exist in the code prior to inlining, using
831 // this to communicate between this method and `processInlinedCallBlocks`.
832 // TODO: Fix this by refactoring the inliner interface.
833 auto copyOp = LLVM::SSACopyOp::create(builder, call->getLoc(), argument);
834 if (argumentAttrs.contains(LLVM::LLVMDialect::getNoAliasAttrName()))
835 copyOp->setDiscardableAttr(
836 builder.getStringAttr(LLVM::LLVMDialect::getNoAliasAttrName()),
837 builder.getUnitAttr());
838 return copyOp;
839 }
840
841 void processInlinedCallBlocks(
842 Operation *call,
843 iterator_range<Region::iterator> inlinedBlocks) const override {
844 handleInlinedAllocas(call, inlinedBlocks);
845 handleAliasScopes(call, inlinedBlocks);
846 handleAccessGroups(call, inlinedBlocks);
847 handleLoopAnnotations(call, inlinedBlocks);
848 }
849
850 // Keeping this (immutable) state on the interface allows us to look up
851 // StringAttrs instead of looking up strings, since StringAttrs are bound to
852 // the current context and thus cannot be initialized as static fields.
853 const DenseSet<StringAttr> disallowedFunctionAttrs;
854};
855
856} // end anonymous namespace
857
859 registry.addExtension(+[](MLIRContext *ctx, LLVM::LLVMDialect *dialect) {
860 dialect->addInterfaces<LLVMInlinerInterface>();
861 });
862}
lhs
static bool hasLifetimeMarkers(LLVM::AllocaOp allocaOp)
Check whether the given alloca is an input to a lifetime intrinsic, optionally passing through one or...
static void appendCallOpAliasScopes(Operation *call, iterator_range< Region::iterator > inlinedBlocks)
Appends any alias scopes of the call operation to any inlined memory operation.
static void handleLoopAnnotations(Operation *call, iterator_range< Region::iterator > inlinedBlocks)
Updates locations inside loop annotations to reflect that they were inlined.
static ArrayAttr concatArrayAttr(ArrayAttr lhs, ArrayAttr rhs)
Creates a new ArrayAttr by concatenating lhs with rhs.
static void createNewAliasScopesFromNoAliasParameter(Operation *call, iterator_range< Region::iterator > inlinedBlocks)
Creates a new AliasScopeAttr for every noalias parameter and attaches it to the appropriate inlined m...
static FailureOr< SmallVector< Value > > getUnderlyingObjectSet(Value pointerValue)
Attempts to return the set of all underlying pointer values that pointerValue is based on.
static void handleAccessGroups(Operation *call, iterator_range< Region::iterator > inlinedBlocks)
Appends any access groups of the call operation to any inlined memory operation.
static Value handleByValArgument(OpBuilder &builder, Operation *callable, Value argument, Type elementType, uint64_t requestedAlignment)
Handles a function argument marked with the byval attribute by introducing a memcpy or realigning the...
static void handleAliasScopes(Operation *call, iterator_range< Region::iterator > inlinedBlocks)
Handles all interactions with alias scopes during inlining.
static uint64_t tryToEnforceAllocaAlignment(LLVM::AllocaOp alloca, uint64_t requestedAlignment, DataLayout const &dataLayout)
If requestedAlignment is higher than the alignment specified on alloca, realigns alloca if this does ...
static uint64_t tryToEnforceAlignment(Value value, uint64_t requestedAlignment, DataLayout const &dataLayout)
Tries to find and return the alignment of the pointer value by looking for an alignment attribute on ...
static void deepCloneAliasScopes(iterator_range< Region::iterator > inlinedBlocks)
Maps all alias scopes in the inlined operations to deep clones of the scopes and domain.
static Value handleByValArgumentInit(OpBuilder &builder, Location loc, Value argument, Type elementType, uint64_t elementTypeSize, uint64_t targetAlignment)
Introduces a new alloca and copies the memory pointed to by argument to the address of the new alloca...
static void handleInlinedAllocas(Operation *call, iterator_range< Region::iterator > inlinedBlocks)
Handles alloca operations in the inlined blocks:
static bool isLegalToInline(InlinerInterface &interface, Region *src, Region *insertRegion, bool shouldCloneInlinedRegion, IRMapping &valueMapping)
Utility to check that all of the operations within 'src' can be inlined.
ArrayAttr()
This is an attribute/type replacer that is naively cached.
void addWalk(WalkFn< Attribute > &&fn)
Register a walk function for a given attribute or type.
WalkResult walk(T element)
Walk the given attribute/type, and recursively walk any sub elements.
Attributes are known-constant values of operations.
Definition Attributes.h:25
Block represents an ordered list of Operations.
Definition Block.h:33
iterator_range< op_iterator< OpT > > getOps()
Return an iterator range over the operations within this block that are of 'OpT'.
Definition Block.h:217
iterator begin()
Definition Block.h:167
Operation * getParentOp()
Returns the closest surrounding operation that contains this block.
Definition Block.cpp:31
IntegerType getI64Type()
Definition Builders.cpp:69
IntegerAttr getI64IntegerAttr(int64_t value)
Definition Builders.cpp:116
Ty getType(Args &&...args)
Get or construct an instance of the type Ty with provided arguments.
Definition Builders.h:93
ArrayAttr getArrayAttr(ArrayRef< Attribute > value)
Definition Builders.cpp:271
DictionaryAttr getDictionaryAttr(ArrayRef< NamedAttribute > value)
Definition Builders.cpp:108
NamedAttribute getNamedAttr(StringRef name, Attribute val)
Definition Builders.cpp:98
The main mechanism for performing data layout queries.
static DataLayout closest(Operation *op)
Returns the layout of the closest parent operation carrying layout info.
llvm::TypeSize getTypeSize(Type t) const
Returns the size of the given type in the current scope.
uint64_t getStackAlignment() const
Returns the natural alignment of the stack in bits.
uint64_t getTypeABIAlignment(Type t) const
Returns the required alignment of the given type in the current scope.
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
bool addExtension(TypeID extensionID, std::unique_ptr< DialectExtensionBase > extension)
Add the given extension to the registry.
MLIRContext * getContext() const
Definition Dialect.h:52
This is a utility class for mapping one set of IR entities to another.
Definition IRMapping.h:26
Location objects represent source locations information in MLIR.
Definition Location.h:32
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
Definition Location.h:76
MLIRContext is the top-level object for a collection of MLIR operations.
Definition MLIRContext.h:63
NamedAttribute represents a combination of a name and an Attribute value.
Definition Attributes.h:164
RAII guard to reset the insertion point of the builder when destroyed.
Definition Builders.h:350
This class helps build Operations.
Definition Builders.h:209
void setInsertionPointToStart(Block *block)
Sets the insertion point to the start of the specified block.
Definition Builders.h:433
void setInsertionPoint(Block *block, Block::iterator insertPoint)
Set the insertion point to the specified location.
Definition Builders.h:400
Block * getInsertionBlock() const
Return the block the current insertion point belongs to.
Definition Builders.h:444
A trait of region holding operations that define a new scope for automatic allocations,...
This class provides the API for ops that are known to be isolated from above.
Operation is the basic unit of execution within MLIR.
Definition Operation.h:87
Region & getRegion(unsigned index)
Returns the region held by this operation at position 'index'.
Definition Operation.h:711
bool mightHaveTrait()
Returns true if the operation might have the provided trait.
Definition Operation.h:782
Operation * getParentWithTrait()
Returns the closest surrounding parent operation with trait Trait.
Definition Operation.h:273
Location getLoc()
The source location the operation was defined or derived from.
Definition Operation.h:240
Operation * getParentOp()
Returns the closest surrounding operation that contains this operation or nullptr if this is a top-le...
Definition Operation.h:251
OpTy getParentOfType()
Return the closest surrounding parent operation that is of type 'OpTy'.
Definition Operation.h:255
user_range getUsers()
Returns a range of all users.
Definition Operation.h:898
Region * getParentRegion()
Returns the region to which the instruction belongs.
Definition Operation.h:247
MLIRContext * getContext()
Return the context this operation is associated with.
Definition Operation.h:233
This class contains a list of basic blocks and a link to the parent operation it is attached to.
Definition Region.h:26
Block & front()
Definition Region.h:65
static Operation * lookupNearestSymbolFrom(Operation *from, StringAttr symbol)
Returns the operation registered with the given symbol name within the closest parent operation of,...
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
Definition Types.h:74
This class provides an abstraction over the different types of ranges over Values.
Definition ValueRange.h:389
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Definition Value.h:96
Type getType() const
Return the type of this value.
Definition Value.h:105
Block * getParentBlock()
Return the Block in which this Value is defined.
Definition Value.cpp:46
Location getLoc() const
Return the location of this value.
Definition Value.cpp:24
Operation * getDefiningOp() const
If this value is the result of an operation, return the operation that defines it.
Definition Value.cpp:18
A class to signal how to proceed with the walk of the backward slice:
Definition SliceWalk.h:20
bool wasInterrupted() const
Returns true if the walk was interrupted.
Definition SliceWalk.h:60
static WalkContinuation skip()
Creates a continuation that advances the walk without adding any predecessor values to the work list.
Definition SliceWalk.h:55
static WalkContinuation advanceTo(mlir::ValueRange nextValues)
Creates a continuation that adds the user-specified nextValues to the work list and advances the walk...
Definition SliceWalk.h:49
static WalkContinuation interrupt()
Creates a continuation that interrupts the walk.
Definition SliceWalk.h:43
static WalkResult advance()
Definition WalkResult.h:47
void recursivelyReplaceElementsIn(Operation *op, bool replaceAttrs=true, bool replaceLocs=false, bool replaceTypes=false)
Replace the elements within the given operation, and all nested operations.
void addReplacement(ReplaceFn< Attribute > fn)
AttrTypeReplacerBase.
void registerInlinerInterface(DialectRegistry &registry)
Register the LLVMInlinerInterface implementation of DialectInlinerInterface with the LLVM dialect.
Include the generated interface declarations.
bool matchPattern(Value value, const Pattern &pattern)
Entry point for matching a pattern over a Value.
Definition Matchers.h:490
std::optional< SmallVector< Value > > getControlFlowPredecessors(Value value)
Computes a vector of all control predecessors of value.
Definition SliceWalk.cpp:60
llvm::DenseSet< ValueT, ValueInfoT > DenseSet
Definition LLVM.h:122
llvm::SetVector< T, Vector, Set, N > SetVector
Definition LLVM.h:125
WalkContinuation walkSlice(mlir::ValueRange rootValues, WalkCallback walkCallback)
Walks the slice starting from the rootValues using a depth-first traversal.
Definition SliceWalk.cpp:6
llvm::DenseMap< KeyT, ValueT, KeyInfoT, BucketT > DenseMap
Definition LLVM.h:120
detail::constant_op_matcher m_Constant()
Matches a constant foldable operation.
Definition Matchers.h:369
This trait indicates that a terminator operation is "return-like".