return -ENOMEM;
}
- s->data = calloc(x64->dynsyms->size + 3, sizeof(void*));
+ s->data = calloc(x64->n_plts + 3, sizeof(void*));
if (!s->data) {
scf_string_free(s->name);
free(s);
return -ENOMEM;
}
- s->data_len = (x64->dynsyms->size + 3) * sizeof(void*);
+ s->data_len = (x64->n_plts + 3) * sizeof(void*);
- s->index = 1;
+ s->index = 1;
s->sh.sh_type = SHT_PROGBITS;
s->sh.sh_flags = SHF_ALLOC | SHF_WRITE;
return -ENOMEM;
}
- s->data = calloc(x64->dynsyms->size, sizeof(Elf64_Rela));
+ s->data = calloc(x64->n_plts, sizeof(Elf64_Rela));
if (!s->data) {
scf_string_free(s->name);
free(s);
return -ENOMEM;
}
- s->data_len = x64->dynsyms->size * sizeof(Elf64_Rela);
+ s->data_len = x64->n_plts * sizeof(Elf64_Rela);
- s->index = 1;
+ s->index = 1;
s->sh.sh_type = SHT_RELA;
s->sh.sh_flags = SHF_ALLOC | SHF_INFO_LINK;
0xe9, 0, 0, 0, 0, // jmp
};
- s->data = malloc(sizeof(plt_lazy) + sizeof(plt) * x64->dynsyms->size);
+ s->data = malloc(sizeof(plt_lazy) + sizeof(plt) * x64->n_plts);
if (!s->data) {
scf_string_free(s->name);
free(s);
int jmp = -32;
int i;
- for (i = 0; i < x64->dynsyms->size; i++) {
+ for (i = 0; i < x64->n_plts; i++) {
memcpy(s->data + s->data_len, plt, sizeof(plt));
s->data[s->data_len + 7 ] = i;
s->data_len += sizeof(plt);
}
- s->index = 1;
+ s->index = 1;
s->sh.sh_type = SHT_PROGBITS;
s->sh.sh_flags = SHF_ALLOC;
plt_addr += 16;
int i;
- for (i = 0; i < x64->dynsyms->size; i++) {
- rela_plt[i].r_offset = got_addr;
- rela_plt[i].r_addend = 0;
- rela_plt[i].r_info = ELF64_R_INFO(i + 1, R_X86_64_JUMP_SLOT);
+ for (i = 0; i < x64->n_plts; i++) {
+ rela_plt[i].r_offset = got_addr;
+ rela_plt[i].r_addend = 0;
+ rela_plt[i].r_info = ELF64_R_INFO(i + 1, R_X86_64_JUMP_SLOT);
scf_logd("got_addr: %#lx\n", got_addr);
+++ /dev/null
-
-include "../lib/scf_capi.c";
-
-struct complex
-{
- double real;
- double imag;
-
- int __init(complex* this, double real, double imag)
- {
- this->real = real;
- this->imag = imag;
- return 0;
- }
-
-/* int operator+=(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- this->real += that->real;
- this->imag += that->imag;
- return 0;
- }
-
- int operator-=(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- this->real -= that->real;
- this->imag -= that->imag;
- return 0;
- }
-
- int operator*=(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- double a = this->real;
- double b = this->imag;
- double c = that->real;
- double d = that->imag;
-
- this->real = a * c - b * d;
- this->imag = a * d + b * c;
- return 0;
- }
-
- int operator/=(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- double a = this->real;
- double b = this->imag;
- double c = that->real;
- double d = that->imag;
-
- this->real = (a * c + b * d) / (c * c + d * d);
- this->imag = (b * c - a * d) / (c * c + d * d);
- return 0;
- }
-*/
- complex*, int operator+(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- complex* res;
-
- res = create complex(0.0, 0.0);
- if (!res)
- return NULL, -1;
-
- res->real = this->real + that->real;
- res->imag = this->imag + that->imag;
- return res, 0;
- }
-
- complex*, int operator-(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- complex* res;
-
- res = create complex(0.0, 0.0);
- if (!res)
- return NULL, -1;
-
- res->real = this->real - that->real;
- res->imag = this->imag - that->imag;
- return res, 0;
- }
-
- complex*, int operator*(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- complex* res;
-
- res = create complex(0.0, 0.0);
- if (!res)
- return NULL, -1;
-
- double a = this->real;
- double b = this->imag;
- double c = that->real;
- double d = that->imag;
-
- res->real = a * c - b * d;
- res->imag = a * d + b * c;
- return res, 0;
- }
-
- complex*, int operator/(complex* this, complex* that)
- {
- if (!this || !that)
- return -1;
-
- complex* res;
-
- res = create complex(0.0, 0.0);
- if (!res)
- return NULL, -1;
-
- double a = this->real;
- double b = this->imag;
- double c = that->real;
- double d = that->imag;
-
- res->real = (a * c + b * d) / (c * c + d * d);
- res->imag = (b * c - a * d) / (c * c + d * d);
- return res, 0;
- }
-};
-
-int main()
-{
- complex* c0;
- complex* c1;
- complex* c2;
- complex* c3;
-
- c0 = create complex(1.0, 2.0);
- c1 = create complex(3.0, 4.0);
-
- c2 = c0 + c1;
- c3 = c0 * c1;
-
- printf("c2: %lf,%lf\n", c2->real, c2->imag);
- printf("c3: %lf,%lf\n", c3->real, c3->imag);
-
- return 0;
-}
-
return SCF_DFA_NEXT_WORD;
}
+static int _error_action_member(scf_dfa_t* dfa, scf_vector_t* words, void* data)
+{
+ scf_lex_word_t* w = words->data[words->size - 1];
+
+ scf_loge("member '%s' should be an var in struct, file: %s, line: %d\n",
+ w->text->data, w->file->data, w->line);
+ return SCF_DFA_ERROR;
+}
+
+static int _error_action_index(scf_dfa_t* dfa, scf_vector_t* words, void* data)
+{
+ scf_lex_word_t* w = words->data[words->size - 1];
+
+ scf_loge("array index '%s' should be an integer, file: %s, line: %d\n",
+ w->text->data, w->file->data, w->line);
+ return SCF_DFA_ERROR;
+}
+
static int _data_action_index(scf_dfa_t* dfa, scf_vector_t* words, void* data)
{
scf_parse_t* parse = dfa->priv;
SCF_DFA_MODULE_NODE(dfa, init_data, dot, scf_dfa_is_dot, scf_dfa_action_next);
SCF_DFA_MODULE_NODE(dfa, init_data, member, scf_dfa_is_identity, _data_action_member);
- SCF_DFA_MODULE_NODE(dfa, init_data, index0, scf_dfa_is_const_integer, _data_action_index);
- SCF_DFA_MODULE_NODE(dfa, init_data, index1, scf_dfa_is_const_integer, _data_action_index);
+ SCF_DFA_MODULE_NODE(dfa, init_data, index, scf_dfa_is_const_integer, _data_action_index);
SCF_DFA_MODULE_NODE(dfa, init_data, assign, scf_dfa_is_assign, scf_dfa_action_next);
+ SCF_DFA_MODULE_NODE(dfa, init_data, merr, scf_dfa_is_entry, _error_action_member);
+ SCF_DFA_MODULE_NODE(dfa, init_data, ierr, scf_dfa_is_entry, _error_action_index);
+
scf_parse_t* parse = dfa->priv;
dfa_data_t* d = parse->dfa_data;
init_module_data_t* md = d->module_datas[dfa_module_init_data.index];
SCF_DFA_GET_MODULE_NODE(dfa, init_data, dot, dot);
SCF_DFA_GET_MODULE_NODE(dfa, init_data, member, member);
- SCF_DFA_GET_MODULE_NODE(dfa, init_data, index0, index0);
- SCF_DFA_GET_MODULE_NODE(dfa, init_data, index1, index1);
+ SCF_DFA_GET_MODULE_NODE(dfa, init_data, index, index);
SCF_DFA_GET_MODULE_NODE(dfa, init_data, assign, assign);
+ SCF_DFA_GET_MODULE_NODE(dfa, init_data, merr, merr);
+ SCF_DFA_GET_MODULE_NODE(dfa, init_data, ierr, ierr);
+
SCF_DFA_GET_MODULE_NODE(dfa, expr, entry, expr);
// empty init, use 0 to fill the data
scf_dfa_node_add_child(expr, rb);
scf_dfa_node_add_child(dot, member);
- scf_dfa_node_add_child(dot, index0);
scf_dfa_node_add_child(member, assign);
- scf_dfa_node_add_child(index0, assign);
scf_dfa_node_add_child(assign, expr);
- scf_dfa_node_add_child(ls, index1);
- scf_dfa_node_add_child(index1, rs);
+ scf_dfa_node_add_child(ls, index);
+ scf_dfa_node_add_child(index, rs);
scf_dfa_node_add_child(rs, ls);
scf_dfa_node_add_child(rs, assign);
+ scf_dfa_node_add_child(dot, merr);
+ scf_dfa_node_add_child(ls, ierr);
return 0;
}