[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / clang-tools-extra / clangd / Config.h
blob586d031d58481d031b49d60f8a6bc9a4d2e21224
1 //===--- Config.h - User configuration of clangd behavior --------*- 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 // Various clangd features have configurable behaviour (or can be disabled).
10 // This file defines "resolved" configuration seen by features within clangd.
11 // For example, settings may vary per-file, the resolved Config only contains
12 // settings that apply to the current file.
14 // This is distinct from how the config is specified by the user (Fragment)
15 // interpreted (CompiledFragment), and combined (Provider).
16 // ConfigFragment.h describes the steps to add a new configuration option.
18 // Because this structure is shared throughout clangd, it's a potential source
19 // of layering problems. Config should be expressed in terms of simple
20 // vocabulary types where possible.
22 //===----------------------------------------------------------------------===//
24 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_CONFIG_H
25 #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_CONFIG_H
27 #include "support/Context.h"
28 #include "llvm/ADT/FunctionExtras.h"
29 #include "llvm/ADT/StringMap.h"
30 #include "llvm/ADT/StringSet.h"
31 #include <functional>
32 #include <optional>
33 #include <string>
34 #include <vector>
36 namespace clang {
37 namespace clangd {
39 /// Settings that express user/project preferences and control clangd behavior.
40 ///
41 /// Generally, features should consume Config::current() and the caller is
42 /// responsible for setting it appropriately. In practice these callers are
43 /// ClangdServer, TUScheduler, and BackgroundQueue.
44 struct Config {
45 /// Returns the Config of the current Context, or an empty configuration.
46 static const Config &current();
47 /// Context key which can be used to set the current Config.
48 static clangd::Key<Config> Key;
50 Config() = default;
51 Config(const Config &) = delete;
52 Config &operator=(const Config &) = delete;
53 Config(Config &&) = default;
54 Config &operator=(Config &&) = default;
56 struct CDBSearchSpec {
57 enum { Ancestors, FixedDir, NoCDBSearch } Policy = Ancestors;
58 // Absolute, native slashes, no trailing slash.
59 std::optional<std::string> FixedCDBPath;
62 /// Controls how the compile command for the current file is determined.
63 struct {
64 /// Edits to apply to the compile command, in sequence.
65 std::vector<llvm::unique_function<void(std::vector<std::string> &) const>>
66 Edits;
67 /// Where to search for compilation databases for this file's flags.
68 CDBSearchSpec CDBSearch = {CDBSearchSpec::Ancestors, std::nullopt};
69 } CompileFlags;
71 enum class BackgroundPolicy { Build, Skip };
72 /// Describes an external index configuration.
73 struct ExternalIndexSpec {
74 enum { None, File, Server } Kind = None;
75 /// This is one of:
76 /// - Address of a clangd-index-server, in the form of "ip:port".
77 /// - Absolute path to an index produced by clangd-indexer.
78 std::string Location;
79 /// Absolute path to source root this index is associated with, uses
80 /// forward-slashes.
81 std::string MountPoint;
83 /// Controls index behavior.
84 struct {
85 /// Whether this TU should be background-indexed.
86 BackgroundPolicy Background = BackgroundPolicy::Build;
87 ExternalIndexSpec External;
88 bool StandardLibrary = true;
89 } Index;
91 enum class IncludesPolicy {
92 /// Diagnose missing and unused includes.
93 Strict,
94 None,
96 enum class FastCheckPolicy { Strict, Loose, None };
97 /// Controls warnings and errors when parsing code.
98 struct {
99 bool SuppressAll = false;
100 llvm::StringSet<> Suppress;
102 /// Configures what clang-tidy checks to run and options to use with them.
103 struct {
104 // A comma-separated list of globs specify which clang-tidy checks to run.
105 std::string Checks;
106 llvm::StringMap<std::string> CheckOptions;
107 FastCheckPolicy FastCheckFilter = FastCheckPolicy::Strict;
108 } ClangTidy;
110 IncludesPolicy UnusedIncludes = IncludesPolicy::Strict;
111 IncludesPolicy MissingIncludes = IncludesPolicy::None;
113 struct {
114 /// IncludeCleaner will not diagnose usages of these headers matched by
115 /// these regexes.
116 std::vector<std::function<bool(llvm::StringRef)>> IgnoreHeader;
117 bool AnalyzeAngledIncludes = false;
118 } Includes;
119 } Diagnostics;
121 /// Style of the codebase.
122 struct {
123 // Namespaces that should always be fully qualified, meaning no "using"
124 // declarations, always spell out the whole name (with or without leading
125 // ::). All nested namespaces are affected as well.
126 std::vector<std::string> FullyQualifiedNamespaces;
128 // List of matcher functions for inserting certain headers with <> or "".
129 std::vector<std::function<bool(llvm::StringRef)>> QuotedHeaders;
130 std::vector<std::function<bool(llvm::StringRef)>> AngledHeaders;
131 } Style;
133 /// controls the completion options for argument lists.
134 enum class ArgumentListsPolicy {
135 /// nothing, no argument list and also NO Delimiters "()" or "<>".
136 None,
137 /// open, only opening delimiter "(" or "<".
138 OpenDelimiter,
139 /// empty pair of delimiters "()" or "<>".
140 Delimiters,
141 /// full name of both type and variable.
142 FullPlaceholders,
145 /// Configures code completion feature.
146 struct {
147 /// Whether code completion includes results that are not visible in current
148 /// scopes.
149 bool AllScopes = true;
150 /// controls the completion options for argument lists.
151 ArgumentListsPolicy ArgumentLists = ArgumentListsPolicy::FullPlaceholders;
152 } Completion;
154 /// Configures hover feature.
155 struct {
156 /// Whether hover show a.k.a type.
157 bool ShowAKA = true;
158 } Hover;
160 struct {
161 /// If false, inlay hints are completely disabled.
162 bool Enabled = true;
164 // Whether specific categories of hints are enabled.
165 bool Parameters = true;
166 bool DeducedTypes = true;
167 bool Designators = true;
168 bool BlockEnd = false;
169 bool DefaultArguments = false;
170 // Limit the length of type names in inlay hints. (0 means no limit)
171 uint32_t TypeNameLimit = 32;
172 } InlayHints;
174 struct {
175 /// Controls highlighting kinds that are disabled.
176 std::vector<std::string> DisabledKinds;
177 /// Controls highlighting modifiers that are disabled.
178 std::vector<std::string> DisabledModifiers;
179 } SemanticTokens;
182 } // namespace clangd
183 } // namespace clang
185 namespace llvm {
186 template <> struct DenseMapInfo<clang::clangd::Config::ExternalIndexSpec> {
187 using ExternalIndexSpec = clang::clangd::Config::ExternalIndexSpec;
188 static inline ExternalIndexSpec getEmptyKey() {
189 return {ExternalIndexSpec::File, "", ""};
191 static inline ExternalIndexSpec getTombstoneKey() {
192 return {ExternalIndexSpec::File, "TOMB", "STONE"};
194 static unsigned getHashValue(const ExternalIndexSpec &Val) {
195 return llvm::hash_combine(Val.Kind, Val.Location, Val.MountPoint);
197 static bool isEqual(const ExternalIndexSpec &LHS,
198 const ExternalIndexSpec &RHS) {
199 return std::tie(LHS.Kind, LHS.Location, LHS.MountPoint) ==
200 std::tie(RHS.Kind, RHS.Location, RHS.MountPoint);
203 } // namespace llvm
205 #endif