//===- SPIRVOpUtils.h - MLIR SPIR-V Dialect Op Definition Utilities -------===// // // 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 // //===----------------------------------------------------------------------===// #include "mlir/Dialect/SPIRV/IR/SPIRVOps.h" namespace mlir::spirv { /// Returns the bit width of the `type`. inline unsigned getBitWidth(Type type) { … } void printVariableDecorations(Operation *op, OpAsmPrinter &printer, SmallVectorImpl<StringRef> &elidedAttrs); LogicalResult extractValueFromConstOp(Operation *op, int32_t &value); LogicalResult verifyMemorySemantics(Operation *op, spirv::MemorySemantics memorySemantics); } // namespace mlir::spirv