Lines Matching refs:ImportingInstance

1127 compileModuleImpl(CompilerInstance &ImportingInstance, SourceLocation ImportLoc,  in compileModuleImpl()  argument
1138 if (ImportingInstance.getModuleCache().isPCMFinal(ModuleFileName)) {
1139 ImportingInstance.getDiagnostics().Report(
1147 std::make_shared<CompilerInvocation>(ImportingInstance.getInvocation());
1168 ImportingInstance.getInvocation().getLangOpts()->ModuleName;
1177 = ImportingInstance.getInvocation().getPreprocessorOpts();
1200 assert(ImportingInstance.getInvocation().getModuleHash() ==
1207 CompilerInstance Instance(ImportingInstance.getPCHContainerOperations(),
1208 &ImportingInstance.getModuleCache());
1213 ImportingInstance.getDiagnosticClient()),
1218 Instance.setFileManager(&ImportingInstance.getFileManager());
1222 ImportingInstance.getSourceManager().getModuleBuildStack());
1224 FullSourceLoc(ImportLoc, ImportingInstance.getSourceManager()));
1229 Instance.setModuleDepCollector(ImportingInstance.getModuleDepCollector());
1232 ImportingInstance.getDiagnostics().Report(ImportLoc,
1249 ImportingInstance.getDiagnostics().Report(ImportLoc,
1287 static bool compileModule(CompilerInstance &ImportingInstance, in compileModule() argument
1290 InputKind IK(getLanguageFromOptions(ImportingInstance.getLangOpts()), in compileModule()
1295 = ImportingInstance.getPreprocessor().getHeaderSearchInfo().getModuleMap(); in compileModule()
1303 ModuleMapFile, ImportingInstance.getFileManager())) in compileModule()
1308 ImportingInstance, ImportLoc, Module->getTopLevelModuleName(), in compileModule()
1326 ImportingInstance, ImportLoc, Module->getTopLevelModuleName(), in compileModule()
1342 if (ImportingInstance.getFrontendOpts().GenerateGlobalModuleIndex) { in compileModule()
1343 ImportingInstance.setBuildGlobalModuleIndex(true); in compileModule()
1350 static bool readASTAfterCompileModule(CompilerInstance &ImportingInstance, in readASTAfterCompileModule() argument
1355 DiagnosticsEngine &Diags = ImportingInstance.getDiagnostics(); in readASTAfterCompileModule()
1363 ImportingInstance.getASTReader()->ReadAST( in readASTAfterCompileModule()
1385 static bool compileModuleAndReadASTImpl(CompilerInstance &ImportingInstance, in compileModuleAndReadASTImpl() argument
1390 if (!compileModule(ImportingInstance, ModuleNameLoc, Module, in compileModuleAndReadASTImpl()
1392 ImportingInstance.getDiagnostics().Report(ModuleNameLoc, in compileModuleAndReadASTImpl()
1398 return readASTAfterCompileModule(ImportingInstance, ImportLoc, ModuleNameLoc, in compileModuleAndReadASTImpl()
1412 CompilerInstance &ImportingInstance, SourceLocation ImportLoc, in compileModuleAndReadASTBehindLock() argument
1414 DiagnosticsEngine &Diags = ImportingInstance.getDiagnostics(); in compileModuleAndReadASTBehindLock()
1438 return compileModuleAndReadASTImpl(ImportingInstance, ImportLoc, in compileModuleAndReadASTBehindLock()
1465 if (readASTAfterCompileModule(ImportingInstance, ImportLoc, ModuleNameLoc, in compileModuleAndReadASTBehindLock()
1481 static bool compileModuleAndReadAST(CompilerInstance &ImportingInstance, in compileModuleAndReadAST() argument
1485 return ImportingInstance.getInvocation() in compileModuleAndReadAST()
1488 ? compileModuleAndReadASTBehindLock(ImportingInstance, ImportLoc, in compileModuleAndReadAST()
1491 : compileModuleAndReadASTImpl(ImportingInstance, ImportLoc, in compileModuleAndReadAST()