blob: d2a07903e66e3e6d500d63d35b9aba96f9c410e5 [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"
19#include "mlir/IR/OperationSet.h"
20#include "llvm/Support/raw_ostream.h"
21using namespace mlir;
22
23void AddFOp::print(raw_ostream &os) const {
24 os << "addf xx, yy : sometype\n";
25}
26
27void DimOp::print(raw_ostream &os) const {
28 os << "dim xxx, " << getIndex() << " : sometype\n";
29}
30
31/// Install the standard operations in the specified operation set.
32void mlir::registerStandardOperations(OperationSet &opSet) {
33 opSet.addOperations<AddFOp, DimOp>(/*prefix=*/ "");
34}