Home
last modified time | relevance | path

Searched refs:RELEASE (Results 1 - 25 of 26) sorted by relevance

12

/arkcompiler/runtime_core/libpandabase/utils/
H A Dexpected.h56 static constexpr bool RELEASE = true; member in panda::final
58 static constexpr bool RELEASE = false;
87 const E &Error() const &noexcept(ExpectedConfig::RELEASE) in noexcept()
92 E &Error() & noexcept(ExpectedConfig::RELEASE) in noexcept()
97 E &&Error() && noexcept(ExpectedConfig::RELEASE) in noexcept()
103 const T &Value() const &noexcept(ExpectedConfig::RELEASE) in noexcept()
110 T &Value() & noexcept(ExpectedConfig::RELEASE) in noexcept()
115 T &&Value() && noexcept(ExpectedConfig::RELEASE) in noexcept()
120 const T &operator*() const &noexcept(ExpectedConfig::RELEASE) in noexcept()
124 T &operator*() & noexcept(ExpectedConfig::RELEASE) in noexcept()
[all...]
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dexpected.h56 static constexpr bool RELEASE = true; member in ark::final
58 static constexpr bool RELEASE = false;
87 const E &Error() const &noexcept(ExpectedConfig::RELEASE) in noexcept()
93 E &Error() &noexcept(ExpectedConfig::RELEASE) in noexcept()
98 E &&Error() &&noexcept(ExpectedConfig::RELEASE) in noexcept()
104 const T &Value() const &noexcept(ExpectedConfig::RELEASE) in noexcept()
111 T &Value() &noexcept(ExpectedConfig::RELEASE) in noexcept()
116 T &&Value() &&noexcept(ExpectedConfig::RELEASE) in noexcept()
121 const T &operator*() const &noexcept(ExpectedConfig::RELEASE) in noexcept()
126 T &operator*() &noexcept(ExpectedConfig::RELEASE) in noexcept()
[all...]
/arkcompiler/runtime_core/static_core/runtime/coroutines/
H A Dstackful_coroutine_worker.h98 bool WaitForEvent(CoroutineEvent *awaitee) RELEASE(awaitee);
160 void BlockCurrentCoroAndScheduleNext() RELEASE(runnablesLock_) RELEASE(waitersLock_);
161 void SuspendCurrentCoroAndScheduleNext() RELEASE(runnablesLock_);
167 void ScheduleNextCoroUnlockRunnablesWaiters() RELEASE(runnablesLock_) RELEASE(waitersLock_);
168 void ScheduleNextCoroUnlockRunnables() RELEASE(runnablesLock_);
H A Dthreaded_coroutine_manager.h49 void Await(CoroutineEvent *awaitee) RELEASE(awaitee) override;
105 bool RegisterWaiter(Coroutine *waiter, CoroutineEvent *awaitee) RELEASE(awaitee);
H A Dcoroutine_events.h72 void Unlock() RELEASE() in RELEASE() function
H A Dcoroutine_manager.h135 virtual void Await(CoroutineEvent *awaitee) RELEASE(awaitee) = 0;
H A Dstackful_coroutine_manager.h49 void Await(CoroutineEvent *awaitee) RELEASE(awaitee) override;
/arkcompiler/runtime_core/static_core/runtime/mem/
H A Drendezvous.h44 virtual void SafepointEnd() RELEASE(*mutatorLock_);
66 ~ScopedSuspendAllThreads() RELEASE(*rendezvous_->GetMutatorLock())
82 ~ScopedSuspendAllThreadsRunning() RELEASE(*rendezvous_->GetMutatorLock());
/arkcompiler/runtime_core/libpandabase/os/
H A Dmutex.h62 void Unlock() RELEASE();
163 ~LockHolder() RELEASE() in RELEASE() function in panda::os::memory::LockHolder
187 ~ReadLockHolder() RELEASE() in RELEASE() function in panda::os::memory::ReadLockHolder
211 ~WriteLockHolder() RELEASE() in RELEASE() function in panda::os::memory::WriteLockHolder
/arkcompiler/ets_frontend/test/scripts/performance_test/
H A Dperformance_config.py156 RELEASE = 1 variable in BuildMode
191 BuildMode.RELEASE: {
206 BuildMode.RELEASE: {
221 BuildMode.RELEASE: {
H A Dperformance_entry.py86 build_mode = performance_config.BuildMode.DEBUG if is_debug else performance_config.BuildMode.RELEASE
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/
H A Dconfiguration_kind.py52 RELEASE = "RELEASE" variable in BuildTypeKind
/arkcompiler/runtime_core/static_core/libpandabase/os/
H A Dmutex.h76 PANDA_PUBLIC_API void Unlock() RELEASE();
177 ~LockHolder() RELEASE() in RELEASE() function in ark::os::memory::LockHolder
201 ~ReadLockHolder() RELEASE() in RELEASE() function in ark::os::memory::ReadLockHolder
225 ~WriteLockHolder() RELEASE() in RELEASE() function in ark::os::memory::WriteLockHolder
/arkcompiler/runtime_core/libpandabase/
H A Dclang.h67 #define RELEASE(...) THREAD_ANNOTATION_ATTRIBUTE__(release_capability(__VA_ARGS__)) macro
/arkcompiler/runtime_core/static_core/libpandabase/
H A Dclang.h67 #define RELEASE(...) THREAD_ANNOTATION_ATTRIBUTE__(release_capability(__VA_ARGS__)) macro
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
H A Dmutex.h52 void Unlock() RELEASE();
206 void WriteUnlock() RELEASE();
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/
H A Dmutex.h51 PANDA_PUBLIC_API void Unlock() RELEASE();
201 PANDA_PUBLIC_API void WriteUnlock() RELEASE();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcg_phasemanager.cpp44 #define RELEASE(pointer) \ macro
233 RELEASE(cg); in PhaseRun()
234 RELEASE(beCommon); in PhaseRun()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
H A Dets_codegen_extensions.cpp87 GetEncoder()->EncodeMemoryBarrier(memory_order::RELEASE); in LaunchCallCodegen()
/arkcompiler/runtime_core/static_core/verification/util/
H A Dsynchronized.h76 ~Proxy() RELEASE(obj->rwLock_)
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dencode.h78 enum Order { ACQUIRE, RELEASE, FULL }; enumerator
H A Dcodegen.cpp1285 GetEncoder()->EncodeMemoryBarrier(memory_order::RELEASE); in CreateMultiArrayCall()
2249 encoder->EncodeMemoryBarrier(memory_order::RELEASE); in VisitNewArray()
2266 encoder->EncodeMemoryBarrier(memory_order::RELEASE); in VisitNewArray()
2276 encoder->EncodeMemoryBarrier(memory_order::RELEASE); in VisitNewArray()
H A Dencode_visitor.cpp409 enc->GetEncoder()->EncodeMemoryBarrier(memory_order::RELEASE); in VisitReturnVoid()
456 enc->GetEncoder()->EncodeMemoryBarrier(memory_order::RELEASE); in VisitReturnInlined()
1463 enc->GetEncoder()->EncodeMemoryBarrier(memory_order::RELEASE); in VisitNewObject()
2094 enc->GetEncoder()->EncodeMemoryBarrier(memory_order::RELEASE); in VisitMultiArray()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp727 CreateMemoryFence(memory_order::RELEASE); in EmitMemoryFenceRelease()
2192 case memory_order::RELEASE: in CreateMemoryFence()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
H A Dencode.cpp1234 case memory_order::RELEASE: { in EncodeMemoryBarrier()

Completed in 34 milliseconds

12