Prism Ruby parser
Loading...
Searching...
No Matches
Data Structures | Functions
pm_line_offset_list.h File Reference

A list of byte offsets of newlines in a string. More...

#include "prism/defines.h"
#include "prism/util/pm_arena.h"
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
Include dependency graph for pm_line_offset_list.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  pm_line_offset_list_t
 A list of offsets of the start of lines in a string. More...
 
struct  pm_line_column_t
 A line and column in a string. More...
 

Functions

void pm_line_offset_list_init (pm_arena_t *arena, pm_line_offset_list_t *list, size_t capacity)
 Initialize a new line offset list with the given capacity.
 
void pm_line_offset_list_clear (pm_line_offset_list_t *list)
 Clear out the offsets that have been appended to the list.
 
void pm_line_offset_list_append_slow (pm_arena_t *arena, pm_line_offset_list_t *list, uint32_t cursor)
 Append a new offset to the list (slow path with resize).
 
int32_t pm_line_offset_list_line (const pm_line_offset_list_t *list, uint32_t cursor, int32_t start_line)
 Returns the line of the given offset.
 
PRISM_EXPORTED_FUNCTION pm_line_column_t pm_line_offset_list_line_column (const pm_line_offset_list_t *list, uint32_t cursor, int32_t start_line)
 Returns the line and column of the given offset.
 

Detailed Description

A list of byte offsets of newlines in a string.

When compiling the syntax tree, it's necessary to know the line and column of many nodes. This is necessary to support things like error messages, tracepoints, etc.

It's possible that we could store the start line, start column, end line, and end column on every node in addition to the offsets that we already store, but that would be quite a lot of memory overhead.

Function Documentation

◆ pm_line_offset_list_init()

void pm_line_offset_list_init ( pm_arena_t arena,
pm_line_offset_list_t list,
size_t  capacity 
)

Initialize a new line offset list with the given capacity.

Parameters
arenaThe arena to allocate from.
listThe list to initialize.
capacityThe initial capacity of the list.

◆ pm_line_offset_list_clear()

void pm_line_offset_list_clear ( pm_line_offset_list_t list)

Clear out the offsets that have been appended to the list.

Parameters
listThe list to clear.

Clear out the offsets that have been appended to the list.

◆ pm_line_offset_list_append_slow()

void pm_line_offset_list_append_slow ( pm_arena_t arena,
pm_line_offset_list_t list,
uint32_t  cursor 
)

Append a new offset to the list (slow path with resize).

Parameters
arenaThe arena to allocate from.
listThe list to append to.
cursorThe offset to append.

Append a new offset to the list (slow path with resize).

◆ pm_line_offset_list_line()

int32_t pm_line_offset_list_line ( const pm_line_offset_list_t list,
uint32_t  cursor,
int32_t  start_line 
)

Returns the line of the given offset.

If the offset is not in the list, the line of the closest offset less than the given offset is returned.

Parameters
listThe list to search.
cursorThe offset to search for.
start_lineThe line to start counting from.
Returns
The line of the given offset.

If the offset is not in the list, the line of the closest offset less than the given offset is returned.

◆ pm_line_offset_list_line_column()

PRISM_EXPORTED_FUNCTION pm_line_column_t pm_line_offset_list_line_column ( const pm_line_offset_list_t list,
uint32_t  cursor,
int32_t  start_line 
)

Returns the line and column of the given offset.

If the offset is not in the list, the line and column of the closest offset less than the given offset are returned.

Parameters
listThe list to search.
cursorThe offset to search for.
start_lineThe line to start counting from.
Returns
The line and column of the given offset.

If the offset is not in the list, the line and column of the closest offset less than the given offset are returned.