Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hammer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sven M. Hallberg
hammer
Commits
6b8a3f26
There was an error fetching the commit references. Please try again later.
Commit
6b8a3f26
authored
10 years ago
by
Mikael Vejdemo-Johansson
Browse files
Options
Downloads
Patches
Plain Diff
polished generating function code more
parent
107d8c09
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/explore_singular.c
+0
-92
0 additions, 92 deletions
examples/explore_singular.c
with
0 additions
and
92 deletions
examples/explore_singular.c
+
0
−
92
View file @
6b8a3f26
...
...
@@ -10,98 +10,6 @@
#include
"../src/backends/lr.h"
#include
<stdio.h>
void
h_pprint_gfexpr
(
FILE
*
file
,
const
HCFGrammar
*
g
,
HCFSequence
*
seq
)
{
HCFChoice
**
x
=
seq
->
items
;
if
(
*
x
==
NULL
)
{
// empty sequence
fprintf
(
file
,
"1
\n
"
);
}
else
{
while
(
*
x
)
{
if
(
x
!=
seq
->
items
)
{
fprintf
(
file
,
" + "
);
}
// consume items
// if a string,
// count its length
// output t^length
if
((
*
x
)
->
type
==
HCF_CHAR
)
{
uint32_t
count
=
0
;
for
(;
*
x
;
x
++
,
count
++
)
{
if
((
*
x
)
->
type
!=
HCF_CHAR
)
{
break
;
}
}
fprintf
(
file
,
"t^%d"
,
count
);
}
else
{
uint32_t
count
=
0
,
n
,
i
=
0
;
switch
((
*
x
)
->
type
)
{
case
HCF_CHAR
:
// should not be possible
break
;
case
HCF_END
:
// does not generate any output symbols: value 0
break
;
case
HCF_CHARSET
:
for
(
i
=
0
;
i
<
256
;
i
++
)
{
if
(
charset_isset
((
*
x
)
->
charset
,
i
))
{
count
++
;
}
}
fprintf
(
file
,
"%d*t"
,
count
);
break
;
default:
n
=
(
uint8_t
)(
uintptr_t
)
h_hashtable_get
(
g
->
nts
,
x
);
fprintf
(
file
,
"%c(t)"
,
'A'
+
n
);
}
x
++
;
}
}
}
}
void
h_pprint_gfeqns_NOTUSED
(
FILE
*
file
,
const
HCFGrammar
*
g
)
{
if
(
g
->
nts
->
used
<
1
)
{
return
;
}
// determine maximum string length of symbol names
int
len
;
size_t
s
;
for
(
len
=
1
,
s
=
26
;
s
<
g
->
nts
->
used
;
len
++
,
s
*=
26
);
// iterate over g->nts
size_t
i
;
HHashTableEntry
*
hte
;
for
(
i
=
0
;
i
<
g
->
nts
->
capacity
;
i
++
)
{
for
(
hte
=
&
g
->
nts
->
contents
[
i
];
hte
;
hte
=
hte
->
next
)
{
if
(
hte
->
key
==
NULL
)
{
continue
;
}
const
HCFChoice
*
lhs
=
hte
->
key
;
// production's left-hand symbol
assert
(
lhs
->
type
==
HCF_CHOICE
);
uint8_t
n
=
(
uint8_t
)(
uintptr_t
)
h_hashtable_get
(
g
->
nts
,
lhs
);
fprintf
(
file
,
"%c(t) = "
,
'A'
+
n
);
HCFSequence
**
p
=
lhs
->
seq
;
if
(
*
p
==
NULL
)
{
return
;
// shouldn't happen
}
h_pprint_gfexpr
(
file
,
g
,
*
p
);
for
(;
*
p
;
p
++
)
{
fprintf
(
file
,
"
\t
"
);
h_pprint_gfexpr
(
file
,
g
,
*
p
);
fprintf
(
file
,
"
\n
"
);
}
}
}
}
static
const
char
*
nonterminal_name
(
const
HCFGrammar
*
g
,
const
HCFChoice
*
nt
)
{
static
char
buf
[
16
]
=
{
0
};
// 14 characters in base 26 are enough for 64 bits
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment