parser: fix the remaining pointer chasing Fix the TODO added in 7c42945. Signed-off-by: Ran Benita <ran@unusedvar.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
diff --git a/src/xkbcomp/parser.y b/src/xkbcomp/parser.y
index 9b16fc7..093151e 100644
--- a/src/xkbcomp/parser.y
+++ b/src/xkbcomp/parser.y
@@ -311,23 +311,27 @@ Flag : PARTIAL { $$ = MAP_IS_PARTIAL; }
DeclList : DeclList Decl
{
- /*
- * TODO: This is needed because of VModDecl, which
- * is a list and is "inlined" into the DeclList.
- * Should change to avoid the O(N)-append behavior,
- * like we do in the other lists.
- */
if ($2) {
- if (!$1.head)
- $$.head = $2;
- else
- $$.head = $1.head;
- if (!$1.last)
- $$.last = $2;
- else
- $$.last = $1.last->next = $2;
- while ($$.last->next)
- $$.last = $$.last->next;
+ if ($1.head) {
+ $$.head = $1.head; $1.last->next = $2; $$.last = $2;
+ } else {
+ $$.head = $$.last = $2;
+ }
+ }
+ }
+ /*
+ * VModDecl is "inlined" directly into DeclList, i.e.
+ * each VModDef in the VModDecl is a separate Decl in
+ * the File.
+ */
+ | DeclList OptMergeMode VModDecl
+ {
+ for (VModDef *vmod = $3.head; vmod; vmod = (VModDef *) vmod->common.next)
+ vmod->merge = $2;
+ if ($1.head) {
+ $$.head = $1.head; $1.last->next = &$3.head->common; $$.last = &$3.last->common;
+ } else {
+ $$.head = &$3.head->common; $$.last = &$3.last->common;
}
}
| { $$.head = $$.last = NULL; }
@@ -338,12 +342,7 @@ Decl : OptMergeMode VarDecl
$2->merge = $1;
$$ = (ParseCommon *) $2;
}
- | OptMergeMode VModDecl
- {
- for (VModDef *vmod = $2.head; vmod; vmod = (VModDef *) vmod->common.next)
- vmod->merge = $1;
- $$ = (ParseCommon *) $2.head;
- }
+ /* OptMergeMode VModDecl - see above. */
| OptMergeMode InterpretDecl
{
$2->merge = $1;