Home
last modified time | relevance | path

Searched refs:IslCtx (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/polly/include/polly/Support/
H A DGICHelper.h358 isl_ctx *IslCtx; variable
365 : IslCtx(Other.IslCtx), OldOnError(Other.OldOnError) { in IslQuotaScope()
369 std::swap(this->IslCtx, Other.IslCtx);
378 : IslCtx(IslCtx) { in IslQuotaScope()
379 assert(IslCtx); in IslQuotaScope()
393 if (!IslCtx) in ~IslQuotaScope()
405 if (!IslCtx) in hasQuotaExceeded()
430 isl_ctx *IslCtx;
451 : IslCtx(IslCtx), LocalMaxOps(LocalMaxOps) { in IslCtx() function
452 assert(IslCtx); in IslCtx()
[all …]
/llvm-project-15.0.7/polly/unittests/Isl/
H A DIslTest.cpp79 isl_ctx *IslCtx = isl_ctx_alloc(); in TEST() local
147 auto IslRef = isl::val(IslCtx, 71); in TEST()
152 isl_ctx_free(IslCtx); in TEST()
156 isl_ctx *IslCtx = isl_ctx_alloc(); in TEST() local
159 auto IslNOne = isl::val(IslCtx, -1); in TEST()
167 auto IslNTwo = isl::val(IslCtx, -2); in TEST()
191 auto IslZero = isl::val(IslCtx, 0); in TEST()
198 auto IslOne = isl::val(IslCtx, 1); in TEST()
205 auto IslTwo = isl::val(IslCtx, 2); in TEST()
219 auto IslFour = isl::val(IslCtx, 4); in TEST()
[all …]
/llvm-project-15.0.7/polly/include/polly/
H A DDependenceInfo.h83 const std::shared_ptr<isl_ctx> &getSharedIslCtx() const { return IslCtx; } in getSharedIslCtx()
155 explicit Dependences(const std::shared_ptr<isl_ctx> &IslCtx, in Dependences() argument
158 IslCtx(IslCtx), Level(Level) {} in Dependences()
189 std::shared_ptr<isl_ctx> IslCtx; variable
H A DZoneAlgo.h55 std::shared_ptr<isl_ctx> IslCtx; variable
H A DScopInfo.h231 ScopArrayInfo(Value *BasePtr, Type *ElementType, isl::ctx IslCtx,
1656 std::shared_ptr<isl_ctx> IslCtx; variable
2487 const std::shared_ptr<isl_ctx> &getSharedIslCtx() const { return IslCtx; } in getSharedIslCtx()
/llvm-project-15.0.7/polly/lib/Transform/
H A DFlattenSchedule.cpp43 std::shared_ptr<isl_ctx> IslCtx; member in __anon60cfb9bb0111::FlattenSchedule
58 IslCtx = S.getSharedIslCtx(); in runOnScop()
94 IslCtx.reset(); in releaseMemory()
H A DFlattenAlgo.cpp165 auto IslCtx = Schedule.ctx(); in tryFlattenSequence() local
220 isl::val::one(IslCtx)); in tryFlattenSequence()
H A DScheduleOptimizer.cpp604 IslCtx.reset(); in releaseMemory()
608 std::shared_ptr<isl_ctx> IslCtx; member in __anonc229ce900111::IslScheduleOptimizerWrapperPass
898 IslCtx = S.getSharedIslCtx(); in runOnScop()
H A DZoneAlgo.cpp263 : PassName(PassName), IslCtx(S->getSharedIslCtx()), S(S), LI(LI), in ZoneAlgorithm()
739 Id = isl::id::alloc(IslCtx.get(), Name.c_str(), V); in makeValueId()
H A DDeLICM.cpp1200 IslMaxOperationsGuard MaxOpGuard(IslCtx.get(), DelicmMaxOps); in computeZone()
1211 assert(isl_ctx_last_error(IslCtx.get()) == isl_error_quota && in computeZone()
H A DForwardOpTree.cpp367 assert(isl_ctx_last_error(IslCtx.get()) == isl_error_quota); in computeKnownValues()
/llvm-project-15.0.7/polly/lib/Analysis/
H A DDependenceInfo.cpp370 IslMaxOperationsGuard MaxOpGuard(IslCtx.get(), OptComputeOut); in calculateDependences()
480 if (isl_ctx_last_error(IslCtx.get()) == isl_error_quota) { in calculateDependences()
486 isl_ctx_reset_error(IslCtx.get()); in calculateDependences()
H A DScopInfo.cpp1600 : IslCtx(isl_ctx_alloc(), isl_ctx_free), SE(&ScalarEvolution), DT(&DT), in Scop()
1605 isl_options_set_schedule_serialize_sccs(IslCtx.get(), true); in Scop()
1621 isl_ctx_parse_options(IslCtx.get(), IslArgv.size(), IslArgv.data(), in Scop()
2164 isl::ctx Scop::getIslCtx() const { return IslCtx.get(); } in getIslCtx()