2013-11-15 00:12:57 -05:00
|
|
|
#include <stdint.h>
|
2013-05-23 23:26:22 +02:00
|
|
|
#include <assert.h>
|
2012-05-26 16:00:43 +02:00
|
|
|
#include "parser_internal.h"
|
|
|
|
|
|
|
|
|
|
static HParseResult* parse_ch(void* env, HParseState *state) {
|
2014-05-11 23:41:54 +02:00
|
|
|
uint8_t c = (uint8_t)(uintptr_t)(env);
|
2012-05-26 16:00:43 +02:00
|
|
|
uint8_t r = (uint8_t)h_read_bits(&state->input_stream, 8, false);
|
|
|
|
|
if (c == r) {
|
|
|
|
|
HParsedToken *tok = a_new(HParsedToken, 1);
|
|
|
|
|
tok->token_type = TT_UINT; tok->uint = r;
|
2013-05-11 19:04:59 +02:00
|
|
|
return make_result(state->arena, tok);
|
2012-05-26 16:00:43 +02:00
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-25 03:35:42 +02:00
|
|
|
static void desugar_ch(HAllocator *mm__, HCFStack *stk__, void *env) {
|
2014-05-11 23:41:54 +02:00
|
|
|
HCFS_ADD_CHAR( (uint8_t)(uintptr_t)(env) );
|
2013-02-02 19:31:18 -05:00
|
|
|
}
|
|
|
|
|
|
2013-05-23 23:26:22 +02:00
|
|
|
static bool h_svm_action_ch(HArena *arena, HSVMContext *ctx, void* env) {
|
|
|
|
|
// BUG: relies un undefined behaviour: int64_t is a signed uint64_t; not necessarily true on 32-bit
|
|
|
|
|
HParsedToken *top = ctx->stack[ctx->stack_count-1];
|
|
|
|
|
assert(top->token_type == TT_BYTES);
|
|
|
|
|
uint64_t res = 0;
|
|
|
|
|
for (size_t i = 0; i < top->bytes.len; i++)
|
|
|
|
|
res = (res << 8) | top->bytes.token[i]; // TODO: Handle other endiannesses.
|
|
|
|
|
top->uint = res; // possibly cast to signed through union
|
|
|
|
|
top->token_type = TT_UINT;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-18 01:18:39 -04:00
|
|
|
static bool ch_ctrvm(HRVMProg *prog, void* env) {
|
2014-05-11 23:41:54 +02:00
|
|
|
uint8_t c = (uint8_t)(uintptr_t)(env);
|
2013-04-26 20:36:54 -07:00
|
|
|
// TODO: Does this capture anything?
|
2013-05-23 23:26:22 +02:00
|
|
|
h_rvm_insert_insn(prog, RVM_PUSH, 0);
|
|
|
|
|
h_rvm_insert_insn(prog, RVM_MATCH, c | c << 8);
|
2013-03-18 01:18:39 -04:00
|
|
|
h_rvm_insert_insn(prog, RVM_STEP, 0);
|
2013-05-23 23:26:22 +02:00
|
|
|
h_rvm_insert_insn(prog, RVM_CAPTURE, 0);
|
|
|
|
|
h_rvm_insert_insn(prog, RVM_ACTION, h_rvm_create_action(prog, h_svm_action_ch, env));
|
2013-03-18 01:18:39 -04:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-26 16:00:43 +02:00
|
|
|
static const HParserVtable ch_vt = {
|
|
|
|
|
.parse = parse_ch,
|
2012-12-18 18:10:40 -05:00
|
|
|
.isValidRegular = h_true,
|
|
|
|
|
.isValidCF = h_true,
|
2013-02-02 19:31:18 -05:00
|
|
|
.desugar = desugar_ch,
|
2013-03-18 01:18:39 -04:00
|
|
|
.compile_to_rvm = ch_ctrvm,
|
2012-05-26 16:00:43 +02:00
|
|
|
};
|
2012-10-10 15:58:03 +02:00
|
|
|
|
2013-04-26 20:36:54 -07:00
|
|
|
HParser* h_ch(const uint8_t c) {
|
2012-10-10 15:58:03 +02:00
|
|
|
return h_ch__m(&system_allocator, c);
|
|
|
|
|
}
|
2013-04-26 20:36:54 -07:00
|
|
|
HParser* h_ch__m(HAllocator* mm__, const uint8_t c) {
|
2013-04-27 04:17:47 +02:00
|
|
|
return h_new_parser(mm__, &ch_vt, (void *)(uintptr_t)c);
|
2012-05-26 16:00:43 +02:00
|
|
|
}
|