Home
last modified time | relevance | path

Searched refs:queueType (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/
Dcompiler_thread_pool_worker.cpp46 CompilerQueueInterface *CompilerThreadPoolWorker::CreateJITTaskQueue(const std::string &queueType, … in CreateJITTaskQueue() argument
50 LOG(DEBUG, COMPILER) << "Creating " << queueType << " task queue"; in CreateJITTaskQueue()
51 if (queueType == "simple") { in CreateJITTaskQueue()
54 if (queueType == "counter-priority") { in CreateJITTaskQueue()
57 if (queueType == "aged-counter-priority") { in CreateJITTaskQueue()
Dcompiler_thread_pool_worker.h81 …CompilerQueueInterface *CreateJITTaskQueue(const std::string &queueType, uint64_t maxLength, uint6…
/arkcompiler/ets_runtime/ecmascript/jobs/
Dmicro_job_queue.cpp37 … MicroJobQueue::EnqueueJob(JSThread *thread, JSHandle<MicroJobQueue> jobQueue, QueueType queueType, in EnqueueJob() argument
48 ENQUEUE_JOB_HITRACE(pendingJob, queueType); in EnqueueJob()
49 if (queueType == QueueType::QUEUE_PROMISE) { in EnqueueJob()
54 } else if (queueType == QueueType::QUEUE_SCRIPT) { in EnqueueJob()
Dhitrace_scope.cpp22 EnqueueJobScope::EnqueueJobScope(const JSHandle<PendingJob> &pendingJob, QueueType queueType) in EnqueueJobScope() argument
34 if (queueType == QueueType::QUEUE_PROMISE) { in EnqueueJobScope()
37 } else if (queueType == QueueType::QUEUE_SCRIPT) { in EnqueueJobScope()
Dhitrace_scope.h33 EnqueueJobScope(const JSHandle<PendingJob> &pendingJob, job::QueueType queueType);
Dmicro_job_queue.h39 static void EnqueueJob(JSThread *thread, JSHandle<MicroJobQueue> jobQueue, QueueType queueType,
/arkcompiler/ets_runtime/ecmascript/
Decma_macros.h39 …#define ENQUEUE_JOB_HITRACE(pendingJob, queueType) job::EnqueueJobScope hitraceScope(pendingJob, q… argument
42 #define ENQUEUE_JOB_HITRACE(pendingJob, queueType) argument