Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 1 | //===- CodeCompleteConsumer.cpp - Code Completion Interface ---------------===// |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the CodeCompleteConsumer class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 13 | |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 14 | #include "clang/Sema/CodeCompleteConsumer.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "clang-c/Index.h" |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 16 | #include "clang/AST/Decl.h" |
| 17 | #include "clang/AST/DeclBase.h" |
John McCall | de6836a | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
John McCall | 19c1bfd | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclarationName.h" |
| 21 | #include "clang/AST/Type.h" |
| 22 | #include "clang/Basic/IdentifierTable.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 23 | #include "clang/Sema/Sema.h" |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 24 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallString.h" |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallVector.h" |
| 27 | #include "llvm/ADT/StringRef.h" |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/Twine.h" |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Casting.h" |
| 30 | #include "llvm/Support/Compiler.h" |
| 31 | #include "llvm/Support/ErrorHandling.h" |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
| 33 | #include <algorithm> |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 34 | #include <cassert> |
| 35 | #include <cstdint> |
| 36 | #include <string> |
Douglas Gregor | ab6ccb5 | 2009-11-17 16:43:05 +0000 | [diff] [blame] | 37 | |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 38 | using namespace clang; |
| 39 | |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 41 | // Code completion context implementation |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
| 44 | bool CodeCompletionContext::wantConstructorResults() const { |
Ilya Biryukov | 3289ab2 | 2018-02-19 13:53:49 +0000 | [diff] [blame] | 45 | switch (CCKind) { |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 46 | case CCC_Recovery: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 47 | case CCC_Statement: |
| 48 | case CCC_Expression: |
| 49 | case CCC_ObjCMessageReceiver: |
| 50 | case CCC_ParenthesizedExpression: |
| 51 | return true; |
| 52 | |
| 53 | case CCC_TopLevel: |
| 54 | case CCC_ObjCInterface: |
| 55 | case CCC_ObjCImplementation: |
| 56 | case CCC_ObjCIvarList: |
| 57 | case CCC_ClassStructUnion: |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 58 | case CCC_DotMemberAccess: |
| 59 | case CCC_ArrowMemberAccess: |
| 60 | case CCC_ObjCPropertyAccess: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 61 | case CCC_EnumTag: |
| 62 | case CCC_UnionTag: |
| 63 | case CCC_ClassOrStructTag: |
| 64 | case CCC_ObjCProtocolName: |
| 65 | case CCC_Namespace: |
| 66 | case CCC_Type: |
| 67 | case CCC_Name: |
| 68 | case CCC_PotentiallyQualifiedName: |
| 69 | case CCC_MacroName: |
| 70 | case CCC_MacroNameUse: |
| 71 | case CCC_PreprocessorExpression: |
| 72 | case CCC_PreprocessorDirective: |
| 73 | case CCC_NaturalLanguage: |
| 74 | case CCC_SelectorName: |
| 75 | case CCC_TypeQualifiers: |
Douglas Gregor | 0ac4138 | 2010-09-23 23:01:17 +0000 | [diff] [blame] | 76 | case CCC_Other: |
Douglas Gregor | 3a69eaf | 2011-02-18 23:30:37 +0000 | [diff] [blame] | 77 | case CCC_OtherWithMacros: |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 78 | case CCC_ObjCInstanceMessage: |
| 79 | case CCC_ObjCClassMessage: |
Douglas Gregor | 2c595ad | 2011-07-30 06:55:39 +0000 | [diff] [blame] | 80 | case CCC_ObjCInterfaceName: |
Douglas Gregor | 2132584 | 2011-07-07 16:03:39 +0000 | [diff] [blame] | 81 | case CCC_ObjCCategoryName: |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 82 | return false; |
| 83 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 84 | |
| 85 | llvm_unreachable("Invalid CodeCompletionContext::Kind!"); |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Ilya Biryukov | 3289ab2 | 2018-02-19 13:53:49 +0000 | [diff] [blame] | 88 | StringRef clang::getCompletionKindString(CodeCompletionContext::Kind Kind) { |
| 89 | using CCKind = CodeCompletionContext::Kind; |
Ilya Biryukov | 27d8258 | 2018-02-19 12:35:33 +0000 | [diff] [blame] | 90 | switch (Kind) { |
| 91 | case CCKind::CCC_Other: |
| 92 | return "Other"; |
| 93 | case CCKind::CCC_OtherWithMacros: |
| 94 | return "OtherWithMacros"; |
| 95 | case CCKind::CCC_TopLevel: |
| 96 | return "TopLevel"; |
| 97 | case CCKind::CCC_ObjCInterface: |
| 98 | return "ObjCInterface"; |
| 99 | case CCKind::CCC_ObjCImplementation: |
| 100 | return "ObjCImplementation"; |
| 101 | case CCKind::CCC_ObjCIvarList: |
| 102 | return "ObjCIvarList"; |
| 103 | case CCKind::CCC_ClassStructUnion: |
| 104 | return "ClassStructUnion"; |
| 105 | case CCKind::CCC_Statement: |
| 106 | return "Statement"; |
| 107 | case CCKind::CCC_Expression: |
| 108 | return "Expression"; |
| 109 | case CCKind::CCC_ObjCMessageReceiver: |
| 110 | return "ObjCMessageReceiver"; |
| 111 | case CCKind::CCC_DotMemberAccess: |
| 112 | return "DotMemberAccess"; |
| 113 | case CCKind::CCC_ArrowMemberAccess: |
| 114 | return "ArrowMemberAccess"; |
| 115 | case CCKind::CCC_ObjCPropertyAccess: |
| 116 | return "ObjCPropertyAccess"; |
| 117 | case CCKind::CCC_EnumTag: |
| 118 | return "EnumTag"; |
| 119 | case CCKind::CCC_UnionTag: |
| 120 | return "UnionTag"; |
| 121 | case CCKind::CCC_ClassOrStructTag: |
| 122 | return "ClassOrStructTag"; |
| 123 | case CCKind::CCC_ObjCProtocolName: |
| 124 | return "ObjCProtocolName"; |
| 125 | case CCKind::CCC_Namespace: |
| 126 | return "Namespace"; |
| 127 | case CCKind::CCC_Type: |
| 128 | return "Type"; |
| 129 | case CCKind::CCC_Name: |
| 130 | return "Name"; |
| 131 | case CCKind::CCC_PotentiallyQualifiedName: |
| 132 | return "PotentiallyQualifiedName"; |
| 133 | case CCKind::CCC_MacroName: |
| 134 | return "MacroName"; |
| 135 | case CCKind::CCC_MacroNameUse: |
| 136 | return "MacroNameUse"; |
| 137 | case CCKind::CCC_PreprocessorExpression: |
| 138 | return "PreprocessorExpression"; |
| 139 | case CCKind::CCC_PreprocessorDirective: |
| 140 | return "PreprocessorDirective"; |
| 141 | case CCKind::CCC_NaturalLanguage: |
| 142 | return "NaturalLanguage"; |
| 143 | case CCKind::CCC_SelectorName: |
| 144 | return "SelectorName"; |
| 145 | case CCKind::CCC_TypeQualifiers: |
| 146 | return "TypeQualifiers"; |
| 147 | case CCKind::CCC_ParenthesizedExpression: |
| 148 | return "ParenthesizedExpression"; |
| 149 | case CCKind::CCC_ObjCInstanceMessage: |
| 150 | return "ObjCInstanceMessage"; |
| 151 | case CCKind::CCC_ObjCClassMessage: |
| 152 | return "ObjCClassMessage"; |
| 153 | case CCKind::CCC_ObjCInterfaceName: |
| 154 | return "ObjCInterfaceName"; |
| 155 | case CCKind::CCC_ObjCCategoryName: |
| 156 | return "ObjCCategoryName"; |
| 157 | case CCKind::CCC_Recovery: |
| 158 | return "Recovery"; |
| 159 | } |
| 160 | llvm_unreachable("Invalid CodeCompletionContext::Kind!"); |
| 161 | } |
| 162 | |
Douglas Gregor | 0212fd7 | 2010-09-21 16:06:22 +0000 | [diff] [blame] | 163 | //===----------------------------------------------------------------------===// |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 164 | // Code completion string implementation |
| 165 | //===----------------------------------------------------------------------===// |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 166 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 167 | CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 168 | : Kind(Kind), Text("") { |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 169 | switch (Kind) { |
| 170 | case CK_TypedText: |
| 171 | case CK_Text: |
| 172 | case CK_Placeholder: |
| 173 | case CK_Informative: |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 174 | case CK_ResultType: |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 175 | case CK_CurrentParameter: |
| 176 | this->Text = Text; |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 177 | break; |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 178 | |
| 179 | case CK_Optional: |
Jeffrey Yasskin | 1615d45 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 180 | llvm_unreachable("Optional strings cannot be created from text"); |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 181 | |
| 182 | case CK_LeftParen: |
| 183 | this->Text = "("; |
| 184 | break; |
| 185 | |
| 186 | case CK_RightParen: |
| 187 | this->Text = ")"; |
| 188 | break; |
| 189 | |
| 190 | case CK_LeftBracket: |
| 191 | this->Text = "["; |
| 192 | break; |
| 193 | |
| 194 | case CK_RightBracket: |
| 195 | this->Text = "]"; |
| 196 | break; |
| 197 | |
| 198 | case CK_LeftBrace: |
| 199 | this->Text = "{"; |
| 200 | break; |
| 201 | |
| 202 | case CK_RightBrace: |
| 203 | this->Text = "}"; |
| 204 | break; |
| 205 | |
| 206 | case CK_LeftAngle: |
| 207 | this->Text = "<"; |
| 208 | break; |
| 209 | |
| 210 | case CK_RightAngle: |
| 211 | this->Text = ">"; |
| 212 | break; |
| 213 | |
| 214 | case CK_Comma: |
| 215 | this->Text = ", "; |
| 216 | break; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 217 | |
| 218 | case CK_Colon: |
Douglas Gregor | 636a61e | 2010-04-07 00:21:17 +0000 | [diff] [blame] | 219 | this->Text = ":"; |
Douglas Gregor | 504a6ae | 2010-01-10 23:08:15 +0000 | [diff] [blame] | 220 | break; |
| 221 | |
| 222 | case CK_SemiColon: |
| 223 | this->Text = ";"; |
| 224 | break; |
| 225 | |
| 226 | case CK_Equal: |
| 227 | this->Text = " = "; |
| 228 | break; |
| 229 | |
| 230 | case CK_HorizontalSpace: |
| 231 | this->Text = " "; |
| 232 | break; |
| 233 | |
| 234 | case CK_VerticalSpace: |
| 235 | this->Text = "\n"; |
| 236 | break; |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 237 | } |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | CodeCompletionString::Chunk |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 241 | CodeCompletionString::Chunk::CreateText(const char *Text) { |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 242 | return Chunk(CK_Text, Text); |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | CodeCompletionString::Chunk |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 246 | CodeCompletionString::Chunk::CreateOptional(CodeCompletionString *Optional) { |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 247 | Chunk Result; |
| 248 | Result.Kind = CK_Optional; |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 249 | Result.Optional = Optional; |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 250 | return Result; |
| 251 | } |
| 252 | |
| 253 | CodeCompletionString::Chunk |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 254 | CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder) { |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 255 | return Chunk(CK_Placeholder, Placeholder); |
| 256 | } |
| 257 | |
| 258 | CodeCompletionString::Chunk |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 259 | CodeCompletionString::Chunk::CreateInformative(const char *Informative) { |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 260 | return Chunk(CK_Informative, Informative); |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 263 | CodeCompletionString::Chunk |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 264 | CodeCompletionString::Chunk::CreateResultType(const char *ResultType) { |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 265 | return Chunk(CK_ResultType, ResultType); |
| 266 | } |
| 267 | |
| 268 | CodeCompletionString::Chunk |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 269 | CodeCompletionString::Chunk::CreateCurrentParameter( |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 270 | const char *CurrentParameter) { |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 271 | return Chunk(CK_CurrentParameter, CurrentParameter); |
| 272 | } |
| 273 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 274 | CodeCompletionString::CodeCompletionString(const Chunk *Chunks, |
| 275 | unsigned NumChunks, |
| 276 | unsigned Priority, |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 277 | CXAvailabilityKind Availability, |
| 278 | const char **Annotations, |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 279 | unsigned NumAnnotations, |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 280 | StringRef ParentName, |
| 281 | const char *BriefComment) |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 282 | : NumChunks(NumChunks), NumAnnotations(NumAnnotations), |
| 283 | Priority(Priority), Availability(Availability), |
| 284 | ParentName(ParentName), BriefComment(BriefComment) { |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 285 | assert(NumChunks <= 0xffff); |
| 286 | assert(NumAnnotations <= 0xffff); |
| 287 | |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 288 | Chunk *StoredChunks = reinterpret_cast<Chunk *>(this + 1); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 289 | for (unsigned I = 0; I != NumChunks; ++I) |
| 290 | StoredChunks[I] = Chunks[I]; |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 291 | |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 292 | const char **StoredAnnotations = reinterpret_cast<const char **>(StoredChunks + NumChunks); |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 293 | for (unsigned I = 0; I != NumAnnotations; ++I) |
| 294 | StoredAnnotations[I] = Annotations[I]; |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 297 | unsigned CodeCompletionString::getAnnotationCount() const { |
| 298 | return NumAnnotations; |
| 299 | } |
| 300 | |
| 301 | const char *CodeCompletionString::getAnnotation(unsigned AnnotationNr) const { |
| 302 | if (AnnotationNr < NumAnnotations) |
| 303 | return reinterpret_cast<const char * const*>(end())[AnnotationNr]; |
| 304 | else |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 305 | return nullptr; |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 308 | std::string CodeCompletionString::getAsString() const { |
| 309 | std::string Result; |
| 310 | llvm::raw_string_ostream OS(Result); |
| 311 | |
| 312 | for (iterator C = begin(), CEnd = end(); C != CEnd; ++C) { |
| 313 | switch (C->Kind) { |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 314 | case CK_Optional: OS << "{#" << C->Optional->getAsString() << "#}"; break; |
Douglas Gregor | 5bf5269 | 2009-09-22 23:15:58 +0000 | [diff] [blame] | 315 | case CK_Placeholder: OS << "<#" << C->Text << "#>"; break; |
Douglas Gregor | b3fa919 | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 316 | |
| 317 | case CK_Informative: |
| 318 | case CK_ResultType: |
| 319 | OS << "[#" << C->Text << "#]"; |
| 320 | break; |
| 321 | |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 322 | case CK_CurrentParameter: OS << "<#" << C->Text << "#>"; break; |
| 323 | default: OS << C->Text; break; |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
Dan Gohman | 4888f1a | 2010-07-26 21:33:22 +0000 | [diff] [blame] | 326 | return OS.str(); |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 329 | const char *CodeCompletionString::getTypedText() const { |
| 330 | for (iterator C = begin(), CEnd = end(); C != CEnd; ++C) |
| 331 | if (C->Kind == CK_TypedText) |
| 332 | return C->Text; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 333 | |
| 334 | return nullptr; |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Yaron Keren | 1ee89fc | 2015-03-17 09:51:17 +0000 | [diff] [blame] | 337 | const char *CodeCompletionAllocator::CopyString(const Twine &String) { |
| 338 | SmallString<128> Data; |
| 339 | StringRef Ref = String.toStringRef(Data); |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 340 | // FIXME: It would be more efficient to teach Twine to tell us its size and |
| 341 | // then add a routine there to fill in an allocated char* with the contents |
| 342 | // of the string. |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 343 | char *Mem = (char *)Allocate(Ref.size() + 1, 1); |
Yaron Keren | 1ee89fc | 2015-03-17 09:51:17 +0000 | [diff] [blame] | 344 | std::copy(Ref.begin(), Ref.end(), Mem); |
| 345 | Mem[Ref.size()] = 0; |
| 346 | return Mem; |
Douglas Gregor | 669a25a | 2011-02-17 00:22:45 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 349 | StringRef CodeCompletionTUInfo::getParentName(const DeclContext *DC) { |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 350 | const NamedDecl *ND = dyn_cast<NamedDecl>(DC); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 351 | if (!ND) |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 352 | return {}; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 353 | |
| 354 | // Check whether we've already cached the parent name. |
| 355 | StringRef &CachedParentName = ParentNames[DC]; |
| 356 | if (!CachedParentName.empty()) |
| 357 | return CachedParentName; |
| 358 | |
| 359 | // If we already processed this DeclContext and assigned empty to it, the |
| 360 | // data pointer will be non-null. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 361 | if (CachedParentName.data() != nullptr) |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 362 | return {}; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 363 | |
| 364 | // Find the interesting names. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 365 | SmallVector<const DeclContext *, 2> Contexts; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 366 | while (DC && !DC->isFunctionOrMethod()) { |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 367 | if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC)) { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 368 | if (ND->getIdentifier()) |
| 369 | Contexts.push_back(DC); |
| 370 | } |
| 371 | |
| 372 | DC = DC->getParent(); |
| 373 | } |
| 374 | |
| 375 | { |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 376 | SmallString<128> S; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 377 | llvm::raw_svector_ostream OS(S); |
| 378 | bool First = true; |
| 379 | for (unsigned I = Contexts.size(); I != 0; --I) { |
| 380 | if (First) |
| 381 | First = false; |
| 382 | else { |
| 383 | OS << "::"; |
| 384 | } |
| 385 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 386 | const DeclContext *CurDC = Contexts[I-1]; |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 387 | if (const ObjCCategoryImplDecl *CatImpl = dyn_cast<ObjCCategoryImplDecl>(CurDC)) |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 388 | CurDC = CatImpl->getCategoryDecl(); |
| 389 | |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 390 | if (const ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) { |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 391 | const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 392 | if (!Interface) { |
| 393 | // Assign an empty StringRef but with non-null data to distinguish |
| 394 | // between empty because we didn't process the DeclContext yet. |
Reid Kleckner | d16cebe | 2016-02-10 19:09:15 +0000 | [diff] [blame] | 395 | CachedParentName = StringRef((const char *)(uintptr_t)~0U, 0); |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 396 | return {}; |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | OS << Interface->getName() << '(' << Cat->getName() << ')'; |
| 400 | } else { |
| 401 | OS << cast<NamedDecl>(CurDC)->getName(); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | CachedParentName = AllocatorRef->CopyString(OS.str()); |
| 406 | } |
| 407 | |
| 408 | return CachedParentName; |
| 409 | } |
| 410 | |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 411 | CodeCompletionString *CodeCompletionBuilder::TakeString() { |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 412 | void *Mem = getAllocator().Allocate( |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 413 | sizeof(CodeCompletionString) + sizeof(Chunk) * Chunks.size() + |
| 414 | sizeof(const char *) * Annotations.size(), |
| 415 | alignof(CodeCompletionString)); |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 416 | CodeCompletionString *Result |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 417 | = new (Mem) CodeCompletionString(Chunks.data(), Chunks.size(), |
Erik Verbruggen | 98ea7f6 | 2011-10-14 15:31:08 +0000 | [diff] [blame] | 418 | Priority, Availability, |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 419 | Annotations.data(), Annotations.size(), |
Argyrios Kyrtzidis | 9ae3956 | 2012-09-26 16:39:56 +0000 | [diff] [blame] | 420 | ParentName, BriefComment); |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 421 | Chunks.clear(); |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 422 | return Result; |
| 423 | } |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 424 | |
Benjamin Kramer | db534a4 | 2012-03-26 16:57:36 +0000 | [diff] [blame] | 425 | void CodeCompletionBuilder::AddTypedTextChunk(const char *Text) { |
| 426 | Chunks.push_back(Chunk(CodeCompletionString::CK_TypedText, Text)); |
| 427 | } |
| 428 | |
| 429 | void CodeCompletionBuilder::AddTextChunk(const char *Text) { |
| 430 | Chunks.push_back(Chunk::CreateText(Text)); |
| 431 | } |
| 432 | |
| 433 | void CodeCompletionBuilder::AddOptionalChunk(CodeCompletionString *Optional) { |
| 434 | Chunks.push_back(Chunk::CreateOptional(Optional)); |
| 435 | } |
| 436 | |
| 437 | void CodeCompletionBuilder::AddPlaceholderChunk(const char *Placeholder) { |
| 438 | Chunks.push_back(Chunk::CreatePlaceholder(Placeholder)); |
| 439 | } |
| 440 | |
| 441 | void CodeCompletionBuilder::AddInformativeChunk(const char *Text) { |
| 442 | Chunks.push_back(Chunk::CreateInformative(Text)); |
| 443 | } |
| 444 | |
| 445 | void CodeCompletionBuilder::AddResultTypeChunk(const char *ResultType) { |
| 446 | Chunks.push_back(Chunk::CreateResultType(ResultType)); |
| 447 | } |
| 448 | |
| 449 | void |
| 450 | CodeCompletionBuilder::AddCurrentParameterChunk(const char *CurrentParameter) { |
| 451 | Chunks.push_back(Chunk::CreateCurrentParameter(CurrentParameter)); |
| 452 | } |
| 453 | |
| 454 | void CodeCompletionBuilder::AddChunk(CodeCompletionString::ChunkKind CK, |
| 455 | const char *Text) { |
| 456 | Chunks.push_back(Chunk(CK, Text)); |
| 457 | } |
| 458 | |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 459 | void CodeCompletionBuilder::addParentContext(const DeclContext *DC) { |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 460 | if (DC->isTranslationUnit()) |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 461 | return; |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 462 | |
| 463 | if (DC->isFunctionOrMethod()) |
| 464 | return; |
| 465 | |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 466 | const NamedDecl *ND = dyn_cast<NamedDecl>(DC); |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 467 | if (!ND) |
| 468 | return; |
| 469 | |
Argyrios Kyrtzidis | 9d7c0fe | 2012-04-10 17:23:48 +0000 | [diff] [blame] | 470 | ParentName = getCodeCompletionTUInfo().getParentName(DC); |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 473 | void CodeCompletionBuilder::addBriefComment(StringRef Comment) { |
| 474 | BriefComment = Allocator.CopyString(Comment); |
| 475 | } |
| 476 | |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 477 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 478 | // Code completion overload candidate implementation |
| 479 | //===----------------------------------------------------------------------===// |
| 480 | FunctionDecl * |
| 481 | CodeCompleteConsumer::OverloadCandidate::getFunction() const { |
| 482 | if (getKind() == CK_Function) |
| 483 | return Function; |
| 484 | else if (getKind() == CK_FunctionTemplate) |
| 485 | return FunctionTemplate->getTemplatedDecl(); |
| 486 | else |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 487 | return nullptr; |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | const FunctionType * |
| 491 | CodeCompleteConsumer::OverloadCandidate::getFunctionType() const { |
| 492 | switch (Kind) { |
| 493 | case CK_Function: |
| 494 | return Function->getType()->getAs<FunctionType>(); |
| 495 | |
| 496 | case CK_FunctionTemplate: |
| 497 | return FunctionTemplate->getTemplatedDecl()->getType() |
| 498 | ->getAs<FunctionType>(); |
| 499 | |
| 500 | case CK_FunctionType: |
| 501 | return Type; |
| 502 | } |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 503 | |
| 504 | llvm_unreachable("Invalid CandidateKind!"); |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | //===----------------------------------------------------------------------===// |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 508 | // Code completion consumer implementation |
| 509 | //===----------------------------------------------------------------------===// |
| 510 | |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 511 | CodeCompleteConsumer::~CodeCompleteConsumer() = default; |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 512 | |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 513 | bool PrintingCodeCompleteConsumer::isResultFilteredOut(StringRef Filter, |
| 514 | CodeCompletionResult Result) { |
| 515 | switch (Result.Kind) { |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 516 | case CodeCompletionResult::RK_Declaration: |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 517 | return !(Result.Declaration->getIdentifier() && |
| 518 | Result.Declaration->getIdentifier()->getName().startswith(Filter)); |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 519 | case CodeCompletionResult::RK_Keyword: |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 520 | return !StringRef(Result.Keyword).startswith(Filter); |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 521 | case CodeCompletionResult::RK_Macro: |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 522 | return !Result.Macro->getName().startswith(Filter); |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 523 | case CodeCompletionResult::RK_Pattern: |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 524 | return !StringRef(Result.Pattern->getAsString()).startswith(Filter); |
| 525 | } |
Simon Pilgrim | e71a1f9 | 2016-07-27 16:41:56 +0000 | [diff] [blame] | 526 | llvm_unreachable("Unknown code completion result Kind."); |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 529 | void |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 530 | PrintingCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &SemaRef, |
Douglas Gregor | 00c37ef | 2010-08-11 21:23:17 +0000 | [diff] [blame] | 531 | CodeCompletionContext Context, |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 532 | CodeCompletionResult *Results, |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 533 | unsigned NumResults) { |
Douglas Gregor | 49f67ce | 2010-08-26 13:48:20 +0000 | [diff] [blame] | 534 | std::stable_sort(Results, Results + NumResults); |
| 535 | |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 536 | StringRef Filter = SemaRef.getPreprocessor().getCodeCompletionFilter(); |
| 537 | |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 538 | // Print the results. |
| 539 | for (unsigned I = 0; I != NumResults; ++I) { |
Vassil Vassilev | 644ea61 | 2016-07-27 14:56:59 +0000 | [diff] [blame] | 540 | if(!Filter.empty() && isResultFilteredOut(Filter, Results[I])) |
| 541 | continue; |
Douglas Gregor | 58acf32 | 2009-10-09 22:16:47 +0000 | [diff] [blame] | 542 | OS << "COMPLETION: "; |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 543 | switch (Results[I].Kind) { |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 544 | case CodeCompletionResult::RK_Declaration: |
Benjamin Kramer | b89514a | 2011-10-14 18:45:37 +0000 | [diff] [blame] | 545 | OS << *Results[I].Declaration; |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 546 | if (Results[I].Hidden) |
| 547 | OS << " (Hidden)"; |
Douglas Gregor | 3545ff4 | 2009-09-21 16:56:56 +0000 | [diff] [blame] | 548 | if (CodeCompletionString *CCS |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 549 | = Results[I].CreateCodeCompletionString(SemaRef, Context, |
| 550 | getAllocator(), |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 551 | CCTUInfo, |
| 552 | includeBriefComments())) { |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 553 | OS << " : " << CCS->getAsString(); |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 554 | if (const char *BriefComment = CCS->getBriefComment()) |
| 555 | OS << " : " << BriefComment; |
Douglas Gregor | fedc328 | 2009-09-18 22:15:54 +0000 | [diff] [blame] | 556 | } |
Ivan Donchevskii | b4670fc | 2018-05-25 12:56:26 +0000 | [diff] [blame] | 557 | for (const FixItHint &FixIt : Results[I].FixIts) { |
| 558 | const SourceLocation BLoc = FixIt.RemoveRange.getBegin(); |
| 559 | const SourceLocation ELoc = FixIt.RemoveRange.getEnd(); |
| 560 | |
| 561 | SourceManager &SM = SemaRef.SourceMgr; |
| 562 | std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc); |
| 563 | std::pair<FileID, unsigned> EInfo = SM.getDecomposedLoc(ELoc); |
| 564 | // Adjust for token ranges. |
| 565 | if (FixIt.RemoveRange.isTokenRange()) |
| 566 | EInfo.second += Lexer::MeasureTokenLength(ELoc, SM, SemaRef.LangOpts); |
| 567 | |
| 568 | OS << " (requires fix-it:" |
| 569 | << " {" << SM.getLineNumber(BInfo.first, BInfo.second) << ':' |
| 570 | << SM.getColumnNumber(BInfo.first, BInfo.second) << '-' |
| 571 | << SM.getLineNumber(EInfo.first, EInfo.second) << ':' |
| 572 | << SM.getColumnNumber(EInfo.first, EInfo.second) << "}" |
| 573 | << " to \"" << FixIt.CodeToInsert << "\")"; |
| 574 | } |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 575 | OS << '\n'; |
| 576 | break; |
| 577 | |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 578 | case CodeCompletionResult::RK_Keyword: |
Douglas Gregor | 52ce62f | 2010-01-13 23:24:38 +0000 | [diff] [blame] | 579 | OS << Results[I].Keyword << '\n'; |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 580 | break; |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 581 | |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 582 | case CodeCompletionResult::RK_Macro: |
Douglas Gregor | 52ce62f | 2010-01-13 23:24:38 +0000 | [diff] [blame] | 583 | OS << Results[I].Macro->getName(); |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 584 | if (CodeCompletionString *CCS |
Douglas Gregor | c3425b1 | 2015-07-07 06:20:19 +0000 | [diff] [blame] | 585 | = Results[I].CreateCodeCompletionString(SemaRef, Context, |
| 586 | getAllocator(), |
Dmitri Gribenko | 3292d06 | 2012-07-02 17:35:10 +0000 | [diff] [blame] | 587 | CCTUInfo, |
| 588 | includeBriefComments())) { |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 589 | OS << " : " << CCS->getAsString(); |
Douglas Gregor | f329c7c | 2009-10-30 16:50:04 +0000 | [diff] [blame] | 590 | } |
| 591 | OS << '\n'; |
| 592 | break; |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 593 | |
Eugene Zelenko | 711964d | 2018-02-20 02:16:28 +0000 | [diff] [blame] | 594 | case CodeCompletionResult::RK_Pattern: |
Douglas Gregor | 52ce62f | 2010-01-13 23:24:38 +0000 | [diff] [blame] | 595 | OS << "Pattern : " |
Douglas Gregor | 45f83ee | 2009-11-19 00:01:57 +0000 | [diff] [blame] | 596 | << Results[I].Pattern->getAsString() << '\n'; |
| 597 | break; |
| 598 | } |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 599 | } |
Douglas Gregor | 2436e71 | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 600 | } |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 601 | |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 602 | // This function is used solely to preserve the former presentation of overloads |
| 603 | // by "clang -cc1 -code-completion-at", since CodeCompletionString::getAsString |
| 604 | // needs to be improved for printing the newer and more detailed overload |
| 605 | // chunks. |
| 606 | static std::string getOverloadAsString(const CodeCompletionString &CCS) { |
| 607 | std::string Result; |
| 608 | llvm::raw_string_ostream OS(Result); |
| 609 | |
| 610 | for (auto &C : CCS) { |
| 611 | switch (C.Kind) { |
| 612 | case CodeCompletionString::CK_Informative: |
| 613 | case CodeCompletionString::CK_ResultType: |
| 614 | OS << "[#" << C.Text << "#]"; |
| 615 | break; |
| 616 | |
| 617 | case CodeCompletionString::CK_CurrentParameter: |
| 618 | OS << "<#" << C.Text << "#>"; |
| 619 | break; |
| 620 | |
| 621 | default: OS << C.Text; break; |
| 622 | } |
| 623 | } |
| 624 | return OS.str(); |
| 625 | } |
| 626 | |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 627 | void |
Daniel Dunbar | 242ea9a | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 628 | PrintingCodeCompleteConsumer::ProcessOverloadCandidates(Sema &SemaRef, |
| 629 | unsigned CurrentArg, |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 630 | OverloadCandidate *Candidates, |
| 631 | unsigned NumCandidates) { |
| 632 | for (unsigned I = 0; I != NumCandidates; ++I) { |
Douglas Gregor | f0f5198 | 2009-09-23 00:34:09 +0000 | [diff] [blame] | 633 | if (CodeCompletionString *CCS |
Douglas Gregor | b278aaf | 2011-02-01 19:23:04 +0000 | [diff] [blame] | 634 | = Candidates[I].CreateSignatureString(CurrentArg, SemaRef, |
Francisco Lopes da Silva | 0c010cd | 2015-01-28 14:17:22 +0000 | [diff] [blame] | 635 | getAllocator(), CCTUInfo, |
| 636 | includeBriefComments())) { |
| 637 | OS << "OVERLOAD: " << getOverloadAsString(*CCS) << "\n"; |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 638 | } |
| 639 | } |
Douglas Gregor | 05f477c | 2009-09-23 00:16:58 +0000 | [diff] [blame] | 640 | } |
Douglas Gregor | 9eb7701 | 2009-11-07 00:00:49 +0000 | [diff] [blame] | 641 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 642 | /// Retrieve the effective availability of the given declaration. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 643 | static AvailabilityResult getDeclAvailability(const Decl *D) { |
Douglas Gregor | 7b31682 | 2012-03-17 06:39:06 +0000 | [diff] [blame] | 644 | AvailabilityResult AR = D->getAvailability(); |
| 645 | if (isa<EnumConstantDecl>(D)) |
| 646 | AR = std::max(AR, cast<Decl>(D->getDeclContext())->getAvailability()); |
| 647 | return AR; |
| 648 | } |
| 649 | |
Erik Verbruggen | 2e657ff | 2011-10-06 07:27:49 +0000 | [diff] [blame] | 650 | void CodeCompletionResult::computeCursorKindAndAvailability(bool Accessible) { |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 651 | switch (Kind) { |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 652 | case RK_Pattern: |
| 653 | if (!Declaration) { |
| 654 | // Do nothing: Patterns can come with cursor kinds! |
| 655 | break; |
| 656 | } |
Adrian Prantl | f3b3ccd | 2017-12-19 22:06:11 +0000 | [diff] [blame] | 657 | LLVM_FALLTHROUGH; |
Douglas Gregor | 78254c8 | 2012-03-27 23:34:16 +0000 | [diff] [blame] | 658 | |
Douglas Gregor | 7b31682 | 2012-03-17 06:39:06 +0000 | [diff] [blame] | 659 | case RK_Declaration: { |
Douglas Gregor | f757a12 | 2010-08-23 23:00:57 +0000 | [diff] [blame] | 660 | // Set the availability based on attributes. |
Douglas Gregor | 7b31682 | 2012-03-17 06:39:06 +0000 | [diff] [blame] | 661 | switch (getDeclAvailability(Declaration)) { |
Douglas Gregor | 20b2ebd | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 662 | case AR_Available: |
| 663 | case AR_NotYetIntroduced: |
| 664 | Availability = CXAvailability_Available; |
| 665 | break; |
Douglas Gregor | f757a12 | 2010-08-23 23:00:57 +0000 | [diff] [blame] | 666 | |
Douglas Gregor | 20b2ebd | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 667 | case AR_Deprecated: |
| 668 | Availability = CXAvailability_Deprecated; |
| 669 | break; |
| 670 | |
| 671 | case AR_Unavailable: |
| 672 | Availability = CXAvailability_NotAvailable; |
| 673 | break; |
| 674 | } |
| 675 | |
Eugene Zelenko | 1e95bc0 | 2018-04-05 22:15:42 +0000 | [diff] [blame] | 676 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration)) |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 677 | if (Function->isDeleted()) |
Douglas Gregor | f757a12 | 2010-08-23 23:00:57 +0000 | [diff] [blame] | 678 | Availability = CXAvailability_NotAvailable; |
Douglas Gregor | 09c0eb1 | 2010-09-03 23:30:36 +0000 | [diff] [blame] | 679 | |
| 680 | CursorKind = getCursorKindForDecl(Declaration); |
Douglas Gregor | deafd0b | 2011-12-27 22:43:10 +0000 | [diff] [blame] | 681 | if (CursorKind == CXCursor_UnexposedDecl) { |
Douglas Gregor | f610267 | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 682 | // FIXME: Forward declarations of Objective-C classes and protocols |
| 683 | // are not directly exposed, but we want code completion to treat them |
| 684 | // like a definition. |
Douglas Gregor | deafd0b | 2011-12-27 22:43:10 +0000 | [diff] [blame] | 685 | if (isa<ObjCInterfaceDecl>(Declaration)) |
| 686 | CursorKind = CXCursor_ObjCInterfaceDecl; |
Douglas Gregor | f610267 | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 687 | else if (isa<ObjCProtocolDecl>(Declaration)) |
| 688 | CursorKind = CXCursor_ObjCProtocolDecl; |
Douglas Gregor | deafd0b | 2011-12-27 22:43:10 +0000 | [diff] [blame] | 689 | else |
| 690 | CursorKind = CXCursor_NotImplemented; |
| 691 | } |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 692 | break; |
Douglas Gregor | 7b31682 | 2012-03-17 06:39:06 +0000 | [diff] [blame] | 693 | } |
Douglas Gregor | b14904c | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 694 | |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 695 | case RK_Macro: |
John McCall | 276321a | 2010-08-25 06:19:51 +0000 | [diff] [blame] | 696 | case RK_Keyword: |
Benjamin Kramer | c25c0b9 | 2012-05-20 14:19:46 +0000 | [diff] [blame] | 697 | llvm_unreachable("Macro and keyword kinds are handled by the constructors"); |
Douglas Gregor | 8e984da | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 698 | } |
Erik Verbruggen | 2e657ff | 2011-10-06 07:27:49 +0000 | [diff] [blame] | 699 | |
| 700 | if (!Accessible) |
| 701 | Availability = CXAvailability_NotAccessible; |
Douglas Gregor | 8e984da | 2010-08-04 16:47:14 +0000 | [diff] [blame] | 702 | } |
Douglas Gregor | f09935f | 2009-12-01 05:55:20 +0000 | [diff] [blame] | 703 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 704 | /// Retrieve the name that should be used to order a result. |
Douglas Gregor | 0de55ce | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 705 | /// |
| 706 | /// If the name needs to be constructed as a string, that string will be |
| 707 | /// saved into Saved and the returned StringRef will refer to it. |
Sam McCall | 1102a86 | 2017-11-15 09:15:06 +0000 | [diff] [blame] | 708 | StringRef CodeCompletionResult::getOrderedName(std::string &Saved) const { |
| 709 | switch (Kind) { |
| 710 | case RK_Keyword: |
| 711 | return Keyword; |
| 712 | case RK_Pattern: |
| 713 | return Pattern->getTypedText(); |
| 714 | case RK_Macro: |
| 715 | return Macro->getName(); |
| 716 | case RK_Declaration: |
Douglas Gregor | 0de55ce | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 717 | // Handle declarations below. |
| 718 | break; |
| 719 | } |
| 720 | |
Sam McCall | 1102a86 | 2017-11-15 09:15:06 +0000 | [diff] [blame] | 721 | DeclarationName Name = Declaration->getDeclName(); |
Douglas Gregor | 0de55ce | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 722 | |
| 723 | // If the name is a simple identifier (by far the common case), or a |
| 724 | // zero-argument selector, just return a reference to that identifier. |
| 725 | if (IdentifierInfo *Id = Name.getAsIdentifierInfo()) |
| 726 | return Id->getName(); |
| 727 | if (Name.isObjCZeroArgSelector()) |
| 728 | if (IdentifierInfo *Id |
| 729 | = Name.getObjCSelector().getIdentifierInfoForSlot(0)) |
| 730 | return Id->getName(); |
| 731 | |
| 732 | Saved = Name.getAsString(); |
| 733 | return Saved; |
| 734 | } |
| 735 | |
| 736 | bool clang::operator<(const CodeCompletionResult &X, |
| 737 | const CodeCompletionResult &Y) { |
| 738 | std::string XSaved, YSaved; |
Sam McCall | 1102a86 | 2017-11-15 09:15:06 +0000 | [diff] [blame] | 739 | StringRef XStr = X.getOrderedName(XSaved); |
| 740 | StringRef YStr = Y.getOrderedName(YSaved); |
Douglas Gregor | 0de55ce | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 741 | int cmp = XStr.compare_lower(YStr); |
| 742 | if (cmp) |
| 743 | return cmp < 0; |
| 744 | |
Douglas Gregor | 49f67ce | 2010-08-26 13:48:20 +0000 | [diff] [blame] | 745 | // If case-insensitive comparison fails, try case-sensitive comparison. |
| 746 | cmp = XStr.compare(YStr); |
| 747 | if (cmp) |
| 748 | return cmp < 0; |
Douglas Gregor | 0de55ce | 2010-08-25 18:41:16 +0000 | [diff] [blame] | 749 | |
| 750 | return false; |
| 751 | } |