同步操作将从 OpenHarmony-SIG/python 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/* Parser accelerator module *//* The parser as originally conceived had disappointing performance.This module does some precomputation that speeds up the selectionof a DFA based upon a token, turning a search through an arrayinto a simple indexing operation. The parser now cannot workwithout the accelerators installed. Note that the acceleratorsare installed dynamically when the parser is initialized, theyare not part of the static data structure written on graminit.[ch]by the parser generator. */#include "Python.h"#include "grammar.h"#include "node.h"#include "token.h"#include "parser.h"/* Forward references */static void fixdfa(grammar *, const dfa *);static void fixstate(grammar *, state *);voidPyGrammar_AddAccelerators(grammar *g){int i;const dfa *d = g->g_dfa;for (i = g->g_ndfas; --i >= 0; d++)fixdfa(g, d);g->g_accel = 1;}voidPyGrammar_RemoveAccelerators(grammar *g){int i;g->g_accel = 0;const dfa *d = g->g_dfa;for (i = g->g_ndfas; --i >= 0; d++) {state *s;int j;s = d->d_state;for (j = 0; j < d->d_nstates; j++, s++) {if (s->s_accel)PyObject_FREE(s->s_accel);s->s_accel = NULL;}}}static voidfixdfa(grammar *g, const dfa *d){state *s;int j;s = d->d_state;for (j = 0; j < d->d_nstates; j++, s++)fixstate(g, s);}static voidfixstate(grammar *g, state *s){const arc *a;int k;int *accel;int nl = g->g_ll.ll_nlabels;s->s_accept = 0;accel = (int *) PyObject_MALLOC(nl * sizeof(int));if (accel == NULL) {fprintf(stderr, "no mem to build parser accelerators\n");exit(1);}for (k = 0; k < nl; k++)accel[k] = -1;a = s->s_arc;for (k = s->s_narcs; --k >= 0; a++) {int lbl = a->a_lbl;const label *l = &g->g_ll.ll_label[lbl];int type = l->lb_type;if (a->a_arrow >= (1 << 7)) {printf("XXX too many states!\n");continue;}if (ISNONTERMINAL(type)) {const dfa *d1 = PyGrammar_FindDFA(g, type);int ibit;if (type - NT_OFFSET >= (1 << 7)) {printf("XXX too high nonterminal number!\n");continue;}for (ibit = 0; ibit < g->g_ll.ll_nlabels; ibit++) {if (testbit(d1->d_first, ibit)) {if (accel[ibit] != -1)printf("XXX ambiguity!\n");accel[ibit] = a->a_arrow | (1 << 7) |((type - NT_OFFSET) << 8);}}}else if (lbl == EMPTY)s->s_accept = 1;else if (lbl >= 0 && lbl < nl)accel[lbl] = a->a_arrow;}while (nl > 0 && accel[nl-1] == -1)nl--;for (k = 0; k < nl && accel[k] == -1;)k++;if (k < nl) {int i;s->s_accel = (int *) PyObject_MALLOC((nl-k) * sizeof(int));if (s->s_accel == NULL) {fprintf(stderr, "no mem to add parser accelerators\n");exit(1);}s->s_lower = k;s->s_upper = nl;for (i = 0; k < nl; i++, k++)s->s_accel[i] = accel[k];}PyObject_FREE(accel);}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。