move to src folder
This commit is contained in:
46
src/base.h
Normal file
46
src/base.h
Normal file
@@ -0,0 +1,46 @@
|
||||
/* base.h: Basic definitions
|
||||
* Created: 2026-03-10
|
||||
* Author: Aryadev Chavali
|
||||
* License: See end of file
|
||||
*/
|
||||
|
||||
#ifndef BASE_H
|
||||
#define BASE_H
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef uint8_t u8;
|
||||
typedef uint16_t u16;
|
||||
typedef uint32_t u32;
|
||||
typedef uint64_t u64;
|
||||
|
||||
typedef int8_t i8;
|
||||
typedef int16_t i16;
|
||||
typedef int32_t i32;
|
||||
typedef int64_t i64;
|
||||
|
||||
static_assert(sizeof(float) == 4, "f32 requires 4 byte floats");
|
||||
static_assert(sizeof(double) == 8, "f64 requires 8 byte doubles");
|
||||
typedef float f32;
|
||||
typedef double f64;
|
||||
|
||||
#define MAX(A, B) ((A) > (B) ? (A) : (B))
|
||||
#define SAFE_SUB(A, B) ((A) < (B) ? 0 : (A) - (B))
|
||||
// 64 byte programs
|
||||
#define SIZEOF_PROGRAM (1LU << 6)
|
||||
|
||||
#endif
|
||||
|
||||
/* Copyright (C) 2026 Aryadev Chavali
|
||||
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for
|
||||
* details.
|
||||
|
||||
* You may distribute and modify this code under the terms of the GNU General
|
||||
* Public License Version 2, which you should have received a copy of along with
|
||||
* this program. If not, please go to <https://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
332
src/main.c
Normal file
332
src/main.c
Normal file
@@ -0,0 +1,332 @@
|
||||
/* main.c: Entrypoint
|
||||
* Created: 2026-03-09
|
||||
* Author: Aryadev Chavali
|
||||
* License: See end of file
|
||||
*/
|
||||
|
||||
#include <raylib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "base.h"
|
||||
#include "sv.h"
|
||||
#include "vec.h"
|
||||
|
||||
struct ProgramConcat
|
||||
{
|
||||
sv_t A, B;
|
||||
u8 tape[SIZEOF_PROGRAM * 2];
|
||||
};
|
||||
|
||||
void program_concat(struct ProgramConcat *ret, sv_t a, sv_t b)
|
||||
{
|
||||
assert(a.size == SIZEOF_PROGRAM && b.size == SIZEOF_PROGRAM);
|
||||
memset(ret, 0, sizeof(*ret));
|
||||
ret->A = a;
|
||||
ret->B = b;
|
||||
memcpy(ret->tape, a.data, SIZEOF_PROGRAM);
|
||||
memcpy(ret->tape + SIZEOF_PROGRAM, b.data, SIZEOF_PROGRAM);
|
||||
}
|
||||
|
||||
u64 vec_pop(vec_t *vec)
|
||||
{
|
||||
u64 ret = 0;
|
||||
if (vec->size < sizeof(ret))
|
||||
return ret;
|
||||
vec->size -= sizeof(ret);
|
||||
memcpy(&ret, (typeof(ret) *)(((u8 *)vec_data(vec)) + vec->size), sizeof(ret));
|
||||
return ret;
|
||||
}
|
||||
|
||||
bool vec_in(vec_t *vec, u64 n)
|
||||
{
|
||||
for (u64 i = 0; i < vec->size / sizeof(n); ++i)
|
||||
{
|
||||
if (VEC_GET(vec, i, typeof(n)) == n)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void program_execute(struct ProgramConcat *prg)
|
||||
{
|
||||
vec_t cond_stack = {0};
|
||||
vec_ensure_capacity(&cond_stack, sizeof(prg->tape) * sizeof(u64));
|
||||
|
||||
for (u64 ip = 0, head0 = 0, head1 = 0, total_iters = 0;
|
||||
ip < sizeof(prg->tape) && total_iters < (1LU << 13); ++total_iters)
|
||||
{
|
||||
u8 opcode = prg->tape[ip];
|
||||
switch (opcode)
|
||||
{
|
||||
case '<':
|
||||
head0 = SAFE_SUB(head0, 1);
|
||||
++ip;
|
||||
break;
|
||||
case '>':
|
||||
head0++;
|
||||
++ip;
|
||||
break;
|
||||
case '{':
|
||||
head1 = SAFE_SUB(head1, 1);
|
||||
++ip;
|
||||
break;
|
||||
case '}':
|
||||
head1++;
|
||||
++ip;
|
||||
break;
|
||||
case '-':
|
||||
prg->tape[head0]--;
|
||||
++ip;
|
||||
break;
|
||||
case '+':
|
||||
prg->tape[head0]++;
|
||||
++ip;
|
||||
break;
|
||||
case '.':
|
||||
prg->tape[head1] = prg->tape[head0];
|
||||
++ip;
|
||||
break;
|
||||
case ',':
|
||||
prg->tape[head0] = prg->tape[head1];
|
||||
++ip;
|
||||
break;
|
||||
case '[':
|
||||
{
|
||||
if (!vec_in(&cond_stack, ip))
|
||||
{
|
||||
vec_append(&cond_stack, &ip, sizeof(ip));
|
||||
}
|
||||
if (!prg->tape[head0])
|
||||
{
|
||||
// Iterate forward, trying to find a matching closed bracket
|
||||
u64 square_brackets = 0;
|
||||
u64 close_ip;
|
||||
for (close_ip = ip + 1; close_ip < sizeof(prg->tape); ++close_ip)
|
||||
{
|
||||
if (prg->tape[close_ip] == '[')
|
||||
{
|
||||
++square_brackets;
|
||||
}
|
||||
else if (prg->tape[close_ip] == ']')
|
||||
{
|
||||
if (square_brackets == 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
--square_brackets;
|
||||
}
|
||||
}
|
||||
if (square_brackets != 0)
|
||||
{
|
||||
// NOTE: as per paper, terminate.
|
||||
ip = sizeof(prg->tape);
|
||||
}
|
||||
else
|
||||
{
|
||||
ip = close_ip;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ']':
|
||||
{
|
||||
if (prg->tape[head0])
|
||||
{
|
||||
if (cond_stack.size < sizeof(u64))
|
||||
{
|
||||
// NOTE: as per paper, terminate.
|
||||
ip = sizeof(prg->tape);
|
||||
}
|
||||
else
|
||||
{
|
||||
ip = vec_pop(&cond_stack);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
++ip;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
++ip;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
vec_free(&cond_stack);
|
||||
}
|
||||
|
||||
void program_split(struct ProgramConcat *prg)
|
||||
{
|
||||
assert(prg->A.data && prg->B.data);
|
||||
memcpy((char *)prg->A.data, prg->tape, SIZEOF_PROGRAM);
|
||||
memcpy((char *)prg->B.data, prg->tape + SIZEOF_PROGRAM, SIZEOF_PROGRAM);
|
||||
}
|
||||
|
||||
#define WIDTH 800
|
||||
#define HEIGHT 600
|
||||
|
||||
#define NUM_PROGRAMS_POW_2 10
|
||||
#define NUM_PROGRAMS (1LU << NUM_PROGRAMS_POW_2)
|
||||
#define SIMULATION_SIZE (SIZEOF_PROGRAM * NUM_PROGRAMS)
|
||||
struct Simulation
|
||||
{
|
||||
char buffer[SIMULATION_SIZE];
|
||||
u64 p1, p2;
|
||||
};
|
||||
|
||||
void simulation_init(struct Simulation *sim)
|
||||
{
|
||||
for (u64 i = 0; i < SIMULATION_SIZE / sizeof(u16); ++i)
|
||||
{
|
||||
((u16 *)(sim->buffer))[i] = rand() % UINT16_MAX;
|
||||
}
|
||||
}
|
||||
|
||||
void simulation_pick(struct Simulation *sim)
|
||||
{
|
||||
sim->p1 = rand() % (SIMULATION_SIZE / SIZEOF_PROGRAM);
|
||||
sim->p2 = rand() % (SIMULATION_SIZE / SIZEOF_PROGRAM);
|
||||
while (sim->p1 * 8 <= ((sim->p2 * 8) + SIZEOF_PROGRAM) &&
|
||||
sim->p2 * 8 <= ((sim->p1 * 8) + SIZEOF_PROGRAM))
|
||||
{
|
||||
sim->p2 = rand() % (SIMULATION_SIZE / SIZEOF_PROGRAM);
|
||||
}
|
||||
}
|
||||
|
||||
void simulation_update(struct Simulation *sim)
|
||||
{
|
||||
sv_t a = SV(sim->buffer + (sim->p1 * SIZEOF_PROGRAM), 64);
|
||||
sv_t b = SV(sim->buffer + (sim->p2 * SIZEOF_PROGRAM), 64);
|
||||
|
||||
struct ProgramConcat prog_concat = {0};
|
||||
program_concat(&prog_concat, a, b);
|
||||
program_execute(&prog_concat);
|
||||
program_split(&prog_concat);
|
||||
}
|
||||
|
||||
Color simulation_cell_color(const u8 *program)
|
||||
{
|
||||
// How do we compute a "colour" for a program? I say we count all the valid
|
||||
// opcodes in the program. These counts are used as weights for 10 distinct
|
||||
// colours.
|
||||
const Vector4 bases[] = {
|
||||
['<'] = ColorNormalize(ColorFromHSV(0.121, 0.467, 0.706)),
|
||||
['>'] = ColorNormalize(ColorFromHSV(1.000, 0.498, 0.055)),
|
||||
['{'] = ColorNormalize(ColorFromHSV(0.173, 0.627, 0.173)),
|
||||
['}'] = ColorNormalize(ColorFromHSV(0.839, 0.153, 0.157)),
|
||||
['-'] = ColorNormalize(ColorFromHSV(0.580, 0.404, 0.741)),
|
||||
['+'] = ColorNormalize(ColorFromHSV(0.549, 0.337, 0.294)),
|
||||
['.'] = ColorNormalize(ColorFromHSV(0.890, 0.467, 0.761)),
|
||||
[','] = ColorNormalize(ColorFromHSV(0.498, 0.498, 0.498)),
|
||||
['['] = ColorNormalize(ColorFromHSV(0.737, 0.741, 0.133)),
|
||||
[']'] = ColorNormalize(ColorFromHSV(0.090, 0.745, 0.812)),
|
||||
};
|
||||
|
||||
static const char *VALID_OPS = "<>{}-+.,[]";
|
||||
|
||||
u64 counter[] = {
|
||||
['<'] = 0, ['>'] = 0, ['{'] = 0, ['}'] = 0, ['-'] = 0,
|
||||
['+'] = 0, ['.'] = 0, [','] = 0, ['['] = 0, [']'] = 0,
|
||||
};
|
||||
|
||||
u64 total_valid = 0;
|
||||
for (u64 i = 0; i < SIZEOF_PROGRAM; ++i)
|
||||
{
|
||||
if (strchr(VALID_OPS, program[i]))
|
||||
{
|
||||
counter[(u64)program[i]]++;
|
||||
++total_valid;
|
||||
}
|
||||
}
|
||||
|
||||
if (total_valid == 0)
|
||||
return BLACK;
|
||||
|
||||
f64 colour_cells[3];
|
||||
for (const char *ptr = VALID_OPS; *ptr; ++ptr)
|
||||
{
|
||||
colour_cells[0] += bases[(u64)*ptr].x;
|
||||
colour_cells[1] += bases[(u64)*ptr].y;
|
||||
colour_cells[2] += bases[(u64)*ptr].z;
|
||||
}
|
||||
colour_cells[0] /= total_valid;
|
||||
colour_cells[1] /= total_valid;
|
||||
colour_cells[2] /= total_valid;
|
||||
|
||||
return (Color){.r = 255 * colour_cells[0],
|
||||
.g = 255 * colour_cells[1],
|
||||
.b = 255 * colour_cells[2],
|
||||
.a = 255};
|
||||
}
|
||||
|
||||
void simulation_draw(struct Simulation *sim)
|
||||
{
|
||||
// Our grid will be of lengths sqrt(NUM_PROGRAMS) == 1 <<
|
||||
// (NUM_PROGRAMS_POW_2/2).
|
||||
const size_t GRID_WIDTH = 1LU << (NUM_PROGRAMS_POW_2 / 2);
|
||||
const size_t CELL_WIDTH = WIDTH / GRID_WIDTH;
|
||||
|
||||
sv_t sv = SV(sim->buffer, SIMULATION_SIZE);
|
||||
|
||||
for (u64 i = 0; i < SIMULATION_SIZE / SIZEOF_PROGRAM; ++i)
|
||||
{
|
||||
sv_t program = sv_truncate(sv, SIZEOF_PROGRAM);
|
||||
|
||||
Color color = simulation_cell_color((const u8 *)program.data);
|
||||
|
||||
u64 x = i / GRID_WIDTH;
|
||||
u64 y = i % GRID_WIDTH;
|
||||
DrawRectangle(x * CELL_WIDTH, y * CELL_WIDTH, CELL_WIDTH, CELL_WIDTH,
|
||||
color);
|
||||
|
||||
if (i == sim->p1 || i == sim->p2)
|
||||
{
|
||||
DrawRectangleLines(x * CELL_WIDTH, y * CELL_WIDTH, CELL_WIDTH, CELL_WIDTH,
|
||||
BLUE);
|
||||
}
|
||||
|
||||
sv = sv_chop_left(sv, 64);
|
||||
}
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
srand(time(NULL));
|
||||
|
||||
struct Simulation sim = {0};
|
||||
simulation_init(&sim);
|
||||
|
||||
InitWindow(WIDTH, HEIGHT, "CompLife");
|
||||
SetTargetFPS(60);
|
||||
for (size_t ticks = 0; !WindowShouldClose(); ++ticks)
|
||||
{
|
||||
simulation_pick(&sim);
|
||||
simulation_update(&sim);
|
||||
BeginDrawing();
|
||||
ClearBackground(BLACK);
|
||||
simulation_draw(&sim);
|
||||
EndDrawing();
|
||||
}
|
||||
CloseWindow();
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Copyright (C) 2026 Aryadev Chavali
|
||||
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for
|
||||
* details.
|
||||
|
||||
* You may distribute and modify this code under the terms of the GNU General
|
||||
* Public License Version 2, which you should have received a copy of along with
|
||||
* this program. If not, please go to <https://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
80
src/sv.c
Normal file
80
src/sv.c
Normal file
@@ -0,0 +1,80 @@
|
||||
/* sv.c: String View implementation
|
||||
* Created: 2026-03-10
|
||||
* Author: Aryadev Chavali
|
||||
* License: See end of file
|
||||
* Commentary:
|
||||
Taken from https://github.com/oreodave/prick - prick_sv.
|
||||
*/
|
||||
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "sv.h"
|
||||
|
||||
sv_t sv_chop_left(sv_t sv, uint64_t size)
|
||||
{
|
||||
if (sv.size <= size)
|
||||
return SV(NULL, 0);
|
||||
return SV(sv.data + size, sv.size - size);
|
||||
}
|
||||
|
||||
sv_t sv_chop_right(sv_t sv, uint64_t size)
|
||||
{
|
||||
if (sv.size <= size)
|
||||
return SV(NULL, 0);
|
||||
return SV(sv.data, sv.size - size);
|
||||
}
|
||||
|
||||
sv_t sv_truncate(sv_t sv, uint64_t newsize)
|
||||
{
|
||||
if (newsize > sv.size)
|
||||
return SV(NULL, 0);
|
||||
return SV(sv.data, newsize);
|
||||
}
|
||||
|
||||
sv_t sv_substr(sv_t sv, uint64_t position, uint64_t size)
|
||||
{
|
||||
sv_t result = sv_truncate(sv_chop_left(sv, position), size);
|
||||
return result;
|
||||
}
|
||||
|
||||
sv_t sv_till(sv_t sv, const char *reject)
|
||||
{
|
||||
if (sv.size == 0 || !sv.data)
|
||||
return SV(NULL, 0);
|
||||
|
||||
uint64_t offset;
|
||||
for (offset = 0; offset < sv.size && strchr(reject, sv.data[offset]) == NULL;
|
||||
++offset)
|
||||
continue;
|
||||
|
||||
return sv_truncate(sv, offset);
|
||||
}
|
||||
|
||||
sv_t sv_while(sv_t sv, const char *accept)
|
||||
{
|
||||
if (sv.size == 0 || !sv.data)
|
||||
return SV(NULL, 0);
|
||||
|
||||
uint64_t offset;
|
||||
for (offset = 0; offset < sv.size && strchr(accept, sv.data[offset]) != NULL;
|
||||
++offset)
|
||||
continue;
|
||||
|
||||
return sv_truncate(sv, offset);
|
||||
}
|
||||
|
||||
/* Copyright (C) 2026 Aryadev Chavali
|
||||
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||
Public License Version 2
|
||||
* for details.
|
||||
|
||||
* You may distribute and modify this code under the terms of the
|
||||
* GNU General Public License Version 2, which you should have received a copy
|
||||
of along with this
|
||||
* program. If not, please go to <https://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
50
src/sv.h
Normal file
50
src/sv.h
Normal file
@@ -0,0 +1,50 @@
|
||||
/* sv.h: String Views
|
||||
* Created: 2026-03-10
|
||||
* Author: Aryadev Chavali
|
||||
* License: See end of file
|
||||
* Commentary:
|
||||
Taken from https://github.com/oreodave/prick - prick_sv.
|
||||
*/
|
||||
|
||||
#ifndef SV_H
|
||||
#define SV_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint64_t size;
|
||||
const char *data;
|
||||
} sv_t;
|
||||
|
||||
#define SV(DATA, SIZE) ((sv_t){.data = (DATA), .size = (SIZE)})
|
||||
#define SV_AUTO(DATA) ((sv_t){.data = (void *)(DATA), .size = sizeof(DATA) - 1})
|
||||
|
||||
// Pretty printers
|
||||
#define SV_FMT(SV) (int)(SV).size, (SV).data
|
||||
#define PR_SV "%.*s"
|
||||
|
||||
sv_t sv_chop_left(sv_t, uint64_t size);
|
||||
sv_t sv_chop_right(sv_t, uint64_t size);
|
||||
sv_t sv_truncate(sv_t, uint64_t newsize);
|
||||
sv_t sv_substr(sv_t, uint64_t position, uint64_t size);
|
||||
|
||||
sv_t sv_till(sv_t, const char *reject);
|
||||
sv_t sv_while(sv_t, const char *accept);
|
||||
|
||||
#endif
|
||||
|
||||
/* Copyright (C) 2026 Aryadev Chavali
|
||||
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||
Public License Version 2
|
||||
* for details.
|
||||
|
||||
* You may distribute and modify this code under the terms of the
|
||||
* GNU General Public License Version 2, which you should have received a copy
|
||||
of along with this
|
||||
* program. If not, please go to <https://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
111
src/vec.c
Normal file
111
src/vec.c
Normal file
@@ -0,0 +1,111 @@
|
||||
/* vec.c: Vector implementation
|
||||
* Created: 2026-03-10
|
||||
* Author: Aryadev Chavali
|
||||
* License: See end of file
|
||||
* Commentary:
|
||||
Taken from https://github.com/oreodave/prick - prick_vec.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "base.h"
|
||||
#include "vec.h"
|
||||
|
||||
void vec_append(vec_t *vec, const void *const ptr, uint64_t size)
|
||||
{
|
||||
if (!vec || !ptr || !size)
|
||||
return;
|
||||
vec_ensure_free(vec, size);
|
||||
memcpy(&VEC_GET(vec, vec->size, uint8_t), ptr, size);
|
||||
vec->size += size;
|
||||
}
|
||||
|
||||
void vec_append_byte(vec_t *vec, uint8_t byte)
|
||||
{
|
||||
if (!vec)
|
||||
return;
|
||||
vec_ensure_free(vec, 1);
|
||||
VEC_GET(vec, vec->size, uint8_t) = byte;
|
||||
++vec->size;
|
||||
}
|
||||
|
||||
void *vec_data(vec_t *vec)
|
||||
{
|
||||
if (!vec)
|
||||
return NULL;
|
||||
|
||||
if (vec->not_inlined)
|
||||
{
|
||||
return vec->ptr;
|
||||
}
|
||||
else
|
||||
{
|
||||
return vec->inlined;
|
||||
}
|
||||
}
|
||||
|
||||
void vec_ensure_capacity(vec_t *vec, uint64_t capacity)
|
||||
{
|
||||
if (!vec)
|
||||
return;
|
||||
if (vec->capacity == 0)
|
||||
vec->capacity = VEC_INLINE_CAPACITY;
|
||||
if (vec->capacity < capacity)
|
||||
{
|
||||
vec->capacity = MAX(vec->capacity * VEC_MULT, capacity);
|
||||
if (!vec->not_inlined)
|
||||
{
|
||||
// We were a small buffer, and now we cannot be i.e. we need to allocate
|
||||
// on the heap.
|
||||
vec->not_inlined = 1;
|
||||
void *buffer = calloc(1, vec->capacity);
|
||||
memcpy(buffer, vec->inlined, vec->size);
|
||||
memset(vec->inlined, 0, sizeof(vec->inlined));
|
||||
vec->ptr = buffer;
|
||||
}
|
||||
else
|
||||
{
|
||||
// We're already on the heap, just reallocate.
|
||||
vec->ptr = realloc(vec->ptr, vec->capacity);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void vec_ensure_free(vec_t *vec, uint64_t size)
|
||||
{
|
||||
if (!vec)
|
||||
return;
|
||||
vec_ensure_capacity(vec, vec->size + size);
|
||||
}
|
||||
|
||||
void vec_free(vec_t *vec)
|
||||
{
|
||||
if (!vec)
|
||||
return;
|
||||
if (vec->not_inlined)
|
||||
free(vec->ptr);
|
||||
memset(vec, 1, sizeof(*vec));
|
||||
}
|
||||
|
||||
void vec_clone(vec_t *v2, vec_t *v1)
|
||||
{
|
||||
if (!v1 || !v2)
|
||||
return;
|
||||
vec_append(v2, vec_data(v1), v1->size);
|
||||
}
|
||||
|
||||
/* Copyright (C) 2026 Aryadev Chavali
|
||||
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||
Public License Version 2
|
||||
* for details.
|
||||
|
||||
* You may distribute and modify this code under the terms of the
|
||||
* GNU General Public License Version 2, which you should have received a copy
|
||||
of along with this
|
||||
* program. If not, please go to <https://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
55
src/vec.h
Normal file
55
src/vec.h
Normal file
@@ -0,0 +1,55 @@
|
||||
/* vec.h: Vectors
|
||||
* Created: 2026-03-10
|
||||
* Author: Aryadev Chavali
|
||||
* License: See end of file
|
||||
* Commentary:
|
||||
Taken from https://github.com/oreodave/prick - prick_vec.
|
||||
*/
|
||||
|
||||
#ifndef VEC_H
|
||||
#define VEC_H
|
||||
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define VEC_INLINE_CAPACITY 32
|
||||
#define VEC_MULT 2
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint64_t size, capacity;
|
||||
uint8_t not_inlined;
|
||||
union
|
||||
{
|
||||
void *ptr;
|
||||
alignas(max_align_t) uint8_t inlined[VEC_INLINE_CAPACITY];
|
||||
};
|
||||
} vec_t;
|
||||
|
||||
static_assert(sizeof(vec_t) == 64, "Expected sizeof(vec_t) to be 64");
|
||||
|
||||
void vec_append(vec_t *vec, const void *const ptr, uint64_t size);
|
||||
void vec_append_byte(vec_t *vec, uint8_t byte);
|
||||
void *vec_data(vec_t *vec);
|
||||
void vec_ensure_capacity(vec_t *vec, uint64_t capacity);
|
||||
void vec_ensure_free(vec_t *vec, uint64_t size);
|
||||
void vec_free(vec_t *vec);
|
||||
void vec_clone(vec_t *v2, vec_t *v1);
|
||||
|
||||
#define VEC_GET(VEC, INDEX, TYPE) (((TYPE *)vec_data(VEC))[INDEX])
|
||||
|
||||
#endif
|
||||
|
||||
/* Copyright (C) 2026 Aryadev Chavali
|
||||
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
* FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for
|
||||
* details.
|
||||
|
||||
* You may distribute and modify this code under the terms of the GNU General
|
||||
* Public License Version 2, which you should have received a copy of along with
|
||||
* this program. If not, please go to <https://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
Reference in New Issue
Block a user