| /freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningTool.cpp | 173 TranslationUnitDeps TU; in takeTranslationUnitDeps() local 175 TU.ID.ContextHash = std::move(ContextHash); in takeTranslationUnitDeps() 176 TU.ID.ModuleName = std::move(ModuleName); in takeTranslationUnitDeps() 177 TU.NamedModuleDeps = std::move(NamedModuleDeps); in takeTranslationUnitDeps() 178 TU.FileDeps = std::move(Dependencies); in takeTranslationUnitDeps() 179 TU.PrebuiltModuleDeps = std::move(PrebuiltModuleDeps); in takeTranslationUnitDeps() 180 TU.VisibleModules = std::move(VisibleModules); in takeTranslationUnitDeps() 181 TU.Commands = std::move(Commands); in takeTranslationUnitDeps() 189 TU.ModuleGraph.push_back(std::move(MD)); in takeTranslationUnitDeps() 191 TU.ClangModuleDeps = std::move(DirectModuleDeps); in takeTranslationUnitDeps() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 174 auto *TU = Context.getTranslationUnitDecl(); in ActOnGlobalModuleFragmentDecl() local 182 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ReachableWhenImported); in ActOnGlobalModuleFragmentDecl() 183 TU->setLocalOwningModule(GlobalModule); in ActOnGlobalModuleFragmentDecl() 223 auto *TU = Context.getTranslationUnitDecl(); in HandleStartOfHeaderUnit() local 224 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::Visible); in HandleStartOfHeaderUnit() 225 TU->setLocalOwningModule(Mod); in HandleStartOfHeaderUnit() 473 auto *TU = Context.getTranslationUnitDecl(); in ActOnModuleDecl() local 474 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ReachableWhenImported); in ActOnModuleDecl() 475 TU->setLocalOwningModule(Mod); in ActOnModuleDecl() 569 auto *TU = Context.getTranslationUnitDecl(); in ActOnPrivateModuleFragmentDecl() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.cpp | 751 uint64_t DWARFDebugNames::NameIndex::getLocalTUOffset(uint32_t TU) const { in getLocalTUOffset() 752 assert(TU < Hdr.LocalTypeUnitCount); in getLocalTUOffset() 755 Offsets.CUsBase + SectionOffsetSize * (Hdr.CompUnitCount + TU); in getLocalTUOffset() 759 uint64_t DWARFDebugNames::NameIndex::getForeignTUSignature(uint32_t TU) const { in getForeignTUSignature() 760 assert(TU < Hdr.ForeignTypeUnitCount); in getForeignTUSignature() 764 SectionOffsetSize * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; in getForeignTUSignature() 869 for (uint32_t TU = 0; TU < Hdr.LocalTypeUnitCount; ++TU) in dumpLocalTUs() local 870 W.startLine() << format("LocalTU[%u]: 0x%08" PRIx64 "\n", TU, in dumpLocalTUs() 871 getLocalTUOffset(TU)); in dumpLocalTUs() 879 for (uint32_t TU = 0; TU < Hdr.ForeignTypeUnitCount; ++TU) { in dumpForeignTUs() local [all …]
|
| H A D | DWARFGdbIndex.cpp | 41 for (const TypeUnitEntry &TU : TuList) in dumpTUList() local 44 I++, TU.Offset, TU.TypeOffset, TU.TypeSignature); in dumpTUList()
|
| H A D | DWARFTypeUnit.cpp | 47 if (DWARFDie TU = getUnitDIE(false)) in dump() local 48 TU.dump(OS, 0, DumpOpts); in dump()
|
| H A D | DWARFDie.cpp | 322 if (DWARFTypeUnit *TU = in getAttributeValueAsReferencedDie() local 324 Result = TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset()); in getAttributeValueAsReferencedDie() 332 if (DWARFTypeUnit *TU = in resolveTypeUnitReference() local 334 return TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset()); in resolveTypeUnitReference()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTImporterLookupTable.cpp | 87 ASTImporterLookupTable::ASTImporterLookupTable(TranslationUnitDecl &TU) { in ASTImporterLookupTable() argument 89 B.TraverseDecl(&TU); in ASTImporterLookupTable() 93 dyn_cast_or_null<NamedDecl>(TU.getASTContext().getVaListTagDecl())) { in ASTImporterLookupTable() 99 add(&TU, Ns); in ASTImporterLookupTable()
|
| /freebsd/contrib/llvm-project/compiler-rt/include/fuzzer/ |
| H A D | FuzzedDataProvider.h | 98 template <typename TS, typename TU> TS ConvertUnsignedToSigned(TU value); 377 template <typename TS, typename TU> 378 TS FuzzedDataProvider::ConvertUnsignedToSigned(TU value) { in ConvertUnsignedToSigned() 379 static_assert(sizeof(TS) == sizeof(TU), "Incompatible data types."); in ConvertUnsignedToSigned() 380 static_assert(!std::numeric_limits<TU>::is_signed, in ConvertUnsignedToSigned()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MmapWriteExecChecker.cpp | 42 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager &Mgr, 48 void MmapWriteExecChecker::checkASTDecl(const TranslationUnitDecl *TU, in checkASTDecl() argument
|
| H A D | StreamChecker.cpp | 279 void checkASTDecl(const TranslationUnitDecl *TU, AnalysisManager &, 2101 getGlobalStreamPointerByName(const TranslationUnitDecl *TU, StringRef VarName) { in getGlobalStreamPointerByName() argument 2102 ASTContext &Ctx = TU->getASTContext(); in getGlobalStreamPointerByName() 2111 auto LookupRes = TU->lookup(&Ctx.Idents.get(VarName)); in getGlobalStreamPointerByName() 2123 void StreamChecker::checkASTDecl(const TranslationUnitDecl *TU, in checkASTDecl() argument 2125 StdinDecl = getGlobalStreamPointerByName(TU, "stdin"); in checkASTDecl() 2126 StdoutDecl = getGlobalStreamPointerByName(TU, "stdout"); in checkASTDecl() 2127 StderrDecl = getGlobalStreamPointerByName(TU, "stderr"); in checkASTDecl() 2128 VaListType = TU->getASTContext().getBuiltinVaListType().getCanonicalType(); in checkASTDecl()
|
| H A D | CheckerDocumentation.cpp | 251 void checkEndOfTranslationUnit(const TranslationUnitDecl *TU, in checkEndOfTranslationUnit() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AccelTable.cpp | 473 for (const auto &TU : enumerate(TypeUnits)) { in emitTUList() local 474 Asm->OutStreamer->AddComment("Type unit " + Twine(TU.index())); in emitTUList() 475 if (std::holds_alternative<MCSymbol *>(TU.value())) in emitTUList() 476 Asm->emitDwarfSymbolReference(std::get<MCSymbol *>(TU.value())); in emitTUList() 478 Asm->emitInt64(std::get<uint64_t>(TU.value())); in emitTUList() 480 Asm->emitDwarfLengthOrOffset(std::get<uint64_t>(TU.value())); in emitTUList() 667 for (const auto &TU : TUSymbols) { in emitDWARF5AccelTable() local 668 TUIndex[TU.UniqueID] = TUCount++; in emitDWARF5AccelTable() 670 TypeUnits.push_back(std::get<uint64_t>(TU.LabelOrSignature)); in emitDWARF5AccelTable() 672 TypeUnits.push_back(std::get<MCSymbol *>(TU.LabelOrSignature)); in emitDWARF5AccelTable()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTMerge.cpp | 59 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl(); in ExecuteAction() local 60 for (auto *D : TU->decls()) { in ExecuteAction()
|
| H A D | MultiplexConsumer.cpp | 270 const TranslationUnitDecl *TU, NamespaceDecl *AnonNamespace) { in AddedAnonymousNamespace() argument 272 L->AddedAnonymousNamespace(TU, AnonNamespace); in AddedAnonymousNamespace()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | ComputeReplacements.cpp | 94 const syntax::TranslationUnit &TU) { in computeReplacements() argument 111 &TU, TBTM, [&](llvm::ArrayRef<syntax::Token> Tokens, bool IsOriginal) { in computeReplacements()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
| H A D | Mutations.h | 25 const syntax::TranslationUnit &TU);
|
| /freebsd/contrib/llvm-project/clang/include/clang-c/ |
| H A D | Index.h | 938 CINDEX_LINKAGE unsigned clang_defaultSaveOptions(CXTranslationUnit TU); 998 CINDEX_LINKAGE int clang_saveTranslationUnit(CXTranslationUnit TU, 1040 CINDEX_LINKAGE unsigned clang_defaultReparseOptions(CXTranslationUnit TU); 1082 clang_reparseTranslationUnit(CXTranslationUnit TU, unsigned num_unsaved_files, 1148 clang_getCXTUResourceUsage(CXTranslationUnit TU); 5041 CINDEX_LINKAGE CXToken *clang_getToken(CXTranslationUnit TU, 5085 CINDEX_LINKAGE void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range, 5118 CINDEX_LINKAGE void clang_annotateTokens(CXTranslationUnit TU, CXToken *Tokens, 5124 CINDEX_LINKAGE void clang_disposeTokens(CXTranslationUnit TU, CXToken *Tokens, 5846 clang_codeCompleteAt(CXTranslationUnit TU, const char *complete_filename, [all …]
|
| H A D | Rewrite.h | 25 CINDEX_LINKAGE CXRewriter clang_CXRewriter_create(CXTranslationUnit TU);
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTImporterLookupTable.h | 62 ASTImporterLookupTable(TranslationUnitDecl &TU);
|
| H A D | ASTMutationListener.h | 174 virtual void AddedAnonymousNamespace(const TranslationUnitDecl *TU, in AddedAnonymousNamespace() argument
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | AnalysisConsumer.cpp | 552 const TranslationUnitDecl *TU = C.getTranslationUnitDecl(); in runAnalysisOnTranslationUnit() local 553 BR.setAnalysisEntryPoint(TU); in runAnalysisOnTranslationUnit() 556 checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR); in runAnalysisOnTranslationUnit() 583 checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR); in runAnalysisOnTranslationUnit()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaHLSL.h | 130 void ActOnEndOfTranslationUnit(TranslationUnitDecl *TU); 229 void diagnoseAvailabilityViolations(TranslationUnitDecl *TU);
|
| /freebsd/crypto/openssl/demos/sslecho/ |
| H A D | key.pem | 15 WI+gT3os2B9yj+d4Xik32YcrQ8+TU/5ZW4RoCCgZHxxE/MkYU1gNz36ekpOZH8U3
|
| /freebsd/crypto/openssh/ |
| H A D | CREDITS | 46 Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch 61 Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> - Bugfixes
|
| /freebsd/contrib/llvm-project/clang/include/clang/Interpreter/ |
| H A D | Interpreter.h | 192 PartialTranslationUnit &RegisterPTU(TranslationUnitDecl *TU,
|