003 File Manager
Current Path:
/usr/src/contrib/llvm-project/clang/lib/AST
usr
/
src
/
contrib
/
llvm-project
/
clang
/
lib
/
AST
/
📁
..
📄
APValue.cpp
(23.33 KB)
📄
ASTConcept.cpp
(2.7 KB)
📄
ASTConsumer.cpp
(954 B)
📄
ASTContext.cpp
(407.36 KB)
📄
ASTDiagnostic.cpp
(75.78 KB)
📄
ASTDumper.cpp
(9.52 KB)
📄
ASTImporter.cpp
(323.93 KB)
📄
ASTImporterLookupTable.cpp
(4.85 KB)
📄
ASTStructuralEquivalence.cpp
(73.55 KB)
📄
ASTTypeTraits.cpp
(6.42 KB)
📄
AttrImpl.cpp
(5.3 KB)
📄
CXXABI.h
(2.66 KB)
📄
CXXInheritance.cpp
(28.55 KB)
📄
Comment.cpp
(11.94 KB)
📄
CommentBriefParser.cpp
(4.19 KB)
📄
CommentCommandTraits.cpp
(4.63 KB)
📄
CommentLexer.cpp
(25.38 KB)
📄
CommentParser.cpp
(23.52 KB)
📄
CommentSema.cpp
(40.88 KB)
📄
ComparisonCategories.cpp
(7.23 KB)
📄
ComputeDependence.cpp
(28.3 KB)
📄
DataCollection.cpp
(1.83 KB)
📄
Decl.cpp
(177.21 KB)
📄
DeclBase.cpp
(63.37 KB)
📄
DeclCXX.cpp
(127.53 KB)
📄
DeclFriend.cpp
(2.76 KB)
📄
DeclGroup.cpp
(1.16 KB)
📄
DeclObjC.cpp
(82.05 KB)
📄
DeclOpenMP.cpp
(10.04 KB)
📄
DeclPrinter.cpp
(52.6 KB)
📄
DeclTemplate.cpp
(57.75 KB)
📄
DeclarationName.cpp
(17.52 KB)
📄
Expr.cpp
(176.93 KB)
📄
ExprCXX.cpp
(69.03 KB)
📄
ExprClassification.cpp
(28.48 KB)
📄
ExprConcepts.cpp
(9.43 KB)
📄
ExprConstant.cpp
(538.88 KB)
📄
ExprObjC.cpp
(14.25 KB)
📄
ExternalASTMerger.cpp
(22.13 KB)
📄
ExternalASTSource.cpp
(3.85 KB)
📄
FormatString.cpp
(29.64 KB)
📄
FormatStringParsing.h
(3.17 KB)
📄
InheritViz.cpp
(5.1 KB)
📁
Interp
📄
ItaniumCXXABI.cpp
(8.92 KB)
📄
ItaniumMangle.cpp
(182.64 KB)
📄
JSONNodeDumper.cpp
(58.07 KB)
📄
Linkage.h
(6 KB)
📄
Mangle.cpp
(17.71 KB)
📄
MicrosoftCXXABI.cpp
(9.12 KB)
📄
MicrosoftMangle.cpp
(133.01 KB)
📄
NSAPI.cpp
(18.12 KB)
📄
NestedNameSpecifier.cpp
(23.31 KB)
📄
ODRHash.cpp
(29.78 KB)
📄
OSLog.cpp
(7.61 KB)
📄
OpenMPClause.cpp
(82.03 KB)
📄
ParentMap.cpp
(5.97 KB)
📄
ParentMapContext.cpp
(10.7 KB)
📄
PrintfFormatString.cpp
(35.8 KB)
📄
QualTypeNames.cpp
(18.46 KB)
📄
RawCommentList.cpp
(15.52 KB)
📄
RecordLayout.cpp
(3.95 KB)
📄
RecordLayoutBuilder.cpp
(132.78 KB)
📄
ScanfFormatString.cpp
(18.62 KB)
📄
SelectorLocationsKind.cpp
(4.48 KB)
📄
Stmt.cpp
(45.04 KB)
📄
StmtCXX.cpp
(5 KB)
📄
StmtIterator.cpp
(2.92 KB)
📄
StmtObjC.cpp
(2.75 KB)
📄
StmtOpenMP.cpp
(98.6 KB)
📄
StmtPrinter.cpp
(70.34 KB)
📄
StmtProfile.cpp
(60.24 KB)
📄
StmtViz.cpp
(1.75 KB)
📄
TemplateBase.cpp
(16.19 KB)
📄
TemplateName.cpp
(9.96 KB)
📄
TextNodeDumper.cpp
(61.83 KB)
📄
Type.cpp
(144.42 KB)
📄
TypeLoc.cpp
(20.52 KB)
📄
TypePrinter.cpp
(63.28 KB)
📄
VTTBuilder.cpp
(7.25 KB)
📄
VTableBuilder.cpp
(139.78 KB)
Editing: DeclOpenMP.cpp
//===--- DeclOpenMP.cpp - Declaration OpenMP AST Node Implementation ------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// \file /// This file implements OMPThreadPrivateDecl, OMPCapturedExprDecl /// classes. /// //===----------------------------------------------------------------------===// #include "clang/AST/ASTContext.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclBase.h" #include "clang/AST/DeclOpenMP.h" #include "clang/AST/Expr.h" using namespace clang; //===----------------------------------------------------------------------===// // OMPThreadPrivateDecl Implementation. //===----------------------------------------------------------------------===// void OMPThreadPrivateDecl::anchor() { } OMPThreadPrivateDecl *OMPThreadPrivateDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, ArrayRef<Expr *> VL) { OMPThreadPrivateDecl *D = new (C, DC, additionalSizeToAlloc<Expr *>(VL.size())) OMPThreadPrivateDecl(OMPThreadPrivate, DC, L); D->NumVars = VL.size(); D->setVars(VL); return D; } OMPThreadPrivateDecl *OMPThreadPrivateDecl::CreateDeserialized(ASTContext &C, unsigned ID, unsigned N) { OMPThreadPrivateDecl *D = new (C, ID, additionalSizeToAlloc<Expr *>(N)) OMPThreadPrivateDecl(OMPThreadPrivate, nullptr, SourceLocation()); D->NumVars = N; return D; } void OMPThreadPrivateDecl::setVars(ArrayRef<Expr *> VL) { assert(VL.size() == NumVars && "Number of variables is not the same as the preallocated buffer"); std::uninitialized_copy(VL.begin(), VL.end(), getTrailingObjects<Expr *>()); } //===----------------------------------------------------------------------===// // OMPAllocateDecl Implementation. //===----------------------------------------------------------------------===// void OMPAllocateDecl::anchor() { } OMPAllocateDecl *OMPAllocateDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, ArrayRef<Expr *> VL, ArrayRef<OMPClause *> CL) { OMPAllocateDecl *D = new ( C, DC, additionalSizeToAlloc<Expr *, OMPClause *>(VL.size(), CL.size())) OMPAllocateDecl(OMPAllocate, DC, L); D->NumVars = VL.size(); D->setVars(VL); D->NumClauses = CL.size(); D->setClauses(CL); return D; } OMPAllocateDecl *OMPAllocateDecl::CreateDeserialized(ASTContext &C, unsigned ID, unsigned NVars, unsigned NClauses) { OMPAllocateDecl *D = new (C, ID, additionalSizeToAlloc<Expr *, OMPClause *>(NVars, NClauses)) OMPAllocateDecl(OMPAllocate, nullptr, SourceLocation()); D->NumVars = NVars; D->NumClauses = NClauses; return D; } void OMPAllocateDecl::setVars(ArrayRef<Expr *> VL) { assert(VL.size() == NumVars && "Number of variables is not the same as the preallocated buffer"); std::uninitialized_copy(VL.begin(), VL.end(), getTrailingObjects<Expr *>()); } void OMPAllocateDecl::setClauses(ArrayRef<OMPClause *> CL) { assert(CL.size() == NumClauses && "Number of variables is not the same as the preallocated buffer"); std::uninitialized_copy(CL.begin(), CL.end(), getTrailingObjects<OMPClause *>()); } //===----------------------------------------------------------------------===// // OMPRequiresDecl Implementation. //===----------------------------------------------------------------------===// void OMPRequiresDecl::anchor() {} OMPRequiresDecl *OMPRequiresDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, ArrayRef<OMPClause *> CL) { OMPRequiresDecl *D = new (C, DC, additionalSizeToAlloc<OMPClause *>(CL.size())) OMPRequiresDecl(OMPRequires, DC, L); D->NumClauses = CL.size(); D->setClauses(CL); return D; } OMPRequiresDecl *OMPRequiresDecl::CreateDeserialized(ASTContext &C, unsigned ID, unsigned N) { OMPRequiresDecl *D = new (C, ID, additionalSizeToAlloc<OMPClause *>(N)) OMPRequiresDecl(OMPRequires, nullptr, SourceLocation()); D->NumClauses = N; return D; } void OMPRequiresDecl::setClauses(ArrayRef<OMPClause *> CL) { assert(CL.size() == NumClauses && "Number of clauses is not the same as the preallocated buffer"); std::uninitialized_copy(CL.begin(), CL.end(), getTrailingObjects<OMPClause *>()); } //===----------------------------------------------------------------------===// // OMPDeclareReductionDecl Implementation. //===----------------------------------------------------------------------===// OMPDeclareReductionDecl::OMPDeclareReductionDecl( Kind DK, DeclContext *DC, SourceLocation L, DeclarationName Name, QualType Ty, OMPDeclareReductionDecl *PrevDeclInScope) : ValueDecl(DK, DC, L, Name, Ty), DeclContext(DK), Combiner(nullptr), PrevDeclInScope(PrevDeclInScope) { setInitializer(nullptr, CallInit); } void OMPDeclareReductionDecl::anchor() {} OMPDeclareReductionDecl *OMPDeclareReductionDecl::Create( ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, QualType T, OMPDeclareReductionDecl *PrevDeclInScope) { return new (C, DC) OMPDeclareReductionDecl(OMPDeclareReduction, DC, L, Name, T, PrevDeclInScope); } OMPDeclareReductionDecl * OMPDeclareReductionDecl::CreateDeserialized(ASTContext &C, unsigned ID) { return new (C, ID) OMPDeclareReductionDecl( OMPDeclareReduction, /*DC=*/nullptr, SourceLocation(), DeclarationName(), QualType(), /*PrevDeclInScope=*/nullptr); } OMPDeclareReductionDecl *OMPDeclareReductionDecl::getPrevDeclInScope() { return cast_or_null<OMPDeclareReductionDecl>( PrevDeclInScope.get(getASTContext().getExternalSource())); } const OMPDeclareReductionDecl * OMPDeclareReductionDecl::getPrevDeclInScope() const { return cast_or_null<OMPDeclareReductionDecl>( PrevDeclInScope.get(getASTContext().getExternalSource())); } //===----------------------------------------------------------------------===// // OMPDeclareMapperDecl Implementation. //===----------------------------------------------------------------------===// void OMPDeclareMapperDecl::anchor() {} OMPDeclareMapperDecl * OMPDeclareMapperDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, QualType T, DeclarationName VarName, OMPDeclareMapperDecl *PrevDeclInScope) { return new (C, DC) OMPDeclareMapperDecl(OMPDeclareMapper, DC, L, Name, T, VarName, PrevDeclInScope); } OMPDeclareMapperDecl *OMPDeclareMapperDecl::CreateDeserialized(ASTContext &C, unsigned ID, unsigned N) { auto *D = new (C, ID) OMPDeclareMapperDecl(OMPDeclareMapper, /*DC=*/nullptr, SourceLocation(), DeclarationName(), QualType(), DeclarationName(), /*PrevDeclInScope=*/nullptr); if (N) { auto **ClauseStorage = C.Allocate<OMPClause *>(N); D->Clauses = llvm::makeMutableArrayRef<OMPClause *>(ClauseStorage, N); } return D; } /// Creates an array of clauses to this mapper declaration and intializes /// them. The space used to store clause pointers is dynamically allocated, /// because we do not know the number of clauses when creating /// OMPDeclareMapperDecl void OMPDeclareMapperDecl::CreateClauses(ASTContext &C, ArrayRef<OMPClause *> CL) { assert(Clauses.empty() && "Number of clauses should be 0 on initialization"); size_t NumClauses = CL.size(); if (NumClauses) { auto **ClauseStorage = C.Allocate<OMPClause *>(NumClauses); Clauses = llvm::makeMutableArrayRef<OMPClause *>(ClauseStorage, NumClauses); setClauses(CL); } } void OMPDeclareMapperDecl::setClauses(ArrayRef<OMPClause *> CL) { assert(CL.size() == Clauses.size() && "Number of clauses is not the same as the preallocated buffer"); std::uninitialized_copy(CL.begin(), CL.end(), Clauses.data()); } OMPDeclareMapperDecl *OMPDeclareMapperDecl::getPrevDeclInScope() { return cast_or_null<OMPDeclareMapperDecl>( PrevDeclInScope.get(getASTContext().getExternalSource())); } const OMPDeclareMapperDecl *OMPDeclareMapperDecl::getPrevDeclInScope() const { return cast_or_null<OMPDeclareMapperDecl>( PrevDeclInScope.get(getASTContext().getExternalSource())); } //===----------------------------------------------------------------------===// // OMPCapturedExprDecl Implementation. //===----------------------------------------------------------------------===// void OMPCapturedExprDecl::anchor() {} OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC, IdentifierInfo *Id, QualType T, SourceLocation StartLoc) { return new (C, DC) OMPCapturedExprDecl( C, DC, Id, T, C.getTrivialTypeSourceInfo(T), StartLoc); } OMPCapturedExprDecl *OMPCapturedExprDecl::CreateDeserialized(ASTContext &C, unsigned ID) { return new (C, ID) OMPCapturedExprDecl(C, nullptr, nullptr, QualType(), /*TInfo=*/nullptr, SourceLocation()); } SourceRange OMPCapturedExprDecl::getSourceRange() const { assert(hasInit()); return SourceRange(getInit()->getBeginLoc(), getInit()->getEndLoc()); }
Upload File
Create Folder