aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Expand)Author
2010-10-22Teach clang_getCursorReferenced() and friends about BlockDeclRefExprs.Douglas Gregor
2010-10-21Improve the implementation of libclang's token-annotation logic forDouglas Gregor
2010-10-20Extend the preprocessing record and libclang with support forDouglas Gregor
2010-10-20Call clang_disposeTokens() when we are done with the set of tokens.Ted Kremenek
2010-10-18Introduce code completion results for Objective-C methods, both whenDouglas Gregor
2010-10-18Do not use absolute path on the clang++ symlink.Oscar Fuentes
2010-10-17Use a script for creating the clang++ executable.Oscar Fuentes
2010-10-16Tweak scan-build to work with naked clang commands.Ted Kremenek
2010-10-15Add clang_getLocationForOffset() to libclang, for gives a source location fro...David Chisnall
2010-10-14Eliminate usage of ObjCSuperExpr used forFariborz Jahanian
2010-10-13Don't claim that things that are Objective-C keywords if preceded by an @ are...David Chisnall
2010-10-13Call InitSections when assembling. This makes clang's output match that ofRafael Espindola
2010-10-12This patch remove the Win32 XFAIL from remap-complete.cFrancois Pichet
2010-10-12When we load an ASTUnit from command-line arguments, hold on to theDouglas Gregor
2010-10-11Eliminate CIndexer::getClangPath(), since libclang no longer dependsDouglas Gregor
2010-10-11Eliminate -fdiagnostics-binary and all of the infrastructure forDouglas Gregor
2010-10-11Eliminate clang_codeComplete(). libclang clients should be using theDouglas Gregor
2010-10-11Switch c-index-test from clang_codeComplete() over toDouglas Gregor
2010-10-11Eliminate clang_setUseExternalASTGeneration() from libclang. BetweenDouglas Gregor
2010-10-08Fix the mapping of vertical-space cursor kinds to produce a newline,Douglas Gregor
2010-10-08libclang: Disable LLVM pretty stack trace functionality, which inadvertentlyDaniel Dunbar
2010-10-05Fix a marvelous chained AST writing bug, where we end up with theDouglas Gregor
2010-10-02Introduce a new libclang function, clang_getCursorDisplayName(), whichDouglas Gregor
2010-10-02Teach clang_getCursorType() about base specifiers and other referencesDouglas Gregor
2010-10-02Don't add -fno-spell-checking in libclang if a spell-checking-related argumen...Douglas Gregor
2010-10-02Provide proper source location and range information for C++ baseDouglas Gregor
2010-10-01Teach clang_getCursorReferenced() about Objective-C property referenceDouglas Gregor
2010-10-01Extend libclang with an API that determines, given a C++ virtualDouglas Gregor
2010-09-30perform_code_completion(): fix type declaration for TU.Dawn Perchik
2010-09-30c-index-test: Run inside a separate thread iff we have pthread support, toDaniel Dunbar
2010-09-30Updated scan-build:Tom Care
2010-09-29Modified the ccc-analyzer script to print the compiler command when log level...Tom Care
2010-09-27Enable caching of global code completion results in the suggestedDouglas Gregor
2010-09-24Teach libclang to enable multithreading in LLVM, since libclang clients are l...Douglas Gregor
2010-09-23Add some missing concurrency checks into libclangDouglas Gregor
2010-09-22Implement libclang API functions for retrieving the lexical andDouglas Gregor
2010-09-21Correctly register the class extension as the lexical DeclContext for ObjC me...Ted Kremenek
2010-09-21Fix indentation.Ted Kremenek
2010-09-21Check for null ObjCInterfaceDecls returned from getClassInterface() when gene...Ted Kremenek
2010-09-20Introduce a simple, substitution-based compression scheme for USRs, soDouglas Gregor
2010-09-17When traversing an InitListExpr, there may not be a syntactic form;Douglas Gregor
2010-09-16Fix a silly typo and its pasteo. Thanks to Francois Pichet for noticing my mi...Douglas Gregor
2010-09-16build: Add support for a CLANG_ORDER_FILE build variable to specify the path toDaniel Dunbar
2010-09-14I will not mix declaration and statements in C90.Douglas Gregor
2010-09-13Revert "CMake: Update to use standard CMake dependency tracking facilities in...Michael J. Spencer
2010-09-13Introduce a new kind of cursor into libclang, which covers a referenceDouglas Gregor
2010-09-10Fix my silly sorting predicate. I hate integer-to-bool conversionsDouglas Gregor
2010-09-10Driver: Set TOOL_NO_EXPORTS when building a "production" compiler, we don'tDaniel Dunbar
2010-09-10CMake: Update to use standard CMake dependency tracking facilities insteadMichael J. Spencer
2010-09-10Define and implement CXXNoexceptExpr. Create it in Sema.Sebastian Redl