[AArch64][SME2] Add multi-vector saturating doubling multiply high intrinsics
[llvm-project.git] / mlir / lib / Tools / tblgen-lsp-server / LSPServer.h
blobbc85de13499b3dd2731ac862d6f50ff503c14236
1 //===- LSPServer.h - TableGen LSP Server ------------------------*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LIB_MLIR_TOOLS_TBLGENLSPSERVER_LSPSERVER_H
10 #define LIB_MLIR_TOOLS_TBLGENLSPSERVER_LSPSERVER_H
12 #include <memory>
14 namespace mlir {
15 struct LogicalResult;
17 namespace lsp {
18 class JSONTransport;
19 class TableGenServer;
21 /// Run the main loop of the LSP server using the given TableGen server and
22 /// transport.
23 LogicalResult runTableGenLSPServer(TableGenServer &server,
24 JSONTransport &transport);
26 } // namespace lsp
27 } // namespace mlir
29 #endif // LIB_MLIR_TOOLS_TBLGENLSPSERVER_LSPSERVER_H