Home
last modified time | relevance | path

Searched full:blocked (Results 1 – 25 of 44) sorted by relevance

12

/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_linear_scan.h40 …ters for some interval, LinearScan assigns one of the blocked ones. Previous holder of this blocke…
41 …* spilled to the memory at this point. Blocked register to be assigned is selected according to th…
Dreg_alloc_linear_scan.cpp244 // Try to assign blocked register in TryToAssignRegister()
247 // Spill current interval if its first use later than use of blocked register in TryToAssignRegister()
254 // Blocked register that will be used in the next position mustn't be reassigned in TryToAssignRegister()
377 // Return blocked register and its next use position
380 // Using blocked registers is impossible in the `BytecodeOptimizer` mode in GetBlockedRegister()
423 …COMPILER_LOG(DEBUG, REGALLOC) << "Selected blocked r" << static_cast<int>(reg) << " with use next … in GetBlockedRegister()
/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dthreaded_coroutine.h55 * Changes status to Status::RUNNABLE or Status::BLOCKED, depending on the suspend
61 * Wakes up the thread that is blocked on WaitUntilResumed()
Dstackful_coroutine_worker.h153 /// @brief schedule runnable coroutines and wait for blocked coroutines
202 /// migrate the coroutines of the blocked worker to other workers
266 /// check if this may have been blocked
282 // blocked coros-related members: Coroutine AWAITS CoroutineEvent
Dcoroutine.h60 * +------------+ +-------------+ | RUNNING | | BLOCKED |
65 * NOT_ACTIVE = (CREATED | BLOCKED | TERMINATING | AWAIT_LOOP) | NO_WORKER_ASSIGNED
72 enum class Status { CREATED, RUNNABLE, RUNNING, BLOCKED, TERMINATING, AWAIT_LOOP }; enumerator
194 …* Suspend a coroutine, so its status becomes either Status::RUNNABLE or Status::BLOCKED, depending…
200 /// Unblock the blocked coroutine, setting its status to Status::RUNNABLE
Dcoroutine.cpp236 case Coroutine::Status::BLOCKED: in operator <<()
237 os << "BLOCKED"; in operator <<()
Dthreaded_coroutine_manager.h127 // blocked coros: Coroutine AWAITS CoroutineEvent
Dstackful_coroutine.h62 … execution context, sets its status to either Status::RUNNABLE or Status::BLOCKED, depending on the
Dthreaded_coroutine.cpp155 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend()
Dstackful_coroutine.cpp176 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend()
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DnullishTypeCodesamples.ets38 assertEQ(foo1(12 as number), "12undefined") // inference blocked
42 assertEQ(foo2(12 as number), "12undefined") // inference blocked
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dmonitor.yaml81 … If monitor belongs to another thread, current thread is blocked and may try to enter the monitor
311 …Check that a thread will be blocked on monitorenter if a monitor is already owned by other thread …
342 lda.str "BLOCKED"
344 # wait until a thread is blocked on a monitor
/arkcompiler/runtime_core/docs/diagrams/
Dpanda-states-concurrent-gc.pustate43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
Dpanda-states-generational-gc.pustate43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dpanda-states-concurrent-gc.plantuml43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
Dpanda-states-generational-gc.plantuml43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
/arkcompiler/runtime_core/static_core/runtime/
Dmt_thread_manager.cpp95 // We have a blocked thread - there is a potential termination loop in DeregisterSuspendedThreads()
98 // We have at least one non-blocked thread - termination loop is impossible in DeregisterSuspendedThreads()
107 // All threads except current are blocked (have BLOCKED or NATIVE status) in DeregisterSuspendedThreads()
/arkcompiler/ets_runtime/common_components/heap/collector/
Dcollector_resources.cpp151 // The gc request must be none blocked in RequestAsyncGC()
152 … ASSERT_LOGF(!g_gcRequests[reason].IsSyncGC(), "trigger from unsafe context must be none blocked"); in RequestAsyncGC()
161 // Enter saferegion since current thread may blocked by locks. in RequestGCAndWait()
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Dreadme.md24 At that time, this script will be blocked in next running, you should reboot the rk3568 demo borad …
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/containers/
DListObject.ets84 /* Code below is blocked by internal issue with lambdas #9994
DListInt.ets84 /* Code below is blocked by internal issue with lambdas #9994
DListString.ets84 /* Code below is blocked by internal issue with lambdas #9994
DList.ets.j284 /* Code below is blocked by internal issue with lambdas #9994
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DSyncPrimitives.ets55 * If there are blocked coroutines, unlocks one of them.
/arkcompiler/runtime_core/static_core/runtime/tests/
Dthread_test.cpp188 expected = "Blocked"; in GetThreadStatus()

12