Searched refs:TU (Results 1 - 24 of 24) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp117 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager& mgr, argument
120 CG.addToCallGraph(const_cast<TranslationUnitDecl*>(TU));
137 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager& mgr, argument
140 CG.addToCallGraph(const_cast<TranslationUnitDecl*>(TU));
165 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU, argument
H A DCheckerDocumentation.cpp179 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU, argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DASTMerge.cpp59 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl(); local
60 for (DeclContext::decl_iterator D = TU->decls_begin(),
61 DEnd = TU->decls_end();
H A DCompilerInstance.cpp1387 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); local
1388 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
1391 TU->addDecl(ImportD);
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1421 APInt TU(APInt::getSignedMaxValue(Bits));
1430 TU = minAPInt(TU, floorOfQuotient(UM - X, TMUL));
1431 DEBUG(dbgs() << "\t TU = " << TU << "\n");
1435 TU = minAPInt(TU, floorOfQuotient(-X, TMUL));
1436 DEBUG(dbgs() << "\t TU = " << TU << "\n");
1449 TU
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang-c/
H A DIndex.h186 * TU = clang_createTranslationUnit(Idx, "IndexTest.pch");
189 * clang_visitChildren(clang_getTranslationUnitCursor(TU),
191 * clang_disposeTranslationUnit(TU);
196 * TU = clang_createTranslationUnitFromSourceFile(Idx, "IndexTest.c", 2, args,
198 * clang_visitChildren(clang_getTranslationUnitCursor(TU),
200 * clang_disposeTranslationUnit(TU);
1244 CINDEX_LINKAGE unsigned clang_defaultSaveOptions(CXTranslationUnit TU);
1292 * \param TU The translation unit to save.
1304 CINDEX_LINKAGE int clang_saveTranslationUnit(CXTranslationUnit TU,
1337 CINDEX_LINKAGE unsigned clang_defaultReparseOptions(CXTranslationUnit TU);
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp329 /// \brief Build the call graph for all the top level decls of this TU and
526 TranslationUnitDecl *TU = C.getTranslationUnitDecl(); local
527 checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR);
552 checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransforms.h123 void traverse(TranslationUnitDecl *TU);
H A DTransforms.cpp522 void MigrationContext::traverse(TranslationUnitDecl *TU) { argument
527 ASTTransform(*this).TraverseDecl(TU);
H A DObjCMT.cpp1615 TranslationUnitDecl *TU = Ctx.getTranslationUnitDecl(); local
1617 for (DeclContext::decl_iterator D = TU->decls_begin(), DEnd = TU->decls_end();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h70 const TranslationUnitDecl *TU,
73 ((const CHECKER *)checker)->checkEndOfTranslationUnit(TU, mgr, BR);
69 _checkEndOfTranslationUnit(void *checker, const TranslationUnitDecl *TU, AnalysisManager& mgr, BugReporter &BR) argument
H A DCheckerManager.h391 void runCheckersOnEndOfTranslationUnit(const TranslationUnitDecl *TU,
/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFContext.cpp307 OwningPtr<DWARFTypeUnit> TU(new DWARFTypeUnit(
311 if (!TU->extract(DIData, &offset))
313 TUs.push_back(TU.take());
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp572 const TranslationUnitDecl *TU,
576 EndOfTranslationUnitCheckers[i](TU, mgr, BR);
571 runCheckersOnEndOfTranslationUnit( const TranslationUnitDecl *TU, AnalysisManager &mgr, BugReporter &BR) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp215 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
419 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) { argument
2969 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D))
2970 TU->setAnonymousNamespace(Anon);
H A DASTWriter.cpp3470 /// DeclContext in a dependent AST file. As such, they only exist for the TU
4033 const TranslationUnitDecl *TU = Context.getTranslationUnitDecl(); local
4035 for (DeclContext::decl_iterator I = TU->noload_decls_begin(),
4036 E = TU->noload_decls_end();
4058 WriteDeclContextVisibleUpdate(TU);
4062 if (NamespaceDecl *NS = TU->getAnonymousNamespace()) {
4063 ASTWriter::UpdateRecord &Record = DeclUpdates[TU];
4642 // a function/objc method, should not have TU as lexical context.
5247 // TU and namespaces are handled elsewhere.
H A DASTReader.cpp2173 DeclContext *TU = Context.getTranslationUnitDecl(); local
2174 DeclContextInfo &Info = F.DeclContextInfos[TU];
2178 TU->setHasExternalLexicalStorage(true);
2190 if (ID == PREDEF_DECL_TRANSLATION_UNIT_ID) { // Is it the TU?
2191 DeclContext *TU = Context.getTranslationUnitDecl(); local
2192 F.DeclContextInfos[TU].NameLookupTableData = Table;
2193 TU->setHasExternalVisibleStorage(true);
5611 // There might be lexical decls in multiple modules, for the TU at
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTImporter.cpp2264 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2265 MergeWithNamespace = TU->getAnonymousNamespace();
2306 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2307 TU->setAnonymousNamespace(ToNamespace);
H A DASTContext.cpp8145 static ASTContext::ParentMap *buildMap(TranslationUnitDecl &TU) { argument
8147 Visitor.TraverseDecl(&TU);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprObjC.cpp469 DeclContext *TU = Context.getTranslationUnitDecl(); local
470 NSStringDecl = ObjCInterfaceDecl::Create(Context, TU,
H A DSemaCodeComplete.cpp5922 TranslationUnitDecl *TU = Context.getTranslationUnitDecl(); local
5923 for (DeclContext::decl_iterator D = TU->decls_begin(),
5924 DEnd = TU->decls_end();
H A DSemaDeclCXX.cpp6561 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
6562 PrevNS = TU->getAnonymousNamespace();
6594 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
6595 TU->setAnonymousNamespace(Namespc);
12288 // if we are not providing an authoritative form of the vtable in this TU.
H A DSemaDecl.cpp1178 // Callers should verify at the end of the TU if it D has external linkage or
4539 // Don't need to track declarations in the TU in C.
12938 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); local
12939 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
12941 TU->addDecl(ImportD);
/freebsd-9.3-release/sys/dev/hptrr/
H A Di386-elf.hptrr_lib.o.uu7443 M``"1`````@`!`"X'``"TU```10````(``0!3!P``[-\``*(````"``$`A@<`
8541 M-C0#``'0`0!H-`,``N8!`"TU`P`"7P$`0S4#``)M`0#:-0,``GX!`"TV`P`"

Completed in 608 milliseconds