Home
last modified time | relevance | path

Searched full:blocked (Results 1 – 25 of 37) 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()
Dcoroutine.h51 * +------------+ +-------------+ | RUNNING | | BLOCKED |
59 enum class Status { CREATED, RUNNABLE, RUNNING, BLOCKED, TERMINATING, AWAIT_LOOP }; enumerator
174 …* Suspend a coroutine, so its status becomes either Status::RUNNABLE or Status::BLOCKED, depending…
180 /// Unblock the blocked coroutine, setting its status to Status::RUNNABLE
Dcoroutine.cpp165 case Coroutine::Status::BLOCKED: in operator <<()
166 os << "BLOCKED"; in operator <<()
Dthreaded_coroutine_manager.h116 // blocked coros: Coroutine AWAITS CoroutineEvent
Dstackful_coroutine.cpp139 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend()
Dthreaded_coroutine.cpp155 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend()
Dstackful_coroutine.h62 … execution context, sets its status to either Status::RUNNABLE or Status::BLOCKED, depending on the
/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/ets_frontend/ets2panda/test/runtime/ets/
DnullishTypeCodesamples.sts38 assert(foo1(12 as number) == "12undefined"); // inference blocked
42 assert(foo2(12 as number) == "12undefined"); // inference blocked
/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_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.sts84 /* Code below is blocked by internal issue with lambdas #9994
DListInt.sts84 /* Code below is blocked by internal issue with lambdas #9994
DListString.sts84 /* Code below is blocked by internal issue with lambdas #9994
DList.sts.j284 /* Code below is blocked by internal issue with lambdas #9994
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DSyncPrimitives.sts45 * If there are blocked coroutines, unlocks one of them.
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_sync_primitives.h135 * If there are blocked coroutines, unblocks one of them.
/arkcompiler/ets_runtime/ecmascript/
Druntime.cpp200 … // it will firstly pass the barrier and then be blocked by the SUSPEND_REQUEST flag. If the in SuspendAllThreadsImpl()
203 // and be blocked by SUSPEND_REQUEST flag. in SuspendAllThreadsImpl()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
Dliveness_analyzer.cpp770 // correctly handle register blocked by "current" instruction from registers blocked in BlockFixedRegisters()
773 // Registers holding parameters should be blocked starting from the beginning of entry block in BlockFixedRegisters()
775 … // The required interval is blocked using two calls to correctly mark first use position of a in BlockFixedRegisters()
776 // blocked register. in BlockFixedRegisters()

12