Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
Hdlmake
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
13
Issues
13
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
Wiki
Wiki
image/svg+xml
Discourse
Discourse
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Projects
Hdlmake
Commits
3cb452e2
Commit
3cb452e2
authored
Oct 28, 2019
by
Tristan Gingold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*_parser.py: file is not parsed when parse() is called.
parent
e915ea6f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
6 deletions
+4
-6
vhdl_parser.py
hdlmake/sourcefiles/vhdl_parser.py
+2
-2
vlog_parser.py
hdlmake/sourcefiles/vlog_parser.py
+1
-2
xci_parser.py
hdlmake/sourcefiles/xci_parser.py
+1
-2
No files found.
hdlmake/sourcefiles/vhdl_parser.py
View file @
3cb452e2
...
...
@@ -41,8 +41,8 @@ class VHDLParser(DepParser):
def
parse
(
self
,
dep_file
):
"""Parse the provided VHDL file and add the detected relations to it"""
from
.dep_file
import
DepRelation
if
dep_file
.
is_parsed
:
return
assert
not
dep_file
.
is_parsed
logging
.
debug
(
"Parsing
%
s"
,
dep_file
.
path
)
def
_preprocess
(
vhdl_file
):
...
...
hdlmake/sourcefiles/vlog_parser.py
View file @
3cb452e2
...
...
@@ -501,8 +501,7 @@ class VerilogParser(DepParser):
def
parse
(
self
,
dep_file
):
"""Parse the provided Verilog file and add to its properties
all of the detected dependency relations"""
if
dep_file
.
is_parsed
:
return
assert
not
dep_file
.
is_parsed
logging
.
debug
(
"Parsing
%
s"
,
dep_file
.
path
)
# assert isinstance(dep_file, DepFile), print("unexpected type: " +
# str(type(dep_file)))
...
...
hdlmake/sourcefiles/xci_parser.py
View file @
3cb452e2
...
...
@@ -38,8 +38,7 @@ class XCIParser(DepParser):
def
parse
(
self
,
dep_file
):
"""Parse a Xilinx XCI IP description file to determine the provided module(s)"""
if
dep_file
.
is_parsed
:
return
assert
not
dep_file
.
is_parsed
logging
.
debug
(
"Parsing
%
s"
,
dep_file
.
path
)
with
open
(
dep_file
.
path
)
as
f
:
...
...
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