Lines Matching defs:AsmParserState

1 //===- AsmParserState.cpp -------------------------------------------------===//
9 #include "mlir/AsmParser/AsmParserState.h"
30 // AsmParserState::Impl
33 struct AsmParserState::Impl {
89 void AsmParserState::Impl::resolveSymbolUses() {
110 // AsmParserState
113 AsmParserState::AsmParserState() : impl(std::make_unique<Impl>()) {}
114 AsmParserState::~AsmParserState() = default;
115 AsmParserState &AsmParserState::operator=(AsmParserState &&other) {
123 auto AsmParserState::getBlockDefs() const -> iterator_range<BlockDefIterator> {
127 auto AsmParserState::getBlockDef(Block *block) const
133 auto AsmParserState::getOpDefs() const -> iterator_range<OperationDefIterator> {
137 auto AsmParserState::getOpDef(Operation *op) const
144 auto AsmParserState::getAttributeAliasDefs() const
149 auto AsmParserState::getAttributeAliasDef(StringRef name) const
156 auto AsmParserState::getTypeAliasDefs() const
161 auto AsmParserState::getTypeAliasDef(StringRef name) const
194 SMRange AsmParserState::convertIdLocToRange(SMLoc loc) {
220 void AsmParserState::initialize(Operation *topLevelOp) {
229 void AsmParserState::finalize(Operation *topLevelOp) {
242 void AsmParserState::startOperationDefinition(const OperationName &opName) {
246 void AsmParserState::finalizeOperationDefinition(
269 void AsmParserState::startRegionDefinition() {
280 void AsmParserState::finalizeRegionDefinition() {
291 void AsmParserState::addDefinition(Block *block, SMLoc location) {
305 void AsmParserState::addDefinition(BlockArgument blockArg, SMLoc location) {
317 void AsmParserState::addAttrAliasDefinition(StringRef name, SMRange location,
332 void AsmParserState::addTypeAliasDefinition(StringRef name, SMRange location,
341 void AsmParserState::addUses(Value value, ArrayRef<SMLoc> locations) {
381 void AsmParserState::addUses(Block *block, ArrayRef<SMLoc> locations) {
392 void AsmParserState::addUses(SymbolRefAttr refAttr,
404 void AsmParserState::addAttrAliasUses(StringRef name, SMRange location) {
416 void AsmParserState::addTypeAliasUses(StringRef name, SMRange location) {
425 void AsmParserState::refineDefinition(Value oldValue, Value newValue) {