Encapsulate ParseStackNodes

This commit is contained in:
Max Brunsfeld 2015-06-03 09:44:13 -07:00
parent 6330ae997b
commit aaaa1c8a5d
6 changed files with 405 additions and 350 deletions

View file

@ -5,16 +5,25 @@
#include "runtime/length.h"
#include <assert.h>
static const size_t INITIAL_HEAD_CAPACITY = 3;
#define MAX_POP_PATH_COUNT 8
#define INITIAL_HEAD_CAPACITY 3
typedef struct ParseStackNode {
ParseStackEntry entry;
struct ParseStackNode *successors[MAX_POP_PATH_COUNT];
short unsigned int successor_count;
short unsigned int ref_count;
} ParseStackNode;
struct ParseStack {
ParseStackNode **heads;
int head_count;
int head_capacity;
ParseStackPopResult last_pop_results[MAX_POP_PATH_COUNT];
};
/*
* Section: Lifecycle
* Section: Stack lifecycle
*/
ParseStack *ts_parse_stack_new() {
@ -28,163 +37,36 @@ ParseStack *ts_parse_stack_new() {
}
void ts_parse_stack_delete(ParseStack *this) {
if (this->heads)
free(this->heads);
free(this->heads);
free(this);
}
/*
* Section: Reading
* Section: Reading from the stack
*/
ParseStackNode *ts_parse_stack_head(const ParseStack *this, int head_index) {
assert(head_index < this->head_count);
return this->heads[head_index];
const ParseStackEntry *ts_parse_stack_head(const ParseStack *this, int head) {
assert(head < this->head_count);
ParseStackNode *node = this->heads[head];
return node ? &node->entry : NULL;
}
int ts_parse_stack_head_count(const ParseStack *this) {
return this->head_count;
}
/*
* Section: Updating
*/
static ParseStackNode *stack_node_new(ParseStackNode *, TSStateId, TSTree *);
static void stack_node_retain(ParseStackNode *);
static bool stack_node_release(ParseStackNode *);
static void stack_node_add_successor(ParseStackNode *, ParseStackNode *);
static void parse_stack_remove_head(ParseStack *, int);
static bool parse_stack_merge_head(ParseStack *, int, TSStateId, TSTree *);
bool ts_parse_stack_shift(ParseStack *this, int head_index, TSStateId state, TSTree *tree) {
assert(head_index < this->head_count);
if (parse_stack_merge_head(this, head_index, state, tree))
return true;
this->heads[head_index] = stack_node_new(this->heads[head_index], state, tree);
return false;
int ts_parse_stack_entry_next_count(const ParseStackEntry *entry) {
return ((const ParseStackNode *)entry)->successor_count;
}
#define MAX_PATH_COUNT 8
bool ts_parse_stack_reduce(ParseStack *this, int head_index, TSStateId state,
TSSymbol symbol, int child_count) {
int path_count = 1;
ParseStackNode *nodes_by_path[MAX_PATH_COUNT] = {this->heads[head_index]};
TreeVector children_by_path[MAX_PATH_COUNT] = {tree_vector_new(child_count)};
size_t child_counts_by_path[MAX_PATH_COUNT] = {child_count};
/*
* Reduce along every possible path in parallel. Stop when the given number
* of child trees have been collected along every path.
*/
bool all_paths_done = false;
while (!all_paths_done) {
all_paths_done = true;
int current_path_count = path_count;
for (int path = 0; path < current_path_count; path++) {
if (children_by_path[path].size == child_counts_by_path[path])
continue;
else
all_paths_done = false;
/*
* Children that are 'extra' do not count towards the total child count.
*/
ParseStackNode *node = nodes_by_path[path];
if (ts_tree_is_extra(node->tree))
child_counts_by_path[path]++;
/*
* If a node has more than one successor, create new paths for each of
* the additional successors.
*/
tree_vector_push(&children_by_path[path], node->tree);
for (int i = 0; i < node->successor_count; i++) {
int next_path;
if (i > 0) {
if (path_count == MAX_PATH_COUNT) break;
next_path = path_count;
child_counts_by_path[next_path] = child_counts_by_path[path];
children_by_path[next_path] = tree_vector_copy(&children_by_path[path]);
path_count++;
} else {
next_path = path;
}
nodes_by_path[next_path] = node->successors[i];
}
}
}
TSTree *parent;
if (path_count > 1) {
TSTree **trees_by_path = malloc(path_count * sizeof(TSTree *));
for (int path = 0; path < path_count; path++) {
stack_node_retain(nodes_by_path[path]);
tree_vector_reverse(&children_by_path[path]);
trees_by_path[path] = ts_tree_make_node(
symbol,
child_counts_by_path[path],
children_by_path[path].contents,
false
);
parent = ts_tree_make_ambiguity(path_count, trees_by_path);
}
} else {
stack_node_retain(nodes_by_path[0]);
tree_vector_reverse(&children_by_path[0]);
parent = ts_tree_make_node(
symbol,
child_counts_by_path[0],
children_by_path[0].contents,
false
);
}
stack_node_release(this->heads[head_index]);
this->heads[head_index] = nodes_by_path[0];
if (parse_stack_merge_head(this, head_index, state, parent))
return true;
this->heads[head_index] = stack_node_new(nodes_by_path[0], state, parent);
for (int i = 1; i < path_count; i++) {
stack_node_add_successor(this->heads[head_index], nodes_by_path[i]);
}
return false;
}
int ts_parse_stack_split(ParseStack *this, int head_index) {
assert(head_index < this->head_count);
if (this->head_count == this->head_capacity) {
this->head_capacity += 3;
this->heads = realloc(this->heads, this->head_capacity * sizeof(ParseStackNode *));
}
int new_index = this->head_count++;
this->heads[new_index] = this->heads[head_index];
stack_node_retain(this->heads[new_index]);
return new_index;
const ParseStackEntry *ts_parse_stack_entry_next(const ParseStackEntry *entry, int i) {
return &((const ParseStackNode *)entry)->successors[i]->entry;
}
/*
* Section: Private
* Section: Manipulating nodes (Private)
*/
static ParseStackNode *stack_node_new(ParseStackNode *next, TSStateId state, TSTree *tree) {
ParseStackNode *this = malloc(sizeof(ParseStackNode));
*this = (ParseStackNode) {
.ref_count = 1,
.successor_count = 1,
.successors = {next, NULL, NULL},
.state = state,
.tree = tree,
};
return this;
}
static void stack_node_retain(ParseStackNode *this) {
if (!this) return;
assert(this->ref_count != 0);
@ -198,7 +80,7 @@ static bool stack_node_release(ParseStackNode *this) {
if (this->ref_count == 0) {
for (int i = 0; i < this->successor_count; i++)
stack_node_release(this->successors[i]);
ts_tree_release(this->tree);
ts_tree_release(this->entry.tree);
free(this);
return true;
} else {
@ -206,33 +88,69 @@ static bool stack_node_release(ParseStackNode *this) {
}
}
static ParseStackNode *stack_node_new(ParseStackNode *next, TSStateId state, TSTree *tree) {
ParseStackNode *this = malloc(sizeof(ParseStackNode));
ts_tree_retain(tree);
stack_node_retain(next);
*this = (ParseStackNode) {
.ref_count = 1,
.successor_count = 1,
.successors = {next, NULL, NULL},
.entry = {
.state = state,
.tree = tree,
},
};
return this;
}
static void stack_node_add_successor(ParseStackNode *this, ParseStackNode *successor) {
stack_node_retain(successor);
for (int i = 0; i < this->successor_count; i++)
if (this->successors[i] == successor)
return;
stack_node_retain(successor);
this->successors[this->successor_count] = successor;
this->successor_count++;
}
static bool parse_stack_merge_head(ParseStack *this, int head_index, TSStateId state, TSTree *tree) {
/*
* Section: Mutating the stack (Private)
*/
static int ts_parse_stack_add_head(ParseStack *this, ParseStackNode *node) {
if (this->head_count == this->head_capacity) {
this->head_capacity += 3;
this->heads = realloc(this->heads, this->head_capacity * sizeof(ParseStackNode *));
}
int new_index = this->head_count++;
this->heads[new_index] = node;
stack_node_retain(node);
return new_index;
}
static void ts_parse_stack_remove_head(ParseStack *this, int head_index) {
stack_node_release(this->heads[head_index]);
for (int i = head_index; i < this->head_count - 1; i++) {
this->heads[head_index] = this->heads[head_index + 1];
}
this->head_count--;
}
static bool ts_parse_stack_merge_head(ParseStack *this, int head_index, TSStateId state, TSTree *tree) {
for (int i = 0; i < head_index; i++) {
ParseStackNode *head = this->heads[i];
if (head->state == state) {
if (head->tree == tree) {
if (head->entry.state == state) {
if (head->entry.tree == tree) {
stack_node_add_successor(head, this->heads[head_index]);
parse_stack_remove_head(this, head_index);
ts_parse_stack_remove_head(this, head_index);
return true;
}
if (head->tree->symbol == tree->symbol &&
ts_length_eq(head->tree->size, tree->size)) {
} else {
TSTree **options = malloc(2 * sizeof(TSTree *));
options[0] = head->tree;
options[0] = head->entry.tree;
options[1] = tree;
head->tree = ts_tree_make_ambiguity(2, options);
head->entry.tree = ts_tree_make_ambiguity(2, options);
stack_node_add_successor(head, this->heads[head_index]);
parse_stack_remove_head(this, head_index);
ts_parse_stack_remove_head(this, head_index);
return true;
}
}
@ -240,10 +158,96 @@ static bool parse_stack_merge_head(ParseStack *this, int head_index, TSStateId s
return false;
}
static void parse_stack_remove_head(ParseStack *this, int head_index) {
stack_node_release(this->heads[head_index]);
for (int i = head_index; i < this->head_count - 1; i++) {
this->heads[head_index] = this->heads[head_index + 1];
}
this->head_count--;
/*
* Section: Mutating the stack (Public)
*/
bool ts_parse_stack_push(ParseStack *this, int head_index, TSStateId state, TSTree *tree) {
assert(head_index < this->head_count);
if (ts_parse_stack_merge_head(this, head_index, state, tree))
return true;
this->heads[head_index] = stack_node_new(this->heads[head_index], state, tree);
return false;
}
int ts_parse_stack_split(ParseStack *this, int head_index) {
assert(head_index < this->head_count);
return ts_parse_stack_add_head(this, this->heads[head_index]);
}
ParseStackPopResultList ts_parse_stack_pop(ParseStack *this, int head_index, int child_count) {
ParseStackNode *previous_head = this->heads[head_index];
int path_count = 1;
size_t tree_counts_by_path[MAX_POP_PATH_COUNT] = {child_count};
TreeVector trees_by_path[MAX_POP_PATH_COUNT] = {tree_vector_new(child_count)};
ParseStackNode *nodes_by_path[MAX_POP_PATH_COUNT] = {previous_head};
/*
* Reduce along every possible path in parallel. Stop when the given number
* of child trees have been collected along every path.
*/
bool all_paths_done = false;
while (!all_paths_done) {
all_paths_done = true;
int current_path_count = path_count;
for (int path = 0; path < current_path_count; path++) {
if (trees_by_path[path].size == tree_counts_by_path[path])
continue;
else
all_paths_done = false;
/*
* Children that are 'extra' do not count towards the total child count.
*/
ParseStackNode *node = nodes_by_path[path];
if (ts_tree_is_extra(node->entry.tree))
tree_counts_by_path[path]++;
/*
* If a node has more than one successor, create new paths for each of
* the additional successors.
*/
tree_vector_push(&trees_by_path[path], node->entry.tree);
for (int i = 0; i < node->successor_count; i++) {
int next_path;
if (i > 0) {
if (path_count == MAX_POP_PATH_COUNT) break;
next_path = path_count;
tree_counts_by_path[next_path] = tree_counts_by_path[path];
trees_by_path[next_path] = tree_vector_copy(&trees_by_path[path]);
path_count++;
} else {
next_path = path;
}
nodes_by_path[next_path] = node->successors[i];
}
}
}
for (int path = 0; path < path_count; path++) {
tree_vector_reverse(&trees_by_path[path]);
int index;
if (path == 0) {
stack_node_retain(nodes_by_path[path]);
this->heads[head_index] = nodes_by_path[path];
index = head_index;
} else {
index = ts_parse_stack_add_head(this, nodes_by_path[path]);
}
this->last_pop_results[path] = (ParseStackPopResult) {
.index = index,
.tree_count = trees_by_path[path].size,
.trees = trees_by_path[path].contents,
};
}
stack_node_release(previous_head);
return (ParseStackPopResultList) {
.size = path_count,
.contents = this->last_pop_results,
};
}

View file

@ -9,23 +9,73 @@ extern "C" {
typedef struct ParseStack ParseStack;
typedef struct ParseStackNode {
typedef struct {
TSTree *tree;
TSStateId state;
struct ParseStackNode *successors[4];
short unsigned int successor_count;
short unsigned int ref_count;
} ParseStackNode;
} ParseStackEntry;
typedef struct {
int index;
int tree_count;
TSTree **trees;
} ParseStackPopResult;
typedef struct {
int size;
ParseStackPopResult *contents;
} ParseStackPopResultList;
/*
* Create a ParseStack.
*/
ParseStack *ts_parse_stack_new();
/*
* Release any resources reserved by a parse stack.
*/
void ts_parse_stack_delete(ParseStack *);
ParseStackNode *ts_parse_stack_head(const ParseStack *, int);
/*
* Get the stack's current number of heads.
*/
int ts_parse_stack_head_count(const ParseStack *);
bool ts_parse_stack_shift(ParseStack *, int, TSStateId, TSTree *);
bool ts_parse_stack_reduce(ParseStack *, int, TSStateId, TSSymbol, int);
int ts_parse_stack_split(ParseStack *, int);
/*
* Get the tree and state that are at the top of the given stack head.
*/
const ParseStackEntry *ts_parse_stack_head(const ParseStack *, int head);
/*
* Get the number of successors for a given parse stack entry.
*/
int ts_parse_stack_entry_next_count(const ParseStackEntry *);
/*
* Get the nth successor to a given parse stack entry.
*/
const ParseStackEntry *ts_parse_stack_entry_next(const ParseStackEntry *, int);
/*
* Push a (tree, state) pair onto the given head of the stack. Returns
* a boolean indicating whether the stack head was merged with an
* existing head.
*/
bool ts_parse_stack_push(ParseStack *, int head, TSStateId, TSTree *);
/*
* Pop the given number of entries from the given head of the stack. This
* operation can increase the number of stack heads by revealing multiple heads
* which had previously been merged. It returns a struct that indicates the
* index of each revealed head and the trees removed from that head.
*/
ParseStackPopResultList ts_parse_stack_pop(ParseStack *, int head, int count);
/*
* Split the given stack head into two heads, so that the stack can be
* transformed from its current state in multiple alternative ways. Returns
* the index of the newly-created head.
*/
int ts_parse_stack_split(ParseStack *, int head);
#ifdef __cplusplus
}

View file

@ -153,6 +153,12 @@ TSLength ts_tree_total_size(const TSTree *tree) {
}
bool ts_tree_eq(const TSTree *node1, const TSTree *node2) {
if (node1) {
if (!node2) return false;
} else {
return !node2;
}
if (node1->symbol != node2->symbol)
return false;
if (node1->symbol == ts_builtin_sym_error)