21#include "llvm/ADT/ScopeExit.h"
22#include "llvm/Support/Debug.h"
24#include "llvm/Support/DebugLog.h"
26#define DEBUG_TYPE "llvm-inliner"
35 allocaOp->getUsers().end());
36 while (!stack.empty()) {
38 if (isa<LLVM::LifetimeStartOp, LLVM::LifetimeEndOp>(op))
40 if (isa<LLVM::BitcastOp>(op))
64 Block *callerEntryBlock =
nullptr;
78 Block *calleeEntryBlock = &(*inlinedBlocks.begin());
79 if (!callerEntryBlock || callerEntryBlock == calleeEntryBlock)
83 bool shouldInsertLifetimes =
false;
84 bool hasDynamicAlloca =
false;
88 for (
auto allocaOp : calleeEntryBlock->
getOps<LLVM::AllocaOp>()) {
89 IntegerAttr arraySize;
91 hasDynamicAlloca =
true;
94 bool shouldInsertLifetime =
96 shouldInsertLifetimes |= shouldInsertLifetime;
97 allocasToMove.emplace_back(allocaOp, arraySize, shouldInsertLifetime);
100 for (
Block &block : llvm::drop_begin(inlinedBlocks)) {
101 if (hasDynamicAlloca)
104 llvm::any_of(block.getOps<LLVM::AllocaOp>(), [](
auto allocaOp) {
105 return !matchPattern(allocaOp.getArraySize(), m_Constant());
108 if (allocasToMove.empty() && !hasDynamicAlloca)
112 if (hasDynamicAlloca) {
117 stackPtr = LLVM::StackSaveOp::create(
119 LLVM::LLVMPointerType::get(call->
getContext()));
122 for (
auto &[allocaOp, arraySize, shouldInsertLifetime] : allocasToMove) {
124 LLVM::ConstantOp::create(builder, allocaOp->getLoc(),
125 allocaOp.getArraySize().
getType(), arraySize);
127 if (shouldInsertLifetime) {
130 LLVM::LifetimeStartOp::create(builder, allocaOp.getLoc(),
131 allocaOp.getResult());
133 allocaOp->moveAfter(newConstant);
134 allocaOp.getArraySizeMutable().assign(newConstant.getResult());
136 if (!shouldInsertLifetimes && !hasDynamicAlloca)
139 for (
Block &block : inlinedBlocks) {
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());
168 walker.
addWalk([&](LLVM::AliasScopeDomainAttr domainAttr) {
169 mapping[domainAttr] = LLVM::AliasScopeDomainAttr::get(
170 domainAttr.getContext(), domainAttr.getDescription());
173 walker.
addWalk([&](LLVM::AliasScopeAttr scopeAttr) {
174 mapping[scopeAttr] = LLVM::AliasScopeAttr::get(
175 cast<LLVM::AliasScopeDomainAttr>(mapping.lookup(scopeAttr.getDomain())),
176 scopeAttr.getDescription());
185 walker.
walk(arrayAttr);
187 return ArrayAttr::get(arrayAttr.getContext(),
188 llvm::map_to_vector(arrayAttr, [&](
Attribute attr) {
189 return mapping.lookup(attr);
193 for (
Block &block : inlinedBlocks) {
195 if (
auto aliasInterface = dyn_cast<LLVM::AliasAnalysisOpInterface>(op)) {
196 aliasInterface.setAliasScopes(
197 convertScopeList(aliasInterface.getAliasScopesOrNull()));
198 aliasInterface.setNoAliasScopes(
199 convertScopeList(aliasInterface.getNoAliasScopesOrNull()));
202 if (
auto noAliasScope = dyn_cast<LLVM::NoAliasScopeDeclOp>(op)) {
204 walker.
walk(noAliasScope.getScopeAttr());
206 noAliasScope.setScopeAttr(cast<LLVM::AliasScopeAttr>(
207 mapping.lookup(noAliasScope.getScopeAttr())));
225 return ArrayAttr::get(
lhs.getContext(),
result);
231static FailureOr<SmallVector<Value>>
237 if (
auto viewOp = val.
getDefiningOp<ViewLikeOpInterface>()) {
238 if (val == viewOp.getViewDest())
243 std::optional<SmallVector<Value>> controlFlowPredecessors =
245 if (controlFlowPredecessors)
249 if (isa<OpResult>(val)) {
282 for (
Value argument : cast<LLVM::CallOp>(call).getArgOperands()) {
284 auto ssaCopy = llvm::dyn_cast<LLVM::SSACopyOp>(user);
287 ssaCopies.insert(ssaCopy);
289 if (!ssaCopy->hasAttr(LLVM::LLVMDialect::getNoAliasAttrName()))
291 noAliasParams.insert(ssaCopy);
297 llvm::scope_exit exit([&] {
298 for (LLVM::SSACopyOp ssaCopyOp : ssaCopies) {
299 ssaCopyOp.replaceAllUsesWith(ssaCopyOp.getOperand());
305 if (noAliasParams.empty())
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;
318 LLVM::NoAliasScopeDeclOp::create(builder, call->
getLoc(), scope);
323 for (
Block &inlinedBlock : inlinedBlocks) {
324 inlinedBlock.walk([&](LLVM::AliasAnalysisOpInterface aliasInterface) {
330 for (
Value pointer : pointerArgs) {
331 FailureOr<SmallVector<Value>> underlyingObjectSet =
333 if (failed(underlyingObjectSet))
335 llvm::copy(*underlyingObjectSet,
336 std::inserter(basedOnPointers, basedOnPointers.begin()));
339 bool aliasesOtherKnownObject =
false;
349 if (llvm::any_of(basedOnPointers, [&](
Value object) {
353 if (
auto ssaCopy =
object.getDefiningOp<LLVM::SSACopyOp>()) {
356 aliasesOtherKnownObject |= !noAliasParams.contains(ssaCopy);
360 if (isa_and_nonnull<LLVM::AllocaOp, LLVM::AddressOfOp>(
361 object.getDefiningOp())) {
362 aliasesOtherKnownObject =
true;
372 for (LLVM::SSACopyOp noAlias : noAliasParams) {
373 if (basedOnPointers.contains(noAlias))
376 noAliasScopes.push_back(pointerScopes[noAlias]);
379 if (!noAliasScopes.empty())
380 aliasInterface.setNoAliasScopes(
382 ArrayAttr::get(call->
getContext(), noAliasScopes)));
408 if (aliasesOtherKnownObject ||
409 isa<LLVM::CallOp>(aliasInterface.getOperation()))
413 for (LLVM::SSACopyOp noAlias : noAliasParams)
414 if (basedOnPointers.contains(noAlias))
415 aliasScopes.push_back(pointerScopes[noAlias]);
417 if (!aliasScopes.empty())
418 aliasInterface.setAliasScopes(
420 ArrayAttr::get(call->
getContext(), aliasScopes)));
430 auto callAliasInterface = dyn_cast<LLVM::AliasAnalysisOpInterface>(call);
431 if (!callAliasInterface)
434 ArrayAttr aliasScopes = callAliasInterface.getAliasScopesOrNull();
435 ArrayAttr noAliasScopes = callAliasInterface.getNoAliasScopesOrNull();
438 if (!aliasScopes && !noAliasScopes)
443 for (
Block &block : inlinedBlocks) {
444 block.walk([&](LLVM::AliasAnalysisOpInterface aliasInterface) {
447 aliasInterface.getAliasScopesOrNull(), aliasScopes));
451 aliasInterface.getNoAliasScopesOrNull(), noAliasScopes));
468 auto callAccessGroupInterface = dyn_cast<LLVM::AccessGroupOpInterface>(call);
469 if (!callAccessGroupInterface)
472 auto accessGroups = callAccessGroupInterface.getAccessGroupsOrNull();
478 for (
Block &block : inlinedBlocks)
479 for (
auto accessGroupOpInterface :
480 block.getOps<LLVM::AccessGroupOpInterface>())
482 accessGroupOpInterface.getAccessGroupsOrNull(), accessGroups));
494 auto fusedLoc = dyn_cast_if_present<FusedLoc>(funcLoc);
498 dyn_cast_if_present<LLVM::DISubprogramAttr>(fusedLoc.getMetadata());
508 return FusedLoc::get(loc.getContext(), callSiteLoc, scope);
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)
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());
531 for (
Block &block : inlinedBlocks)
540 uint64_t requestedAlignment,
542 uint64_t allocaAlignment = alloca.getAlignment().value_or(1);
543 if (requestedAlignment <= allocaAlignment)
545 return allocaAlignment;
549 if (naturalStackAlignmentBits == 0 ||
552 8 * requestedAlignment <= naturalStackAlignmentBits ||
555 8 * allocaAlignment > naturalStackAlignmentBits) {
556 alloca.setAlignment(requestedAlignment);
557 allocaAlignment = requestedAlignment;
559 return allocaAlignment;
571 if (
auto alloca = dyn_cast<LLVM::AllocaOp>(definingOp))
574 if (
auto addressOf = dyn_cast<LLVM::AddressOfOp>(definingOp))
576 definingOp, addressOf.getGlobalNameAttr()))
577 return global.getAlignment().value_or(1);
584 if (
auto func = dyn_cast<LLVM::LLVMFuncOp>(parentOp)) {
587 auto blockArg = llvm::cast<BlockArgument>(value);
589 blockArg.getArgNumber(), LLVM::LLVMDialect::getAlignAttrName()))
590 return cast<IntegerAttr>(alignAttr).getValue().getLimitedValue();
600 uint64_t elementTypeSize,
601 uint64_t targetAlignment) {
616 Value one = LLVM::ConstantOp::create(builder, loc, builder.
getI64Type(),
618 allocaOp = LLVM::AllocaOp::create(builder, loc, argument.
getType(),
619 elementType, one, targetAlignment);
623 LLVM::ConstantOp::create(builder, loc, builder.
getI64Type(),
628 builder.
getNamedAttr(LLVM::LLVMDialect::getAlignAttrName(),
632 LLVM::MemcpyOp::create(builder, loc, allocaOp, argument, copySize,
635 nullptr,
nullptr, argAttrs,
647 uint64_t requestedAlignment) {
648 auto func = cast<LLVM::LLVMFuncOp>(callable);
649 LLVM::MemoryEffectsAttr memoryEffects =
func.getMemoryEffectsAttr();
652 bool isReadOnly = memoryEffects &&
653 memoryEffects.getArgMem() != LLVM::ModRefInfo::ModRef &&
654 memoryEffects.getArgMem() != LLVM::ModRefInfo::Mod;
659 if (requestedAlignment <= minimumAlignment)
661 uint64_t currentAlignment =
663 if (currentAlignment >= requestedAlignment)
666 uint64_t targetAlignment = std::max(requestedAlignment, minimumAlignment);
668 builder, argument.
getLoc(), argument, elementType,
669 dataLayout.
getTypeSize(elementType), targetAlignment);
673struct LLVMInlinerInterface :
public DialectInlinerInterface {
674 using DialectInlinerInterface::DialectInlinerInterface;
676 LLVMInlinerInterface(Dialect *dialect)
677 : DialectInlinerInterface(dialect),
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"),
687 bool wouldBeCloned)
const final {
688 auto callOp = dyn_cast<LLVM::CallOp>(call);
690 LDBG() <<
"Cannot inline: call is not an '"
691 << LLVM::CallOp::getOperationName() <<
"' op";
694 if (callOp.getNoInline()) {
695 LDBG() <<
"Cannot inline: call is marked no_inline";
698 auto funcOp = dyn_cast<LLVM::LLVMFuncOp>(callable);
700 LDBG() <<
"Cannot inline: callable is not an '"
701 << LLVM::LLVMFuncOp::getOperationName() <<
"' op";
704 if (funcOp.isNoInline()) {
705 LDBG() <<
"Cannot inline: function is marked no_inline";
708 if (funcOp.isVarArg()) {
709 LDBG() <<
"Cannot inline: callable is variadic";
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";
723 if (funcOp.getPersonality()) {
724 LDBG() <<
"Cannot inline " << funcOp.getSymName()
725 <<
": unhandled function personality";
728 if (funcOp.getPassthrough()) {
730 if (llvm::any_of(*funcOp.getPassthrough(), [&](Attribute attr) {
731 auto stringAttr = dyn_cast<StringAttr>(attr);
734 if (disallowedFunctionAttrs.contains(stringAttr)) {
735 LDBG() <<
"Cannot inline " << funcOp.getSymName()
736 <<
": found disallowed function attribute " << stringAttr;
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";
768 return !(isa<LLVM::VaStartOp>(op) || isa<LLVM::BlockTagOp>(op));
773 void handleTerminator(
Operation *op,
Block *newDest)
const final {
775 auto returnOp = dyn_cast<LLVM::ReturnOp>(op);
781 LLVM::BrOp::create(builder, op->getLoc(), returnOp.getOperands(), newDest);
785 bool allowSingleBlockOptimization(
787 return !(!inlinedBlocks.empty() &&
788 isa<LLVM::UnreachableOp>(inlinedBlocks.begin()->getTerminator()));
796 auto returnOp = cast<LLVM::ReturnOp>(op);
799 assert(returnOp.getNumOperands() == valuesToRepl.size());
800 for (
auto [dst, src] : llvm::zip(valuesToRepl, returnOp.getOperands()))
801 dst.replaceAllUsesWith(src);
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())
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());
841 void processInlinedCallBlocks(
860 dialect->addInterfaces<LLVMInlinerInterface>();
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.
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.
Block represents an ordered list of Operations.
iterator_range< op_iterator< OpT > > getOps()
Return an iterator range over the operations within this block that are of 'OpT'.
Operation * getParentOp()
Returns the closest surrounding operation that contains this block.
IntegerAttr getI64IntegerAttr(int64_t value)
Ty getType(Args &&...args)
Get or construct an instance of the type Ty with provided arguments.
ArrayAttr getArrayAttr(ArrayRef< Attribute > value)
DictionaryAttr getDictionaryAttr(ArrayRef< NamedAttribute > value)
NamedAttribute getNamedAttr(StringRef name, Attribute val)
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
This is a utility class for mapping one set of IR entities to another.
Location objects represent source locations information in MLIR.
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
MLIRContext is the top-level object for a collection of MLIR operations.
NamedAttribute represents a combination of a name and an Attribute value.
RAII guard to reset the insertion point of the builder when destroyed.
This class helps build Operations.
void setInsertionPointToStart(Block *block)
Sets the insertion point to the start of the specified block.
void setInsertionPoint(Block *block, Block::iterator insertPoint)
Set the insertion point to the specified location.
Block * getInsertionBlock() const
Return the block the current insertion point belongs to.
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.
Region & getRegion(unsigned index)
Returns the region held by this operation at position 'index'.
bool mightHaveTrait()
Returns true if the operation might have the provided trait.
Operation * getParentWithTrait()
Returns the closest surrounding parent operation with trait Trait.
Location getLoc()
The source location the operation was defined or derived from.
Operation * getParentOp()
Returns the closest surrounding operation that contains this operation or nullptr if this is a top-le...
OpTy getParentOfType()
Return the closest surrounding parent operation that is of type 'OpTy'.
user_range getUsers()
Returns a range of all users.
Region * getParentRegion()
Returns the region to which the instruction belongs.
MLIRContext * getContext()
Return the context this operation is associated with.
This class contains a list of basic blocks and a link to the parent operation it is attached to.
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...
This class provides an abstraction over the different types of ranges over Values.
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Type getType() const
Return the type of this value.
Block * getParentBlock()
Return the Block in which this Value is defined.
Location getLoc() const
Return the location of this value.
Operation * getDefiningOp() const
If this value is the result of an operation, return the operation that defines it.
A class to signal how to proceed with the walk of the backward slice:
bool wasInterrupted() const
Returns true if the walk was interrupted.
static WalkContinuation skip()
Creates a continuation that advances the walk without adding any predecessor values to the work list.
static WalkContinuation advanceTo(mlir::ValueRange nextValues)
Creates a continuation that adds the user-specified nextValues to the work list and advances the walk...
static WalkContinuation interrupt()
Creates a continuation that interrupts the walk.
static WalkResult advance()
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 ®istry)
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.
std::optional< SmallVector< Value > > getControlFlowPredecessors(Value value)
Computes a vector of all control predecessors of value.
llvm::DenseSet< ValueT, ValueInfoT > DenseSet
llvm::SetVector< T, Vector, Set, N > SetVector
WalkContinuation walkSlice(mlir::ValueRange rootValues, WalkCallback walkCallback)
Walks the slice starting from the rootValues using a depth-first traversal.
llvm::DenseMap< KeyT, ValueT, KeyInfoT, BucketT > DenseMap
detail::constant_op_matcher m_Constant()
Matches a constant foldable operation.
This trait indicates that a terminator operation is "return-like".