aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/ASTUnit.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-11-03Introduce module file extensions to piggy-back data onto module files.Douglas Gregor1-3/+4
2015-10-20Roll-back r250822.Angel Garcia Gomez1-1/+1
2015-10-20Apply modernize-use-default to clang.Angel Garcia Gomez1-1/+1
2015-10-06Fix Clang-tidy modernize-use-nullptr warnings in source directories; other mi...Hans Wennborg1-6/+6
2015-10-06[Tooling] Reuse FileManager in ASTUnit.Benjamin Kramer1-13/+9
2015-08-27Add a -gmodules option to the driver and a -dwarf-ext-refs to cc1Adrian Prantl1-5/+5
2015-07-25[Modules] Wrap the main ModuleManager visitor in a function_ref.Benjamin Kramer1-29/+19
2015-07-17Make the clang module container format selectable from the command line.Adrian Prantl1-3/+3
2015-07-07[libclang] Replace ObjC generic parameters in code-completion results.Douglas Gregor1-3/+4
2015-06-22Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").Alexander Kornienko1-3/+3
2015-06-22Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-3/+3
2015-06-20Introduce a PCHContainerOperations interface (NFC).Adrian Prantl1-42/+67
2015-05-29Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial typesBenjamin Kramer1-1/+1
2015-04-10Return a pointer instead of having a pointer outparam and a bool return.Rafael Espindola1-3/+3
2015-03-18Remove many superfluous SmallString::str() calls.Yaron Keren1-3/+3
2015-03-14[modules] Teach the AST reader to handle the case of importing a moduleChandler Carruth1-2/+2
2015-03-03[ASTUnit] Fix crash when trying to load a module file via ASTUnit::LoadFromAS...Argyrios Kyrtzidis1-5/+7
2015-02-25Revert "Wrap clang module files in a Mach-O, ELF, or COFF container."Adrian Prantl1-16/+2
2015-02-25Wrap clang module files in a Mach-O, ELF, or COFF container.Adrian Prantl1-2/+16
2015-02-24Revert "Wrap clang module files in a Mach-O, ELF, or COFF container."Adrian Prantl1-16/+2
2015-02-24Wrap clang module files in a Mach-O, ELF, or COFF container.Adrian Prantl1-2/+16
2015-02-21Revert "Wrap clang module files in a Mach-O, ELF, or COFF container."Adrian Prantl1-16/+2
2015-02-20Wrap clang module files in a Mach-O, ELF, or COFF container.Adrian Prantl1-2/+16
2015-02-20Revert "Wrap clang module files in a Mach-O, ELF, or COFF container."Adrian Prantl1-16/+2
2015-02-20Wrap clang module files in a Mach-O, ELF, or COFF container.Adrian Prantl1-2/+16
2015-02-20Revert "Wrap clang module files in a Mach-O, ELF, or COFF container."Adrian Prantl1-16/+2
2015-02-20Wrap clang module files in a Mach-O, ELF, or COFF container.Adrian Prantl1-2/+16
2015-02-06ASTUnit: Fix a name clash in GCC builds.Benjamin Kramer1-2/+2
2015-02-06ASTUnit: Use range-based for loops.Benjamin Kramer1-91/+69
2015-02-06Update APIs that return a pair of iterators to return an iterator_range instead.Benjamin Kramer1-8/+6
2014-11-17Make DiagnosticsEngine::takeClient return std::unique_ptr<>Alexander Kornienko1-6/+6
2014-10-31[libclang] Disable spell-checking and warnings during code-completion since t...Argyrios Kyrtzidis1-0/+4
2014-10-31[modules] When a .pcm file is explicitly built separately from the translationRichard Smith1-2/+2
2014-10-26Make VFS and FileManager match the current MemoryBuffer API.Benjamin Kramer1-1/+6
2014-10-22[modules] Initial support for explicitly loading .pcm files.Richard Smith1-1/+2
2014-10-15Frontend: Don't accept null DiagnosticsEngines when building ASTUnitsJustin Bogner1-17/+4
2014-10-14Frontend: Remove some unused arguments in ASTUnit (NFC)Justin Bogner1-5/+4
2014-10-03ASTUnit: Replace out parameter with return value, we have NRVO for this.Benjamin Kramer1-22/+22
2014-09-10Unique_ptrify PPCallbacks ownership.Craig Topper1-4/+7
2014-08-29Improve unique_ptr-y ownership in ASTUnit::ComputePreambleDavid Blaikie1-47/+29
2014-08-28Don't create a null reference in ASTUnit::LoadFromCommandLine.Alexey Samsonov1-2/+3
2014-08-27Update for LLVM api change.Rafael Espindola1-9/+6
2014-08-26Return a std::unique_ptr from getBufferForFile. NFC.Rafael Espindola1-5/+5
2014-08-26Return a std::unique_ptr from getBufferForFile. NFC.Rafael Espindola1-1/+1
2014-08-24Frontend: unique_ptr-ifyDylan Noblesmith1-4/+4
2014-08-18return a std::unique_ptr from getMainBufferWithPrecompiledPreamble. NFC.Rafael Espindola1-19/+22
2014-08-18Simplify ASTUnit::Parse a bit by passing a std::unique_ptr to it.Rafael Espindola1-28/+19
2014-08-13Small cleanup: Don't duplicate default behavior.Rafael Espindola1-2/+2
2014-08-13Use std::unique_ptr to simplify memory management a bit.Rafael Espindola1-12/+6
2014-08-12Use StringRef instead of MemoryBuffer&.Rafael Espindola1-2/+2