2014-05-10 04:11:18 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 09:49:13 +01:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-10 04:11:18 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-12-22 07:32:03 +01:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-05-10 04:11:18 +02:00
|
|
|
#include "common/common_types.h"
|
2014-12-03 06:46:34 +01:00
|
|
|
|
2014-12-22 07:32:03 +01:00
|
|
|
#include "core/core.h"
|
2014-12-03 06:46:34 +01:00
|
|
|
#include "core/mem_map.h"
|
|
|
|
|
2014-05-14 04:29:31 +02:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-10-23 05:20:01 +02:00
|
|
|
#include "core/hle/result.h"
|
2014-05-10 04:11:18 +02:00
|
|
|
|
2014-05-17 06:56:00 +02:00
|
|
|
enum ThreadPriority {
|
2014-05-21 03:02:35 +02:00
|
|
|
THREADPRIO_HIGHEST = 0, ///< Highest thread priority
|
|
|
|
THREADPRIO_DEFAULT = 16, ///< Default thread priority for userland apps
|
|
|
|
THREADPRIO_LOW = 31, ///< Low range of thread priority for userland apps
|
|
|
|
THREADPRIO_LOWEST = 63, ///< Thread priority max checked by svcCreateThread
|
2014-05-17 06:56:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ThreadProcessorId {
|
2014-05-21 03:02:35 +02:00
|
|
|
THREADPROCESSORID_0 = 0xFFFFFFFE, ///< Enables core appcode
|
|
|
|
THREADPROCESSORID_1 = 0xFFFFFFFD, ///< Enables core syscore
|
|
|
|
THREADPROCESSORID_ALL = 0xFFFFFFFC, ///< Enables both cores
|
2014-05-17 06:56:00 +02:00
|
|
|
};
|
|
|
|
|
2014-05-23 00:50:36 +02:00
|
|
|
enum ThreadStatus {
|
|
|
|
THREADSTATUS_RUNNING = 1,
|
|
|
|
THREADSTATUS_READY = 2,
|
|
|
|
THREADSTATUS_WAIT = 4,
|
|
|
|
THREADSTATUS_SUSPEND = 8,
|
|
|
|
THREADSTATUS_DORMANT = 16,
|
|
|
|
THREADSTATUS_DEAD = 32,
|
|
|
|
THREADSTATUS_WAITSUSPEND = THREADSTATUS_WAIT | THREADSTATUS_SUSPEND
|
|
|
|
};
|
|
|
|
|
|
|
|
enum WaitType {
|
|
|
|
WAITTYPE_NONE,
|
|
|
|
WAITTYPE_SLEEP,
|
|
|
|
WAITTYPE_SEMA,
|
2014-06-06 04:35:36 +02:00
|
|
|
WAITTYPE_EVENT,
|
2014-05-23 00:50:36 +02:00
|
|
|
WAITTYPE_THREADEND,
|
|
|
|
WAITTYPE_MUTEX,
|
|
|
|
WAITTYPE_SYNCH,
|
2014-07-07 04:48:19 +02:00
|
|
|
WAITTYPE_ARB,
|
2014-12-04 20:45:47 +01:00
|
|
|
WAITTYPE_TIMER,
|
2014-05-23 00:50:36 +02:00
|
|
|
};
|
|
|
|
|
2014-05-21 01:37:46 +02:00
|
|
|
namespace Kernel {
|
|
|
|
|
2014-12-22 07:32:03 +01:00
|
|
|
class Thread : public Kernel::Object {
|
|
|
|
public:
|
|
|
|
std::string GetName() const override { return name; }
|
|
|
|
std::string GetTypeName() const override { return "Thread"; }
|
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::Thread;
|
|
|
|
HandleType GetHandleType() const override { return HANDLE_TYPE; }
|
|
|
|
|
|
|
|
inline bool IsRunning() const { return (status & THREADSTATUS_RUNNING) != 0; }
|
|
|
|
inline bool IsStopped() const { return (status & THREADSTATUS_DORMANT) != 0; }
|
|
|
|
inline bool IsReady() const { return (status & THREADSTATUS_READY) != 0; }
|
|
|
|
inline bool IsWaiting() const { return (status & THREADSTATUS_WAIT) != 0; }
|
|
|
|
inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; }
|
|
|
|
inline bool IsIdle() const { return idle; }
|
|
|
|
|
|
|
|
ResultVal<bool> WaitSynchronization() override;
|
|
|
|
|
|
|
|
Core::ThreadContext context;
|
|
|
|
|
|
|
|
u32 thread_id;
|
|
|
|
|
|
|
|
u32 status;
|
|
|
|
u32 entry_point;
|
|
|
|
u32 stack_top;
|
|
|
|
u32 stack_size;
|
|
|
|
|
|
|
|
s32 initial_priority;
|
|
|
|
s32 current_priority;
|
|
|
|
|
|
|
|
s32 processor_id;
|
|
|
|
|
|
|
|
WaitType wait_type;
|
|
|
|
Handle wait_handle;
|
|
|
|
VAddr wait_address;
|
|
|
|
|
|
|
|
std::vector<Handle> waiting_threads;
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
|
|
|
|
/// Whether this thread is intended to never actually be executed, i.e. always idle
|
|
|
|
bool idle = false;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// TODO(yuriks) Temporary until the creation logic can be moved into a static function
|
|
|
|
friend Thread* CreateThread(Handle& handle, const char* name, u32 entry_point, s32 priority,
|
|
|
|
s32 processor_id, u32 stack_top, int stack_size);
|
|
|
|
|
|
|
|
Thread() = default;
|
|
|
|
};
|
|
|
|
|
2014-05-17 06:56:00 +02:00
|
|
|
/// Creates a new thread - wrapper for external user
|
2014-05-23 00:50:36 +02:00
|
|
|
Handle CreateThread(const char* name, u32 entry_point, s32 priority, u32 arg, s32 processor_id,
|
2014-05-21 01:37:46 +02:00
|
|
|
u32 stack_top, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-17 05:48:15 +02:00
|
|
|
|
2014-05-16 00:27:08 +02:00
|
|
|
/// Sets up the primary application thread
|
2014-05-21 01:37:46 +02:00
|
|
|
Handle SetupMainThread(s32 priority, int stack_size=Kernel::DEFAULT_STACK_SIZE);
|
2014-05-14 04:00:11 +02:00
|
|
|
|
2014-05-20 04:19:48 +02:00
|
|
|
/// Reschedules to the next available thread (call after current thread is suspended)
|
2014-05-23 01:32:45 +02:00
|
|
|
void Reschedule();
|
2014-05-20 04:19:48 +02:00
|
|
|
|
2014-06-06 04:35:36 +02:00
|
|
|
/// Stops the current thread
|
2014-10-23 05:20:01 +02:00
|
|
|
ResultCode StopThread(Handle thread, const char* reason);
|
2014-05-23 00:50:36 +02:00
|
|
|
|
2014-12-04 14:13:53 +01:00
|
|
|
/**
|
|
|
|
* Retrieves the ID of the specified thread handle
|
|
|
|
* @param thread_id Will contain the output thread id
|
|
|
|
* @param handle Handle to the thread we want
|
|
|
|
* @return Whether the function was successful or not
|
|
|
|
*/
|
2014-12-04 05:22:06 +01:00
|
|
|
ResultCode GetThreadId(u32* thread_id, Handle handle);
|
|
|
|
|
2014-05-21 03:00:10 +02:00
|
|
|
/// Resumes a thread from waiting by marking it as "ready"
|
|
|
|
void ResumeThreadFromWait(Handle handle);
|
|
|
|
|
2014-07-07 04:48:19 +02:00
|
|
|
/// Arbitrate the highest priority thread that is waiting
|
|
|
|
Handle ArbitrateHighestPriorityThread(u32 arbiter, u32 address);
|
|
|
|
|
|
|
|
/// Arbitrate all threads currently waiting...
|
|
|
|
void ArbitrateAllThreads(u32 arbiter, u32 address);
|
|
|
|
|
2014-12-22 07:32:03 +01:00
|
|
|
/// Gets the current thread
|
|
|
|
Thread* GetCurrentThread();
|
|
|
|
|
2014-05-23 01:06:12 +02:00
|
|
|
/// Gets the current thread handle
|
|
|
|
Handle GetCurrentThreadHandle();
|
2014-05-17 06:56:00 +02:00
|
|
|
|
2014-08-06 04:32:13 +02:00
|
|
|
/**
|
|
|
|
* Puts the current thread in the wait state for the given type
|
|
|
|
* @param wait_type Type of wait
|
|
|
|
* @param wait_handle Handle of Kernel object that we are waiting on, defaults to current thread
|
|
|
|
*/
|
2014-06-06 04:35:36 +02:00
|
|
|
void WaitCurrentThread(WaitType wait_type, Handle wait_handle=GetCurrentThreadHandle());
|
|
|
|
|
2015-01-07 22:40:08 +01:00
|
|
|
/**
|
|
|
|
* Schedules an event to wake up the specified thread after the specified delay.
|
|
|
|
* @param handle The thread handle.
|
|
|
|
* @param nanoseconds The time this thread will be allowed to sleep for.
|
|
|
|
*/
|
|
|
|
void WakeThreadAfterDelay(Handle handle, s64 nanoseconds);
|
|
|
|
|
2014-12-03 06:46:34 +01:00
|
|
|
/**
|
|
|
|
* Puts the current thread in the wait state for the given type
|
|
|
|
* @param wait_type Type of wait
|
|
|
|
* @param wait_handle Handle of Kernel object that we are waiting on, defaults to current thread
|
|
|
|
* @param wait_address Arbitration address used to resume from wait
|
|
|
|
*/
|
|
|
|
void WaitCurrentThread(WaitType wait_type, Handle wait_handle, VAddr wait_address);
|
|
|
|
|
2014-05-17 19:47:55 +02:00
|
|
|
/// Put current thread in a wait state - on WaitSynchronization
|
2014-05-21 01:37:46 +02:00
|
|
|
void WaitThread_Synchronization();
|
|
|
|
|
2014-06-02 04:12:54 +02:00
|
|
|
/// Get the priority of the thread specified by handle
|
2014-10-23 05:20:01 +02:00
|
|
|
ResultVal<u32> GetThreadPriority(const Handle handle);
|
2014-06-02 04:12:54 +02:00
|
|
|
|
|
|
|
/// Set the priority of the thread specified by handle
|
2014-10-23 05:20:01 +02:00
|
|
|
ResultCode SetThreadPriority(Handle handle, s32 priority);
|
2014-06-02 04:12:54 +02:00
|
|
|
|
2015-01-07 16:10:58 +01:00
|
|
|
/**
|
|
|
|
* Sets up the idle thread, this is a thread that is intended to never execute instructions,
|
|
|
|
* only to advance the timing. It is scheduled when there are no other ready threads in the thread queue
|
|
|
|
* and will try to yield on every call.
|
|
|
|
* @returns The handle of the idle thread
|
|
|
|
*/
|
|
|
|
Handle SetupIdleThread();
|
|
|
|
|
|
|
|
/// Whether the current thread is an idle thread
|
|
|
|
bool IsIdleThread(Handle thread);
|
|
|
|
|
2014-05-21 01:37:46 +02:00
|
|
|
/// Initialize threading
|
|
|
|
void ThreadingInit();
|
|
|
|
|
|
|
|
/// Shutdown threading
|
|
|
|
void ThreadingShutdown();
|
|
|
|
|
|
|
|
} // namespace
|