mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-26 21:44:59 -07:00
119 lines
2.9 KiB
C
119 lines
2.9 KiB
C
// Copyright (c) 2024 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#ifndef ASYNC_H
|
|
#define ASYNC_H
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Work Function Type
|
|
|
|
#define ASYNC_WORK_SIG(name) void *name(U64 thread_idx, void *input)
|
|
#define ASYNC_WORK_DEF(name) internal ASYNC_WORK_SIG(name)
|
|
typedef ASYNC_WORK_SIG(ASYNC_WorkFunctionType);
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Work Types
|
|
|
|
typedef struct ASYNC_WorkParams ASYNC_WorkParams;
|
|
struct ASYNC_WorkParams
|
|
{
|
|
void *input;
|
|
void **output;
|
|
OS_Handle semaphore;
|
|
U64 *completion_counter;
|
|
U64 endt_us;
|
|
};
|
|
|
|
typedef struct ASYNC_Work ASYNC_Work;
|
|
struct ASYNC_Work
|
|
{
|
|
ASYNC_WorkFunctionType *work_function;
|
|
void *input;
|
|
void **output;
|
|
OS_Handle semaphore;
|
|
U64 *completion_counter;
|
|
};
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Task-Based Work Types
|
|
|
|
typedef struct ASYNC_Task ASYNC_Task;
|
|
struct ASYNC_Task
|
|
{
|
|
OS_Handle semaphore;
|
|
void *output;
|
|
};
|
|
|
|
typedef struct ASYNC_TaskNode ASYNC_TaskNode;
|
|
struct ASYNC_TaskNode
|
|
{
|
|
ASYNC_TaskNode *next;
|
|
ASYNC_Task v;
|
|
};
|
|
|
|
typedef struct ASYNC_TaskList ASYNC_TaskList;
|
|
struct ASYNC_TaskList
|
|
{
|
|
ASYNC_TaskNode *first;
|
|
ASYNC_TaskNode *last;
|
|
U64 count;
|
|
};
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Shared State Bundle
|
|
|
|
typedef struct ASYNC_Shared ASYNC_Shared;
|
|
struct ASYNC_Shared
|
|
{
|
|
Arena *arena;
|
|
|
|
// rjf: user -> work thread ring buffer
|
|
U64 u2w_ring_size;
|
|
U8 *u2w_ring_base;
|
|
U64 u2w_ring_write_pos;
|
|
U64 u2w_ring_read_pos;
|
|
OS_Handle u2w_ring_mutex;
|
|
OS_Handle u2w_ring_cv;
|
|
|
|
// rjf: work threads
|
|
OS_Handle *work_threads;
|
|
U64 work_threads_count;
|
|
};
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Globals
|
|
|
|
global ASYNC_Shared *async_shared = 0;
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Top-Level Layer Initialization
|
|
|
|
internal void async_init(void);
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Top-Level Accessors
|
|
|
|
internal U64 async_thread_count(void);
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Work Kickoffs
|
|
|
|
internal B32 async_push_work_(ASYNC_WorkFunctionType *work_function, ASYNC_WorkParams *params);
|
|
#define async_push_work(function, ...) async_push_work_((function), &(ASYNC_WorkParams){.endt_us = max_U64, __VA_ARGS__})
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Task-Based Work Helper
|
|
|
|
internal void async_task_list_push(Arena *arena, ASYNC_TaskList *list, ASYNC_Task t);
|
|
internal ASYNC_Task async_task_launch_(ASYNC_WorkFunctionType *work_function, ASYNC_WorkParams *params);
|
|
#define async_task_kickoff(work_function, ...) async_task_kickoff_((work_function), &(ASYNC_WorkParams){.endt_us = max_U64, __VA_ARGS__})
|
|
internal void *async_task_join(ASYNC_Task task);
|
|
#define async_task_join_struct(task, T) (T *)async_task_join(task)
|
|
|
|
////////////////////////////////
|
|
//~ rjf: Work Thread Entry Point
|
|
|
|
internal void async_work_thread__entry_point(void *p);
|
|
|
|
#endif // ASYNC_H
|