Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h928 unsigned IVSize, bool IVSigned, bool Ordered,
942 unsigned IVSize = 0; member
962 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL,
965 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() function
1008 SourceLocation Loc, unsigned IVSize,
1036 unsigned IVSize, bool IVSigned,
1831 unsigned IVSize, bool IVSigned, bool Ordered,
1881 unsigned IVSize, bool IVSigned) override;
1908 unsigned IVSize, bool IVSigned, Address IL,
H A DCGStmtOpenMP.cpp2996 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPOuterLoop() local
3021 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL, in EmitOMPOuterLoop()
3063 [&S, &LoopArgs, LoopExit, &CodeGenLoop, IVSize, IVSigned, &CodeGenOrdered, in EmitOMPOuterLoop()
3076 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { in EmitOMPOuterLoop()
3077 CodeGenOrdered(CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop()
3171 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPForOuterLoop() local
3181 RT.emitForDispatchInit(*this, S.getBeginLoc(), ScheduleKind, IVSize, in EmitOMPForOuterLoop()
3185 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop()
3193 const unsigned IVSize, in EmitOMPForOuterLoop()
3196 CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize, in EmitOMPForOuterLoop()
[all …]
H A DCGOpenMPRuntime.cpp2504 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument
2521 : CGF.Builder.getIntN(IVSize, 1); in emitForDispatchInit()
2529 CGF.Builder.getIntN(IVSize, 1), // Stride in emitForDispatchInit()
2532 CGF.EmitRuntimeCall(OMPBuilder.createDispatchInitFunction(IVSize, IVSigned), in emitForDispatchInit()
2571 Chunk = CGF.Builder.getIntN(Values.IVSize, 1); in emitForStaticInitCall()
2588 CGF.Builder.getIntN(Values.IVSize, 1), // Incr in emitForStaticInitCall()
2609 OMPBuilder.createForStaticInitFunction(Values.IVSize, Values.IVSigned, in emitForStaticInit()
2629 Values.IVSize, Values.IVSigned, isGPUDistribute); in emitDistributeStaticInit()
2669 unsigned IVSize, in emitForOrderedIterationEnd() argument
2675 CGF.EmitRuntimeCall(OMPBuilder.createDispatchFiniFunction(IVSize, IVSigned), in emitForOrderedIterationEnd()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h3116 LLVM_ABI FunctionCallee createForStaticInitFunction(unsigned IVSize,
3122 LLVM_ABI FunctionCallee createDispatchInitFunction(unsigned IVSize,
3127 LLVM_ABI FunctionCallee createDispatchNextFunction(unsigned IVSize,
3132 LLVM_ABI FunctionCallee createDispatchFiniFunction(unsigned IVSize,
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp6856 OpenMPIRBuilder::createForStaticInitFunction(unsigned IVSize, bool IVSigned, in createForStaticInitFunction() argument
6858 assert((IVSize == 32 || IVSize == 64) && in createForStaticInitFunction()
6862 Name = IVSize == 32 in createForStaticInitFunction()
6868 Name = IVSize == 32 ? (IVSigned ? omp::OMPRTL___kmpc_for_static_init_4 in createForStaticInitFunction()
6876 FunctionCallee OpenMPIRBuilder::createDispatchInitFunction(unsigned IVSize, in createDispatchInitFunction() argument
6878 assert((IVSize == 32 || IVSize == 64) && in createDispatchInitFunction()
6880 RuntimeFunction Name = IVSize == 32 in createDispatchInitFunction()
6889 FunctionCallee OpenMPIRBuilder::createDispatchNextFunction(unsigned IVSize, in createDispatchNextFunction() argument
6891 assert((IVSize == 32 || IVSize == 64) && in createDispatchNextFunction()
6893 RuntimeFunction Name = IVSize == 32 in createDispatchNextFunction()
[all …]