Lines Matching defs:operations
55 /// A mapping from operations in the input source file to their parser state.
56 SmallVector<std::unique_ptr<OperationDefinition>> operations;
73 /// The symbol table operations within the IR.
85 /// A symbol table containing all of the symbol table operations in the IR.
102 operations[opIt->second]->symbolUses.push_back(std::get<1>(symIt));
134 return llvm::make_pointee_range(llvm::ArrayRef(impl->operations));
141 : &*impl->operations[it->second];
259 impl->operationToIdx.try_emplace(op, impl->operations.size());
260 impl->operations.emplace_back(std::move(def));
359 OperationDefinition &def = *impl->operations[existingIt->second];