Fix GCC build problem with 288f05f related to SmallVector. (#116958)
[llvm-project.git] / mlir / docs / Tools / MLIRLSP.md
blob8270f922fffe8653ad008a93591899a41f2caca6
1 # MLIR : Language Server Protocol
3 [TOC]
5 This document describes the tools and utilities related to supporting
6 [LSP](https://microsoft.github.io/language-server-protocol/) IDE language
7 extensions for various MLIR-related languages. An LSP language extension is
8 generally comprised of two components; a language client and a language server.
9 A language client is a piece of code that interacts with the IDE that you are
10 using, such as VSCode. A language server acts as the backend for queries that
11 the client may want to perform, such as "Find Definition", "Find References",
12 etc.
14 ## MLIR LSP Language Server : `mlir-lsp-server`
16 MLIR provides an implementation of an LSP language server for `.mlir` text files
17 in the form of the `mlir-lsp-server` tool. This tool interacts with the MLIR C++
18 API to support rich language queries, such as "Find Definition".
20 ### Supporting custom dialects
22 `mlir-lsp-server`, like many other MLIR based tools, relies on having the
23 appropriate dialects registered to be able to parse in the custom assembly
24 formats used in the textual .mlir files. The `mlir-lsp-server` found within the
25 main MLIR repository provides support for all of the upstream MLIR dialects.
26 Downstream and out-of-tree users will need to provide a custom
27 `mlir-lsp-server` executable that registers the entities that they are
28 interested in. The implementation of `mlir-lsp-server` is provided as a library,
29 making it easy for downstream users to register their dialect and simply
30 call into the main implementation. A simple example is shown below:
32 ```c++
33 #include "mlir/Tools/mlir-lsp-server/MlirLspServerMain.h"
35 int main(int argc, char **argv) {
36   mlir::DialectRegistry registry;
37   registerMyDialects(registry);
38   return mlir::failed(mlir::MlirLspServerMain(argc, argv, registry));
40 ```
42 See the [Editor Plugins](#editor-plugins) section below for details on how to
43 setup support in a few known LSP clients, such as vscode.
45 ### Features
47 This section details a few of the features that the MLIR language server
48 provides. The screenshots are shown in [VSCode](https://code.visualstudio.com/),
49 but the exact feature set available will depend on your editor client.
51 [mlir features]: #
53 #### Diagnostics
55 The language server actively runs verification on the IR as you type, showing
56 any generated diagnostics in-place.
58 ![IMG](/mlir-lsp-server/diagnostics.png)
60 ##### Automatically insert `expected-` diagnostic checks
62 MLIR provides
63 [infrastructure](https://mlir.llvm.org/docs/Diagnostics/#sourcemgr-diagnostic-verifier-handler)
64 for checking expected diagnostics, which is heavily utilized when defining IR
65 parsing and verification. The language server provides code actions for
66 automatically inserting the checks for diagnostics it knows about.
68 ![IMG](/mlir-lsp-server/diagnostics_action.gif)
70 #### Code completion
72 The language server provides suggestions as you type, offering completions for
73 dialect constructs (such as attributes, operations, and types), block names, SSA
74 value names, keywords, and more.
76 ![IMG](/mlir-lsp-server/code_complete.gif)
78 #### Cross-references
80 Cross references allow for navigating the use/def chains of SSA values (i.e.
81 operation results and block arguments), [Symbols](../SymbolsAndSymbolTables.md),
82 and Blocks.
84 ##### Find definition
86 Jump to the definition of the IR entity under the cursor. A few examples are
87 shown below:
89 - SSA Values
91 ![SSA](/mlir-lsp-server/goto_def_ssa.gif)
93 - Symbol References
95 ![Symbols](/mlir-lsp-server/goto_def_symbol.gif)
97 The definition of an operation will also take into account the source location
98 attached, allowing for navigating into the source file that generated the
99 operation.
101 ![External Locations](/mlir-lsp-server/goto_def_external.gif)
103 ##### Find references
105 Show all references of the IR entity under the cursor.
107 ![IMG](/mlir-lsp-server/find_references.gif)
109 #### Hover
111 Hover over an IR entity to see more information about it. The exact information
112 displayed is dependent on the type of IR entity under the cursor. For example,
113 hovering over an `Operation` may show its generic format.
115 ![IMG](/mlir-lsp-server/hover.png)
117 #### Navigation
119 The language server will also inform the editor about the structure of symbol
120 tables within the IR. This allows for jumping directly to the definition of a
121 symbol, such as a `func.func`, within the file.
123 ![IMG](/mlir-lsp-server/navigation.gif)
125 #### Bytecode Editing and Inspection
127 The language server provides support for interacting with MLIR bytecode files,
128 enabling IDEs to transparently view and edit bytecode files in the same way
129 as textual `.mlir` files.
131 ![IMG](/mlir-lsp-server/bytecode_edit.gif)
133 ## PDLL LSP Language Server : `mlir-pdll-lsp-server`
135 MLIR provides an implementation of an LSP language server for `.pdll` text files
136 in the form of the `mlir-pdll-lsp-server` tool. This tool interacts with the
137 PDLL C++ API to support rich language queries, such as code completion and "Find
138 Definition".
140 ### Compilation Database
142 Similarly to
143 [`clangd`](https://clang.llvm.org/docs/JSONCompilationDatabase.html), and
144 language servers for various other programming languages, the PDLL language
145 server relies on a compilation database to provide build-system information for
146 `.pdll` files. This information includes, for example, the include directories
147 available for that file. This database allows for the server to interact with
148 `.pdll` files using the same configuration as when building.
150 #### Format
152 A PDLL compilation database is a YAML file, conventionally named
153 `pdll_compile_commands.yml`, that contains a set of `FileInfo` documents
154 providing information for individiual `.pdll` files.
156 Example:
158 ```yaml
159 --- !FileInfo:
160   filepath: "/home/user/llvm/mlir/lib/Dialect/Arith/IR/ArithCanonicalization.pdll"
161   includes: "/home/user/llvm/mlir/lib/Dialect/Arith/IR;/home/user/llvm/mlir/include"
164 - filepath: <string> - Absolute file path of the file.
165 - includes: <string> - Semi-colon delimited list of absolute include
166   directories.
168 #### Build System Integration
170 Per convention, PDLL compilation databases should be named
171 `pdll_compile_commands.yml` and placed at the top of the build directory. When
172 using CMake and `mlir_pdll`, a compilation database is generally automatically
173 built and placed in the appropriate location.
175 ### Features
177 This section details a few of the features that the PDLL language server
178 provides. The screenshots are shown in [VSCode](https://code.visualstudio.com/),
179 but the exact feature set available will depend on your editor client.
181 [pdll features]: #
183 #### Diagnostics
185 The language server actively runs verification as you type, showing any
186 generated diagnostics in-place.
188 ![IMG](/mlir-pdll-lsp-server/diagnostics.png)
190 #### Code completion and signature help
192 The language server provides suggestions as you type based on what constraints,
193 rewrites, dialects, operations, etc are available in this context. The server
194 also provides information about the structure of constraint and rewrite calls,
195 operations, and more as you fill them in.
197 ![IMG](/mlir-pdll-lsp-server/code_complete.gif)
199 #### Cross-references
201 Cross references allow for navigating the code base.
203 ##### Find definition
205 Jump to the definition of a symbol under the cursor:
207 ![IMG](/mlir-pdll-lsp-server/goto_def.gif)
209 If ODS information is available, we can also jump to the definition of operation
210 names and more:
212 ![IMG](/mlir-pdll-lsp-server/goto_def_ods.gif)
214 ##### Find references
216 Show all references of the symbol under the cursor.
218 ![IMG](/mlir-pdll-lsp-server/find_references.gif)
220 #### Hover
222 Hover over a symbol to see more information about it, such as its type,
223 documentation, and more.
225 ![IMG](/mlir-pdll-lsp-server/hover.png)
227 If ODS information is available, we can also show information directly from the
228 operation definitions:
230 ![IMG](/mlir-pdll-lsp-server/hover_ods.png)
232 #### Navigation
234 The language server will also inform the editor about the structure of symbols
235 within the IR.
237 ![IMG](/mlir-pdll-lsp-server/navigation.gif)
239 #### View intermediate output
241 The language server provides support for introspecting various intermediate
242 stages of compilation, such as the AST, the `.mlir` containing the generated
243 PDL, and the generated C++ glue. This is a custom LSP extension, and is not
244 necessarily provided by all IDE clients.
246 ![IMG](/mlir-pdll-lsp-server/view_output.gif)
248 #### Inlay hints
250 The language server provides additional information inline with the source code.
251 Editors usually render this using read-only virtual text snippets interspersed
252 with code. Hints may be shown for:
254 - types of local variables
255 - names of operand and result groups
256 - constraint and rewrite arguments
258 ![IMG](/mlir-pdll-lsp-server/inlay_hints.png)
260 ## TableGen LSP Language Server : `tblgen-lsp-server`
262 MLIR provides an implementation of an LSP language server for `.td` text files
263 in the form of the `tblgen-lsp-server` tool. This tool interacts with the
264 TableGen C++ API to support rich language queries, such as "Find Definition".
266 ### Compilation Database
268 Similarly to
269 [`clangd`](https://clang.llvm.org/docs/JSONCompilationDatabase.html), and
270 language servers for various other programming languages, the TableGen language
271 server relies on a compilation database to provide build-system information for
272 `.td` files. This information includes, for example, the include directories
273 available for that file. This database allows for the server to interact with
274 `.td` files using the same configuration as when building.
276 #### Format
278 A TableGen compilation database is a YAML file, conventionally named
279 `tablegen_compile_commands.yml`, that contains a set of `FileInfo` documents
280 providing information for individiual `.td` files.
282 Example:
284 ```yaml
285 --- !FileInfo:
286   filepath: "/home/user/llvm/mlir/lib/Dialect/Arith/IR/ArithCanonicalization.td"
287   includes: "/home/user/llvm/mlir/lib/Dialect/Arith/IR;/home/user/llvm/mlir/include"
290 - filepath: <string> - Absolute file path of the file.
291 - includes: <string> - Semi-colon delimited list of absolute include
292   directories.
294 #### Build System Integration
296 Per convention, TableGen compilation databases should be named
297 `tablegen_compile_commands.yml` and placed at the top of the build directory.
298 When using CMake and `mlir_tablegen`, a compilation database is generally
299 automatically built and placed in the appropriate location.
301 ### Features
303 This section details a few of the features that the TableGen language server
304 provides. The screenshots are shown in [VSCode](https://code.visualstudio.com/),
305 but the exact feature set available will depend on your editor client.
307 [tablegen features]: #
309 #### Diagnostics
311 The language server actively runs verification as you type, showing any
312 generated diagnostics in-place.
314 ![IMG](/tblgen-lsp-server/diagnostics.png)
316 #### Cross-references
318 Cross references allow for navigating the code base.
320 ##### Find definition
322 Jump to the definition of a symbol under the cursor:
324 ![IMG](/tblgen-lsp-server/goto_def.gif)
326 ##### Find references
328 Show all references of the symbol under the cursor.
330 ![IMG](/tblgen-lsp-server/find_references.gif)
332 #### Hover
334 Hover over a symbol to see more information about it, such as its type,
335 documentation, and more.
337 ![IMG](/tblgen-lsp-server/hover_def.png)
339 Hovering over an overridden field will also show you information such as
340 documentation from the base value:
342 ![IMG](/tblgen-lsp-server/hover_field.png)
344 ## Language Server Design
346 The design of the various language servers provided by MLIR are effectively the
347 same, and are largely comprised of three different components:
349 - Communication and Transport (via JSON-RPC)
350 - Language Server Protocol
351 - Language-Specific Server
353 ![Index Map Example](/includes/img/mlir-lsp-server-server_diagram.svg)
355 ### Communication and Transport
357 The language server, such as `mlir-lsp-server`, communicates with the language
358 client via JSON-RPC over stdin/stdout. In the code, this is the `JSONTransport`
359 class. This class knows nothing about the Language Server Protocol, it only
360 knows that JSON-RPC messages are coming in and JSON-RPC messages are going out.
361 The handling of incoming and outgoing LSP messages is left to the
362 `MessageHandler` class. This class routes incoming messages to handlers in the
363 `Language Server Protocol` layer for interpretation, and packages outgoing
364 messages for transport. This class also has limited knowledge of the LSP, and
365 only has information about the three main classes of messages: notifications,
366 calls, and replies.
368 ### Language Server Protocol
370 `LSPServer` handles the interpretation of the finer LSP details. This class
371 registers handlers for LSP messages and then forwards to the
372 [`Language-Specific Server`](#language-specific-server) for processing. The
373 intent of this component is to hold all of the necessary glue when communicating
374 from the LSP world to the language-specific world (e.g. MLIR, PDLL, etc.). In
375 most cases, the LSP message handlers simply forward directly to the
376 `Language-Specific Server`. In some cases, however, the impedance mismatch
377 between the two requires more complicated glue code.
379 ### Language-Specific Server
381 The language specific server, such as `MLIRServer` or `PDLLServer`, provides the
382 internal implementation of all of LSP queries for a specific language. These are
383 the classes that directly interacts with the C++ API for the language, including
384 parsing text files, interpreting definition/reference information, etc.
386 ## Editor Plugins
388 LSP Language plugins are available for many popular editors, and in principle
389 the language servers provided by MLIR should work with any of them, though
390 feature sets and interfaces may vary. Below are a set of plugins that are known
391 to work:
393 ### Visual Studio Code
395 The [MLIR extension](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.vscode-mlir)
396 provides language IDE features for [MLIR](https://mlir.llvm.org/) related
397 languages: [MLIR](#mlir---mlir-textual-assembly-format),
398 [PDLL](#pdll---mlir-pdll-pattern-files), and [TableGen](#td---tablegen-files)
400 #### `.mlir` - MLIR textual assembly format:
402 The MLIR extension adds language support for the
403 [MLIR textual assembly format](https://mlir.llvm.org/docs/LangRef/):
405 ##### Features
407 - Syntax highlighting for `.mlir` files and `mlir` markdown blocks
408 - go-to-definition and cross references
409 - Detailed information when hovering over IR entities
410 - Outline and navigation of symbols and symbol tables
411 - Code completion
412 - Live parser and verifier diagnostics
414 [mlir-vscode features]: #
416 ##### Setup
418 ###### `mlir-lsp-server`
420 The various `.mlir` language features require the
421 [`mlir-lsp-server` language server](https://mlir.llvm.org/docs/Tools/MLIRLSP/#mlir-lsp-language-server--mlir-lsp-server).
422 If `mlir-lsp-server` is not found within your workspace path, you must specify
423 the path of the server via the `mlir.server_path` setting. The path of the
424 server may be absolute or relative within your workspace.
426 #### `.pdll` - MLIR PDLL pattern files:
428 The MLIR extension adds language support for the
429 [PDLL pattern language](https://mlir.llvm.org/docs/PDLL/).
431 ##### Features
433 - Syntax highlighting for `.pdll` files and `pdll` markdown blocks
434 - go-to-definition and cross references
435 - Types and documentation on hover
436 - Code completion and signature help
437 - View intermediate AST, MLIR, or C++ output
439 [pdll-vscode features]: #
441 ##### Setup
443 ###### `mlir-pdll-lsp-server`
445 The various `.pdll` language features require the
446 [`mlir-pdll-lsp-server` language server](https://mlir.llvm.org/docs/Tools/MLIRLSP/#pdll-lsp-language-server--mlir-pdll-lsp-server).
447 If `mlir-pdll-lsp-server` is not found within your workspace path, you must
448 specify the path of the server via the `mlir.pdll_server_path` setting. The path
449 of the server may be absolute or relative within your workspace.
451 ###### Project setup
453 To properly understand and interact with `.pdll` files, the language server must
454 understand how the project is built (compile flags).
455 [`pdll_compile_commands.yml` files](https://mlir.llvm.org/docs/Tools/MLIRLSP/#compilation-database)
456 related to your project should be provided to ensure files are properly
457 processed. These files can usually be generated by the build system, and the
458 server will attempt to find them within your `build/` directory. If not
459 available in or a unique location, additional `pdll_compile_commands.yml` files
460 may be specified via the `mlir.pdll_compilation_databases` setting. The paths of
461 these databases may be absolute or relative within your workspace.
463 #### `.td` - TableGen files:
465 The MLIR extension adds language support for the
466 [TableGen language](https://llvm.org/docs/TableGen/ProgRef.html).
468 ##### Features
470 - Syntax highlighting for `.td` files and `tablegen` markdown blocks
471 - go-to-definition and cross references
472 - Types and documentation on hover
474 [tablegen-vscode features]: #
476 ##### Setup
478 ###### `tblgen-lsp-server`
480 The various `.td` language features require the
481 [`tblgen-lsp-server` language server](https://mlir.llvm.org/docs/Tools/MLIRLSP/#tablegen-lsp-language-server--tblgen-lsp-server).
482 If `tblgen-lsp-server` is not found within your workspace path, you must specify
483 the path of the server via the `mlir.tablegen_server_path` setting. The path of
484 the server may be absolute or relative within your workspace.
486 ###### Project setup
488 To properly understand and interact with `.td` files, the language server must
489 understand how the project is built (compile flags).
490 [`tablegen_compile_commands.yml` files](https://mlir.llvm.org/docs/Tools/MLIRLSP/#compilation-database-1)
491 related to your project should be provided to ensure files are properly
492 processed. These files can usually be generated by the build system, and the
493 server will attempt to find them within your `build/` directory. If not
494 available in or a unique location, additional `tablegen_compile_commands.yml`
495 files may be specified via the `mlir.tablegen_compilation_databases` setting.
496 The paths of these databases may be absolute or relative within your workspace.
498 #### Contributing
500 This extension is actively developed within the
501 [LLVM monorepo](https://github.com/llvm/llvm-project), at
502 [`mlir/utils/vscode`](https://github.com/llvm/llvm-project/tree/main/mlir/utils/vscode).
503 As such, contributions should follow the
504 [normal LLVM guidelines](https://llvm.org/docs/Contributing.html), with code
505 reviews sent to
506 [GitHub](https://llvm.org/docs/Contributing.html#how-to-submit-a-patch).
508 When developing or deploying this extension within the LLVM monorepo, a few
509 extra setup steps are required:
511 - Copy `mlir/utils/textmate/mlir.json` to the extension directory and rename to
512   `grammar.json`.
513 - Copy `llvm/utils/textmate/tablegen.json` to the extension directory and rename
514   to `tablegen-grammar.json`.
515 - Copy
516   `https://mlir.llvm.org//LogoAssets/logo/PNG/full_color/mlir-identity-03.png`
517   to the extension directory and rename to `icon.png`.
519 Please follow the existing code style when contributing to the extension, we
520 recommend to run `npm run format` before sending a patch.