Home
last modified time | relevance | path

Searched refs:NumClauses (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmtOpenMP.h42 const unsigned NumClauses; variable
55 return MutableArrayRef<OMPClause *>(ClauseStorage, NumClauses); in getClauses()
69 unsigned NumClauses, unsigned NumChildren) in OMPExecutableDirective() argument
71 EndLoc(std::move(EndLoc)), NumClauses(NumClauses), in OMPExecutableDirective()
172 unsigned getNumClauses() const { return NumClauses; } in getNumClauses()
226 unsigned NumClauses) in OMPParallelDirective() argument
228 StartLoc, EndLoc, NumClauses, 1) {} in OMPParallelDirective()
234 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() argument
236 SourceLocation(), SourceLocation(), NumClauses, in OMPParallelDirective()
258 unsigned NumClauses, EmptyShell);
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp1644 unsigned NumClauses, in CreateEmpty() argument
1648 void *Mem = C.Allocate(Size + sizeof(OMPClause *) * NumClauses + in CreateEmpty()
1650 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
1682 unsigned NumClauses, in CreateEmpty() argument
1688 C.Allocate(Size + sizeof(OMPClause *) * NumClauses + in CreateEmpty()
1690 return new (Mem) OMPSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
1729 unsigned NumClauses, in CreateEmpty() argument
1735 C.Allocate(Size + sizeof(OMPClause *) * NumClauses + in CreateEmpty()
1737 return new (Mem) OMPForDirective(CollapsedNum, NumClauses); in CreateEmpty()
1776 unsigned NumClauses, in CreateEmpty() argument
[all …]
/NextBSD/contrib/llvm/lib/CodeGen/
HDGlobalMerge.cpp517 for (unsigned Idx = 0, NumClauses = LPInst->getNumClauses(); in setMustKeepGlobalVariables() local
518 Idx != NumClauses; ++Idx) in setMustKeepGlobalVariables()
HDWinEHPrepare.cpp2049 unsigned int NumClauses = LPad->getNumClauses(); in mapLandingPadBlocks() local
2055 if (NumClauses == 0) { in mapLandingPadBlocks()
2062 while (HandlersFound != NumClauses) { in mapLandingPadBlocks()
2077 assert(HandlersFound == NumClauses - 1); in mapLandingPadBlocks()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp2761 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
2763 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
2769 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
2771 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
2777 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
2779 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
2807 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
2809 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
2815 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
2817 S = OMPParallelForSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
/NextBSD/contrib/llvm/include/llvm/IR/
HDIRBuilder.h1558 LandingPadInst *CreateLandingPad(Type *Ty, unsigned NumClauses,
1560 return Insert(LandingPadInst::Create(Ty, NumClauses), Name);
/NextBSD/contrib/llvm/lib/Bitcode/Reader/
HDBitcodeReader.cpp4051 unsigned NumClauses = Record[Idx++]; in parseFunctionBody() local
4052 LandingPadInst *LP = LandingPadInst::Create(Ty, NumClauses); in parseFunctionBody()
4054 for (unsigned J = 0; J != NumClauses; ++J) { in parseFunctionBody()
/NextBSD/contrib/llvm/include/llvm-c/
HDCore.h2678 LLVMValueRef PersFn, unsigned NumClauses,
/NextBSD/contrib/llvm/lib/IR/
HDCore.cpp2260 LLVMValueRef PersFn, unsigned NumClauses, in LLVMBuildLandingPad() argument
2268 return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty), NumClauses, Name)); in LLVMBuildLandingPad()