Home
last modified time | relevance | path

Searched refs:prio (Results 1 - 12 of 12) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dscheduler.cpp51 void Scheduler::AddDep(uint32_t *prio, Inst *from, Inst *to, uint32_t latency, Inst *barrier) in AddDep() argument
62 *prio = std::max(*prio, latency + prio_[to]); in AddDep()
109 uint32_t prio = 0; in ProcessInst() local
121 AddDep(&prio, inst, *lastBarrier, 1U, *lastBarrier); in ProcessInst()
131 AddDep(&prio, inst, user, 1U, *lastBarrier); in ProcessInst()
139 AddDep(&prio, inst, user, instLatency, *lastBarrier); in ProcessInst()
147 AddDep(&prio, inst, ss, 1U, *lastBarrier); in ProcessInst()
152 ProcessMemory(inst, &prio, *lastBarrier); in ProcessInst()
157 ProcessSpecial(inst, &prio, *lastBarrie in ProcessInst()
168 ProcessMemory(Inst *inst, uint32_t *prio, Inst *lastBarrier) ProcessMemory() argument
194 ProcessSpecialBoundsCheckI(Inst *inst, uint32_t *prio, Inst *lastBarrier) ProcessSpecialBoundsCheckI() argument
211 ProcessSpecial(Inst *inst, uint32_t *prio, Inst *lastBarrier) ProcessSpecial() argument
[all...]
H A Dscheduler.h58 void AddDep(uint32_t *prio, Inst *from, Inst *to, uint32_t latency, Inst *barrier);
63 void ProcessMemory(Inst *inst, uint32_t *prio, Inst *lastBarrier);
64 void ProcessSpecial(Inst *inst, uint32_t *prio, Inst *lastBarrier);
65 void ProcessSpecialBoundsCheckI(Inst *inst, uint32_t *prio, Inst *lastBarrier);
66 void ProcessRefInst(Inst *inst, uint32_t *prio, Inst *lastBarrier);
/arkcompiler/runtime_core/platforms/windows/libpandabase/
H A Dthread.cpp37 int SetPriority(DWORD thread_id, int prio) in SetPriority() argument
40 ASSERT(prio >= -2); // -2: the lowest priority in SetPriority()
41 ASSERT(prio <= 2); // 2: the highest priority in SetPriority()
46 auto ret = SetThreadPriority(thread, prio); in SetPriority()
H A Dthread.h24 int SetPriority(DWORD thread_id, int prio);
/arkcompiler/runtime_core/platforms/unix/libpandabase/
H A Dthread.cpp59 int SetPriority(int thread_id, int prio) in SetPriority() argument
62 ASSERT(prio <= 19); // 19: the lowest priority in SetPriority()
63 ASSERT(prio >= -20); // -20: the highest priority in SetPriority()
65 return setpriority(PRIO_PROCESS, thread_id, prio); in SetPriority()
H A Dthread.h23 int SetPriority(int thread_id, int prio);
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
H A Dthread.cpp73 int SetPriority(DWORD threadId, int prio) in SetPriority() argument
76 ASSERT(prio >= -2); // -2: the lowest priority in SetPriority()
77 ASSERT(prio <= 2); // 2: the highest priority in SetPriority()
82 auto ret = SetThreadPriority(thread, prio); in SetPriority()
H A Dthread.h24 int SetPriority(DWORD threadId, int prio);
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
H A Dthread.cpp104 int SetPriority(int threadId, int prio) in SetPriority() argument
107 ASSERT(prio <= 19); // 19: the lowest priority in SetPriority()
108 ASSERT(prio >= -20); // -20: the highest priority in SetPriority()
110 return setpriority(PRIO_PROCESS, threadId, prio); in SetPriority()
H A Dthread.h27 PANDA_PUBLIC_API int SetPriority(int threadId, int prio);
/arkcompiler/runtime_core/static_core/runtime/
H A Dthread.cpp748 void ManagedThread::SetThreadPriority(int32_t prio) in SetThreadPriority() argument
751 int res = os::thread::SetPriority(tid, prio); in SetThreadPriority()
753 LOG(DEBUG, RUNTIME) << "Successfully changed priority for thread " << tid << " to " << prio; in SetThreadPriority() local
755 LOG(DEBUG, RUNTIME) << "Cannot change priority for thread " << tid << " to " << prio; in SetThreadPriority() local
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dmanaged_thread.h458 void SetThreadPriority(int32_t prio);

Completed in 11 milliseconds