Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
34bcabcb
Commit
34bcabcb
authored
Mar 16, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small changes.
parent
876c2c35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
20 deletions
+42
-20
src/aig/miniaig/ndr.h
+24
-2
src/base/cba/cbaCom.c
+18
-18
No files found.
src/aig/miniaig/ndr.h
View file @
34bcabcb
...
@@ -113,7 +113,8 @@ typedef enum {
...
@@ -113,7 +113,8 @@ typedef enum {
NDR_NAME
,
// 7: name
NDR_NAME
,
// 7: name
NDR_RANGE
,
// 8: bit range
NDR_RANGE
,
// 8: bit range
NDR_FUNCTION
,
// 9: specified for some operators (PLAs, etc)
NDR_FUNCTION
,
// 9: specified for some operators (PLAs, etc)
NDR_UNKNOWN
// 10: unknown
NDR_TARGET
,
// 10: target
NDR_UNKNOWN
// 11: unknown
}
Ndr_RecordType_t
;
}
Ndr_RecordType_t
;
// operator types
// operator types
...
@@ -337,7 +338,6 @@ static inline void Ndr_DataPushString( Ndr_Data_t * p, int Type, char * pFunc )
...
@@ -337,7 +338,6 @@ static inline void Ndr_DataPushString( Ndr_Data_t * p, int Type, char * pFunc )
Ndr_DataPushArray
(
p
,
Type
,
(
strlen
(
pFunc
)
+
4
)
/
4
,
(
int
*
)
pFunc
);
Ndr_DataPushArray
(
p
,
Type
,
(
strlen
(
pFunc
)
+
4
)
/
4
,
(
int
*
)
pFunc
);
}
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// VERILOG WRITING ///
/// VERILOG WRITING ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
@@ -409,6 +409,28 @@ static inline char * Ndr_ObjReadInName( Ndr_Data_t * p, int Obj, char ** pNames
...
@@ -409,6 +409,28 @@ static inline char * Ndr_ObjReadInName( Ndr_Data_t * p, int Obj, char ** pNames
return
pNames
[
Ndr_ObjReadBody
(
p
,
Obj
,
NDR_INPUT
)];
return
pNames
[
Ndr_ObjReadBody
(
p
,
Obj
,
NDR_INPUT
)];
}
}
static
inline
int
Ndr_DataCiNum
(
Ndr_Data_t
*
p
,
int
Mod
)
{
int
Obj
,
Count
=
0
;
Ndr_ModForEachPi
(
p
,
Mod
,
Obj
)
Count
++
;
return
Count
;
}
static
inline
int
Ndr_DataCoNum
(
Ndr_Data_t
*
p
,
int
Mod
)
{
int
Obj
,
Count
=
0
;
Ndr_ModForEachPo
(
p
,
Mod
,
Obj
)
Count
++
;
return
Count
;
}
static
inline
int
Ndr_DataObjNum
(
Ndr_Data_t
*
p
,
int
Mod
)
{
int
Obj
,
Count
=
0
;
Ndr_ModForEachObj
(
p
,
Mod
,
Obj
)
Count
++
;
return
Count
;
}
// to write signal names, this procedure takes a mapping of name IDs into actual char-strings (pNames)
// to write signal names, this procedure takes a mapping of name IDs into actual char-strings (pNames)
static
inline
void
Ndr_ModuleWriteVerilog
(
char
*
pFileName
,
void
*
pModule
,
char
**
pNames
)
static
inline
void
Ndr_ModuleWriteVerilog
(
char
*
pFileName
,
void
*
pModule
,
char
**
pNames
)
{
{
...
...
src/base/cba/cbaCom.c
View file @
34bcabcb
...
@@ -59,15 +59,15 @@ static inline void Cba_AbcUpdateMan( Abc_Frame_t * pAbc, Cba_Man_t * p )
...
@@ -59,15 +59,15 @@ static inline void Cba_AbcUpdateMan( Abc_Frame_t * pAbc, Cba_Man_t * p )
******************************************************************************/
******************************************************************************/
void
Cba_Init
(
Abc_Frame_t
*
pAbc
)
void
Cba_Init
(
Abc_Frame_t
*
pAbc
)
{
{
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
read"
,
Cba_CommandRead
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
read"
,
Cba_CommandRead
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
write"
,
Cba_CommandWrite
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
write"
,
Cba_CommandWrite
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
ps"
,
Cba_CommandPs
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
ps"
,
Cba_CommandPs
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
put"
,
Cba_CommandPut
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
put"
,
Cba_CommandPut
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
get"
,
Cba_CommandGet
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
get"
,
Cba_CommandGet
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
clp"
,
Cba_CommandClp
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
clp"
,
Cba_CommandClp
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
blast"
,
Cba_CommandBlast
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
blast"
,
Cba_CommandBlast
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
cec"
,
Cba_CommandCec
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
cec"
,
Cba_CommandCec
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
@
test"
,
Cba_CommandTest
,
0
);
Cmd_CommandAdd
(
pAbc
,
"New word level"
,
"
:
test"
,
Cba_CommandTest
,
0
);
}
}
/**Function********************************************************************
/**Function********************************************************************
...
@@ -173,7 +173,7 @@ int Cba_CommandRead( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -173,7 +173,7 @@ int Cba_CommandRead( Abc_Frame_t * pAbc, int argc, char ** argv )
Cba_AbcUpdateMan
(
pAbc
,
p
);
Cba_AbcUpdateMan
(
pAbc
,
p
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
read [-tdvh] <file_name>
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
read [-tdvh] <file_name>
\n
"
);
Abc_Print
(
-
2
,
"
\t
reads hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
reads hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
-t : toggle testing the parser [default = %s]
\n
"
,
fTest
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-t : toggle testing the parser [default = %s]
\n
"
,
fTest
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-d : toggle computing DFS ordering [default = %s]
\n
"
,
fDfs
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-d : toggle computing DFS ordering [default = %s]
\n
"
,
fDfs
?
"yes"
:
"no"
);
...
@@ -248,7 +248,7 @@ int Cba_CommandWrite( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -248,7 +248,7 @@ int Cba_CommandWrite( Abc_Frame_t * pAbc, int argc, char ** argv )
}
}
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
write [-cvh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
write [-cvh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
writes the design into a file in BLIF or Verilog
\n
"
);
Abc_Print
(
-
2
,
"
\t
writes the design into a file in BLIF or Verilog
\n
"
);
Abc_Print
(
-
2
,
"
\t
-c : toggle inlining input concatenations [default = %s]
\n
"
,
fInclineCats
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-c : toggle inlining input concatenations [default = %s]
\n
"
,
fInclineCats
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
...
@@ -327,7 +327,7 @@ int Cba_CommandPs( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -327,7 +327,7 @@ int Cba_CommandPs( Abc_Frame_t * pAbc, int argc, char ** argv )
Cba_NtkPrintNodes
(
Cba_ManRoot
(
p
),
CBA_BOX_ADD
);
Cba_NtkPrintNodes
(
Cba_ManRoot
(
p
),
CBA_BOX_ADD
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
ps [-M num] [-madvh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
ps [-M num] [-madvh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
prints statistics
\n
"
);
Abc_Print
(
-
2
,
"
\t
prints statistics
\n
"
);
Abc_Print
(
-
2
,
"
\t
-M num : the number of first modules to report [default = %d]
\n
"
,
nModules
);
Abc_Print
(
-
2
,
"
\t
-M num : the number of first modules to report [default = %d]
\n
"
,
nModules
);
Abc_Print
(
-
2
,
"
\t
-m : toggle printing multipliers [default = %s]
\n
"
,
fShowMulti
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-m : toggle printing multipliers [default = %s]
\n
"
,
fShowMulti
?
"yes"
:
"no"
);
...
@@ -388,7 +388,7 @@ int Cba_CommandPut( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -388,7 +388,7 @@ int Cba_CommandPut( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_FrameUpdateGia
(
pAbc
,
pGia
);
Abc_FrameUpdateGia
(
pAbc
,
pGia
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
put [-bsvh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
put [-bsvh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
extracts AIG from the hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
extracts AIG from the hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
-b : toggle using barrier buffers [default = %s]
\n
"
,
fBarBufs
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-b : toggle using barrier buffers [default = %s]
\n
"
,
fBarBufs
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle blasting sequential elements [default = %s]
\n
"
,
fSeq
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle blasting sequential elements [default = %s]
\n
"
,
fSeq
?
"yes"
:
"no"
);
...
@@ -456,7 +456,7 @@ int Cba_CommandGet( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -456,7 +456,7 @@ int Cba_CommandGet( Abc_Frame_t * pAbc, int argc, char ** argv )
Cba_AbcUpdateMan
(
pAbc
,
pNew
);
Cba_AbcUpdateMan
(
pAbc
,
pNew
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
get [-mvh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
get [-mvh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
extracts AIG or mapped network into the hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
extracts AIG or mapped network into the hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
-m : toggle using mapped network from main-space [default = %s]
\n
"
,
fMapped
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-m : toggle using mapped network from main-space [default = %s]
\n
"
,
fMapped
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
...
@@ -502,7 +502,7 @@ int Cba_CommandClp( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -502,7 +502,7 @@ int Cba_CommandClp( Abc_Frame_t * pAbc, int argc, char ** argv )
Cba_AbcUpdateMan
(
pAbc
,
pNew
);
Cba_AbcUpdateMan
(
pAbc
,
pNew
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
clp [-vh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
clp [-vh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
collapses the current hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
collapses the current hierarchical design
\n
"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
...
@@ -556,7 +556,7 @@ int Cba_CommandBlast( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -556,7 +556,7 @@ int Cba_CommandBlast( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_FrameUpdateGia
(
pAbc
,
pNew
);
Abc_FrameUpdateGia
(
pAbc
,
pNew
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
blast [-svh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
blast [-svh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs bit-blasting of the word-level design
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs bit-blasting of the word-level design
\n
"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle blasting sequential elements [default = %s]
\n
"
,
fSeq
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle blasting sequential elements [default = %s]
\n
"
,
fSeq
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
...
@@ -672,7 +672,7 @@ int Cba_CommandCec( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -672,7 +672,7 @@ int Cba_CommandCec( Abc_Frame_t * pAbc, int argc, char ** argv )
Gia_ManStop
(
pSecond
);
Gia_ManStop
(
pSecond
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
cec [-vh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
cec [-vh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
combinational equivalence checking
\n
"
);
Abc_Print
(
-
2
,
"
\t
combinational equivalence checking
\n
"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
...
@@ -715,7 +715,7 @@ int Cba_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -715,7 +715,7 @@ int Cba_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
}
}
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage:
@
test [-vh]
\n
"
);
Abc_Print
(
-
2
,
"usage:
:
test [-vh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
experiments with word-level networks
\n
"
);
Abc_Print
(
-
2
,
"
\t
experiments with word-level networks
\n
"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
...
...
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