Lines Matching refs:IVSize

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()
1689 IVSize == 32 in createDispatchFiniFunction()
1701 llvm::Constant *CGOpenMPRuntime::createDispatchNextFunction(unsigned IVSize, in createDispatchNextFunction() argument
1703 assert((IVSize == 32 || IVSize == 64) && in createDispatchNextFunction()
1706 IVSize == 32 in createDispatchNextFunction()
1709 auto ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createDispatchNextFunction()
2451 unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument
2469 Chunk = CGF.Builder.getIntN(IVSize, 1); in emitForDispatchInit()
2474 CGF.Builder.getIntN(IVSize, 0), // Lower in emitForDispatchInit()
2476 CGF.Builder.getIntN(IVSize, 1), // Stride in emitForDispatchInit()
2479 CGF.EmitRuntimeCall(createDispatchInitFunction(IVSize, IVSigned), Args); in emitForDispatchInit()
2486 unsigned IVSize, bool Ordered, Address IL, Address LB, Address UB, in emitForStaticInitCall() argument
2508 Chunk = CGF.Builder.getIntN(IVSize, 1); in emitForStaticInitCall()
2523 CGF.Builder.getIntN(IVSize, 1), // Incr in emitForStaticInitCall()
2532 unsigned IVSize, bool IVSigned, in emitForStaticInit() argument
2540 auto *StaticInitFunction = createForStaticInitFunction(IVSize, IVSigned); in emitForStaticInit()
2542 ScheduleNum, ScheduleKind.M1, ScheduleKind.M2, IVSize, in emitForStaticInit()
2548 OpenMPDistScheduleClauseKind SchedKind, unsigned IVSize, bool IVSigned, in emitDistributeStaticInit() argument
2554 auto *StaticInitFunction = createForStaticInitFunction(IVSize, IVSigned); in emitDistributeStaticInit()
2557 OMPC_SCHEDULE_MODIFIER_unknown, IVSize, Ordered, IL, LB, in emitDistributeStaticInit()
2573 unsigned IVSize, in emitForOrderedIterationEnd() argument
2579 CGF.EmitRuntimeCall(createDispatchFiniFunction(IVSize, IVSigned), Args); in emitForOrderedIterationEnd()
2583 SourceLocation Loc, unsigned IVSize, in emitForNext() argument
2600 CGF.EmitRuntimeCall(createDispatchNextFunction(IVSize, IVSigned), Args); in emitForNext()