Home
last modified time | relevance | path

Searched refs:CreateEmpty (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp2642 S = CompoundStmt::CreateEmpty( in ReadStmtFromStream()
2647 S = CaseStmt::CreateEmpty( in ReadStmtFromStream()
2661 S = AttributedStmt::CreateEmpty( in ReadStmtFromStream()
2667 S = IfStmt::CreateEmpty( in ReadStmtFromStream()
2675 S = SwitchStmt::CreateEmpty( in ReadStmtFromStream()
2682 S = WhileStmt::CreateEmpty( in ReadStmtFromStream()
2712 S = ReturnStmt::CreateEmpty( in ReadStmtFromStream()
2734 S = ConstantExpr::CreateEmpty( in ReadStmtFromStream()
2742 S = PredefinedExpr::CreateEmpty( in ReadStmtFromStream()
2748 S = DeclRefExpr::CreateEmpty( in ReadStmtFromStream()
[all …]
HDASTReader.cpp11554 C = OMPOrderedClause::CreateEmpty(Context, Record.readInt()); in readClause()
11605 C = OMPPrivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11608 C = OMPFirstprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11611 C = OMPLastprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11614 C = OMPSharedClause::CreateEmpty(Context, Record.readInt()); in readClause()
11617 C = OMPReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
11620 C = OMPTaskReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
11623 C = OMPInReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
11626 C = OMPLinearClause::CreateEmpty(Context, Record.readInt()); in readClause()
11629 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtOpenMP.h406 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
1242 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
1317 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
1385 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
1455 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
1514 static OMPSectionDirective *CreateEmpty(const ASTContext &C, EmptyShell);
1577 static OMPSingleDirective *CreateEmpty(const ASTContext &C,
1627 static OMPMasterDirective *CreateEmpty(const ASTContext &C, EmptyShell);
1694 static OMPCriticalDirective *CreateEmpty(const ASTContext &C,
1773 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
[all …]
HDExprCXX.h103 static CXXOperatorCallExpr *CreateEmpty(const ASTContext &Ctx,
186 static CXXMemberCallExpr *CreateEmpty(const ASTContext &Ctx, unsigned NumArgs,
244 static CUDAKernelCallExpr *CreateEmpty(const ASTContext &Ctx,
432 static CXXStaticCastExpr *CreateEmpty(const ASTContext &Context,
469 static CXXDynamicCastExpr *CreateEmpty(const ASTContext &Context,
512 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
548 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
586 static UserDefinedLiteral *CreateEmpty(const ASTContext &Ctx,
1491 static CXXConstructExpr *CreateEmpty(const ASTContext &Ctx, unsigned NumArgs);
1716 static CXXFunctionalCastExpr *CreateEmpty(const ASTContext &Context,
[all …]
HDOpenMPClause.h394 static OMPAllocateClause *CreateEmpty(const ASTContext &C, unsigned N);
1523 static OMPOrderedClause* CreateEmpty(const ASTContext &C, unsigned NumLoops);
1943 static OMPPrivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2071 static OMPFirstprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2283 static OMPLastprivateClause *CreateEmpty(const ASTContext &C, unsigned N);
2411 static OMPSharedClause *CreateEmpty(const ASTContext &C, unsigned N);
2596 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
2830 static OMPTaskReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
3075 static OMPInReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
3303 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
[all …]
HDStmt.h1372 static CompoundStmt *CreateEmpty(const ASTContext &C, unsigned NumStmts);
1579 static CaseStmt *CreateEmpty(const ASTContext &Ctx, bool CaseStmtIsGNURange);
1824 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
1912 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
2109 static SwitchStmt *CreateEmpty(const ASTContext &Ctx, bool HasInit,
2285 static WhileStmt *CreateEmpty(const ASTContext &Ctx, bool HasVar);
2682 static ReturnStmt *CreateEmpty(const ASTContext &Ctx, bool HasNRVOCandidate);
HDExpr.h1026 static ConstantExpr *CreateEmpty(const ASTContext &Context,
1242 static DeclRefExpr *CreateEmpty(const ASTContext &Context, bool HasQualifier,
1790 static StringLiteral *CreateEmpty(const ASTContext &Ctx,
1948 static PredefinedExpr *CreateEmpty(const ASTContext &Ctx,
2298 static OffsetOfExpr *CreateEmpty(const ASTContext &C,
2660 static CallExpr *CreateEmpty(const ASTContext &Ctx, unsigned NumArgs,
2907 static MemberExpr *CreateEmpty(const ASTContext &Context, bool HasQualifier,
3303 static ImplicitCastExpr *CreateEmpty(const ASTContext &Context,
3394 static CStyleCastExpr *CreateEmpty(const ASTContext &Context,
4841 static DesignatedInitExpr *CreateEmpty(const ASTContext &C,
[all …]
HDExprObjC.h211 static ObjCArrayLiteral *CreateEmpty(const ASTContext &C,
352 static ObjCDictionaryLiteral *CreateEmpty(const ASTContext &C,
1223 static ObjCMessageExpr *CreateEmpty(const ASTContext &Context,
HDStmtObjC.h200 static ObjCAtTryStmt *CreateEmpty(const ASTContext &Context,
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDStmtOpenMP.cpp178 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPParallelDirective
220 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPSimdDirective
272 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPForDirective
324 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPForSimdDirective
351 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPSectionsDirective
374 OMPSectionDirective *OMPSectionDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPSectionDirective
397 OMPSingleDirective *OMPSingleDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPSingleDirective
418 OMPMasterDirective *OMPMasterDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPMasterDirective
440 OMPCriticalDirective *OMPCriticalDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPCriticalDirective
492 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty() function in OMPParallelForDirective
[all …]
HDOpenMPClause.cpp283 OMPOrderedClause *OMPOrderedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPOrderedClause
338 OMPPrivateClause *OMPPrivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPPrivateClause
371 OMPFirstprivateClause *OMPFirstprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPFirstprivateClause
423 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPLastprivateClause
441 OMPSharedClause *OMPSharedClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() function in OMPSharedClause
507 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPLinearClause
534 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPAlignedClause
576 OMPCopyinClause *OMPCopyinClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty() function in OMPCopyinClause
617 OMPCopyprivateClause *OMPCopyprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPCopyprivateClause
670 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPReductionClause
[all …]
HDExprCXX.cpp281 CXXNewExpr *CXXNewExpr::CreateEmpty(const ASTContext &Ctx, bool IsArray, in CreateEmpty() function in CXXNewExpr
436 UnresolvedLookupExpr *UnresolvedLookupExpr::CreateEmpty( in CreateEmpty() function in UnresolvedLookupExpr
571 DependentScopeDeclRefExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in DependentScopeDeclRefExpr
650 CXXOperatorCallExpr *CXXOperatorCallExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in CXXOperatorCallExpr
708 CXXMemberCallExpr *CXXMemberCallExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in CXXMemberCallExpr
793 CXXStaticCastExpr *CXXStaticCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CXXStaticCastExpr
818 CXXDynamicCastExpr *CXXDynamicCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CXXDynamicCastExpr
876 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() function in CXXReinterpretCastExpr
890 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { in CreateEmpty() function in CXXConstCastExpr
910 CXXFunctionalCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty() function in CXXFunctionalCastExpr
[all …]
HDStmt.cpp326 CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CompoundStmt
365 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() function in AttributedStmt
878 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() function in IfStmt
986 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit, in CreateEmpty() function in SwitchStmt
1043 WhileStmt *WhileStmt::CreateEmpty(const ASTContext &Ctx, bool HasVar) { in CreateEmpty() function in WhileStmt
1101 ReturnStmt *ReturnStmt::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in ReturnStmt
1120 CaseStmt *CaseStmt::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in CaseStmt
HDExprObjC.cpp52 ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(const ASTContext &C, in CreateEmpty() function in ObjCArrayLiteral
104 ObjCDictionaryLiteral::CreateEmpty(const ASTContext &C, unsigned NumElements, in CreateEmpty() function in ObjCDictionaryLiteral
263 ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in ObjCMessageExpr
HDStmtObjC.cpp57 ObjCAtTryStmt *ObjCAtTryStmt::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in ObjCAtTryStmt
HDExpr.cpp307 ConstantExpr *ConstantExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in ConstantExpr
586 DeclRefExpr *DeclRefExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in DeclRefExpr
642 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in PredefinedExpr
1095 StringLiteral *StringLiteral::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in StringLiteral
1406 CallExpr *CallExpr::CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, in CreateEmpty() function in CallExpr
1563 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OffsetOfExpr
1735 MemberExpr *MemberExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in MemberExpr
2017 ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in ImplicitCastExpr
2039 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CStyleCastExpr
4272 GenericSelectionExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in GenericSelectionExpr
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGDeclCXX.cpp675 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateCXXGlobalInitFunc()
734 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateCXXGlobalDtorsFunc()
HDCGOpenMPRuntimeNVPTX.cpp2167 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsProlog()
2173 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsProlog()
2429 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsEpilog()
2633 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
2646 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
2651 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
3279 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitInterWarpCopyFunction()
3393 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitInterWarpCopyFunction()
4453 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitReduction()
HDCGDebugInfo.h786 static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF) { in CreateEmpty() function
HDCGStmt.cpp698 auto NL = ApplyDebugLocation::CreateEmpty(*this); in EmitIfStmt()
707 auto NL = ApplyDebugLocation::CreateEmpty(*this); in EmitIfStmt()
HDCGVTables.cpp270 auto NL = ApplyDebugLocation::CreateEmpty(*this); in StartThunk()
HDCGOpenMPRuntime.cpp2850 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); in emitThreadPrivateVarDefinition()
2954 auto NL = ApplyDebugLocation::CreateEmpty(CtorCGF); in emitDeclareTargetVarDefinition()
2992 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); in emitDeclareTargetVarDefinition()
3079 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitIfClause()
3083 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitIfClause()
11574 (void)ApplyDebugLocation::CreateEmpty(CGF); in checkAndEmitLastprivateConditional()
HDCGBlocks.cpp1603 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateBlockFunction()
HDMicrosoftCXXABI.cpp3968 auto NL = ApplyDebugLocation::CreateEmpty(CGF); in getAddrOfCXXCtorClosure()
HDCGExprScalar.cpp4118 auto NL = ApplyDebugLocation::CreateEmpty(CGF); in VisitBinLAnd()

12