Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
ededa90f
Kaydet (Commit)
ededa90f
authored
Nis 12, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Added support for inherent pointer types (typedefs of arrays)
- Added a debug class variable to enable parser debugging.
üst
da704856
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
scantools.py
Tools/bgen/bgen/scantools.py
+34
-0
No files found.
Tools/bgen/bgen/scantools.py
Dosyayı görüntüle @
ededa90f
...
...
@@ -32,6 +32,9 @@ Error = "scantools.Error"
class
Scanner
:
# Set to 1 in subclass to debug your scanner patterns.
debug
=
0
def
__init__
(
self
,
input
=
None
,
output
=
None
,
defsoutput
=
None
):
self
.
initsilent
()
self
.
initblacklists
()
...
...
@@ -119,6 +122,7 @@ if missing: raise "Missing Types"
def
initrepairinstructions
(
self
):
self
.
repairinstructions
=
self
.
makerepairinstructions
()
self
.
inherentpointertypes
=
self
.
makeinherentpointertypes
()
def
makerepairinstructions
(
self
):
"""Parse the repair file into repair instructions.
...
...
@@ -210,6 +214,9 @@ if missing: raise "Missing Types"
replacements
.
append
(
replacement
)
list
.
append
((
fpat
,
patterns
,
replacements
))
return
list
def
makeinherentpointertypes
(
self
):
return
[]
def
openrepairfile
(
self
,
filename
=
"REPAIR"
):
try
:
...
...
@@ -395,14 +402,24 @@ if missing: raise "Missing Types"
while
1
:
try
:
line
=
self
.
getline
()
except
EOFError
:
break
if
self
.
debug
:
self
.
report
(
"LINE:
%
s"
%
`line`
)
if
self
.
comment1
.
match
(
line
)
>=
0
:
line
=
self
.
comment1
.
group
(
'rest'
)
if
self
.
debug
:
self
.
report
(
"
\t
after comment1:
%
s"
%
`line`
)
while
self
.
comment2
.
match
(
line
)
>=
0
:
line
=
self
.
comment2
.
group
(
'rest1'
)
+
self
.
comment2
.
group
(
'rest2'
)
if
self
.
debug
:
self
.
report
(
"
\t
after comment2:
%
s"
%
`line`
)
if
self
.
defsfile
and
self
.
sym
.
match
(
line
)
>=
0
:
if
self
.
debug
:
self
.
report
(
"
\t
matches sym."
)
self
.
dosymdef
()
continue
if
self
.
head
.
match
(
line
)
>=
0
:
if
self
.
debug
:
self
.
report
(
"
\t
matches head."
)
self
.
dofuncspec
()
continue
except
EOFError
:
...
...
@@ -411,6 +428,8 @@ if missing: raise "Missing Types"
def
dosymdef
(
self
):
name
,
defn
=
self
.
sym
.
group
(
'name'
,
'defn'
)
if
self
.
debug
:
self
.
report
(
"
\t
sym: name=
%
s, defn=
%
s"
%
(
`name`
,
`defn`
))
if
not
name
in
self
.
blacklistnames
:
self
.
defsfile
.
write
(
"
%
s =
%
s
\n
"
%
(
name
,
defn
))
else
:
...
...
@@ -421,16 +440,29 @@ if missing: raise "Missing Types"
raw
=
self
.
line
while
self
.
tail
.
search
(
raw
)
<
0
:
line
=
self
.
getline
()
if
self
.
debug
:
self
.
report
(
"* CONTINUATION LINE:
%
s"
%
`line`
)
if
self
.
comment1
.
match
(
line
)
>=
0
:
line
=
self
.
comment1
.
group
(
'rest'
)
if
self
.
debug
:
self
.
report
(
"
\t
after comment1:
%
s"
%
`line`
)
while
self
.
comment2
.
match
(
line
)
>=
0
:
line
=
self
.
comment2
.
group
(
'rest1'
)
+
self
.
comment2
.
group
(
'rest2'
)
if
self
.
debug
:
self
.
report
(
"
\t
after comment1:
%
s"
%
`line`
)
raw
=
raw
+
line
if
self
.
debug
:
self
.
report
(
"* WHOLE LINE:
%
s"
%
`raw`
)
self
.
processrawspec
(
raw
)
def
processrawspec
(
self
,
raw
):
if
self
.
whole
.
search
(
raw
)
<
0
:
self
.
report
(
"Bad raw spec:
%
s"
,
`raw`
)
if
self
.
debug
:
if
self
.
type
.
search
(
raw
)
<
0
:
self
.
report
(
"(Type already doesn't match)"
)
else
:
self
.
report
(
"(Type matched:
%
s)"
%
`self.type.group('type')`
)
return
type
,
name
,
args
=
self
.
whole
.
group
(
'type'
,
'name'
,
'args'
)
type
=
regsub
.
gsub
(
"
\
*"
,
" ptr"
,
type
)
...
...
@@ -486,6 +518,8 @@ if missing: raise "Missing Types"
elif
type
[
-
4
:]
==
"_ptr"
:
type
=
type
[:
-
4
]
mode
=
"OutMode"
elif
type
in
self
.
inherentpointertypes
:
mode
=
"OutMode"
if
type
[
-
4
:]
==
"_far"
:
type
=
type
[:
-
4
]
return
type
,
name
,
mode
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment