MLIR 22.0.0git
SPIRVOps.h
Go to the documentation of this file.
1//===- SPIRVOps.h - MLIR SPIR-V operations ----------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares the operations in the SPIR-V dialect.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef MLIR_DIALECT_SPIRV_IR_SPIRVOPS_H_
14#define MLIR_DIALECT_SPIRV_IR_SPIRVOPS_H_
15
21#include "mlir/IR/BuiltinOps.h"
29#include "llvm/Support/PointerLikeTypeTraits.h"
30
31// TableGen'erated operation interfaces for querying versions, extensions, and
32// capabilities.
33#include "mlir/Dialect/SPIRV/IR/SPIRVAvailability.h.inc"
34
35namespace mlir {
36class OpBuilder;
37
38namespace spirv {
39class VerCapExtAttr;
40} // namespace spirv
41} // namespace mlir
42
43// TablenGen'erated operation declarations.
44#define GET_OP_CLASSES
45#include "mlir/Dialect/SPIRV/IR/SPIRVOps.h.inc"
46
47namespace llvm {
48
49/// Allow stealing the low bits of spirv::Function ops.
50template <>
51struct PointerLikeTypeTraits<mlir::spirv::FuncOp> {
52public:
53 static inline void *getAsVoidPointer(mlir::spirv::FuncOp i) {
54 return const_cast<void *>(i.getAsOpaquePointer());
55 }
56 static inline mlir::spirv::FuncOp getFromVoidPointer(void *p) {
57 return mlir::spirv::FuncOp::getFromOpaquePointer(p);
58 }
59 static constexpr int numLowBitsAvailable = 3;
60};
61
62} // namespace llvm
63
64#endif // MLIR_DIALECT_SPIRV_IR_SPIRVOPS_H_
This class helps build Operations.
Definition Builders.h:207
An attribute that specifies the SPIR-V (version, capabilities, extensions) triple.
The OpAsmOpInterface, see OpAsmInterface.td for more details.
Definition CallGraph.h:229
Include the generated interface declarations.
static void * getAsVoidPointer(mlir::spirv::FuncOp i)
Definition SPIRVOps.h:53
static mlir::spirv::FuncOp getFromVoidPointer(void *p)
Definition SPIRVOps.h:56