Home
last modified time | relevance | path

Searched refs:IVSize (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/CodeGen/
DCGOpenMPRuntime.h402 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,
DCGOpenMPRuntime.cpp1636 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 …]
DCGStmtOpenMP.cpp1677 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 …]
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.h771 llvm::FunctionCallee createForStaticInitFunction(unsigned IVSize,
776 llvm::FunctionCallee createDispatchInitFunction(unsigned IVSize,
781 llvm::FunctionCallee createDispatchNextFunction(unsigned IVSize,
786 llvm::FunctionCallee createDispatchFiniFunction(unsigned IVSize,
1126 unsigned IVSize, bool IVSigned, bool Ordered,
1132 unsigned IVSize = 0; member
1152 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL,
1155 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() function
1198 SourceLocation Loc, unsigned IVSize,
1226 unsigned IVSize, bool IVSigned,
[all …]
DCGStmtOpenMP.cpp2418 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPOuterLoop() local
2442 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL, in EmitOMPOuterLoop()
2483 [&S, &LoopArgs, LoopExit, &CodeGenLoop, IVSize, IVSigned, &CodeGenOrdered, in EmitOMPOuterLoop()
2496 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { in EmitOMPOuterLoop()
2497 CodeGenOrdered(CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop()
2590 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPForOuterLoop() local
2600 RT.emitForDispatchInit(*this, S.getBeginLoc(), ScheduleKind, IVSize, in EmitOMPForOuterLoop()
2604 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop()
2611 const unsigned IVSize, in EmitOMPForOuterLoop()
2614 CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize, in EmitOMPForOuterLoop()
[all …]
DCGOpenMPRuntime.cpp1547 CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize, bool IVSigned) { in createForStaticInitFunction() argument
1548 assert((IVSize == 32 || IVSize == 64) && in createForStaticInitFunction()
1550 StringRef Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4" in createForStaticInitFunction()
1554 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createForStaticInitFunction()
1573 CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize, bool IVSigned) { in createDispatchInitFunction() argument
1574 assert((IVSize == 32 || IVSize == 64) && in createDispatchInitFunction()
1577 IVSize == 32 in createDispatchInitFunction()
1580 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createDispatchInitFunction()
1595 CGOpenMPRuntime::createDispatchFiniFunction(unsigned IVSize, bool IVSigned) { in createDispatchFiniFunction() argument
1596 assert((IVSize == 32 || IVSize == 64) && in createDispatchFiniFunction()
[all …]