aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Lex/ModuleMap.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-01-26<limits.h> includes <linux/limits.h> on Linux, no need to special-case itDmitri Gribenko1-3/+1
2013-01-26Since we're stuck with realpath for the header <-> module mapping,Douglas Gregor1-38/+21
2013-01-22Fix compilation on Linux, which defines PATH_MAX in a weird place,Douglas Gregor1-0/+5
2013-01-14Infer "link" lines for top-level frameworks. Essentially, a frameworkDouglas Gregor1-0/+30
2013-01-14Implement parsing, AST, (de-)serialization, and placeholder globalDouglas Gregor1-3/+41
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko1-6/+5
2013-01-10Rework the realpath nonsense for framework lookups to deal moreDouglas Gregor1-5/+22
2013-01-04realpath'ify the mapping from header includes to module imports.Douglas Gregor1-0/+13
2012-12-20Revert r170500. It over-zealously converted *ALL* things named Attributes, wh...Bill Wendling1-6/+6
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling1-6/+6
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-5/+5
2012-11-15If an excluded header does not exist, just ignore itDouglas Gregor1-1/+3
2012-11-06Remove C++11-isms I just introduced in r167482Douglas Gregor1-3/+3
2012-11-06Introduce inferred framework modules into the module map file,Douglas Gregor1-84/+236
2012-10-23Make DiagnosticOptions intrusively reference-counted, and make sureDouglas Gregor1-1/+2
2012-10-15Teach TargetInfo to hold on to the TargetOptions with which it wasDouglas Gregor1-11/+9
2012-10-15Introduce the notion of excluded headers into the module mapDouglas Gregor1-30/+46
2012-10-12Sanitize the names of modules determined based on the names of headersDouglas Gregor1-6/+67
2012-10-05[Modules] Introduce Module::TopHeaders which is a set of top-level headersArgyrios Kyrtzidis1-0/+1
2012-09-27Following up on r164620, cope with symlinking from an embeddedDouglas Gregor1-1/+30
2012-03-29Make ModuleMapParser own its TargetInfo, so it doesn't get leaked.Benjamin Kramer1-2/+2
2012-03-06User-defined literals: reject string and character UDLs in all places where theRichard Smith1-0/+6
2012-02-20Basic: import IntrusiveRefCntPtr<> into clang namespaceDylan Noblesmith1-2/+2
2012-02-06Move instantiateTemplateAttribute into the sema namespace, make helpers static.Benjamin Kramer1-1/+2
2012-02-05Basic: import SmallString<> into clang namespaceDylan Noblesmith1-6/+6
2012-02-02Back out my heinous hack that tricked the module generation mechanismDouglas Gregor1-5/+52
2012-01-30Thread a TargetInfo through to the module map; we'll need it forDouglas Gregor1-3/+10
2012-01-27Introduce module attributes into the module map grammar, along with aDouglas Gregor1-7/+101
2012-01-17Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie1-2/+0
2012-01-13Don't infer a submodule for a framework's private header, at least for now.Douglas Gregor1-14/+1
2012-01-13Revert previous commit. Something has gone wonky with my local configurationDouglas Gregor1-1/+0
2012-01-13When inferring a module map for a framework, add the 'private'Douglas Gregor1-0/+1
2012-01-06When inferring a submodule ID during module creation, look up theDouglas Gregor1-5/+16
2012-01-05If we already have a definition for a top-level module that we deserialized f...Douglas Gregor1-0/+13
2012-01-04Store the submodules of a module in source order, as they are storedDouglas Gregor1-25/+11
2011-12-31Implement support for module requirements, which indicate the languageDouglas Gregor1-6/+134
2011-12-12Set umbrella directory correctly when we infer a framework moduleDouglas Gregor1-1/+1
2011-12-09Implement the notion of umbrella directories, which implicity coverDouglas Gregor1-67/+33
2011-12-08Implement umbrella directories for modules, which are similar toDouglas Gregor1-10/+73
2011-12-08Tweak the syntax of umbrella headers, so that "umbrella" is treated asDouglas Gregor1-101/+36
2011-12-08Within the module representation, generalize the notion of an umbrellaDouglas Gregor1-7/+7
2011-12-08Convert paths to native format before constructing aDouglas Gregor1-5/+12
2011-12-07Implement inference for the "Private" submodule corresponding toDouglas Gregor1-5/+51
2011-12-07Implement basic support for private headers in frameworks. In essence,Douglas Gregor1-20/+108
2011-12-06Remove misleading error messageDouglas Gregor1-2/+1
2011-12-06When inferring a module map for a framework, infer subframeworkDouglas Gregor1-9/+33
2011-12-06Allow inferred submodules for any (sub)module that has an umbrella headerDouglas Gregor1-9/+8
2011-12-06Implement modules support for subframeworks (aka embeddedDouglas Gregor1-19/+39
2011-12-06Minor tweak to prepare for submodules with umbrella headers. No actualDouglas Gregor1-7/+13
2011-12-06Implement inferred submodules support, which (when requested)Douglas Gregor1-30/+92