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
a14e2c92
Commit
a14e2c92
authored
Aug 09, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improvements to Cba data-structure.
parent
8a30b675
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
205 additions
and
64 deletions
+205
-64
src/base/cba/cba.h
+12
-14
src/base/cba/cbaReadVer.c
+154
-25
src/base/cba/cbaWriteVer.c
+21
-20
src/misc/vec/vecInt.h
+18
-5
No files found.
src/base/cba/cba.h
View file @
a14e2c92
...
...
@@ -562,6 +562,18 @@ static inline int Cba_NtkNewStrId( Cba_Ntk_t * pNtk, const char * format, ... )
va_end
(
args
);
return
Abc_NamStrFindOrAddLim
(
p
,
Vec_StrLimit
(
vBuf
),
Vec_StrLimit
(
vBuf
)
+
nAdded
,
NULL
);
}
static
inline
int
Cba_ManNewConstId
(
Cba_Ntk_t
*
p
,
Vec_Str_t
*
vBits
)
{
Vec_Str_t
*
vOut
=
Abc_NamBuffer
(
Cba_NtkNam
(
p
));
Vec_StrPrintF
(
vOut
,
"%d
\'
b%s"
,
Vec_StrSize
(
vBits
)
-
1
,
Vec_StrArray
(
vBits
)
);
return
Abc_NamStrFindOrAdd
(
p
->
pDesign
->
pFuns
,
Vec_StrArray
(
vOut
),
NULL
);
}
static
inline
int
Cba_ManNewConstZero
(
Cba_Ntk_t
*
p
,
int
nBits
)
{
Vec_Str_t
*
vOut
=
Abc_NamBuffer
(
Cba_NtkNam
(
p
));
Vec_StrPrintF
(
vOut
,
"%d
\'
b%0s"
,
nBits
,
""
);
return
Abc_NamStrFindOrAdd
(
p
->
pDesign
->
pFuns
,
Vec_StrArray
(
vOut
),
NULL
);
}
static
inline
void
Cba_NtkAdd
(
Cba_Man_t
*
p
,
Cba_Ntk_t
*
pNtk
)
{
int
fFound
,
NtkId
=
Abc_NamStrFindOrAdd
(
p
->
pMods
,
Cba_NtkName
(
pNtk
),
&
fFound
);
...
...
@@ -919,20 +931,6 @@ static inline void Cba_NtkSetMap2( Cba_Ntk_t * p, int i, int x ) { Cba_ManSetM
static
inline
void
Cba_NtkUnsetMap2
(
Cba_Ntk_t
*
p
,
int
i
)
{
Cba_ManUnsetMap2
(
p
->
pDesign
,
i
);
}
static
inline
void
Cba_NtkCleanMap2
(
Cba_Ntk_t
*
p
)
{
Cba_ManCleanMap2
(
p
->
pDesign
);
}
static
inline
int
Cba_ManNewConstId
(
Cba_Man_t
*
p
,
Vec_Str_t
*
vBits
)
{
Vec_Str_t
*
vOut
=
&
p
->
vOut
;
char
Symb
;
int
i
;
assert
(
Vec_StrSize
(
vBits
)
>
0
);
Vec_StrClear
(
vOut
);
Vec_StrPrintNum
(
vOut
,
Vec_StrSize
(
vBits
)
);
Vec_StrPush
(
vOut
,
'\''
);
Vec_StrPush
(
vOut
,
'b'
);
Vec_StrForEachEntry
(
vBits
,
Symb
,
i
)
Vec_StrPush
(
vOut
,
Symb
);
Vec_StrPush
(
vOut
,
'\0'
);
return
Abc_NamStrFindOrAdd
(
p
->
pFuns
,
Vec_StrArray
(
vOut
),
NULL
);
}
static
inline
int
Cba_ManMemory
(
Cba_Man_t
*
p
)
{
Cba_Ntk_t
*
pNtk
;
int
i
;
...
...
src/base/cba/cbaReadVer.c
View file @
a14e2c92
This diff is collapsed.
Click to expand it.
src/base/cba/cbaWriteVer.c
View file @
a14e2c92
...
...
@@ -44,6 +44,15 @@ ABC_NAMESPACE_IMPL_START
SeeAlso []
***********************************************************************/
static
inline
char
*
Prs_ManWriteRange
(
Prs_Ntk_t
*
p
,
int
RangeId
,
int
fSlice
)
{
int
Left
=
RangeId
?
Hash_IntObjData0
(
p
->
vHash
,
RangeId
)
:
0
;
int
Right
=
RangeId
?
Hash_IntObjData1
(
p
->
vHash
,
RangeId
)
:
0
;
if
(
Left
==
Right
&&
fSlice
)
return
Vec_StrPrintF
(
Abc_NamBuffer
(
p
->
pStrs
),
"[%d]"
,
Right
);
else
return
Vec_StrPrintF
(
Abc_NamBuffer
(
p
->
pStrs
),
"[%d:%d]"
,
Left
,
Right
);
}
static
void
Prs_ManWriteVerilogConcat
(
FILE
*
pFile
,
Prs_Ntk_t
*
p
,
int
Con
)
{
extern
void
Prs_ManWriteVerilogArray
(
FILE
*
pFile
,
Prs_Ntk_t
*
p
,
Vec_Int_t
*
vSigs
,
int
fOdd
);
...
...
@@ -61,7 +70,7 @@ static void Prs_ManWriteVerilogSignal( FILE * pFile, Prs_Ntk_t * p, int Sig )
else
if
(
Type
==
CBA_PRS_CONST
)
fprintf
(
pFile
,
"%s"
,
Prs_NtkConst
(
p
,
Value
)
);
else
if
(
Type
==
CBA_PRS_SLICE
)
fprintf
(
pFile
,
"%s%s"
,
Prs_NtkStr
(
p
,
Prs_SliceName
(
p
,
Value
)),
Prs_
NtkStr
(
p
,
Prs_SliceRange
(
p
,
Value
)
)
);
fprintf
(
pFile
,
"%s%s"
,
Prs_NtkStr
(
p
,
Prs_SliceName
(
p
,
Value
)),
Prs_
ManWriteRange
(
p
,
Prs_SliceRange
(
p
,
Value
),
1
)
);
else
if
(
Type
==
CBA_PRS_CONCAT
)
Prs_ManWriteVerilogConcat
(
pFile
,
p
,
Value
);
else
assert
(
0
);
...
...
@@ -138,7 +147,7 @@ static void Prs_ManWriteVerilogIos( FILE * pFile, Prs_Ntk_t * p, int SigType )
if
(
SigType
==
3
)
fprintf
(
pFile
,
"
\n
"
);
Vec_IntForEachEntryTwo
(
vSigs
[
SigType
],
vSigsR
[
SigType
],
NameId
,
RangeId
,
i
)
fprintf
(
pFile
,
" %s %s%s;
\n
"
,
pSigNames
[
SigType
],
RangeId
?
Prs_
NtkStr
(
p
,
RangeId
)
:
""
,
Prs_NtkStr
(
p
,
NameId
)
);
fprintf
(
pFile
,
" %s %s%s;
\n
"
,
pSigNames
[
SigType
],
RangeId
?
Prs_
ManWriteRange
(
p
,
RangeId
,
0
)
:
""
,
Prs_NtkStr
(
p
,
NameId
)
);
}
static
void
Prs_ManWriteVerilogIoOrder
(
FILE
*
pFile
,
Prs_Ntk_t
*
p
,
Vec_Int_t
*
vOrder
)
{
...
...
@@ -264,8 +273,7 @@ void Cba_ManCreatePrimMap( char ** pMap )
}
static
inline
int
Cba_NameIsLegalInVerilog
(
char
*
pName
)
static
inline
int
Cba_NameIsLegalInVerilog
(
char
*
pName
,
int
NameId
)
{
// identifier ::= simple_identifier | escaped_identifier
// simple_identifier ::= [a-zA-Z_][a-zA-Z0-9_$]
...
...
@@ -274,6 +282,8 @@ static inline int Cba_NameIsLegalInVerilog( char * pName )
assert
(
pName
!=
NULL
&&
*
pName
!=
'\0'
);
if
(
*
pName
==
'\\'
)
return
1
;
if
(
NameId
<
13
)
// see PRS_VER_UNKNOWN in cbaReadVer.c
return
0
;
if
(
(
*
pName
<
'a'
||
*
pName
>
'z'
)
&&
(
*
pName
<
'A'
||
*
pName
>
'Z'
)
&&
*
pName
!=
'_'
)
return
0
;
while
(
*
(
++
pName
)
)
...
...
@@ -281,21 +291,12 @@ static inline int Cba_NameIsLegalInVerilog( char * pName )
return
0
;
return
1
;
}
static
inline
char
*
Cba_NameLegal
(
char
*
pName
)
{
static
char
pNewName
[
1000
];
if
(
Cba_NameIsLegalInVerilog
(
pName
)
)
return
pName
;
assert
(
strlen
(
pName
)
<
1000
);
sprintf
(
pNewName
,
"
\\
%s "
,
pName
);
return
pNewName
;
}
char
*
Cba_ObjGetName
(
Cba_Ntk_t
*
p
,
int
i
)
{
char
*
pName
=
Cba_ObjNameStr
(
p
,
i
);
if
(
pName
==
NULL
)
return
pName
;
if
(
Cba_NameIsLegalInVerilog
(
pName
)
)
if
(
Cba_NameIsLegalInVerilog
(
pName
,
Cba_ObjName
(
p
,
i
)
)
)
return
pName
;
return
Vec_StrPrintF
(
Abc_NamBuffer
(
Cba_NtkNam
(
p
)),
"
\\
%s "
,
pName
);
}
...
...
@@ -306,7 +307,7 @@ char * Cba_FonGetName( Cba_Ntk_t * p, int i )
return
pName
;
if
(
Cba_ObjType
(
p
,
Cba_FonObj
(
p
,
i
))
==
CBA_BOX_SLICE
)
return
pName
;
if
(
Cba_NameIsLegalInVerilog
(
pName
)
)
if
(
Cba_NameIsLegalInVerilog
(
pName
,
Cba_FonName
(
p
,
i
)
)
)
return
pName
;
return
Vec_StrPrintF
(
Abc_NamBuffer
(
Cba_NtkNam
(
p
)),
"
\\
%s "
,
pName
);
}
...
...
@@ -315,7 +316,7 @@ char * Cba_ManGetSliceName( Cba_Ntk_t * p, int iFon, int RangeId )
int
Left
=
Cba_NtkRangeLeft
(
p
,
RangeId
);
int
Right
=
Cba_NtkRangeRight
(
p
,
RangeId
);
char
*
pName
=
Cba_FonNameStr
(
p
,
iFon
);
if
(
Cba_NameIsLegalInVerilog
(
pName
)
)
if
(
Cba_NameIsLegalInVerilog
(
pName
,
Cba_FonName
(
p
,
iFon
)
)
)
if
(
Left
==
Right
)
return
Vec_StrPrintF
(
Abc_NamBuffer
(
Cba_NtkNam
(
p
)),
"%s[%d]"
,
pName
,
Right
);
else
...
...
@@ -330,7 +331,7 @@ char * Cba_ManGetSliceName( Cba_Ntk_t * p, int iFon, int RangeId )
void
Cba_ManWriteFonRange
(
Cba_Ntk_t
*
p
,
int
iFon
)
{
Vec_Str_t
*
vStr
=
&
p
->
pDesign
->
vOut
;
if
(
Cba_FonIsConst
(
iFon
)
||
(
Cba_FonRangeSize
(
p
,
iFon
)
==
1
&&
Cba_FonRight
(
p
,
iFon
)
==
0
)
)
if
(
!
iFon
||
Cba_FonIsConst
(
iFon
)
||
(
Cba_FonRangeSize
(
p
,
iFon
)
==
1
&&
Cba_FonRight
(
p
,
iFon
)
==
0
)
)
return
;
Vec_StrPrintF
(
vStr
,
"[%d:%d] "
,
Cba_FonLeft
(
p
,
iFon
),
Cba_FonRight
(
p
,
iFon
)
);
...
...
@@ -340,8 +341,8 @@ void Cba_ManWriteFonName( Cba_Ntk_t * p, int iFon, int fInlineConcat, int fInput
extern
void
Cba_ManWriteCatIn
(
Cba_Ntk_t
*
p
,
int
iObj
);
Vec_Str_t
*
vStr
=
&
p
->
pDesign
->
vOut
;
if
(
!
iFon
||
(
!
Cba_FonIsConst
(
iFon
)
&&
!
Cba_FonName
(
p
,
iFon
))
)
//
Vec_StrPrintF( vStr, "Open_%d", Cba_NtkMan(p)->nOpens++ );
Vec_StrPrintF
(
vStr
,
"1
\'
b0"
);
Vec_StrPrintF
(
vStr
,
"Open_%d"
,
Cba_NtkMan
(
p
)
->
nOpens
++
);
//
Vec_StrPrintF( vStr, "1\'b0" );
else
if
(
fInlineConcat
&&
!
Cba_FonIsConst
(
iFon
)
&&
Cba_ObjIsCatIn
(
p
,
Cba_FonObj
(
p
,
iFon
))
)
Cba_ManWriteCatIn
(
p
,
Cba_FonObj
(
p
,
iFon
)
);
else
...
...
@@ -858,7 +859,7 @@ void Cba_ManWriteVerilogNtk( Cba_Ntk_t * p, int fInlineConcat )
Cba_NtkForEachPo
(
p
,
iObj
,
i
)
{
iFon
=
Cba_ObjFinFon
(
p
,
iObj
,
0
);
if
(
!
Cba_FonIsConst
(
iFon
)
&&
Cba_FonName
(
p
,
iFon
)
==
Cba_ObjName
(
p
,
iObj
)
)
// already written
if
(
!
iFon
||
!
Cba_FonIsConst
(
iFon
)
&&
Cba_FonName
(
p
,
iFon
)
==
Cba_ObjName
(
p
,
iObj
)
)
// already written
continue
;
Vec_StrPrintStr
(
vStr
,
" assign "
);
Vec_StrPrintStr
(
vStr
,
Cba_ObjGetName
(
p
,
iObj
)
);
...
...
src/misc/vec/vecInt.h
View file @
a14e2c92
...
...
@@ -728,6 +728,19 @@ static inline void Vec_IntPushTwo( Vec_Int_t * p, int Entry1, int Entry2 )
Vec_IntPush
(
p
,
Entry1
);
Vec_IntPush
(
p
,
Entry2
);
}
static
inline
void
Vec_IntPushThree
(
Vec_Int_t
*
p
,
int
Entry1
,
int
Entry2
,
int
Entry3
)
{
Vec_IntPush
(
p
,
Entry1
);
Vec_IntPush
(
p
,
Entry2
);
Vec_IntPush
(
p
,
Entry3
);
}
static
inline
void
Vec_IntPushFour
(
Vec_Int_t
*
p
,
int
Entry1
,
int
Entry2
,
int
Entry3
,
int
Entry4
)
{
Vec_IntPush
(
p
,
Entry1
);
Vec_IntPush
(
p
,
Entry2
);
Vec_IntPush
(
p
,
Entry3
);
Vec_IntPush
(
p
,
Entry4
);
}
static
inline
void
Vec_IntPushArray
(
Vec_Int_t
*
p
,
int
*
pEntries
,
int
nEntries
)
{
int
i
;
...
...
@@ -1338,14 +1351,14 @@ static inline void Vec_IntSort( Vec_Int_t * p, int fReverse )
qsort
(
(
void
*
)
p
->
pArray
,
p
->
nSize
,
sizeof
(
int
),
(
int
(
*
)(
const
void
*
,
const
void
*
))
Vec_IntSortCompare1
);
}
static
inline
void
Vec_IntSort
Pairs
(
Vec_Int_t
*
p
,
int
fReverse
)
static
inline
void
Vec_IntSort
Multi
(
Vec_Int_t
*
p
,
int
nMulti
,
int
fReverse
)
{
assert
(
Vec_IntSize
(
p
)
%
2
==
0
);
assert
(
Vec_IntSize
(
p
)
%
nMulti
==
0
);
if
(
fReverse
)
qsort
(
(
void
*
)
p
->
pArray
,
p
->
nSize
/
2
,
2
*
sizeof
(
int
),
qsort
(
(
void
*
)
p
->
pArray
,
p
->
nSize
/
nMulti
,
nMulti
*
sizeof
(
int
),
(
int
(
*
)(
const
void
*
,
const
void
*
))
Vec_IntSortCompare2
);
else
qsort
(
(
void
*
)
p
->
pArray
,
p
->
nSize
/
2
,
2
*
sizeof
(
int
),
qsort
(
(
void
*
)
p
->
pArray
,
p
->
nSize
/
nMulti
,
nMulti
*
sizeof
(
int
),
(
int
(
*
)(
const
void
*
,
const
void
*
))
Vec_IntSortCompare1
);
}
...
...
@@ -1419,7 +1432,7 @@ static inline int Vec_IntUniqifyPairs( Vec_Int_t * p )
assert
(
p
->
nSize
%
2
==
0
);
if
(
p
->
nSize
<
4
)
return
0
;
Vec_IntSort
Pairs
(
p
,
0
);
Vec_IntSort
Multi
(
p
,
2
,
0
);
for
(
i
=
k
=
1
;
i
<
p
->
nSize
/
2
;
i
++
)
if
(
p
->
pArray
[
2
*
i
]
!=
p
->
pArray
[
2
*
(
i
-
1
)]
||
p
->
pArray
[
2
*
i
+
1
]
!=
p
->
pArray
[
2
*
(
i
-
1
)
+
1
]
)
{
...
...
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