Searched refs:IVSize (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 402 llvm::Constant *createForStaticInitFunction(unsigned IVSize, bool IVSigned); 406 llvm::Constant *createDispatchInitFunction(unsigned IVSize, bool IVSigned); 410 llvm::Constant *createDispatchNextFunction(unsigned IVSize, bool IVSigned); 414 llvm::Constant *createDispatchFiniFunction(unsigned IVSize, bool IVSigned); 640 unsigned IVSize, bool IVSigned, bool Ordered, 670 unsigned IVSize, bool IVSigned, bool Ordered, 694 unsigned IVSize, bool IVSigned, 708 SourceLocation Loc, unsigned IVSize, 734 unsigned IVSize, bool IVSigned,
|
D | CGOpenMPRuntime.cpp | 1636 llvm::Constant *CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize, in createForStaticInitFunction() argument 1638 assert((IVSize == 32 || IVSize == 64) && in createForStaticInitFunction() 1640 auto Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4" in createForStaticInitFunction() 1644 auto ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createForStaticInitFunction() 1662 llvm::Constant *CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize, in createDispatchInitFunction() argument 1664 assert((IVSize == 32 || IVSize == 64) && in createDispatchInitFunction() 1667 IVSize == 32 in createDispatchInitFunction() 1670 auto ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createDispatchInitFunction() 1684 llvm::Constant *CGOpenMPRuntime::createDispatchFiniFunction(unsigned IVSize, in createDispatchFiniFunction() argument 1686 assert((IVSize == 32 || IVSize == 64) && in createDispatchFiniFunction() [all …]
|
D | CGStmtOpenMP.cpp | 1677 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPOuterLoop() local 1696 BoolCondVal = RT.emitForNext(*this, S.getLocStart(), IVSize, IVSigned, IL, in EmitOMPOuterLoop() 1736 [Ordered, IVSize, IVSigned, Loc](CodeGenFunction &CGF) { in EmitOMPOuterLoop() 1739 CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop() 1828 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPForOuterLoop() local 1833 RT.emitForDispatchInit(*this, S.getLocStart(), ScheduleKind, IVSize, in EmitOMPForOuterLoop() 1836 RT.emitForStaticInit(*this, S.getLocStart(), ScheduleKind, IVSize, IVSigned, in EmitOMPForOuterLoop() 1857 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPDistributeOuterLoop() local 1861 IVSize, IVSigned, /* Ordered = */ false, in EmitOMPDistributeOuterLoop() 2027 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPWorksharingLoop() local [all …]
|