Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGOpenMPRuntime.h402 llvm::Constant *createForStaticInitFunction(unsigned IVSize, bool IVSigned);
406 llvm::Constant *createDispatchInitFunction(unsigned IVSize, bool IVSigned);
410 llvm::Constant *createDispatchNextFunction(unsigned IVSize, bool IVSigned);
414 llvm::Constant *createDispatchFiniFunction(unsigned IVSize, bool IVSigned);
640 unsigned IVSize, bool IVSigned, bool Ordered,
670 unsigned IVSize, bool IVSigned, bool Ordered,
694 unsigned IVSize, bool IVSigned,
709 bool IVSigned);
734 unsigned IVSize, bool IVSigned,
DCGOpenMPRuntime.cpp1637 bool IVSigned) { in createForStaticInitFunction() argument
1640 auto Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4" in createForStaticInitFunction()
1642 : (IVSigned ? "__kmpc_for_static_init_8" in createForStaticInitFunction()
1663 bool IVSigned) { in createDispatchInitFunction() argument
1668 ? (IVSigned ? "__kmpc_dispatch_init_4" : "__kmpc_dispatch_init_4u") in createDispatchInitFunction()
1669 : (IVSigned ? "__kmpc_dispatch_init_8" : "__kmpc_dispatch_init_8u"); in createDispatchInitFunction()
1685 bool IVSigned) { in createDispatchFiniFunction() argument
1690 ? (IVSigned ? "__kmpc_dispatch_fini_4" : "__kmpc_dispatch_fini_4u") in createDispatchFiniFunction()
1691 : (IVSigned ? "__kmpc_dispatch_fini_8" : "__kmpc_dispatch_fini_8u"); in createDispatchFiniFunction()
1702 bool IVSigned) { in createDispatchNextFunction() argument
[all …]
DCGStmtOpenMP.cpp1678 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPOuterLoop() local
1696 BoolCondVal = RT.emitForNext(*this, S.getLocStart(), IVSize, IVSigned, IL, in EmitOMPOuterLoop()
1736 [Ordered, IVSize, IVSigned, Loc](CodeGenFunction &CGF) { in EmitOMPOuterLoop()
1739 CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop()
1829 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPForOuterLoop() local
1834 IVSigned, Ordered, UBVal, Chunk); in EmitOMPForOuterLoop()
1836 RT.emitForStaticInit(*this, S.getLocStart(), ScheduleKind, IVSize, IVSigned, in EmitOMPForOuterLoop()
1858 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPDistributeOuterLoop() local
1861 IVSize, IVSigned, /* Ordered = */ false, in EmitOMPDistributeOuterLoop()
2028 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPWorksharingLoop() local
[all …]