Add the ability to have "Ops" defined as small C++ classes, with some nice
properties:
 - They allow type checked dynamic casting from their base Operation.
 - They allow nice accessors for C++ clients, e.g. a "getIndex()" method on
   'dim' that returns an unsigned.
 - They work with both OperationInst/OperationStmt (once OperationStmt is
   implemented).
 - They get custom printing logic.  They will eventually get custom parsing,
   verifier, and builder logic as well.
 - Out of tree clients can register their own operation set without having to
   change MLIR core, e.g. for TensorFlow or custom target instructions.

This registers addf and dim as examples.

PiperOrigin-RevId: 203382993
diff --git a/lib/IR/StandardOps.cpp b/lib/IR/StandardOps.cpp
new file mode 100644
index 0000000..d2a0790
--- /dev/null
+++ b/lib/IR/StandardOps.cpp
@@ -0,0 +1,34 @@
+//===- StandardOps.cpp - Standard MLIR Operations -------------------------===//
+//
+// Copyright 2019 The MLIR Authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// =============================================================================
+
+#include "mlir/IR/StandardOps.h"
+#include "mlir/IR/OperationSet.h"
+#include "llvm/Support/raw_ostream.h"
+using namespace mlir;
+
+void AddFOp::print(raw_ostream &os) const {
+  os << "addf xx, yy : sometype\n";
+}
+
+void DimOp::print(raw_ostream &os) const {
+  os << "dim xxx, " << getIndex() << " : sometype\n";
+}
+
+/// Install the standard operations in the specified operation set.
+void mlir::registerStandardOperations(OperationSet &opSet) {
+  opSet.addOperations<AddFOp, DimOp>(/*prefix=*/ "");
+}