Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h770 llvm::FunctionCallee createForStaticInitFunction(unsigned IVSize,
775 llvm::FunctionCallee createDispatchInitFunction(unsigned IVSize,
780 llvm::FunctionCallee createDispatchNextFunction(unsigned IVSize,
785 llvm::FunctionCallee createDispatchFiniFunction(unsigned IVSize,
1134 unsigned IVSize, bool IVSigned, bool Ordered,
1140 unsigned IVSize = 0; member
1160 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL,
1163 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() function
1206 SourceLocation Loc, unsigned IVSize,
1234 unsigned IVSize, bool IVSigned,
[all …]
H A DCGStmtOpenMP.cpp2593 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPOuterLoop() local
2618 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL, in EmitOMPOuterLoop()
2659 [&S, &LoopArgs, LoopExit, &CodeGenLoop, IVSize, IVSigned, &CodeGenOrdered, in EmitOMPOuterLoop()
2672 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { in EmitOMPOuterLoop()
2673 CodeGenOrdered(CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop()
2767 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType()); in EmitOMPForOuterLoop() local
2777 RT.emitForDispatchInit(*this, S.getBeginLoc(), ScheduleKind, IVSize, in EmitOMPForOuterLoop()
2781 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop()
2788 const unsigned IVSize, in EmitOMPForOuterLoop()
2791 CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize, in EmitOMPForOuterLoop()
[all …]
H A DCGOpenMPRuntime.cpp1559 CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize, bool IVSigned) { in createForStaticInitFunction() argument
1560 assert((IVSize == 32 || IVSize == 64) && in createForStaticInitFunction()
1562 StringRef Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4" in createForStaticInitFunction()
1566 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createForStaticInitFunction()
1585 CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize, bool IVSigned) { in createDispatchInitFunction() argument
1586 assert((IVSize == 32 || IVSize == 64) && in createDispatchInitFunction()
1589 IVSize == 32 in createDispatchInitFunction()
1592 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty; in createDispatchInitFunction()
1607 CGOpenMPRuntime::createDispatchFiniFunction(unsigned IVSize, bool IVSigned) { in createDispatchFiniFunction() argument
1608 assert((IVSize == 32 || IVSize == 64) && in createDispatchFiniFunction()
[all …]