/freebsd/contrib/llvm-project/clang/include/ |
H A D | module.modulemap | 2 umbrella "clang-c" 8 umbrella "clang/Analysis" 10 textual header "clang/Analysis/Analyses/ThreadSafetyOps.def" 15 // library into clang. Due to inline key functions in the headers, 17 // matchers (and thus the AST), which clang-format should not have. 18 exclude header "clang/Analysis/Analyses/ExprMutationAnalyzer.h" 23 umbrella "clang/AST" 25 textual header "clang/AST/BuiltinTypes.def" 26 textual header "clang/AST/CXXRecordDeclDefinitionBits.def" 27 textual header "clang/AST/OperationKinds.def" [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 11 #include "clang/AST/DeclBase.h" 12 #include "clang/AST/ExprCXX.h" 22 #include "clang/AST/ASTContext.h" 23 #include "clang/AST/ASTImporter.h" 24 #include "clang/AST/Attr.h" 25 #include "clang/AST/CXXInheritance.h" 26 #include "clang/AST/DeclObjC.h" 27 #include "clang/AST/DeclTemplate.h" 28 #include "clang/AST/Mangle.h" 29 #include "clang/AST/RecordLayout.h" [all …]
|
H A D | TypeSystemClang.h | 23 #include "clang/AST/ASTContext.h" 24 #include "clang/AST/ASTFwd.h" 25 #include "clang/AST/Decl.h" 26 #include "clang/AST/TemplateBase.h" 27 #include "clang/AST/Type.h" 28 #include "clang/Basic/TargetInfo.h" 32 #include "Plugins/ExpressionParser/Clang/ClangPersistentVariables.h" 45 namespace clang { 49 } // namespace clang 57 /// A Clang module ID. [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ASTUtils.h | 12 #include "clang/Basic/ASTSourceDescriptor.h" 13 #include "clang/Sema/Lookup.h" 14 #include "clang/Sema/MultiplexExternalSemaSource.h" 15 #include "clang/Sema/Sema.h" 16 #include "clang/Sema/SemaConsumer.h" 19 namespace clang { 23 } // namespace clang 29 class ExternalASTSourceWrapper : public clang::ExternalSemaSource { 39 clang::Decl *GetExternalDecl(clang::GlobalDeclID ID) override { in GetExternalDecl() 43 clang::Selector GetExternalSelector(uint32_t ID) override { in GetExternalSelector() [all …]
|
H A D | ClangASTImporter.h | 17 #include "clang/AST/ASTContext.h" 18 #include "clang/AST/ASTImporter.h" 19 #include "clang/AST/CharUnits.h" 20 #include "clang/AST/Decl.h" 21 #include "clang/AST/DeclCXX.h" 22 #include "clang/Basic/FileManager.h" 23 #include "clang/Basic/FileSystemOptions.h" 30 #include "Plugins/ExpressionParser/Clang/CxxModuleHandler.h" 39 /// Manages and observes all Clang AST node importing in LLDB. 45 /// Clang's ASTImporter takes care of importing types from one ASTContext to [all …]
|
H A D | ClangModulesDeclVendor.cpp | 9 #include "clang/Basic/Diagnostic.h" 10 #include "clang/Basic/DiagnosticFrontend.h" 11 #include "clang/Basic/TargetInfo.h" 12 #include "clang/Frontend/CompilerInstance.h" 13 #include "clang/Frontend/FrontendActions.h" 14 #include "clang/Frontend/TextDiagnosticPrinter.h" 15 #include "clang/Lex/Preprocessor.h" 16 #include "clang/Lex/PreprocessorOptions.h" 17 #include "clang/Parse/Parser.h" 18 #include "clang/Sema/Lookup.h" [all …]
|
H A D | ClangExternalASTSourceCallbacks.cpp | 9 #include "Plugins/ExpressionParser/Clang/ClangExternalASTSourceCallbacks.h" 10 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h" 12 #include "clang/AST/Decl.h" 13 #include "clang/AST/DeclObjC.h" 14 #include "clang/Basic/Module.h" 21 void ClangExternalASTSourceCallbacks::CompleteType(clang::TagDecl *tag_decl) { in CompleteType() 26 clang::ObjCInterfaceDecl *objc_decl) { in CompleteType() 31 const clang::RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, in layoutRecordType() 32 llvm::DenseMap<const clang::FieldDecl *, uint64_t> &FieldOffsets, in layoutRecordType() 33 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits> &BaseOffsets, in layoutRecordType() [all …]
|
H A D | ClangASTSource.h | 14 #include "Plugins/ExpressionParser/Clang/ClangASTImporter.h" 15 #include "Plugins/ExpressionParser/Clang/NameSearchContext.h" 18 #include "clang/AST/ExternalASTSource.h" 19 #include "clang/Basic/IdentifierTable.h" 26 /// Provider for named objects defined in the debug info for Clang 28 /// As Clang parses an expression, it may encounter names that are not defined 29 /// inside the expression, including variables, functions, and types. Clang 31 /// class provides Decls (VarDecl, FunDecl, TypeDecl) to Clang for these 33 class ClangASTSource : public clang::ExternalASTSource, 52 clang::Decl *GetExternalDecl(clang::GlobalDeclID) override { return nullptr; } in GetExternalDecl() [all …]
|
H A D | ClangExternalASTSourceCallbacks.h | 12 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h" 13 #include "clang/Basic/ASTSourceDescriptor.h" 16 namespace clang { 20 } // namespace clang 24 class ClangExternalASTSourceCallbacks : public clang::ExternalASTSource { 31 static bool classof(const clang::ExternalASTSource *s) { return s->isA(&ID); } in classof() 36 const clang::DeclContext *DC, 37 llvm::function_ref<bool(clang::Decl::Kind)> IsKindWeWant, 38 llvm::SmallVectorImpl<clang::Decl *> &Result) override; 40 bool FindExternalVisibleDeclsByName(const clang::DeclContext *DC, [all …]
|
H A D | ClangASTImporter.cpp | 13 #include "clang/AST/ASTContext.h" 14 #include "clang/AST/Decl.h" 15 #include "clang/AST/DeclCXX.h" 16 #include "clang/AST/DeclObjC.h" 17 #include "clang/AST/RecordLayout.h" 18 #include "clang/Sema/Lookup.h" 19 #include "clang/Sema/Sema.h" 22 #include "Plugins/ExpressionParser/Clang/ClangASTImporter.h" 23 #include "Plugins/ExpressionParser/Clang/ClangASTMetadata.h" 24 #include "Plugins/ExpressionParser/Clang/ClangASTSource.h" [all …]
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | TableGen.cpp | 1 //===- TableGen.cpp - Top-Level TableGen implementation for Clang ---------===// 9 // This file contains the main function for Clang's TableGen. 24 using namespace clang; 122 clEnumValN(GenClangAttrClasses, "gen-clang-attr-classes", 123 "Generate clang attribute clases"), 125 "gen-clang-attr-parser-string-switches", 128 "gen-clang-attr-subject-match-rules-parser-string-switches", 131 clEnumValN(GenClangAttrImpl, "gen-clang-attr-impl", 132 "Generate clang attribute implementations"), 133 clEnumValN(GenClangAttrList, "gen-clang-attr-list", [all …]
|
/freebsd/targets/pseudo/clang/ |
H A D | Makefile.depend | 6 lib/clang/headers \ 7 share/doc/llvm/clang \ 8 usr.bin/clang/clang \ 9 usr.bin/clang/clang-tblgen \ 10 usr.bin/clang/llvm-min-tblgen \ 11 usr.bin/clang/llvm-objdump \ 12 usr.bin/clang/llvm-tblgen \ 38 usr.bin/clang/lldb 43 usr.bin/clang/bugpoint \ 44 usr.bin/clang/llc \ [all …]
|
/freebsd/lib/clang/libclang/ |
H A D | Makefile | 2 .include "../clang.pre.mk" 4 LIB= clang 7 CFLAGS+= -I${OBJTOP}/lib/clang/libllvm 20 SRCDIR= clang/lib 378 SRCS_MIN+= Driver/ToolChains/Clang.cpp 847 clang/AST/AbstractBasicReader.inc: \ 848 ${CLANG_SRCS}/include/clang/AST/PropertiesBase.td 849 ${CLANG_TBLGEN} -gen-clang-basic-reader \ 851 ${CLANG_SRCS}/include/clang/AST/PropertiesBase.td 852 TGHDRS+= clang/AST/AbstractBasicReader.inc [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbAstBuilder.h | 16 #include "Plugins/ExpressionParser/Clang/ClangASTImporter.h" 22 namespace clang { 29 } // namespace clang 56 PdbAstBuilder(TypeSystemClang &clang); 62 clang::DeclContext *GetOrCreateDeclContextForUid(PdbSymUid uid); 63 clang::DeclContext *GetParentDeclContext(PdbSymUid uid); 65 clang::FunctionDecl *GetOrCreateFunctionDecl(PdbCompilandSymId func_id); 66 clang::FunctionDecl * 68 clang::BlockDecl *GetOrCreateBlockDecl(PdbCompilandSymId block_id); 69 clang::VarDecl *GetOrCreateVariableDecl(PdbCompilandSymId scope_id, [all …]
|
H A D | PdbAstBuilder.cpp | 18 #include "Plugins/ExpressionParser/Clang/ClangASTMetadata.h" 19 #include "Plugins/ExpressionParser/Clang/ClangUtil.h" 21 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h" 39 clang::FunctionDecl *&function_decl, in CreateMethodDecl() 48 clang::FunctionDecl *&function_decl; 99 static clang::TagTypeKind TranslateUdtKind(const TagRecord &cr) { in TranslateUdtKind() 102 return clang::TagTypeKind::Class; in TranslateUdtKind() 104 return clang::TagTypeKind::Struct; in TranslateUdtKind() 106 return clang::TagTypeKind::Union; in TranslateUdtKind() 108 return clang in TranslateUdtKind() 163 PdbAstBuilder(TypeSystemClang & clang) PdbAstBuilder() argument [all...] |
/freebsd/ |
H A D | ObsoleteFiles.inc | 310 # 20241023: new clang import which bumps version from 18 to 19 311 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_builtin_vars.h 312 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_cmath.h 313 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_complex_builtins.h 314 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_device_functions.h 315 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_intrinsics.h 316 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_libdevice_declares.h 317 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_math.h 318 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_math_forward_declares.h 319 OLD_FILES+=usr/lib/clang/18/include/__clang_cuda_runtime_wrapper.h [all …]
|
/freebsd/contrib/llvm-project/ |
H A D | FREEBSD-Xlist | 2 .clang-format 3 .clang-tidy 15 clang/.clang-format 16 clang/.clang-tidy 17 clang/.gitignore 18 clang/CMakeLists.txt 19 clang/CodeOwners.rst 20 clang/INSTALL.txt 21 clang/NOTES.txt 22 clang/README.txt [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Testing/ |
H A D | TestAST.cpp | 9 #include "clang/Testing/TestAST.h" 10 #include "clang/Basic/Diagnostic.h" 11 #include "clang/Basic/LangOptions.h" 12 #include "clang/Frontend/FrontendActions.h" 13 #include "clang/Frontend/TextDiagnostic.h" 14 #include "clang/Testing/CommandLineArgs.h" 22 namespace clang { namespace 56 void createMissingComponents(CompilerInstance &Clang) { in createMissingComponents() argument 57 if (!Clang.hasDiagnostics()) in createMissingComponents() 58 Clang.createDiagnostics(); in createMissingComponents() [all …]
|
/freebsd/usr.bin/clang/clang/ |
H A D | Makefile | 3 PROG_CXX= clang 5 SRCDIR= clang/tools/driver 9 SRCS+= clang-driver.cpp 12 LINKS= ${BINDIR}/clang ${BINDIR}/clang++ \ 13 ${BINDIR}/clang ${BINDIR}/clang-cpp 14 MLINKS= clang.1 clang++.1 \ 15 clang.1 clang-cpp.1 20 LINKS+= ${BINDIR}/clang ${BINDIR}/cc \ 21 ${BINDIR}/clang ${BINDIR}/c++ \ 22 ${BINDIR}/clang ${BINDIR}/cpp [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCDeclVendor.cpp | 11 #include "Plugins/ExpressionParser/Clang/ClangASTMetadata.h" 12 #include "Plugins/ExpressionParser/Clang/ClangUtil.h" 20 #include "clang/AST/ASTContext.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/ExternalASTSource.h" 27 : public clang::ExternalASTSource { 32 bool FindExternalVisibleDeclsByName(const clang::DeclContext *decl_ctx, in FindExternalVisibleDeclsByName() 33 clang::DeclarationName name) override { in FindExternalVisibleDeclsByName() 48 const clang::ObjCInterfaceDecl *interface_decl = in FindExternalVisibleDeclsByName() 49 llvm::dyn_cast<clang::ObjCInterfaceDecl>(decl_ctx); in FindExternalVisibleDeclsByName() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchersMacros.h | 27 // AST_MATCHER_P(clang::MemberExpr, Member, 28 // clang::ast_matchers::internal::Matcher<clang::ValueDecl>, 36 // namespace clang { 45 // } // namespace clang 58 return ::clang::ast_matchers::internal::MemoizedMatcher< \ 97 : public ::clang::ast_matchers::internal::MatcherInterface<Type> { \ 101 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 102 ::clang::ast_matchers::internal::BoundNodesTreeBuilder \ 106 inline ::clang::ast_matchers::internal::Matcher<Type> DefineMatcher() { \ 107 return ::clang::ast_matchers::internal::makeMatcher( \ [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TargetBuiltins.h | 11 /// namespace ::clang. 20 #include "clang/Basic/Builtins.h" 24 namespace clang { 28 LastTIBuiltin = clang::Builtin::FirstTSBuiltin - 1, 31 #include "clang/Basic/BuiltinsNEON.def" 39 LastTIBuiltin = clang::Builtin::FirstTSBuiltin-1, 42 #include "clang/Basic/BuiltinsARM.def" 52 #include "clang/Basic/BuiltinsSVE.def" 62 #include "clang/Basic/BuiltinsSME.def" 70 LastTIBuiltin = clang::Builtin::FirstTSBuiltin - 1, [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | ChainedIncludesSource.cpp | 14 #include "clang/Basic/Builtins.h" 15 #include "clang/Basic/TargetInfo.h" 16 #include "clang/Frontend/ASTUnit.h" 17 #include "clang/Frontend/CompilerInstance.h" 18 #include "clang/Frontend/TextDiagnosticPrinter.h" 19 #include "clang/Lex/Preprocessor.h" 20 #include "clang/Lex/PreprocessorOptions.h" 21 #include "clang/Parse/ParseAST.h" 22 #include "clang/Sema/MultiplexExternalSemaSource.h" 23 #include "clang/Serialization/ASTReader.h" [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TypeOrdering.h | 12 /// Defines clang::QualTypeOrdering, a total ordering on clang::QualType, 21 #include "clang/AST/CanonicalType.h" 22 #include "clang/AST/Type.h" 25 namespace clang { 38 template<> struct DenseMapInfo<clang::QualType> { 39 static inline clang::QualType getEmptyKey() { return clang::QualType(); } 41 static inline clang::QualType getTombstoneKey() { 42 using clang::QualType; 43 return QualType::getFromOpaquePtr(reinterpret_cast<clang::Type *>(-1)); 46 static unsigned getHashValue(clang::QualType Val) { [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | CallGraph.h | 20 #include "clang/AST/Decl.h" 21 #include "clang/AST/RecursiveASTVisitor.h" 30 namespace clang { 212 } // namespace clang 216 // Specialize DenseMapInfo for clang::CallGraphNode::CallRecord. 217 template <> struct DenseMapInfo<clang::CallGraphNode::CallRecord> { 218 static inline clang::CallGraphNode::CallRecord getEmptyKey() { 219 return clang::CallGraphNode::CallRecord( 220 DenseMapInfo<clang::CallGraphNode *>::getEmptyKey(), 221 DenseMapInfo<clang::Expr *>::getEmptyKey()); [all …]
|