This patch enables explicitly building inferred modules.
Effectively a cherry-pick of https://github.com/apple/llvm-project/pull/699 authored by @Bigcheese with libclang changes omitted and adapted to use the new full canonical command-line clang-scan-deps produces since D100534.
Contains the following changes:
- [Clang][ScanDeps] Ignore __inferred_module.map dependency.
- This shows up with inferred modules, but it doesn't exist on disk, so don't report it as a dependency.
- [Clang] Fix the header paths in clang::Module for inferred modules.
- The UmbrellaAsWritten and NameAsWritten fields in clang::Module are a lie for framework modules. For those they actually are the path to the header or umbrella relative to the clang::Module::Directory.
- The exception to this case is for inferred modules. Here it actually is the name as written, because we print out the module and read it back in when implicitly building modules. This causes a problem when explicitly building an inferred module, as we skip the printing out step.
- In order to fix this issue this patch adds a new field for the path we want to use in getInputBufferForModule. It also makes NameAsWritten actually be the name written in the module map file (or that would be, in the case of an inferred module).
- [Clang] Allow explicitly building an inferred module.
- Building the actual module still fails, but make sure it fails for the right reason.
- [Clang][ScanDeps] Use the module map a module was inferred from for inferred modules.
Not sure what's the best way to write/read the two strings (NameAsWritten, PathRelativeToRootModuleDirectory). Can we put them into a single blob and separate them with \0?