HomeSort by: relevance | last modified time | path
    Searched refs:IVSize (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 769 /// size \a IVSize and sign \a IVSigned.
770 llvm::FunctionCallee createForStaticInitFunction(unsigned IVSize,
774 /// size \a IVSize and sign \a IVSigned.
775 llvm::FunctionCallee createDispatchInitFunction(unsigned IVSize,
779 /// size \a IVSize and sign \a IVSigned.
780 llvm::FunctionCallee createDispatchNextFunction(unsigned IVSize,
784 /// size \a IVSize and sign \a IVSigned.
785 llvm::FunctionCallee createDispatchFiniFunction(unsigned IVSize,
1125 /// \param IVSize Size of the iteration variable in bits.
1134 unsigned IVSize, bool IVSigned, bool Ordered
    [all...]
CGOpenMPRuntime.cpp 1559 CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize, bool IVSigned) {
1560 assert((IVSize == 32 || IVSize == 64) &&
1562 StringRef Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4"
1566 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty;
1585 CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize, bool IVSigned) {
1586 assert((IVSize == 32 || IVSize == 64) &&
1589 IVSize == 32
1592 llvm::Type *ITy = IVSize == 32 ? CGM.Int32Ty : CGM.Int64Ty
    [all...]
CGStmtOpenMP.cpp 2593 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
2618 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL,
2659 [&S, &LoopArgs, LoopExit, &CodeGenLoop, IVSize, IVSigned, &CodeGenOrdered,
2672 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) {
2673 CodeGenOrdered(CGF, Loc, IVSize, IVSigned);
2767 const unsigned IVSize = getContext().getTypeSize(IVExpr->getType());
2777 RT.emitForDispatchInit(*this, S.getBeginLoc(), ScheduleKind, IVSize,
2781 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB,
2788 const unsigned IVSize,
2791 CGF.CGM.getOpenMPRuntime().emitForOrderedIterationEnd(CGF, Loc, IVSize,
    [all...]

Completed in 25 milliseconds