/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.h | 946 unsigned IVSize, bool IVSigned, bool Ordered, 962 bool IVSigned = false; member 980 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL, 983 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() 1027 bool IVSigned); 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 D | CGStmtOpenMP.cpp | 2855 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); 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() 3029 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPForOuterLoop() local 3039 IVSigned, Ordered, DipatchRTInputValues); in EmitOMPForOuterLoop() 3042 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop() 3050 const bool IVSigned) { in EmitOMPForOuterLoop() argument 3053 IVSigned); in EmitOMPForOuterLoop() [all …]
|
H A D | CGOpenMPRuntime.cpp | 2526 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument 2554 CGF.EmitRuntimeCall(OMPBuilder.createDispatchInitFunction(IVSize, IVSigned), in emitForDispatchInit() 2631 OMPBuilder.createForStaticInitFunction(Values.IVSize, Values.IVSigned, in emitForStaticInit() 2652 Values.IVSize, Values.IVSigned, isGPUDistribute); in emitDistributeStaticInit() 2694 bool IVSigned) { in emitForOrderedIterationEnd() argument 2699 CGF.EmitRuntimeCall(OMPBuilder.createDispatchFiniFunction(IVSize, IVSigned), in emitForOrderedIterationEnd() 2705 bool IVSigned, Address IL, in emitForNext() argument 2720 OMPBuilder.createDispatchNextFunction(IVSize, IVSigned), Args); in emitForNext() 12033 const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, in emitForDispatchInit() argument 12058 bool IVSigned) { in emitForOrderedIterationEnd() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMPIRBuilder.h | 2844 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/Frontend/OpenMP/ |
H A D | OMPIRBuilder.cpp | 6481 OpenMPIRBuilder::createForStaticInitFunction(unsigned IVSize, bool IVSigned, in createForStaticInitFunction() argument 6488 ? (IVSigned ? omp::OMPRTL___kmpc_distribute_static_init_4 in createForStaticInitFunction() 6490 : (IVSigned ? omp::OMPRTL___kmpc_distribute_static_init_8 in createForStaticInitFunction() 6493 Name = IVSize == 32 ? (IVSigned ? omp::OMPRTL___kmpc_for_static_init_4 in createForStaticInitFunction() 6495 : (IVSigned ? omp::OMPRTL___kmpc_for_static_init_8 in createForStaticInitFunction() 6502 bool IVSigned) { in createDispatchInitFunction() argument 6506 ? (IVSigned ? omp::OMPRTL___kmpc_dispatch_init_4 in createDispatchInitFunction() 6508 : (IVSigned ? omp::OMPRTL___kmpc_dispatch_init_8 in createDispatchInitFunction() 6515 bool IVSigned) { in createDispatchNextFunction() argument 6519 ? (IVSigned ? omp::OMPRTL___kmpc_dispatch_next_4 in createDispatchNextFunction() [all …]
|