Clang-hacking-notes-for-wip-clang-branch: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Add "cleanup" tag)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[Category:Tools::Qt Creator:Branches]]
[[Category:Tools::Qt Creator:Branches]]



Revision as of 15:29, 3 March 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

Code Completion

GCC C++ frontend is a parser that also generates code. Clang is quite similar: it is parser that also calls various actions along with creating AST. Completion implemented via inserting virtual token, on which parser calls one of Sema class methods, implemented in SemaCodeComplete.cpp.

Main pros of this approach is context-sensitive completion: parser will not produce any completion results if it doesn't expect completion token at given point, otherwise it will call one of ~40 methods from SemaCodeComplete.cpp, choice depends on context. There are declarations of some code complete methods, parser calls one of them:

 void CodeCompleteTag(Scope *S, unsigned TagSpec);
 void CodeCompleteTypeQualifiers(DeclSpec &DS);
 void CodeCompleteCase(Scope *S);
 void CodeCompleteCall(Scope *S, Expr '''Fn, ArrayRef<Expr'''> Args);
 void CodeCompleteInitializer(Scope *S, Decl *D);
 void CodeCompleteReturn(Scope *S);
 void CodeCompleteAfterIf(Scope *S);
 void CodeCompleteAssignmentRHS(Scope *S, Expr '''LHS);

Additional notes: "Builder pattern":http://en.wikipedia.org/wiki/Builder_pattern used to create completion results, see ResultBuilder class.