- f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
- dc58aa7 Thread a TargetInfo through to the module map; we'll need it for by Douglas Gregor · 13 years ago
- c5b2e58 Implement code completion support for module import declarations, e.g., by Douglas Gregor · 13 years ago
- e434ec7 Rework HeaderSearch's interface for getting a module from a name and by Douglas Gregor · 13 years ago
- a1f1fad Introduce module attributes into the module map grammar, along with a by Douglas Gregor · 13 years ago
- 7530c03 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 13 years ago
- a8c6fea When inferring a module for a framework, first determine whether that by Douglas Gregor · 13 years ago
- 51f564f Implement support for module requirements, which indicate the language by Douglas Gregor · 13 years ago
- efda0e8 When performing subframework header lookup, don't search for by Douglas Gregor · 13 years ago
- cb381ea Move a free function from the Frontend library into the Lex library as by Chandler Carruth · 13 years ago
- 5e3f922 Keep track of import dependencies between submodules within the module by Douglas Gregor · 13 years ago
- 4813442c Make sure we pick up module_private.map when loading a module.map file. by Douglas Gregor · 13 years ago
- 587986e Implement basic support for private headers in frameworks. In essence, by Douglas Gregor · 13 years ago
- ac252a3 When inferring a module map for a framework, infer subframework by Douglas Gregor · 13 years ago
- 0983392 When suggesting a module import for a #include or #import, suggest the by Douglas Gregor · 13 years ago
- 1a4761e Promote ModuleMap::Module to a namespace-scope class in the Basic by Douglas Gregor · 13 years ago
- a4d36a6 When attempting to load a module that is not in the module cache, by Douglas Gregor · 13 years ago
- 1c2e933 Allow preprocessor callbacks to recover from a "file not found" error, by Douglas Gregor · 13 years ago
- c69c42e When making a suggestion regarding which module to load rather than by Douglas Gregor · 13 years ago
- 2821c7f When we're loading a framework header, first try to turn the framework by Douglas Gregor · 13 years ago
- db1cde7 Add support for building a module from a module map to the -cc1 by Douglas Gregor · 13 years ago
- 2669797 Implement a minor optimization when loading module maps to satisfy a by Douglas Gregor · 13 years ago
- cf70d78 When searching for a module, speculatively load module maps to see if by Douglas Gregor · 13 years ago
- 484535e Teach the search for modules to consider modules described by a module by Douglas Gregor · 13 years ago
- 65f3b5e Wire up the mapping from header files mentioned in module maps over to by Douglas Gregor · 13 years ago
- a30cfe5 Introduce basic support for parsing module map files. by Douglas Gregor · 13 years ago
- 8e23806 I predict that HeaderSearch will need the ability to generate by Douglas Gregor · 13 years ago
- 8f8d581 When we load header file information from the external source (i.e., by Douglas Gregor · 13 years ago
- 0fd787b Tweak the module auto-import heuristics a bit by Douglas Gregor · 13 years ago
- fba18aa Add an experimental flag -fauto-module-import that automatically turns by Douglas Gregor · 13 years ago
- 6e975c4 For modules, use a hash of the compiler version, language options, and by Douglas Gregor · 13 years ago
- 21cae20 When an import statement fails to find a module in the module cache, by Douglas Gregor · 13 years ago
- 9a6da69 Introduce a cc1-level option to provide the path to the module cache, by Douglas Gregor · 13 years ago
- 2c7b780 Use the "Bar.h" -> <Foo/Bar.h> remapping for index header maps only as by Douglas Gregor · 13 years ago
- 65e02fa Introduce the "-index-header-map" option, to give special semantics by Douglas Gregor · 13 years ago
- eabea45 Change HeaderSearch::getTotalMemory() to use llvm::capacity_in_bytes(). by Ted Kremenek · 13 years ago
- d1194fb clang_getCXTUResourceUsage: report memory used by HeaderSearch. by Ted Kremenek · 13 years ago
- 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
- a6e023c Fix up dependency file name printing to more closely match that of gcc, including fixing a nasty recent regression that could make us print "/foo.h" with a command-line including "-I ./". by Eli Friedman · 13 years ago
- 74a5fd8 Make it possible for external tools to distinguish between paths that come from -I and paths that come from -system. Patch from Paul Holden! by Nico Weber · 13 years ago
- dd3e554 Introduce a new libclang API, clang_isFileMultipleIncludeGuarded(), by Douglas Gregor · 14 years ago
- 520a99f Use DirectoryLookup::getName() rather than getDir()->getName() in a context where we don't know whether we have a normal directory by Douglas Gregor · 14 years ago
- 7412494 To be able to replay compilations we need to accurately remodel how by Manuel Klimek · 14 years ago
- 3cd0128 Having FileManager::getFile always open the file, brought much consternation and leaking of file descriptors. by Argyrios Kyrtzidis · 14 years ago
- b5142bb Add a 'RawPath' parameter to the PPCallbacks interface. This allows by Chandler Carruth · 14 years ago
- cfbf1c7 Implement two related optimizations that make de-serialization of by Douglas Gregor · 14 years ago
- 32bef4e Replace all uses of PathV1::exists with PathV2::fs::exists. by Michael J. Spencer · 14 years ago
- 256053b Replace all uses of PathV1::isAbsolute with PathV2::is_{absolute,relative}. by Michael J. Spencer · 14 years ago
- 03013fa Merge System into Support. by Michael J. Spencer · 14 years ago
- 39b49bc now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 14 years ago
- 6538227 remove old compatibility APIs, use StringRef versions instead. by Chris Lattner · 14 years ago
- 389db16 Implement -working-directory. by Argyrios Kyrtzidis · 14 years ago
- 10fe93d Revert r110440, the fix for PR4897. Chris claims to have a better way. by Douglas Gregor · 14 years ago
- 91db30a Fix the #include search path when reading from stdin, from Jon Simons! by Douglas Gregor · 14 years ago
- a139481 stringref'ize a bunch of filename handling logic. Much by Chris Lattner · 15 years ago
- 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
- b1526f3 use the new Path::isAbsolute function, fixing a fixme. Patch by Gregory Curfman! by Chris Lattner · 15 years ago
- 8c5a760 Lazily load the controlling macros for all of the headers known in the by Douglas Gregor · 16 years ago
- 83d63c7 Add PCH support for #import. by Steve Naroff · 16 years ago
- 3daed52 improve compatibility with GCC 4.4, patch by Michel Salim (PR3697) by Chris Lattner · 16 years ago
- bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Lex/HeaderSearch.cpp]
- c9dde4f clarify comment, this is undefined behavior in any case, even if it only by Chris Lattner · 17 years ago
- ca63fa0 Two more Windows-related fixes: by Ted Kremenek · 17 years ago
- 9415a0c Fix PR1969. stdin has no FileEntry. by Chris Lattner · 17 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
- 1bfd4a6 Start reading the headermap header, drop the 'errorstr' argument to by Chris Lattner · 17 years ago
- 3af66a9 Sink getName into DirectoryLookup to simplify the client in clang. by Chris Lattner · 17 years ago
- b09e71f finish stubbing out support for HeaderMap. Now we just need an implementation! by Chris Lattner · 17 years ago
- afded5b refactor an better comment framework lookup code. This moves it from by Chris Lattner · 17 years ago
- df77233 as it turns out, frameworks and headermaps are orthogonal. Make this so in by Chris Lattner · 17 years ago
- 822da61 Step #1 in adding headermap support to clang. by Chris Lattner · 17 years ago
- c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
- 9c46de4 add a hasMacroDefinition() method to IdentifierInfo, strength reduce a by Chris Lattner · 17 years ago
- 9960ae8 Implement a simple cache in headersearch. This speeds up by Chris Lattner · 17 years ago
- 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago