Home
last modified time | relevance | path

Searched refs:LSP (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/xpc/
H A DConversion.cpp28 const char *const LSP = xpc_dictionary_get_string(XPCObject, "LSP"); in xpcToJson() local
29 auto Json = json::parse(llvm::StringRef(LSP)); in xpcToJson()
/llvm-project-15.0.7/mlir/docs/Tools/
H A DMLIRLSP.md6 [LSP](https://microsoft.github.io/language-server-protocol/) IDE language
7 extensions for various MLIR-related languages. An LSP language extension is
14 ## MLIR LSP Language Server : `mlir-lsp-server`
16 MLIR provides an implementation of an LSP language server for `.mlir` text files
44 setup support in a few known LSP clients, such as vscode.
126 ## PDLL LSP Language Server : `mlir-pdll-lsp-server`
235 PDL, and the generated C++ glue. This is a custom LSP extension, and is not
252 ## TableGen LSP Language Server : `tblgen-lsp-server`
340 The handling of incoming and outgoing LSP messages is left to the
350 registers handlers for LSP messages and then forwards to the
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DCodeComplete.cpp2124 CompletionItem LSP; in render() local
2132 LSP.kind = Kind; in render()
2133 LSP.detail = BundleSize > 1 in render()
2136 LSP.deprecated = Deprecated; in render()
2148 LSP.filterText = FilterText; in render()
2159 LSP.textEdit->newText = FixIt.newText + LSP.textEdit->newText; in render()
2162 LSP.additionalTextEdits.push_back(FixIt); in render()
2166 LSP.textEdit->newText += SnippetSuffix; in render()
2170 LSP.insertText = LSP.textEdit->newText; in render()
2180 LSP.score = Score.ExcludingName; in render()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSplitKit.cpp700 SlotIndex LSP = SA.getLastSplitPoint(&MBB); in enterIntvAtEnd() local
701 if (LSP < Last) { in enterIntvAtEnd()
708 Last = LSP; in enterIntvAtEnd()
1091 if (LSP <= ParentVNI->def) { in hoistCopies()
1678 SlotIndex LSP = SA.getLastSplitPoint(MBBNum); in splitLiveThroughBlock() local
1691 if (LeaveBefore && LeaveBefore < LSP) { in splitLiveThroughBlock()
1750 SlotIndex LSP = SA.getLastSplitPoint(BI.MBB); in splitRegInBlock() local
1763 if (BI.LastInstr < LSP) { in splitRegInBlock()
1772 SlotIndex Idx = leaveIntvBefore(LSP); in splitRegInBlock()
1787 if (!BI.LiveOut || BI.LastInstr < LSP) { in splitRegInBlock()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/test/
H A Dexit-eof.test4 # No LSP messages here, just let clangd see the end-of-file
H A Dlog.test8 CHECK: Starting LSP over stdin/stdout
/llvm-project-15.0.7/mlir/test/mlir-lsp-server/
H A Dexit-eof.test4 // No LSP messages here, just let mlir-lsp-server see the end-of-file
/llvm-project-15.0.7/mlir/test/tblgen-lsp-server/
H A Dexit-eof.test4 // No LSP messages here, just let tblgen-lsp-server see the end-of-file
/llvm-project-15.0.7/mlir/test/mlir-pdll-lsp-server/
H A Dexit-eof.test4 // No LSP messages here, just let mlir-pdll-lsp-server see the end-of-file
/llvm-project-15.0.7/clang-tools-extra/docs/
H A DReleaseNotes.rst50 - Support for standard LSP 3.17 inlay hints protocol.