Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h946 unsigned IVSize, bool IVSigned, bool Ordered,
954 bool IVSigned = false; member
972 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL,
975 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize()
1019 bool IVSigned);
1046 unsigned IVSize, bool IVSigned,
1834 unsigned IVSize, bool IVSigned, bool Ordered,
1876 unsigned IVSize, bool IVSigned) override;
1903 unsigned IVSize, bool IVSigned, Address IL,
H A DCGStmtOpenMP.cpp2815 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPOuterLoop() local
2893 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { in EmitOMPOuterLoop()
2894 CodeGenOrdered(CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop()
2997 IVSigned, Ordered, DipatchRTInputValues); in EmitOMPForOuterLoop()
3000 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop()
3008 const bool IVSigned) { in EmitOMPForOuterLoop() argument
3011 IVSigned); in EmitOMPForOuterLoop()
3027 const unsigned IVSize, const bool IVSigned) {} in emitEmptyOrdered() argument
3046 IVSize, IVSigned, /* Ordered = */ false, LoopArgs.IL, LoopArgs.LB, in EmitOMPDistributeOuterLoop()
3417 IVSize, IVSigned, Ordered, IL.getAddress(CGF), in EmitOMPWorksharingLoop()
[all …]
H A DCGOpenMPRuntime.cpp2523 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument
2551 CGF.EmitRuntimeCall(OMPBuilder.createDispatchInitFunction(IVSize, IVSigned), in emitForDispatchInit()
2619 OMPBuilder.createForStaticInitFunction(Values.IVSize, Values.IVSigned, in emitForStaticInit()
2640 Values.IVSize, Values.IVSigned, isGPUDistribute); in emitDistributeStaticInit()
2678 bool IVSigned) { in emitForOrderedIterationEnd() argument
2683 CGF.EmitRuntimeCall(OMPBuilder.createDispatchFiniFunction(IVSize, IVSigned), in emitForOrderedIterationEnd()
2689 bool IVSigned, Address IL, in emitForNext() argument
2705 OMPBuilder.createDispatchNextFunction(IVSize, IVSigned), Args); in emitForNext()
12003 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument
12023 bool IVSigned) { in emitForOrderedIterationEnd() argument
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2241 FunctionCallee createForStaticInitFunction(unsigned IVSize, bool IVSigned,
2246 FunctionCallee createDispatchInitFunction(unsigned IVSize, bool IVSigned);
2250 FunctionCallee createDispatchNextFunction(unsigned IVSize, bool IVSigned);
2254 FunctionCallee createDispatchFiniFunction(unsigned IVSize, bool IVSigned);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp4921 OpenMPIRBuilder::createForStaticInitFunction(unsigned IVSize, bool IVSigned, in createForStaticInitFunction() argument
4928 ? (IVSigned ? omp::OMPRTL___kmpc_distribute_static_init_4 in createForStaticInitFunction()
4930 : (IVSigned ? omp::OMPRTL___kmpc_distribute_static_init_8 in createForStaticInitFunction()
4933 Name = IVSize == 32 ? (IVSigned ? omp::OMPRTL___kmpc_for_static_init_4 in createForStaticInitFunction()
4935 : (IVSigned ? omp::OMPRTL___kmpc_for_static_init_8 in createForStaticInitFunction()
4942 bool IVSigned) { in createDispatchInitFunction() argument
4946 ? (IVSigned ? omp::OMPRTL___kmpc_dispatch_init_4 in createDispatchInitFunction()
4948 : (IVSigned ? omp::OMPRTL___kmpc_dispatch_init_8 in createDispatchInitFunction()
4955 bool IVSigned) { in createDispatchNextFunction() argument
4959 ? (IVSigned ? omp::OMPRTL___kmpc_dispatch_next_4 in createDispatchNextFunction()
[all …]