blob: c3f815f03fb23e14ed037c79438ff85f355fe6eb [file] [log] [blame]
Chris Lattnerff0d5902018-07-05 09:12:11 -07001//===- StandardOps.cpp - Standard MLIR Operations -------------------------===//
2//
3// Copyright 2019 The MLIR Authors.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16// =============================================================================
17
18#include "mlir/IR/StandardOps.h"
MLIR Team3fa00ab2018-07-24 10:13:31 -070019#include "mlir/IR/AffineMap.h"
Chris Lattner85ee1512018-07-25 11:15:20 -070020#include "mlir/IR/Builders.h"
Chris Lattnerdd0c2ca2018-07-24 16:07:22 -070021#include "mlir/IR/OpImplementation.h"
Chris Lattnerff0d5902018-07-05 09:12:11 -070022#include "mlir/IR/OperationSet.h"
Chris Lattner9361fb32018-07-24 08:34:58 -070023#include "mlir/IR/SSAValue.h"
24#include "mlir/IR/Types.h"
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -070025#include "mlir/Support/STLExtras.h"
Chris Lattnerff0d5902018-07-05 09:12:11 -070026#include "llvm/Support/raw_ostream.h"
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -070027
Chris Lattnerff0d5902018-07-05 09:12:11 -070028using namespace mlir;
29
MLIR Team554a8ad2018-07-30 13:08:05 -070030static void printDimAndSymbolList(Operation::const_operand_iterator begin,
31 Operation::const_operand_iterator end,
32 unsigned numDims, OpAsmPrinter *p) {
33 *p << '(';
34 p->printOperands(begin, begin + numDims);
35 *p << ')';
36
37 if (begin + numDims != end) {
38 *p << '[';
39 p->printOperands(begin + numDims, end);
40 *p << ']';
41 }
42}
43
44// Parses dimension and symbol list, and sets 'numDims' to the number of
45// dimension operands parsed.
46// Returns 'false' on success and 'true' on error.
47static bool
48parseDimAndSymbolList(OpAsmParser *parser,
MLIR Team554a8ad2018-07-30 13:08:05 -070049 SmallVector<SSAValue *, 4> &operands, unsigned &numDims) {
Chris Lattnereed6c4d2018-08-07 09:12:35 -070050 SmallVector<OpAsmParser::OperandType, 8> opInfos;
Chris Lattner85cf26d2018-08-02 16:54:36 -070051 if (parser->parseOperandList(opInfos, -1, OpAsmParser::Delimiter::Paren))
MLIR Team554a8ad2018-07-30 13:08:05 -070052 return true;
53 // Store number of dimensions for validation by caller.
54 numDims = opInfos.size();
55
56 // Parse the optional symbol operands.
57 auto *affineIntTy = parser->getBuilder().getAffineIntType();
Chris Lattner85cf26d2018-08-02 16:54:36 -070058 if (parser->parseOperandList(opInfos, -1,
59 OpAsmParser::Delimiter::OptionalSquare) ||
MLIR Team554a8ad2018-07-30 13:08:05 -070060 parser->resolveOperands(opInfos, affineIntTy, operands))
61 return true;
62 return false;
63}
64
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -070065//===----------------------------------------------------------------------===//
66// AddFOp
67//===----------------------------------------------------------------------===//
68
Chris Lattnereed6c4d2018-08-07 09:12:35 -070069bool AddFOp::parse(OpAsmParser *parser, OperationState *result) {
Chris Lattner85ee1512018-07-25 11:15:20 -070070 SmallVector<OpAsmParser::OperandType, 2> ops;
71 Type *type;
Chris Lattner8bdbebf2018-08-08 11:02:58 -070072 return parser->parseOperandList(ops, 2) ||
73 parser->parseOptionalAttributeDict(result->attributes) ||
74 parser->parseColonType(type) ||
75 parser->resolveOperands(ops, type, result->operands) ||
76 parser->addTypeToList(type, result->types);
Chris Lattner85ee1512018-07-25 11:15:20 -070077}
78
Chris Lattnerdd0c2ca2018-07-24 16:07:22 -070079void AddFOp::print(OpAsmPrinter *p) const {
Chris Lattner85cf26d2018-08-02 16:54:36 -070080 *p << "addf " << *getOperand(0) << ", " << *getOperand(1);
81 p->printOptionalAttrDict(getAttrs());
82 *p << " : " << *getType();
Chris Lattnerff0d5902018-07-05 09:12:11 -070083}
84
Chris Lattnereed6c4d2018-08-07 09:12:35 -070085// TODO: Have verify functions return std::string to enable more descriptive
86// error messages.
Chris Lattner21e67f62018-07-06 10:46:19 -070087// Return an error message on failure.
88const char *AddFOp::verify() const {
89 // TODO: Check that the types of the LHS and RHS match.
90 // TODO: This should be a refinement of TwoOperands.
91 // TODO: There should also be a OneResultWhoseTypeMatchesFirstOperand.
92 return nullptr;
93}
94
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -070095//===----------------------------------------------------------------------===//
96// AffineApplyOp
97//===----------------------------------------------------------------------===//
98
Chris Lattnereed6c4d2018-08-07 09:12:35 -070099bool AffineApplyOp::parse(OpAsmParser *parser, OperationState *result) {
Chris Lattner3164ae62018-07-28 09:36:25 -0700100 auto &builder = parser->getBuilder();
101 auto *affineIntTy = builder.getAffineIntType();
102
103 AffineMapAttr *mapAttr;
MLIR Team554a8ad2018-07-30 13:08:05 -0700104 unsigned numDims;
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700105 if (parser->parseAttribute(mapAttr, "map", result->attributes) ||
106 parseDimAndSymbolList(parser, result->operands, numDims) ||
107 parser->parseOptionalAttributeDict(result->attributes))
108 return true;
Chris Lattner3164ae62018-07-28 09:36:25 -0700109 auto *map = mapAttr->getValue();
MLIR Team554a8ad2018-07-30 13:08:05 -0700110
Chris Lattner3164ae62018-07-28 09:36:25 -0700111 if (map->getNumDims() != numDims ||
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700112 numDims + map->getNumSymbols() != result->operands.size()) {
113 return parser->emitError(parser->getNameLoc(),
114 "dimension or symbol index mismatch");
Chris Lattner3164ae62018-07-28 09:36:25 -0700115 }
116
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700117 result->types.append(map->getNumResults(), affineIntTy);
118 return false;
Chris Lattner3164ae62018-07-28 09:36:25 -0700119}
120
121void AffineApplyOp::print(OpAsmPrinter *p) const {
122 auto *map = getAffineMap();
123 *p << "affine_apply " << *map;
MLIR Team554a8ad2018-07-30 13:08:05 -0700124 printDimAndSymbolList(operand_begin(), operand_end(), map->getNumDims(), p);
Chris Lattner85cf26d2018-08-02 16:54:36 -0700125 p->printOptionalAttrDict(getAttrs(), /*elidedAttrs=*/"map");
Chris Lattner3164ae62018-07-28 09:36:25 -0700126}
127
128const char *AffineApplyOp::verify() const {
129 // Check that affine map attribute was specified.
130 auto *affineMapAttr = getAttrOfType<AffineMapAttr>("map");
131 if (!affineMapAttr)
132 return "requires an affine map.";
133
134 // Check input and output dimensions match.
135 auto *map = affineMapAttr->getValue();
136
137 // Verify that operand count matches affine map dimension and symbol count.
138 if (getNumOperands() != map->getNumDims() + map->getNumSymbols())
139 return "operand count and affine map dimension and symbol count must match";
140
141 // Verify that result count matches affine map result count.
142 if (getNumResults() != map->getNumResults())
143 return "result count and affine map result count must match";
144
145 return nullptr;
146}
147
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700148//===----------------------------------------------------------------------===//
149// AllocOp
150//===----------------------------------------------------------------------===//
151
MLIR Team554a8ad2018-07-30 13:08:05 -0700152void AllocOp::print(OpAsmPrinter *p) const {
153 MemRefType *type = cast<MemRefType>(getMemRef()->getType());
154 *p << "alloc";
155 // Print dynamic dimension operands.
156 printDimAndSymbolList(operand_begin(), operand_end(),
157 type->getNumDynamicDims(), p);
Chris Lattner85cf26d2018-08-02 16:54:36 -0700158 p->printOptionalAttrDict(getAttrs(), /*elidedAttrs=*/"map");
MLIR Team554a8ad2018-07-30 13:08:05 -0700159 *p << " : " << *type;
160}
161
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700162bool AllocOp::parse(OpAsmParser *parser, OperationState *result) {
MLIR Team554a8ad2018-07-30 13:08:05 -0700163 MemRefType *type;
MLIR Team554a8ad2018-07-30 13:08:05 -0700164
Chris Lattner7d3b77c2018-07-31 16:21:36 -0700165 // Parse the dimension operands and optional symbol operands, followed by a
166 // memref type.
MLIR Team554a8ad2018-07-30 13:08:05 -0700167 unsigned numDimOperands;
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700168 if (parseDimAndSymbolList(parser, result->operands, numDimOperands) ||
169 parser->parseOptionalAttributeDict(result->attributes) ||
170 parser->parseColonType(type))
171 return true;
MLIR Team554a8ad2018-07-30 13:08:05 -0700172
173 // Check numDynamicDims against number of question marks in memref type.
174 if (numDimOperands != type->getNumDynamicDims()) {
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700175 return parser->emitError(parser->getNameLoc(),
176 "dimension operand count does not equal memref "
177 "dynamic dimension count");
MLIR Team554a8ad2018-07-30 13:08:05 -0700178 }
179
180 // Check that the number of symbol operands matches the number of symbols in
181 // the first affinemap of the memref's affine map composition.
182 // Note that a memref must specify at least one affine map in the composition.
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700183 if (result->operands.size() - numDimOperands !=
MLIR Team554a8ad2018-07-30 13:08:05 -0700184 type->getAffineMaps()[0]->getNumSymbols()) {
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700185 return parser->emitError(
186 parser->getNameLoc(),
187 "affine map symbol operand count does not equal memref affine map "
188 "symbol count");
MLIR Team554a8ad2018-07-30 13:08:05 -0700189 }
190
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700191 result->types.push_back(type);
192 return false;
MLIR Team554a8ad2018-07-30 13:08:05 -0700193}
194
195const char *AllocOp::verify() const {
196 // TODO(andydavis): Verify alloc.
197 return nullptr;
198}
199
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700200//===----------------------------------------------------------------------===//
201// ConstantOp
202//===----------------------------------------------------------------------===//
203
Chris Lattnerd4964212018-08-01 10:43:18 -0700204void ConstantOp::print(OpAsmPrinter *p) const {
Chris Lattner85cf26d2018-08-02 16:54:36 -0700205 *p << "constant " << *getValue();
206 p->printOptionalAttrDict(getAttrs(), /*elidedAttrs=*/"value");
207 *p << " : " << *getType();
Chris Lattnerd4964212018-08-01 10:43:18 -0700208}
209
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700210bool ConstantOp::parse(OpAsmParser *parser, OperationState *result) {
Chris Lattnerd4964212018-08-01 10:43:18 -0700211 Attribute *valueAttr;
212 Type *type;
Chris Lattnerd4964212018-08-01 10:43:18 -0700213
Chris Lattner8bdbebf2018-08-08 11:02:58 -0700214 return parser->parseAttribute(valueAttr, "value", result->attributes) ||
215 parser->parseOptionalAttributeDict(result->attributes) ||
216 parser->parseColonType(type) ||
217 parser->addTypeToList(type, result->types);
Chris Lattnerd4964212018-08-01 10:43:18 -0700218}
219
Chris Lattner9361fb32018-07-24 08:34:58 -0700220/// The constant op requires an attribute, and furthermore requires that it
221/// matches the return type.
222const char *ConstantOp::verify() const {
223 auto *value = getValue();
224 if (!value)
225 return "requires a 'value' attribute";
226
227 auto *type = this->getType();
Chris Lattner1ec70572018-07-24 10:41:30 -0700228 if (isa<IntegerType>(type) || type->isAffineInt()) {
Chris Lattner9361fb32018-07-24 08:34:58 -0700229 if (!isa<IntegerAttr>(value))
230 return "requires 'value' to be an integer for an integer result type";
231 return nullptr;
232 }
233
234 if (isa<FunctionType>(type)) {
235 // TODO: Verify a function attr.
236 }
237
238 return "requires a result type that aligns with the 'value' attribute";
239}
240
Chris Lattner992a1272018-08-07 12:02:37 -0700241/// ConstantIntOp only matches values whose result type is an IntegerType.
Chris Lattner9361fb32018-07-24 08:34:58 -0700242bool ConstantIntOp::isClassFor(const Operation *op) {
243 return ConstantOp::isClassFor(op) &&
Chris Lattner992a1272018-08-07 12:02:37 -0700244 isa<IntegerType>(op->getResult(0)->getType());
245}
246
247OperationState ConstantIntOp::build(Builder *builder, int64_t value,
248 unsigned width) {
249 OperationState result(builder->getIdentifier("constant"));
250 result.attributes.push_back(
251 {builder->getIdentifier("value"), builder->getIntegerAttr(value)});
252 result.types.push_back(builder->getIntegerType(width));
253 return result;
254}
255
256/// ConstantAffineIntOp only matches values whose result type is AffineInt.
257bool ConstantAffineIntOp::isClassFor(const Operation *op) {
258 return ConstantOp::isClassFor(op) &&
259 op->getResult(0)->getType()->isAffineInt();
260}
261
262OperationState ConstantAffineIntOp::build(Builder *builder, int64_t value) {
263 OperationState result(builder->getIdentifier("constant"));
264 result.attributes.push_back(
265 {builder->getIdentifier("value"), builder->getIntegerAttr(value)});
266 result.types.push_back(builder->getAffineIntType());
267 return result;
Chris Lattner9361fb32018-07-24 08:34:58 -0700268}
269
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700270//===----------------------------------------------------------------------===//
271// DimOp
272//===----------------------------------------------------------------------===//
273
Chris Lattnerdd0c2ca2018-07-24 16:07:22 -0700274void DimOp::print(OpAsmPrinter *p) const {
Chris Lattner85cf26d2018-08-02 16:54:36 -0700275 *p << "dim " << *getOperand() << ", " << getIndex();
276 p->printOptionalAttrDict(getAttrs(), /*elidedAttrs=*/"index");
277 *p << " : " << *getOperand()->getType();
Chris Lattnerff0d5902018-07-05 09:12:11 -0700278}
279
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700280bool DimOp::parse(OpAsmParser *parser, OperationState *result) {
Chris Lattner85ee1512018-07-25 11:15:20 -0700281 OpAsmParser::OperandType operandInfo;
282 IntegerAttr *indexAttr;
283 Type *type;
Chris Lattner85cf26d2018-08-02 16:54:36 -0700284
Chris Lattner8bdbebf2018-08-08 11:02:58 -0700285 return parser->parseOperand(operandInfo) || parser->parseComma() ||
286 parser->parseAttribute(indexAttr, "index", result->attributes) ||
287 parser->parseOptionalAttributeDict(result->attributes) ||
288 parser->parseColonType(type) ||
289 parser->resolveOperand(operandInfo, type, result->operands) ||
290 parser->addTypeToList(parser->getBuilder().getAffineIntType(),
291 result->types);
Chris Lattner85ee1512018-07-25 11:15:20 -0700292}
293
Chris Lattner21e67f62018-07-06 10:46:19 -0700294const char *DimOp::verify() const {
Chris Lattner21e67f62018-07-06 10:46:19 -0700295 // Check that we have an integer index operand.
296 auto indexAttr = getAttrOfType<IntegerAttr>("index");
297 if (!indexAttr)
Chris Lattner9361fb32018-07-24 08:34:58 -0700298 return "requires an integer attribute named 'index'";
299 uint64_t index = (uint64_t)indexAttr->getValue();
Chris Lattner21e67f62018-07-06 10:46:19 -0700300
Chris Lattner9361fb32018-07-24 08:34:58 -0700301 auto *type = getOperand()->getType();
302 if (auto *tensorType = dyn_cast<RankedTensorType>(type)) {
303 if (index >= tensorType->getRank())
304 return "index is out of range";
305 } else if (auto *memrefType = dyn_cast<MemRefType>(type)) {
306 if (index >= memrefType->getRank())
307 return "index is out of range";
308
309 } else if (isa<UnrankedTensorType>(type)) {
310 // ok, assumed to be in-range.
311 } else {
312 return "requires an operand with tensor or memref type";
313 }
Chris Lattner21e67f62018-07-06 10:46:19 -0700314
315 return nullptr;
316}
317
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700318//===----------------------------------------------------------------------===//
319// LoadOp
320//===----------------------------------------------------------------------===//
321
Chris Lattner85ee1512018-07-25 11:15:20 -0700322void LoadOp::print(OpAsmPrinter *p) const {
323 *p << "load " << *getMemRef() << '[';
324 p->printOperands(getIndices());
Chris Lattner85cf26d2018-08-02 16:54:36 -0700325 *p << ']';
326 p->printOptionalAttrDict(getAttrs());
327 *p << " : " << *getMemRef()->getType();
Chris Lattner85ee1512018-07-25 11:15:20 -0700328}
329
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700330bool LoadOp::parse(OpAsmParser *parser, OperationState *result) {
Chris Lattner85ee1512018-07-25 11:15:20 -0700331 OpAsmParser::OperandType memrefInfo;
332 SmallVector<OpAsmParser::OperandType, 4> indexInfo;
333 MemRefType *type;
Chris Lattner85ee1512018-07-25 11:15:20 -0700334
335 auto affineIntTy = parser->getBuilder().getAffineIntType();
Chris Lattner8bdbebf2018-08-08 11:02:58 -0700336 return parser->parseOperand(memrefInfo) ||
337 parser->parseOperandList(indexInfo, -1,
338 OpAsmParser::Delimiter::Square) ||
339 parser->parseOptionalAttributeDict(result->attributes) ||
340 parser->parseColonType(type) ||
341 parser->resolveOperand(memrefInfo, type, result->operands) ||
342 parser->resolveOperands(indexInfo, affineIntTy, result->operands) ||
343 parser->addTypeToList(type->getElementType(), result->types);
Chris Lattner85ee1512018-07-25 11:15:20 -0700344}
345
346const char *LoadOp::verify() const {
Chris Lattner3164ae62018-07-28 09:36:25 -0700347 if (getNumOperands() == 0)
348 return "expected a memref to load from";
Chris Lattner85ee1512018-07-25 11:15:20 -0700349
Chris Lattner3164ae62018-07-28 09:36:25 -0700350 auto *memRefType = dyn_cast<MemRefType>(getMemRef()->getType());
351 if (!memRefType)
352 return "first operand must be a memref";
MLIR Team3fa00ab2018-07-24 10:13:31 -0700353
Chris Lattner3164ae62018-07-28 09:36:25 -0700354 for (auto *idx : getIndices())
355 if (!idx->getType()->isAffineInt())
356 return "index to load must have 'affineint' type";
MLIR Team3fa00ab2018-07-24 10:13:31 -0700357
Chris Lattner3164ae62018-07-28 09:36:25 -0700358 // TODO: Verify we have the right number of indices.
MLIR Team39a3a602018-07-24 17:43:56 -0700359
Chris Lattner3164ae62018-07-28 09:36:25 -0700360 // TODO: in MLFunction verify that the indices are parameters, IV's, or the
361 // result of an affine_apply.
MLIR Team3fa00ab2018-07-24 10:13:31 -0700362 return nullptr;
363}
364
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700365//===----------------------------------------------------------------------===//
366// ReturnOp
367//===----------------------------------------------------------------------===//
368
369bool ReturnOp::parse(OpAsmParser *parser, OperationState *result) {
370 SmallVector<OpAsmParser::OperandType, 2> opInfo;
371 SmallVector<Type *, 2> types;
372 SmallVector<SSAValue *, 2> operands;
373
374 return parser->parseOperandList(opInfo, -1, OpAsmParser::Delimiter::None) ||
375 (!opInfo.empty() && parser->parseColonTypeList(types)) ||
376 parser->resolveOperands(opInfo, types, result->operands);
377}
378
379void ReturnOp::print(OpAsmPrinter *p) const {
380 *p << "return";
381 if (getNumOperands() > 0) {
382 *p << " ";
383 p->printOperands(operand_begin(), operand_end());
384 *p << " : ";
385 interleave(operand_begin(), operand_end(),
386 [&](auto *e) { p->printType(e->getType()); },
387 [&]() { *p << ", "; });
388 }
389}
390
391const char *ReturnOp::verify() const {
392 // ReturnOp must be part of an ML function.
393 if (auto *stmt = dyn_cast<OperationStmt>(getOperation())) {
394 StmtBlock *block = stmt->getBlock();
395
396 if (!block || !isa<MLFunction>(block) ||
397 &cast<MLFunction>(block)->back() != stmt)
398 return "must be the last statement in the ML function";
399
400 // Return success. Checking that operand types match those in the function
401 // signature is performed in the ML function verifier.
402 return nullptr;
403 }
404 return "cannot occur in a CFG function.";
405}
406
407//===----------------------------------------------------------------------===//
408// StoreOp
409//===----------------------------------------------------------------------===//
410
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700411void StoreOp::print(OpAsmPrinter *p) const {
412 *p << "store " << *getValueToStore();
413 *p << ", " << *getMemRef() << '[';
414 p->printOperands(getIndices());
Chris Lattner85cf26d2018-08-02 16:54:36 -0700415 *p << ']';
416 p->printOptionalAttrDict(getAttrs());
417 *p << " : " << *getMemRef()->getType();
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700418}
419
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700420bool StoreOp::parse(OpAsmParser *parser, OperationState *result) {
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700421 OpAsmParser::OperandType storeValueInfo;
422 OpAsmParser::OperandType memrefInfo;
423 SmallVector<OpAsmParser::OperandType, 4> indexInfo;
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700424 MemRefType *memrefType;
425
426 auto affineIntTy = parser->getBuilder().getAffineIntType();
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700427 return parser->parseOperand(storeValueInfo) || parser->parseComma() ||
428 parser->parseOperand(memrefInfo) ||
429 parser->parseOperandList(indexInfo, -1,
430 OpAsmParser::Delimiter::Square) ||
431 parser->parseOptionalAttributeDict(result->attributes) ||
432 parser->parseColonType(memrefType) ||
Chris Lattner8bdbebf2018-08-08 11:02:58 -0700433 parser->resolveOperand(storeValueInfo, memrefType->getElementType(),
434 result->operands) ||
435 parser->resolveOperand(memrefInfo, memrefType, result->operands) ||
Chris Lattnereed6c4d2018-08-07 09:12:35 -0700436 parser->resolveOperands(indexInfo, affineIntTy, result->operands);
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700437}
438
439const char *StoreOp::verify() const {
440 if (getNumOperands() < 2)
441 return "expected a value to store and a memref";
442
443 // Second operand is a memref type.
444 auto *memRefType = dyn_cast<MemRefType>(getMemRef()->getType());
445 if (!memRefType)
446 return "second operand must be a memref";
447
448 // First operand must have same type as memref element type.
449 if (getValueToStore()->getType() != memRefType->getElementType())
450 return "first operand must have same type memref element type ";
451
452 if (getNumOperands() != 2 + memRefType->getRank())
453 return "store index operand count not equal to memref rank";
454
455 for (auto *idx : getIndices())
456 if (!idx->getType()->isAffineInt())
457 return "index to load must have 'affineint' type";
458
459 // TODO: Verify we have the right number of indices.
460
461 // TODO: in MLFunction verify that the indices are parameters, IV's, or the
462 // result of an affine_apply.
463 return nullptr;
464}
465
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700466//===----------------------------------------------------------------------===//
467// Register operations.
468//===----------------------------------------------------------------------===//
469
Chris Lattnerff0d5902018-07-05 09:12:11 -0700470/// Install the standard operations in the specified operation set.
471void mlir::registerStandardOperations(OperationSet &opSet) {
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700472 opSet.addOperations<AddFOp, AffineApplyOp, AllocOp, ConstantOp, DimOp, LoadOp,
Tatiana Shpeismand9b1d862018-08-09 12:28:58 -0700473 StoreOp, ReturnOp>(
MLIR Teamc5efe7e2018-07-31 14:11:38 -0700474 /*prefix=*/"");
Chris Lattnerff0d5902018-07-05 09:12:11 -0700475}