/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 402 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,
|
D | CGOpenMPRuntime.cpp | 1637 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 …]
|
D | CGStmtOpenMP.cpp | 1678 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 …]
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 772 bool IVSigned); 777 bool IVSigned); 782 bool IVSigned); 787 bool IVSigned); 1126 unsigned IVSize, bool IVSigned, bool Ordered, 1134 bool IVSigned = false; member 1152 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL, 1155 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() 1199 bool IVSigned); 1226 unsigned IVSize, bool IVSigned, [all …]
|
D | CGStmtOpenMP.cpp | 2419 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPOuterLoop() local 2442 RT.emitForNext(*this, S.getBeginLoc(), IVSize, IVSigned, LoopArgs.IL, in EmitOMPOuterLoop() 2483 [&S, &LoopArgs, LoopExit, &CodeGenLoop, IVSize, IVSigned, &CodeGenOrdered, in EmitOMPOuterLoop() 2496 [IVSize, IVSigned, Loc, &CodeGenOrdered](CodeGenFunction &CGF) { in EmitOMPOuterLoop() 2497 CodeGenOrdered(CGF, Loc, IVSize, IVSigned); in EmitOMPOuterLoop() 2591 const bool IVSigned = IVExpr->getType()->hasSignedIntegerRepresentation(); in EmitOMPForOuterLoop() local 2601 IVSigned, Ordered, DipatchRTInputValues); in EmitOMPForOuterLoop() 2604 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop() 2612 const bool IVSigned) { in EmitOMPForOuterLoop() argument 2615 IVSigned); in EmitOMPForOuterLoop() [all …]
|
D | CGOpenMPRuntime.cpp | 1547 CGOpenMPRuntime::createForStaticInitFunction(unsigned IVSize, bool IVSigned) { in createForStaticInitFunction() argument 1550 StringRef Name = IVSize == 32 ? (IVSigned ? "__kmpc_for_static_init_4" in createForStaticInitFunction() 1552 : (IVSigned ? "__kmpc_for_static_init_8" in createForStaticInitFunction() 1573 CGOpenMPRuntime::createDispatchInitFunction(unsigned IVSize, bool IVSigned) { in createDispatchInitFunction() argument 1578 ? (IVSigned ? "__kmpc_dispatch_init_4" : "__kmpc_dispatch_init_4u") in createDispatchInitFunction() 1579 : (IVSigned ? "__kmpc_dispatch_init_8" : "__kmpc_dispatch_init_8u"); in createDispatchInitFunction() 1595 CGOpenMPRuntime::createDispatchFiniFunction(unsigned IVSize, bool IVSigned) { in createDispatchFiniFunction() argument 1600 ? (IVSigned ? "__kmpc_dispatch_fini_4" : "__kmpc_dispatch_fini_4u") in createDispatchFiniFunction() 1601 : (IVSigned ? "__kmpc_dispatch_fini_8" : "__kmpc_dispatch_fini_8u"); in createDispatchFiniFunction() 1612 CGOpenMPRuntime::createDispatchNextFunction(unsigned IVSize, bool IVSigned) { in createDispatchNextFunction() argument [all …]
|