This new features enabled to dedicate custom storage inline within operations.
This storage can be used as an alternative to attributes to store data that is
specific to an operation. Attribute can also be stored inside the properties
storage if desired, but any kind of data can be present as well. This offers
a way to store and mutate data without uniquing in the Context like Attribute.
See the OpPropertiesTest.cpp for an example where a struct with a
std::vector<> is attached to an operation and mutated in-place:
struct TestProperties {
int a = -1;
float b = -1.;
std::vector<int64_t> array = {-33};
};
More complex scheme (including reference-counting) are also possible.
The only constraint to enable storing a C++ object as "properties" on an
operation is to implement three functions:
- convert from the candidate object to an Attribute
- convert from the Attribute to the candidate object
- hash the object
Optional the parsing and printing can also be customized with 2 extra
functions.
A new options is introduced to ODS to allow dialects to specify:
let usePropertiesForAttributes = 1;
When set to true, the inherent attributes for all the ops in this dialect
will be using properties instead of being stored alongside discardable
attributes.
The TestDialect showcases this feature.
Another change is that we introduce new APIs on the Operation class
to access separately the inherent attributes from the discardable ones.
We envision deprecating and removing the `getAttr()`, `getAttrsDictionary()`,
and other similar method which don't make the distinction explicit, leading
to an entirely separate namespace for discardable attributes.
Recommit d572cd1b06 after fixing python bindings build.
Differential Revision: https://reviews.llvm.org/D141742
87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
//===- Property.cpp - Property wrapper class ----------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Property wrapper to simplify using TableGen Record defining a MLIR
|
|
// Property.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/TableGen/Property.h"
|
|
#include "mlir/TableGen/Format.h"
|
|
#include "mlir/TableGen/Operator.h"
|
|
#include "llvm/TableGen/Record.h"
|
|
|
|
using namespace mlir;
|
|
using namespace mlir::tblgen;
|
|
|
|
using llvm::DefInit;
|
|
using llvm::Init;
|
|
using llvm::Record;
|
|
using llvm::StringInit;
|
|
|
|
// Returns the initializer's value as string if the given TableGen initializer
|
|
// is a code or string initializer. Returns the empty StringRef otherwise.
|
|
static StringRef getValueAsString(const Init *init) {
|
|
if (const auto *str = dyn_cast<StringInit>(init))
|
|
return str->getValue().trim();
|
|
return {};
|
|
}
|
|
|
|
Property::Property(const Record *record) : def(record) {
|
|
assert((record->isSubClassOf("Property") || record->isSubClassOf("Attr")) &&
|
|
"must be subclass of TableGen 'Property' class");
|
|
}
|
|
|
|
Property::Property(const DefInit *init) : Property(init->getDef()) {}
|
|
|
|
StringRef Property::getStorageType() const {
|
|
const auto *init = def->getValueInit("storageType");
|
|
auto type = getValueAsString(init);
|
|
if (type.empty())
|
|
return "Property";
|
|
return type;
|
|
}
|
|
|
|
StringRef Property::getInterfaceType() const {
|
|
const auto *init = def->getValueInit("interfaceType");
|
|
return getValueAsString(init);
|
|
}
|
|
|
|
StringRef Property::getConvertFromStorageCall() const {
|
|
const auto *init = def->getValueInit("convertFromStorage");
|
|
return getValueAsString(init);
|
|
}
|
|
|
|
StringRef Property::getAssignToStorageCall() const {
|
|
const auto *init = def->getValueInit("assignToStorage");
|
|
return getValueAsString(init);
|
|
}
|
|
|
|
StringRef Property::getConvertToAttributeCall() const {
|
|
const auto *init = def->getValueInit("convertToAttribute");
|
|
return getValueAsString(init);
|
|
}
|
|
|
|
StringRef Property::getConvertFromAttributeCall() const {
|
|
const auto *init = def->getValueInit("convertFromAttribute");
|
|
return getValueAsString(init);
|
|
}
|
|
|
|
StringRef Property::getHashPropertyCall() const {
|
|
return getValueAsString(def->getValueInit("hashProperty"));
|
|
}
|
|
|
|
bool Property::hasDefaultValue() const { return !getDefaultValue().empty(); }
|
|
|
|
StringRef Property::getDefaultValue() const {
|
|
const auto *init = def->getValueInit("defaultValue");
|
|
return getValueAsString(init);
|
|
}
|
|
|
|
const llvm::Record &Property::getDef() const { return *def; }
|