21#include "llvm/ADT/STLExtras.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/Support/ErrorHandling.h"
40 assert(!state.properties);
44 assert(
result.succeeded() &&
"invalid properties in op creation");
55 unsigned numRegions = regions.size();
57 create(location, name, resultTypes, operands, std::move(attributes),
58 properties, successors, numRegions);
59 for (
unsigned i = 0; i < numRegions; ++i)
73 return create(location, name, resultTypes, operands,
74 attributes.getDictionary(location.getContext()), properties,
75 successors, numRegions);
84 assert(llvm::all_of(resultTypes, [](
Type t) {
return t; }) &&
85 "unexpected null result type");
88 unsigned numTrailingResults = OpResult::getNumTrailing(resultTypes.size());
89 unsigned numInlineResults = OpResult::getNumInline(resultTypes.size());
90 unsigned numSuccessors = successors.size();
91 unsigned numOperands = operands.size();
92 unsigned numResults = resultTypes.size();
93 int opPropertiesAllocSize = llvm::alignTo<8>(name.getOpPropertyByteSize());
97 bool needsOperandStorage =
106 needsOperandStorage ? 1 : 0, opPropertiesAllocSize, numSuccessors,
107 numRegions, numOperands);
108 size_t prefixByteSize = llvm::alignTo(
109 Operation::prefixAllocSize(numTrailingResults, numInlineResults),
111 char *mallocMem =
reinterpret_cast<char *
>(malloc(byteSize + prefixByteSize));
112 void *rawMem = mallocMem + prefixByteSize;
115 Operation *op = ::new (rawMem) Operation(
116 location, name, numResults, numSuccessors, numRegions,
117 opPropertiesAllocSize, attributes, properties, needsOperandStorage);
120 "unexpected successors in a non-terminator operation");
123 auto resultTypeIt = resultTypes.begin();
124 for (
unsigned i = 0; i < numInlineResults; ++i, ++resultTypeIt)
126 for (
unsigned i = 0; i < numTrailingResults; ++i, ++resultTypeIt) {
127 new (op->getOutOfLineOpResult(i))
132 for (
unsigned i = 0; i != numRegions; ++i)
136 if (needsOperandStorage) {
138 op, op->getTrailingObjects<
OpOperand>(), operands);
143 for (
unsigned i = 0; i != numSuccessors; ++i)
144 new (&blockOperands[i])
BlockOperand(op, successors[i]);
153 unsigned numSuccessors,
unsigned numRegions,
154 int fullPropertiesStorageSize, DictionaryAttr attributes,
156 : location(location), numResults(numResults), numSuccs(numSuccessors),
157 numRegions(numRegions), hasOperandStorage(hasOperandStorage),
158 propertiesStorageSize((fullPropertiesStorageSize + 7) / 8), name(name) {
159 assert(attributes &&
"unexpected null attribute dictionary");
160 assert(fullPropertiesStorageSize <= propertiesCapacity &&
161 "Properties size overflow");
164 llvm::report_fatal_error(
166 " created with unregistered dialect. If this is intended, please call "
167 "allowUnregisteredDialects() on the MLIRContext, or use "
168 "-allow-unregistered-dialect with the MLIR tool used.");
170 if (fullPropertiesStorageSize)
176Operation::~Operation() {
177 assert(block ==
nullptr &&
"operation destroyed but still in a block");
182 emitOpError(
"operation destroyed but still has uses");
184 diag.attachNote(user->getLoc()) <<
"- use: " << *user <<
"\n";
186 llvm::report_fatal_error(
"operation destroyed but still has uses");
190 if (hasOperandStorage)
191 getOperandStorage().~OperandStorage();
195 successor.~BlockOperand();
200 if (propertiesStorageSize)
208 char *rawMem =
reinterpret_cast<char *
>(
this) -
209 llvm::alignTo(prefixAllocSize(),
alignof(Operation));
228 if (operand.get() == from)
235 if (LLVM_LIKELY(hasOperandStorage))
236 return getOperandStorage().setOperands(
this, operands);
237 assert(operands.empty() &&
"setting operands without an operand storage");
246 "invalid operand range specified");
247 if (LLVM_LIKELY(hasOperandStorage))
248 return getOperandStorage().setOperands(
this, start, length, operands);
249 assert(operands.empty() &&
"setting operands without an operand storage");
254 if (LLVM_LIKELY(hasOperandStorage))
256 assert(operands.empty() &&
"inserting operands without an operand storage");
267 if (
getContext()->shouldPrintOpOnDiagnostic()) {
269 .append(
"see current operation: ")
279 if (
getContext()->shouldPrintOpOnDiagnostic())
280 diag.attachNote(
getLoc()) <<
"see current operation: " << *
this;
288 if (
getContext()->shouldPrintOpOnDiagnostic())
289 diag.attachNote(
getLoc()) <<
"see current operation: " << *
this;
303 assert(newAttrs &&
"expected valid attribute dictionary");
308 discardableAttrs.reserve(newAttrs.size());
313 discardableAttrs.push_back(attr);
315 if (discardableAttrs.size() != newAttrs.size())
316 newAttrs = DictionaryAttr::get(
getContext(), discardableAttrs);
325 discardableAttrs.reserve(newAttrs.size());
330 discardableAttrs.push_back(attr);
332 attrs = DictionaryAttr::get(
getContext(), discardableAttrs);
335 attrs = DictionaryAttr::get(
getContext(), newAttrs);
348 if (LLVM_UNLIKELY(!info))
350 return info->getOpPropertiesAsAttribute(
this);
355 if (LLVM_UNLIKELY(!info)) {
359 return info->setOpPropertiesFromAttribute(
381 assert(block &&
"Operations without parent blocks have no order.");
382 assert(other && other->block == block &&
383 "Expected other operation to have the same parent block.");
386 if (!block->isOpOrderValid()) {
387 block->recomputeOpOrder();
390 updateOrderIfNecessary();
391 other->updateOrderIfNecessary();
394 return orderIndex < other->orderIndex;
399void Operation::updateOrderIfNecessary() {
400 assert(block &&
"expected valid parent");
403 if (hasValidOrder() || llvm::hasSingleElement(*block))
410 assert(blockFront != blockBack &&
"expected more than one operation");
413 if (
this == blockBack) {
415 if (!prevNode->hasValidOrder())
419 orderIndex = prevNode->orderIndex + kOrderStride;
425 if (
this == blockFront) {
427 if (!nextNode->hasValidOrder())
430 if (nextNode->orderIndex == 0)
435 if (nextNode->orderIndex <= kOrderStride)
436 orderIndex = (nextNode->orderIndex / 2);
438 orderIndex = kOrderStride;
444 Operation *prevNode = getPrevNode(), *nextNode = getNextNode();
445 if (!prevNode->hasValidOrder() || !nextNode->hasValidOrder())
446 return block->recomputeOpOrder();
447 unsigned prevOrder = prevNode->orderIndex, nextOrder = nextNode->orderIndex;
450 if (prevOrder + 1 == nextOrder)
451 return block->recomputeOpOrder();
452 orderIndex = prevOrder + ((nextOrder - prevOrder) / 2);
459auto llvm::ilist_detail::SpecificNodeAccess<
460 llvm::ilist_detail::compute_node_options<::mlir::Operation>::type>::
461 getNodePtr(pointer n) -> node_type * {
462 return NodeAccess::getNodePtr<OptionsT>(n);
465auto llvm::ilist_detail::SpecificNodeAccess<
466 llvm::ilist_detail::compute_node_options<::mlir::Operation>::type>::
467 getNodePtr(const_pointer n) ->
const node_type * {
468 return NodeAccess::getNodePtr<OptionsT>(n);
471auto llvm::ilist_detail::SpecificNodeAccess<
472 llvm::ilist_detail::compute_node_options<::mlir::Operation>::type>::
473 getValuePtr(node_type *n) -> pointer {
474 return NodeAccess::getValuePtr<OptionsT>(n);
477auto llvm::ilist_detail::SpecificNodeAccess<
478 llvm::ilist_detail::compute_node_options<::mlir::Operation>::type>::
479 getValuePtr(
const node_type *n) -> const_pointer {
480 return NodeAccess::getValuePtr<OptionsT>(n);
487Block *llvm::ilist_traits<::mlir::Operation>::getContainingBlock() {
489 iplist<Operation> *anchor(
static_cast<iplist<Operation> *
>(
this));
490 return reinterpret_cast<Block *
>(
reinterpret_cast<char *
>(anchor) - offset);
496 assert(!op->
getBlock() &&
"already in an operation block!");
497 op->block = getContainingBlock();
500 op->orderIndex = Operation::kInvalidOrderIdx;
506 assert(op->block &&
"not already in an operation block!");
514 Block *curParent = getContainingBlock();
521 if (curParent == otherList.getContainingBlock())
525 for (; first != last; ++first)
526 first->block = curParent;
533 parent->getOperations().erase(
this);
541 parent->getOperations().remove(
this);
554 llvm::iplist<Operation>::iterator iterator) {
556 "cannot move an operation that isn't contained in a block");
557 block->getOperations().splice(iterator,
getBlock()->getOperations(),
570 llvm::iplist<Operation>::iterator iterator) {
571 assert(iterator != block->end() &&
"cannot move after end of block");
583 region.dropAllReferences();
595 for (
auto &block : region)
596 block.dropAllDefinedValueUses();
612 for (
auto [ofr, opResult] : llvm::zip_equal(results, op->
getResults())) {
613 if (
auto value = dyn_cast<Value>(ofr)) {
614 if (value.getType() != opResult.getType()) {
615 op->
emitOpError() <<
"folder produced a value of incorrect type: "
617 <<
", expected: " << opResult.getType();
618 assert(
false &&
"incorrect fold result type");
630 if (succeeded(name.foldHook(
this, operands, results))) {
642 auto *
interface = dyn_cast<DialectFoldInterface>(dialect);
646 LogicalResult status = interface->fold(
this, operands, results);
648 if (succeeded(status))
660 return fold(constants, results);
674 : cloneRegionsFlag(
false), cloneOperandsFlag(
false),
675 resultTypes(std::nullopt) {}
681 resultTypes(resultTypes) {}
684 return CloneOptions().cloneRegions().cloneOperands().withResultTypes(
689 cloneRegionsFlag = enable;
694 cloneOperandsFlag = enable;
700 this->resultTypes = std::move(resultTypes);
727 if (
options.shouldCloneOperands()) {
742 mapper.
map(
this, newOp);
745 if (
options.shouldCloneRegions()) {
746 for (
unsigned i = 0; i != numRegions; ++i)
751 if (
options.shouldCloneResults())
770 if (
auto parseFn =
result.name.getDialect()->getParseOperationHook(
771 result.name.getStringRef()))
772 return (*parseFn)(parser,
result);
790 StringRef defaultDialect) {
792 if (name.starts_with((defaultDialect +
".").str()) && name.count(
'.') == 1)
793 name = name.drop_front(defaultDialect.size() + 1);
813 auto dictAttr = dyn_cast_or_null<::mlir::DictionaryAttr>(properties);
814 if (dictAttr && !elidedProps.empty()) {
816 llvm::SmallDenseSet<StringRef> elidedAttrsSet(elidedProps.begin(),
820 return !elidedAttrsSet.contains(attr.
getName().strref());
822 if (!filteredAttrs.empty()) {
830 p <<
"<" << properties <<
">";
871 return !
static_cast<bool>(operands[std::distance(operandsBegin, &o)]);
873 auto *firstConstantIt = llvm::find_if_not(op->
getOpOperands(), isNonConstant);
874 auto *newConstantIt = std::stable_partition(
877 return success(firstConstantIt != newConstantIt);
883 if (argumentOp && op->
getName() == argumentOp->getName()) {
896 if (argumentOp && op->
getName() == argumentOp->getName()) {
898 return argumentOp->getOperand(0);
906 return op->
emitOpError() <<
"requires zero operands";
912 return op->
emitOpError() <<
"requires a single operand";
917 unsigned numOperands) {
919 return op->
emitOpError() <<
"expected " << numOperands
926 unsigned numOperands) {
929 <<
"expected " << numOperands <<
" or more operands, but found "
937 if (
auto vec = llvm::dyn_cast<VectorType>(type))
938 return vec.getElementType();
941 if (
auto tensor = llvm::dyn_cast<TensorType>(type))
966 if (!type.isSignlessIntOrIndex())
967 return op->
emitOpError() <<
"requires an integer or index type";
975 if (!llvm::isa<FloatType>(type))
990 return op->
emitOpError() <<
"requires all operands to have the same type";
996 return op->
emitOpError() <<
"requires zero regions";
1002 return op->
emitOpError() <<
"requires one region";
1007 unsigned numRegions) {
1009 return op->
emitOpError() <<
"expected " << numRegions <<
" regions";
1014 unsigned numRegions) {
1016 return op->
emitOpError() <<
"expected " << numRegions <<
" or more regions";
1022 return op->
emitOpError() <<
"requires zero results";
1028 return op->
emitOpError() <<
"requires one result";
1033 unsigned numOperands) {
1035 return op->
emitOpError() <<
"expected " << numOperands <<
" results";
1040 unsigned numOperands) {
1043 <<
"expected " << numOperands <<
" or more results";
1052 return op->
emitOpError() <<
"requires the same shape for all operands";
1067 <<
"requires the same shape for all operands and results";
1077 for (
auto operand : llvm::drop_begin(op->
getOperands(), 1)) {
1079 return op->
emitOpError(
"requires the same element type for all operands");
1097 "requires the same element type for all operands and results");
1104 "requires the same element type for all operands and results");
1118 if (
auto rankedType = dyn_cast<RankedTensorType>(type))
1119 encoding = rankedType.getEncoding();
1124 <<
"requires the same type for all operands and results";
1126 if (
auto rankedType = dyn_cast<RankedTensorType>(resultType);
1127 encoding != rankedType.getEncoding())
1129 <<
"requires the same encoding for all operands and results";
1135 <<
"requires the same type for all operands and results";
1137 if (
auto rankedType = dyn_cast<RankedTensorType>(opType);
1138 encoding != rankedType.getEncoding())
1140 <<
"requires the same encoding for all operands and results";
1151 auto hasRank = [](
const Type type) {
1152 if (
auto shapedType = dyn_cast<ShapedType>(type))
1153 return shapedType.hasRank();
1158 auto rankedOperandTypes =
1160 auto rankedResultTypes =
1164 if (rankedOperandTypes.empty() && rankedResultTypes.empty())
1168 auto getRank = [](
const Type type) {
1169 return cast<ShapedType>(type).getRank();
1172 auto rank = !rankedOperandTypes.empty() ? getRank(*rankedOperandTypes.begin())
1173 : getRank(*rankedResultTypes.begin());
1175 for (
const auto type : rankedOperandTypes) {
1176 if (rank != getRank(type)) {
1177 return op->
emitOpError(
"operands don't have matching ranks");
1181 for (
const auto type : rankedResultTypes) {
1182 if (rank != getRank(type)) {
1183 return op->
emitOpError(
"result type has different rank than operands");
1193 if (!block || &block->
back() != op)
1194 return op->
emitOpError(
"must be the last operation in the parent block");
1203 if (succ->getParent() != parent)
1204 return op->
emitError(
"reference to block defined in another region");
1210 return op->
emitOpError(
"requires 0 successors but found ")
1218 return op->
emitOpError(
"requires 1 successor but found ")
1224 unsigned numSuccessors) {
1227 << numSuccessors <<
" successors but found "
1233 unsigned numSuccessors) {
1236 << numSuccessors <<
" successors but found "
1245 bool isBoolType = elementType.isInteger(1);
1247 return op->
emitOpError() <<
"requires a bool result type";
1256 return op->
emitOpError() <<
"requires a floating point type";
1265 return op->
emitOpError() <<
"requires an integer or index type";
1271 StringRef valueGroupName,
1272 size_t expectedCount) {
1275 return op->
emitOpError(
"requires dense i32 array attribute '")
1279 if (llvm::any_of(sizes, [](int32_t element) {
return element < 0; }))
1281 << attrName <<
"' attribute cannot have negative elements";
1283 size_t totalCount = llvm::sum_of(sizes,
size_t(0));
1284 if (totalCount != expectedCount)
1286 << valueGroupName <<
" count (" << expectedCount
1287 <<
") does not match with the total size (" << totalCount
1288 <<
") specified in attribute '" << attrName <<
"'";
1293 StringRef attrName) {
1298 StringRef attrName) {
1307 if (region.getNumArguments() != 0) {
1310 << region.getRegionNumber() <<
" should have no arguments";
1311 return op->
emitOpError(
"region should have no arguments");
1318 auto isMappableType = llvm::IsaPred<VectorType, TensorType>;
1319 auto resultMappableTypes =
1321 auto operandMappableTypes =
1326 if (resultMappableTypes.empty() && operandMappableTypes.empty())
1329 if (!resultMappableTypes.empty() && operandMappableTypes.empty())
1330 return op->
emitOpError(
"if a result is non-scalar, then at least one "
1331 "operand must be non-scalar");
1333 assert(!operandMappableTypes.empty());
1335 if (resultMappableTypes.empty())
1336 return op->
emitOpError(
"if an operand is non-scalar, then there must be at "
1337 "least one non-scalar result");
1341 "if an operand is non-scalar, then all results must be non-scalar");
1344 llvm::concat<Type>(operandMappableTypes, resultMappableTypes));
1345 TypeID expectedBaseTy = types.front().getTypeID();
1346 if (!llvm::all_of(types,
1349 return op->
emitOpError() <<
"all non-scalar operands/results must have the "
1350 "same shape and base type";
1360 "Intended to check IsolatedFromAbove ops");
1366 for (
auto ®ion : isolatedOp->
getRegions()) {
1367 pendingRegions.push_back(®ion);
1370 while (!pendingRegions.empty()) {
1371 for (
Operation &op : pendingRegions.pop_back_val()->getOps()) {
1372 for (
Value operand : op.getOperands()) {
1375 auto *operandRegion = operand.getParentRegion();
1377 return op.emitError(
"operation's operand is unlinked");
1378 if (!region.isAncestor(operandRegion)) {
1379 return op.emitOpError(
"using value defined outside the region")
1380 .attachNote(isolatedOp->
getLoc())
1381 <<
"required by region isolation constraints";
1388 if (op.getNumRegions() &&
1390 for (
Region &subRegion : op.getRegions())
1391 pendingRegions.push_back(&subRegion);
1425 builder.
insert(buildTerminatorOp(builder, loc));
static LogicalResult verifyTerminatorSuccessors(Operation *op)
static Type getTensorOrVectorElementType(Type type)
If this is a vector type, or a tensor type, return the scalar element type that it is built around,...
static void checkFoldResultTypes(Operation *op, SmallVectorImpl< OpFoldResult > &results)
Assert that the folded results (in case of values) have the same type as the results of the given op.
static std::string diag(const llvm::Value &value)
false
Parses a map_entries map type from a string format back into its numeric value.
static llvm::ManagedStatic< PassManagerOptions > options
virtual InFlightDiagnostic emitError(SMLoc loc, const Twine &message={})=0
Emit a diagnostic at the specified location and return failure.
virtual SMLoc getNameLoc() const =0
Return the location of the original name token.
virtual ParseResult parseOptionalLess()=0
Parse a '<' token if present.
virtual ParseResult parseGreater()=0
Parse a '>' token.
virtual ParseResult parseAttribute(Attribute &result, Type type={})=0
Parse an arbitrary attribute of a given type and return it in result.
virtual raw_ostream & getStream() const
Return the raw output stream used by this printer.
virtual void printNamedAttribute(NamedAttribute attr)
Print the given named attribute.
Attributes are known-constant values of operations.
A block operand represents an operand that holds a reference to a Block, e.g.
This class provides an abstraction over the different types of ranges over Blocks.
Block represents an ordered list of Operations.
void recomputeOpOrder()
Recomputes the ordering of child operations within the block.
void invalidateOpOrder()
Invalidates the current ordering of operations.
static OpListType Block::* getSublistAccess(Operation *)
Returns pointer to member of operation list.
This class is a general helper class for creating context-global objects like types,...
MLIRContext * getContext() const
Dialects are groups of MLIR operations, types and attributes, as well as behavior associated with the...
virtual llvm::unique_function< void(Operation *, OpAsmPrinter &printer)> getOperationPrinter(Operation *op) const
Print an operation registered to this dialect.
This is a utility class for mapping one set of IR entities to another.
auto lookupOrDefault(T from) const
Lookup a mapped value within the map.
void map(Value from, Value to)
Inserts a new mapping for 'from' to 'to'.
This class represents a diagnostic that is inflight and set to be reported.
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
NamedAttrList is array of NamedAttributes that tracks whether it is sorted and does some basic work t...
DictionaryAttr getDictionary(MLIRContext *context) const
Return a dictionary attribute for the underlying dictionary.
NamedAttribute represents a combination of a name and an Attribute value.
StringAttr getName() const
Return the name of the attribute.
The OpAsmParser has methods for interacting with the asm parser: parsing things from it,...
This is a pure-virtual base class that exposes the asmprinter hooks necessary to implement a custom p...
virtual void printGenericOp(Operation *op, bool printOpName=true)=0
Print the entire operation with the default generic assembly form.
RAII guard to reset the insertion point of the builder when destroyed.
This class helps build Operations.
Block * createBlock(Region *parent, Region::iterator insertPt={}, TypeRange argTypes={}, ArrayRef< Location > locs={})
Add new block with 'argTypes' arguments and set the insertion point to the end of it.
void setInsertionPointToEnd(Block *block)
Sets the insertion point to the end of the specified block.
Operation * insert(Operation *op)
Insert the given operation at the current insertion point and return it.
This class represents a single result from folding an operation.
This class represents an operand of an operation.
Set of flags used to control the behavior of the various IR print methods (e.g.
Operation * getOperation()
Return the operation that this refers to.
static void genericPrintProperties(OpAsmPrinter &p, Attribute properties, ArrayRef< StringRef > elidedProps={})
Print the properties as a Attribute with names not included within 'elidedProps'.
void print(raw_ostream &os, OpPrintingFlags flags={})
Print the operation to the given stream.
static void printOpName(Operation *op, OpAsmPrinter &p, StringRef defaultDialect)
Print an operation name, eliding the dialect prefix if necessary.
InFlightDiagnostic emitError(const Twine &message={})
Emit an error about fatal conditions with this operation, reporting up to any diagnostic handlers tha...
InFlightDiagnostic emitOpError(const Twine &message={})
Emit an error with the op name prefixed, like "'dim' op " which is convenient for verifiers.
InFlightDiagnostic emitWarning(const Twine &message={})
Emit a warning about this operation, reporting up to any diagnostic handlers that may be listening.
static ParseResult genericParseProperties(OpAsmParser &parser, Attribute &result)
Parse properties as a Attribute.
static ParseResult parse(OpAsmParser &parser, OperationState &result)
Parse the custom form of an operation.
InFlightDiagnostic emitRemark(const Twine &message={})
Emit a remark about this operation, reporting up to any diagnostic handlers that may be listening.
This class provides the API for ops that are known to be isolated from above.
This class provides the API for ops that are known to be terminators.
This class provides the API for ops that are known to have no SSA operand.
void populateInherentAttrs(Operation *op, NamedAttrList &attrs) const
StringRef getStringRef() const
Return the name of this operation. This always succeeds.
void setInherentAttr(Operation *op, StringAttr name, Attribute value) const
std::optional< Attribute > getInherentAttr(Operation *op, StringRef name) const
Lookup an inherent attribute by name, this method isn't recommended and may be removed in the future.
void initOpProperties(PropertyRef storage, PropertyRef init) const
Initialize the op properties.
Class encompassing various options related to cloning an operation.
CloneOptions()
Default constructs an option with all flags set to false.
static CloneOptions all()
Returns an instance such that all elements of the operation are cloned.
CloneOptions & cloneRegions(bool enable=true)
Configures whether cloning should traverse into any of the regions of the operation.
CloneOptions & withResultTypes(std::optional< SmallVector< Type > > resultTypes)
Configures different result types to use for the cloned operation.
CloneOptions & cloneOperands(bool enable=true)
Configures whether operation' operands should be cloned.
Operation is the basic unit of execution within MLIR.
PropertyRef getPropertiesStorage()
Return a generic (but typed) reference to the property type storage.
void setInherentAttr(StringAttr name, Attribute value)
Set an inherent attribute by name.
void replaceUsesOfWith(Value from, Value to)
Replace any uses of 'from' with 'to' within this operation.
void copyProperties(PropertyRef rhs)
Copy properties from an existing other properties object.
MutableArrayRef< BlockOperand > getBlockOperands()
DictionaryAttr getAttrDictionary()
Return all of the attributes on this operation as a DictionaryAttr.
Dialect * getDialect()
Return the dialect this operation is associated with, or nullptr if the associated dialect is not loa...
LogicalResult fold(ArrayRef< Attribute > operands, SmallVectorImpl< OpFoldResult > &results)
Attempt to fold this operation with the specified constant operand values.
Region & getRegion(unsigned index)
Returns the region held by this operation at position 'index'.
bool use_empty()
Returns true if this operation has no uses.
Value getOperand(unsigned idx)
bool hasTrait()
Returns true if the operation was registered with a particular trait, e.g.
Operation * cloneWithoutRegions()
Create a partial copy of this operation without traversing into attached regions.
void insertOperands(unsigned index, ValueRange operands)
Insert the given operands into the operand list at the given 'index'.
void dropAllUses()
Drop all uses of results of this operation.
AttrClass getAttrOfType(StringAttr name)
void setAttrs(DictionaryAttr newAttrs)
Set the attributes from a dictionary on this operation.
unsigned getNumSuccessors()
bool isBeforeInBlock(Operation *other)
Given an operation 'other' that is within the same parent block, return whether the current operation...
void dropAllReferences()
This drops all operand uses from this operation, which is an essential step in breaking cyclic depend...
InFlightDiagnostic emitWarning(const Twine &message={})
Emit a warning about this operation, reporting up to any diagnostic handlers that may be listening.
bool mightHaveTrait()
Returns true if the operation might have the provided trait.
Block * getBlock()
Returns the operation block that contains this operation.
OpResult getResult(unsigned idx)
Get the 'idx'th result of this operation.
std::optional< Attribute > getInherentAttr(StringRef name)
Access an inherent attribute by name: returns an empty optional if there is no inherent attribute wit...
unsigned getNumRegions()
Returns the number of regions held by this operation.
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...
MutableArrayRef< OpOperand > getOpOperands()
std::optional< RegisteredOperationName > getRegisteredInfo()
If this operation has a registered operation description, return it.
void dropAllDefinedValueUses()
Drop uses of all values defined by this operation or its nested regions.
unsigned getNumOperands()
Attribute getPropertiesAsAttribute()
Return the properties converted to an attribute.
void populateDefaultAttrs()
Sets default attributes on unset attributes.
InFlightDiagnostic emitError(const Twine &message={})
Emit an error about fatal conditions with this operation, reporting up to any diagnostic handlers tha...
void destroy()
Destroys this operation and its subclass data.
OperationName getName()
The name of an operation is the key identifier for it.
void remove()
Remove the operation from its parent block, but don't delete it.
LogicalResult setPropertiesFromAttribute(Attribute attr, function_ref< InFlightDiagnostic()> emitError)
Set the properties from the provided attribute.
operand_type_range getOperandTypes()
MutableArrayRef< Region > getRegions()
Returns the regions held by this operation.
static Operation * create(Location location, OperationName name, TypeRange resultTypes, ValueRange operands, NamedAttrList &&attributes, PropertyRef properties, BlockRange successors, unsigned numRegions)
Create a new Operation with the specific fields.
result_type_range getResultTypes()
operand_range getOperands()
Returns an iterator on the underlying Value's.
void setSuccessor(Block *block, unsigned index)
void moveBefore(Operation *existingOp)
Unlink this operation from its current block and insert it right before existingOp which may be in th...
void setOperands(ValueRange operands)
Replace the current operands of this operation with the ones provided in 'operands'.
user_range getUsers()
Returns a range of all users.
SuccessorRange getSuccessors()
result_range getResults()
int getPropertiesStorageSize() const
Returns the properties storage size.
Operation * clone(IRMapping &mapper, const CloneOptions &options=CloneOptions::all())
Create a deep copy of this operation, remapping any operands that use values outside of the operation...
Region * getParentRegion()
Returns the region to which the instruction belongs.
bool isProperAncestor(Operation *other)
Return true if this operation is a proper ancestor of the other operation.
MLIRContext * getContext()
Return the context this operation is associated with.
InFlightDiagnostic emitRemark(const Twine &message={})
Emit a remark about this operation, reporting up to any diagnostic handlers that may be listening.
void moveAfter(Operation *existingOp)
Unlink this operation from its current block and insert it right after existingOp which may be in the...
llvm::hash_code hashProperties()
Compute a hash for the op properties (if any).
InFlightDiagnostic emitOpError(const Twine &message={})
Emit an error with the op name prefixed, like "'dim' op " which is convenient for verifiers.
void erase()
Remove this operation from its parent block and delete it.
unsigned getNumResults()
Return the number of results held by this operation.
Type-safe wrapper around a void* for passing properties, including the properties structs of operatio...
This class provides an abstraction over the different types of ranges over Regions.
This class contains a list of basic blocks and a link to the parent operation it is attached to.
void cloneInto(Region *dest, IRMapping &mapper)
Clone the internal blocks from this region into dest.
void takeBody(Region &other)
Takes body of another region (that region will have no body after this operation completes).
This class provides an efficient unique identifier for a specific C++ type.
This class provides an abstraction over the various different ranges of value types.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
TypeID getTypeID()
Return a unique identifier for the concrete type.
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.
Operation * getDefiningOp() const
If this value is the result of an operation, return the operation that defines it.
This class handles the management of operation operands.
This class provides the implementation for an operation result whose index cannot be represented "inl...
OpFoldResult foldIdempotent(Operation *op)
LogicalResult verifyResultsAreFloatLike(Operation *op)
LogicalResult verifyAtLeastNResults(Operation *op, unsigned numOperands)
LogicalResult verifyIsIdempotent(Operation *op)
LogicalResult verifyOperandsAreSignlessIntegerLike(Operation *op)
LogicalResult verifyNOperands(Operation *op, unsigned numOperands)
LogicalResult verifyNoRegionArguments(Operation *op)
LogicalResult verifyResultsAreSignlessIntegerLike(Operation *op)
LogicalResult verifyIsInvolution(Operation *op)
LogicalResult verifyOperandsAreFloatLike(Operation *op)
LogicalResult foldCommutative(Operation *op, ArrayRef< Attribute > operands, SmallVectorImpl< OpFoldResult > &results)
LogicalResult verifyZeroRegions(Operation *op)
LogicalResult verifyNSuccessors(Operation *op, unsigned numSuccessors)
LogicalResult verifyOperandSizeAttr(Operation *op, StringRef sizeAttrName)
LogicalResult verifyAtLeastNRegions(Operation *op, unsigned numRegions)
LogicalResult verifyValueSizeAttr(Operation *op, StringRef attrName, StringRef valueGroupName, size_t expectedCount)
LogicalResult verifyZeroResults(Operation *op)
LogicalResult verifySameOperandsAndResultType(Operation *op)
LogicalResult verifySameOperandsShape(Operation *op)
LogicalResult verifyAtLeastNSuccessors(Operation *op, unsigned numSuccessors)
LogicalResult verifyIsTerminator(Operation *op)
LogicalResult verifyAtLeastNOperands(Operation *op, unsigned numOperands)
LogicalResult verifyZeroOperands(Operation *op)
LogicalResult verifyElementwise(Operation *op)
LogicalResult verifyOneRegion(Operation *op)
LogicalResult verifySameOperandsAndResultRank(Operation *op)
LogicalResult verifyOneOperand(Operation *op)
LogicalResult verifyIsIsolatedFromAbove(Operation *op)
Check for any values used by operations regions attached to the specified "IsIsolatedFromAbove" opera...
LogicalResult verifyZeroSuccessors(Operation *op)
LogicalResult verifySameOperandsElementType(Operation *op)
LogicalResult verifyOneSuccessor(Operation *op)
LogicalResult verifySameOperandsAndResultElementType(Operation *op)
OpFoldResult foldInvolution(Operation *op)
LogicalResult verifyResultsAreBoolLike(Operation *op)
LogicalResult verifyNResults(Operation *op, unsigned numOperands)
LogicalResult verifyResultSizeAttr(Operation *op, StringRef sizeAttrName)
LogicalResult verifyNRegions(Operation *op, unsigned numRegions)
LogicalResult verifyOneResult(Operation *op)
LogicalResult verifySameTypeOperands(Operation *op)
LogicalResult verifySameOperandsAndResultShape(Operation *op)
bool hasElementwiseMappableTraits(Operation *op)
Together, Elementwise, Scalarizable, Vectorizable, and Tensorizable provide an easy way for scalar op...
OpProperties
This is a "tag" used for mapping the properties storage in llvm::TrailingObjects.
void ensureRegionTerminator(Region ®ion, OpBuilder &builder, Location loc, function_ref< Operation *(OpBuilder &, Location)> buildTerminatorOp)
Insert an operation, generated by buildTerminatorOp, at the end of the region's only block if it does...
Include the generated interface declarations.
bool matchPattern(Value value, const Pattern &pattern)
Entry point for matching a pattern over a Value.
InFlightDiagnostic emitWarning(Location loc)
Utility method to emit a warning message using this location.
LogicalResult verifyCompatibleShapes(TypeRange types1, TypeRange types2)
Returns success if the given two arrays have the same number of elements and each pair wise entries h...
InFlightDiagnostic emitError(Location loc)
Utility method to emit an error message using this location.
Type getElementTypeOrSelf(Type type)
Return the element type or return the type itself.
detail::DenseArrayAttrImpl< int32_t > DenseI32ArrayAttr
InFlightDiagnostic emitRemark(Location loc)
Utility method to emit a remark message using this location.
LogicalResult verifyCompatibleShape(ArrayRef< int64_t > shape1, ArrayRef< int64_t > shape2)
Returns success if the given two shapes are compatible.
detail::constant_op_matcher m_Constant()
Matches a constant foldable operation.
llvm::function_ref< Fn > function_ref
void removeNodeFromList(Operation *op)
This is a trait method invoked when an operation is removed from a block.
void transferNodesFromList(ilist_traits< Operation > &otherList, op_iterator first, op_iterator last)
This is a trait method invoked when an operation is moved from one block to another.
void addNodeToList(Operation *op)
This is a trait method invoked when an operation is added to a block.
static void deleteNode(Operation *op)
::mlir::Operation Operation
simple_ilist< Operation >::iterator op_iterator
This trait tags element-wise ops on vectors or tensors.
This trait tags Elementwise operatons that can be systematically scalarized.
This trait tags Elementwise operatons that can be systematically tensorized.
This trait tags Elementwise operatons that can be systematically vectorized.
This represents an operation in an abstracted form, suitable for use with the builder APIs.
SmallVector< Block *, 1 > successors
Successors of this operation and their respective operands.
SmallVector< Value, 4 > operands
MLIRContext * getContext() const
Get the context held by this operation state.
SmallVector< std::unique_ptr< Region >, 1 > regions
Regions that the op will hold.
Attribute propertiesAttr
This Attribute is used to opaquely construct the properties of the operation.
SmallVector< Type, 4 > types
Types of the results of this operation.
This class provides the implementation for an operation result whose index can be represented "inline...