Cthulhu  0.2.10
Cthulhu compiler collection
Helpers for flex and bison driver frontends
Collaboration diagram for Helpers for flex and bison driver frontends:

Functions

CT_INTEROP_API void flex_action (INOUT_NOTNULL where_t *where, const char *text)
 tracks the current source position More...
 
CT_INTEROP_API int flex_input (INOUT_NOTNULL scan_t *scan, STA_WRITES(size) char *out, int size)
 retrevies more input for flex More...
 
CT_INTEROP_API void flex_init (OUT_NOTNULL where_t *where)
 initialize source location tracking More...
 
CT_INTEROP_API void flex_update (INOUT_NOTNULL where_t *where, STA_READS(steps) const where_t *offsets, int steps)
 update the source location More...
 
#define BISON_ARENA(x)   scan_get_arena(x)
 get the arena of a scanner More...
 
#define FLEX_MEMORY(prefix)
 route memory for flex and bison though cthulhu allocators More...
 

Detailed Description

Macro Definition Documentation

◆ BISON_ARENA

#define BISON_ARENA (   x)    scan_get_arena(x)

get the arena of a scanner

◆ FLEX_MEMORY

#define FLEX_MEMORY (   prefix)
Value:
inline void *prefix##alloc(size_t size, yyscan_t scanner) \
{ \
scan_t *scan = yyget_extra(scanner); \
arena_t *arena = scan_get_arena(scan); \
return ARENA_MALLOC(size, "yyalloc", scan, arena); \
} \
inline void *prefix##realloc(void *ptr, size_t bytes, yyscan_t scanner) \
{ \
arena_t *arena = scan_get_arena(yyget_extra(scanner)); \
return arena_realloc(ptr, bytes, CT_ALLOC_SIZE_UNKNOWN, arena); \
} \
inline void prefix##free(void *ptr, yyscan_t scanner) \
{ \
arena_t *arena = scan_get_arena(yyget_extra(scanner)); \
if (ptr == NULL) \
{ \
return; \
} \
arena_free(ptr, CT_ALLOC_SIZE_UNKNOWN, arena); \
}
CT_NODISCARD CT_PUREFN CT_SCAN_API arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
Definition: scan.c:113
CT_NODISCARD size_t size
Definition: scan.h:128
#define CT_ALLOC_SIZE_UNKNOWN
unknown allocation size constant when freeing or reallocating memory, this can be used as the size to...
Definition: arena.h:37
CT_NODISCARD CT_ARENA_API void * arena_realloc(STA_RELEASE void *ptr, size_t new_size, size_t old_size, arena_t *arena)
resize a memory allocation from a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
Definition: arena.h:392

route memory for flex and bison though cthulhu allocators

Parameters
prefixthe prefix assigned to flex and bison functions

Function Documentation

◆ flex_action()

CT_INTEROP_API void flex_action ( INOUT_NOTNULL where_t where,
const char *  text 
)

tracks the current source position

See also
https://ftp.gnu.org/old-gnu/Manuals/flex-2.5.4/html_node/flex_14.html
Parameters
wherea pointer to the current location
textcurrent source text

◆ flex_init()

CT_INTEROP_API void flex_init ( OUT_NOTNULL where_t where)

initialize source location tracking

Parameters
wherethe source location to initialize

◆ flex_input()

CT_INTEROP_API int flex_input ( INOUT_NOTNULL scan_t scan,
STA_WRITES(size) char *  out,
int  size 
)

retrevies more input for flex

Parameters
scanthe source scanner
outoutput buffer to write to
sizetotal number of characters to write
Returns
number of characters written

◆ flex_update()

CT_INTEROP_API void flex_update ( INOUT_NOTNULL where_t where,
STA_READS(steps) const where_t offsets,
int  steps 
)

update the source location

Parameters
wherethe source location to update
offsetsthe source location offsets
stepsthe number of steps to update by