/external/llvm-project/polly/include/polly/Support/ |
D | GICHelper.h | 281 isl_ctx *IslCtx; variable 285 IslQuotaScope() : IslCtx(nullptr) {} in IslQuotaScope() 288 : IslCtx(Other.IslCtx), OldOnError(Other.OldOnError) { in IslQuotaScope() 289 Other.IslCtx = nullptr; in IslQuotaScope() 292 std::swap(this->IslCtx, Other.IslCtx); 300 explicit IslQuotaScope(isl_ctx *IslCtx, unsigned long LocalMaxOps) in IslQuotaScope() argument 301 : IslCtx(IslCtx) { in IslQuotaScope() 302 assert(IslCtx); in IslQuotaScope() 303 assert(isl_ctx_get_max_operations(IslCtx) == 0 && "Incorrect nesting"); in IslQuotaScope() 305 this->IslCtx = nullptr; in IslQuotaScope() [all …]
|
/external/llvm-project/polly/unittests/Isl/ |
D | IslTest.cpp | 87 isl_ctx *IslCtx = isl_ctx_alloc(); in TEST() local 91 auto IslZero = valFromAPInt(IslCtx, APZero, true); in TEST() 97 auto IslNOne = valFromAPInt(IslCtx, APNOne, true); in TEST() 103 auto IslZero = valFromAPInt(IslCtx, APZero, false); in TEST() 109 auto IslOne = valFromAPInt(IslCtx, APOne, false); in TEST() 115 auto IslNTwo = valFromAPInt(IslCtx, APNTwo, true); in TEST() 116 auto IslNTwoCmp = isl::val(IslCtx, -2); in TEST() 122 auto IslNOne = valFromAPInt(IslCtx, APNOne, true); in TEST() 128 auto IslZero = valFromAPInt(IslCtx, APZero, false); in TEST() 134 auto IslOne = valFromAPInt(IslCtx, APOne, false); in TEST() [all …]
|
/external/llvm-project/polly/include/polly/ |
D | DependenceInfo.h | 84 const std::shared_ptr<isl_ctx> &getSharedIslCtx() const { return IslCtx; } in getSharedIslCtx() 152 explicit Dependences(const std::shared_ptr<isl_ctx> &IslCtx, in Dependences() 155 IslCtx(IslCtx), Level(Level) {} in Dependences() 186 std::shared_ptr<isl_ctx> IslCtx; member
|
D | ZoneAlgo.h | 55 std::shared_ptr<isl_ctx> IslCtx; variable
|
D | ScopInfo.h | 208 ScopArrayInfo(Value *BasePtr, Type *ElementType, isl::ctx IslCtx, 1701 std::shared_ptr<isl_ctx> IslCtx; variable 2503 const std::shared_ptr<isl_ctx> &getSharedIslCtx() const { return IslCtx; } in getSharedIslCtx()
|
/external/llvm-project/polly/lib/Transform/ |
D | FlattenSchedule.cpp | 43 std::shared_ptr<isl_ctx> IslCtx; member in __anonc5c57bc20111::FlattenSchedule 58 IslCtx = S.getSharedIslCtx(); in runOnScop() 94 IslCtx.reset(); in releaseMemory()
|
D | FlattenAlgo.cpp | 174 auto IslCtx = Schedule.get_ctx(); in tryFlattenSequence() local 228 isl::val::one(IslCtx)); in tryFlattenSequence()
|
D | ZoneAlgo.cpp | 262 : PassName(PassName), IslCtx(S->getSharedIslCtx()), S(S), LI(LI), in ZoneAlgorithm() 732 Id = isl::id::alloc(IslCtx.get(), Name.c_str(), V); in makeValueId()
|
D | DeLICM.cpp | 1195 IslMaxOperationsGuard MaxOpGuard(IslCtx.get(), DelicmMaxOps); in computeZone() 1206 assert(isl_ctx_last_error(IslCtx.get()) == isl_error_quota && in computeZone()
|
D | ScheduleOptimizer.cpp | 1407 IslCtx.reset(); in releaseMemory() 1411 std::shared_ptr<isl_ctx> IslCtx; member in __anon3b982e570311::IslScheduleOptimizer 1636 IslCtx = S.getSharedIslCtx(); in runOnScop()
|
D | ForwardOpTree.cpp | 364 assert(isl_ctx_last_error(IslCtx.get()) == isl_error_quota); in computeKnownValues()
|
/external/llvm-project/polly/lib/Analysis/ |
D | DependenceInfo.cpp | 371 IslMaxOperationsGuard MaxOpGuard(IslCtx.get(), OptComputeOut); in calculateDependences() 481 if (isl_ctx_last_error(IslCtx.get()) == isl_error_quota) { in calculateDependences() 487 isl_ctx_reset_error(IslCtx.get()); in calculateDependences()
|
D | ScopInfo.cpp | 1703 : IslCtx(isl_ctx_alloc(), isl_ctx_free), SE(&ScalarEvolution), DT(&DT), in Scop() 1720 isl_ctx_parse_options(IslCtx.get(), IslArgv.size(), IslArgv.data(), in Scop() 2249 isl::ctx Scop::getIslCtx() const { return IslCtx.get(); } in getIslCtx()
|