Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h946 unsigned IVSize, bool IVSigned, bool Ordered,
960 unsigned IVSize = 0; member
980 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL,
983 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() function
1026 SourceLocation Loc, unsigned IVSize,
1054 unsigned IVSize, bool IVSigned,
1837 unsigned IVSize, bool IVSigned, bool Ordered,
1887 unsigned IVSize, bool IVSigned) override;
1914 unsigned IVSize, bool IVSigned, Address IL,
H A DCGStmtOpenMP.cpp2854 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPOuterLoop() local
2879 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL, in EmitOMPOuterLoop()
2920 [&S, &LoopArgs, LoopExit, &CodeGenLoop, IVSize, IVSigned, &CodeGenOrdered, in EmitOMPOuterLoop()
2933 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { in EmitOMPOuterLoop()
2934 CodeGenOrdered(CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop()
3028 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPForOuterLoop() local
3038 RT.emitForDispatchInit(*this, S.getBeginLoc(), ScheduleKind, IVSize, in EmitOMPForOuterLoop()
3042 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop()
3049 const unsigned IVSize, in EmitOMPForOuterLoop()
3052 CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize, in EmitOMPForOuterLoop()
[all …]
H A DCGOpenMPRuntime.cpp2526 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument
2543 : CGF.Builder.getIntN(IVSize, 1); in emitForDispatchInit()
2551 CGF.Builder.getIntN(IVSize, 1), // Stride in emitForDispatchInit()
2554 CGF.EmitRuntimeCall(OMPBuilder.createDispatchInitFunction(IVSize, IVSigned), in emitForDispatchInit()
2593 Chunk = CGF.Builder.getIntN(Values.IVSize, 1); in emitForStaticInitCall()
2610 CGF.Builder.getIntN(Values.IVSize, 1), // Incr in emitForStaticInitCall()
2631 OMPBuilder.createForStaticInitFunction(Values.IVSize, Values.IVSigned, in emitForStaticInit()
2652 Values.IVSize, Values.IVSigned, isGPUDistribute); in emitDistributeStaticInit()
2693 unsigned IVSize, in emitForOrderedIterationEnd() argument
2699 CGF.EmitRuntimeCall(OMPBuilder.createDispatchFiniFunction(IVSize, IVSigned), in emitForOrderedIterationEnd()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2844 FunctionCallee createForStaticInitFunction(unsigned IVSize, bool IVSigned,
2849 FunctionCallee createDispatchInitFunction(unsigned IVSize, bool IVSigned);
2853 FunctionCallee createDispatchNextFunction(unsigned IVSize, bool IVSigned);
2857 FunctionCallee createDispatchFiniFunction(unsigned IVSize, bool IVSigned);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp1462 if (unsigned IVSize = CanonicalIVPHI->getScalarType()->getScalarSizeInBits(); in tryAddExplicitVectorLength() local
1463 IVSize != 32) { in tryAddExplicitVectorLength()
1464 OpVPEVL = new VPScalarCastRecipe(IVSize < 32 ? Instruction::Trunc in tryAddExplicitVectorLength()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp6481 OpenMPIRBuilder::createForStaticInitFunction(unsigned IVSize, bool IVSigned, in createForStaticInitFunction() argument
6483 assert((IVSize == 32 || IVSize == 64) && in createForStaticInitFunction()
6487 Name = IVSize == 32 in createForStaticInitFunction()
6493 Name = IVSize == 32 ? (IVSigned ? omp::OMPRTL___kmpc_for_static_init_4 in createForStaticInitFunction()
6501 FunctionCallee OpenMPIRBuilder::createDispatchInitFunction(unsigned IVSize, in createDispatchInitFunction() argument
6503 assert((IVSize == 32 || IVSize == 64) && in createDispatchInitFunction()
6505 RuntimeFunction Name = IVSize == 32 in createDispatchInitFunction()
6514 FunctionCallee OpenMPIRBuilder::createDispatchNextFunction(unsigned IVSize, in createDispatchNextFunction() argument
6516 assert((IVSize == 32 || IVSize == 64) && in createDispatchNextFunction()
6518 RuntimeFunction Name = IVSize == 32 in createDispatchNextFunction()
[all …]