| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
| D | reg_alloc_linear_scan.h | 40 …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…
|
| D | reg_alloc_linear_scan.cpp | 244 // 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/ |
| D | threaded_coroutine.h | 55 * Changes status to Status::RUNNABLE or Status::BLOCKED, depending on the suspend 61 * Wakes up the thread that is blocked on WaitUntilResumed()
|
| D | stackful_coroutine_worker.h | 153 /// @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
|
| D | coroutine.h | 60 * +------------+ +-------------+ | 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
|
| D | coroutine.cpp | 236 case Coroutine::Status::BLOCKED: in operator <<() 237 os << "BLOCKED"; in operator <<()
|
| D | threaded_coroutine_manager.h | 127 // blocked coros: Coroutine AWAITS CoroutineEvent
|
| D | stackful_coroutine.h | 62 … execution context, sets its status to either Status::RUNNABLE or Status::BLOCKED, depending on the
|
| D | threaded_coroutine.cpp | 155 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend()
|
| D | stackful_coroutine.cpp | 176 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend()
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | nullishTypeCodesamples.ets | 38 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/ |
| D | monitor.yaml | 81 … 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/ |
| D | panda-states-concurrent-gc.pustate | 43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
|
| D | panda-states-generational-gc.pustate | 43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
|
| /arkcompiler/runtime_core/static_core/docs/diagrams/ |
| D | panda-states-concurrent-gc.plantuml | 43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
|
| D | panda-states-generational-gc.plantuml | 43 state "Compiler thread will be blocked at the Mutator Lock" as CompilerThreadWillBeBlocked
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | mt_thread_manager.cpp | 95 // 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/ |
| D | collector_resources.cpp | 151 // 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/ |
| D | readme.md | 24 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/ |
| D | ListObject.ets | 84 /* Code below is blocked by internal issue with lambdas #9994
|
| D | ListInt.ets | 84 /* Code below is blocked by internal issue with lambdas #9994
|
| D | ListString.ets | 84 /* Code below is blocked by internal issue with lambdas #9994
|
| D | List.ets.j2 | 84 /* Code below is blocked by internal issue with lambdas #9994
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | SyncPrimitives.ets | 55 * If there are blocked coroutines, unlocks one of them.
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | thread_test.cpp | 188 expected = "Blocked"; in GetThreadStatus()
|