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
93d89eaa
Commit
93d89eaa
authored
Jun 10, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various modifications.
parent
9c8db283
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
246 additions
and
8 deletions
+246
-8
abclib.dsp
+4
-0
src/aig/gia/gia.h
+9
-0
src/aig/gia/giaMan.c
+18
-3
src/aig/gia/giaUtil.c
+28
-0
src/aig/gia/module.make
+1
-0
src/base/abci/abc.c
+174
-2
src/misc/vec/vecInt.h
+5
-0
src/misc/vec/vecPtr.h
+7
-3
No files found.
abclib.dsp
View file @
93d89eaa
...
...
@@ -3811,6 +3811,10 @@ SOURCE=.\src\aig\gia\giaKf.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaLf.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaMan.c
# End Source File
# Begin Source File
...
...
src/aig/gia/gia.h
View file @
93d89eaa
...
...
@@ -197,6 +197,7 @@ struct Gps_Par_t_
int
fCut
;
int
fNpn
;
int
fLutProf
;
int
fMuxXor
;
char
*
pDumpFile
;
};
...
...
@@ -912,10 +913,14 @@ static inline int Gia_ObjLutFanin( Gia_Man_t * p, int Id, int i ) { re
for ( i = p->nObjs - 1; (i > 0) && ((pObj) = Gia_ManObj(p, i)); i-- )
#define Gia_ManForEachAnd( p, pObj, i ) \
for ( i = 0; (i < p->nObjs) && ((pObj) = Gia_ManObj(p, i)); i++ ) if ( !Gia_ObjIsAnd(pObj) ) {} else
#define Gia_ManForEachAndId( p, i ) \
for ( i = 0; (i < p->nObjs); i++ ) if ( !Gia_ObjIsAnd(Gia_ManObj(p, i)) ) {} else
#define Gia_ManForEachCand( p, pObj, i ) \
for ( i = 0; (i < p->nObjs) && ((pObj) = Gia_ManObj(p, i)); i++ ) if ( !Gia_ObjIsCand(pObj) ) {} else
#define Gia_ManForEachAndReverse( p, pObj, i ) \
for ( i = p->nObjs - 1; (i > 0) && ((pObj) = Gia_ManObj(p, i)); i-- ) if ( !Gia_ObjIsAnd(pObj) ) {} else
#define Gia_ManForEachAndReverseId( p, i ) \
for ( i = p->nObjs - 1; (i > 0); i-- ) if ( !Gia_ObjIsAnd(Gia_ManObj(p, i)) ) {} else
#define Gia_ManForEachMux( p, pObj, i ) \
for ( i = 0; (i < p->nObjs) && ((pObj) = Gia_ManObj(p, i)); i++ ) if ( !Gia_ObjIsMuxId(p, i) ) {} else
#define Gia_ManForEachCi( p, pObj, i ) \
...
...
@@ -928,6 +933,8 @@ static inline int Gia_ObjLutFanin( Gia_Man_t * p, int Id, int i ) { re
for ( i = Vec_IntSize(p->vCos) - 1; (i >= 0) && ((pObj) = Gia_ManCo(p, i)); i-- )
#define Gia_ManForEachCoDriver( p, pObj, i ) \
for ( i = 0; (i < Vec_IntSize(p->vCos)) && ((pObj) = Gia_ObjFanin0(Gia_ManCo(p, i))); i++ )
#define Gia_ManForEachCoDriverId( p, DriverId, i ) \
for ( i = 0; (i < Vec_IntSize(p->vCos)) && (((DriverId) = Gia_ObjFaninId0p(p, Gia_ManCo(p, i))), 1); i++ )
#define Gia_ManForEachPi( p, pObj, i ) \
for ( i = 0; (i < Gia_ManPiNum(p)) && ((pObj) = Gia_ManCi(p, i)); i++ )
#define Gia_ManForEachPo( p, pObj, i ) \
...
...
@@ -1114,6 +1121,7 @@ extern int Gia_ManLutNum( Gia_Man_t * p );
extern
int
Gia_ManLutLevel
(
Gia_Man_t
*
p
);
extern
void
Gia_ManSetRefsMapped
(
Gia_Man_t
*
p
);
extern
void
Gia_ManSetIfParsDefault
(
void
*
pIfPars
);
extern
void
Gia_ManMappingVerify
(
Gia_Man_t
*
p
);
extern
Gia_Man_t
*
Gia_ManPerformMapping
(
Gia_Man_t
*
p
,
void
*
pIfPars
,
int
fNormalized
);
/*=== giaJf.c ===========================================================*/
extern
void
Jf_ManSetDefaultPars
(
Jf_Par_t
*
pPars
);
...
...
@@ -1269,6 +1277,7 @@ extern Vec_Int_t * Gia_ManRequiredLevel( Gia_Man_t * p );
extern
void
Gia_ManCreateValueRefs
(
Gia_Man_t
*
p
);
extern
void
Gia_ManCreateRefs
(
Gia_Man_t
*
p
);
extern
int
*
Gia_ManCreateMuxRefs
(
Gia_Man_t
*
p
);
extern
void
Gia_ManCountMuxXor
(
Gia_Man_t
*
p
,
int
*
pnMuxes
,
int
*
pnXors
);
extern
int
Gia_ManCrossCut
(
Gia_Man_t
*
p
,
int
fReverse
);
extern
int
Gia_ManIsNormalized
(
Gia_Man_t
*
p
);
extern
Vec_Int_t
*
Gia_ManCollectPoIds
(
Gia_Man_t
*
p
);
...
...
src/aig/gia/giaMan.c
View file @
93d89eaa
...
...
@@ -423,9 +423,24 @@ void Gia_ManPrintStats( Gia_Man_t * p, Gps_Par_t * pPars )
Abc_Print
(
1
,
" ch =%5d"
,
Gia_ManEquivCountClasses
(
p
)
);
if
(
p
->
pMuxes
)
{
Abc_Print
(
1
,
" and =%5d"
,
Gia_ManAndNum
(
p
)
-
Gia_ManXorNum
(
p
)
-
Gia_ManMuxNum
(
p
)
);
Abc_Print
(
1
,
" xor =%5d"
,
Gia_ManXorNum
(
p
)
);
Abc_Print
(
1
,
" mux =%5d"
,
Gia_ManMuxNum
(
p
)
);
int
nAnds
=
Gia_ManAndNum
(
p
)
-
Gia_ManXorNum
(
p
)
-
Gia_ManMuxNum
(
p
);
int
nXors
=
Gia_ManXorNum
(
p
);
int
nMuxes
=
Gia_ManMuxNum
(
p
);
int
nTotal
=
nAnds
+
3
*
nXors
+
3
*
nMuxes
;
Abc_Print
(
1
,
"
\n
XOR/MUX stats:"
);
Abc_Print
(
1
,
" xor =%8d (%6.2f %%) "
,
nXors
,
300
.
0
*
nXors
/
nTotal
);
Abc_Print
(
1
,
" mux =%8d (%6.2f %%) "
,
nMuxes
,
300
.
0
*
nMuxes
/
nTotal
);
Abc_Print
(
1
,
" and =%8d (%6.2f %%) "
,
nAnds
,
100
.
0
*
nAnds
/
nTotal
);
}
else
if
(
pPars
->
fMuxXor
)
{
int
nAnds
,
nMuxes
,
nXors
,
nTotal
=
Gia_ManAndNum
(
p
);
Gia_ManCountMuxXor
(
p
,
&
nMuxes
,
&
nXors
);
nAnds
=
Gia_ManAndNum
(
p
)
-
3
*
nMuxes
-
3
*
nXors
;
Abc_Print
(
1
,
"
\n
XOR/MUX stats:"
);
Abc_Print
(
1
,
" xor =%8d (%6.2f %%) "
,
nXors
,
300
.
0
*
nXors
/
nTotal
);
Abc_Print
(
1
,
" mux =%8d (%6.2f %%) "
,
nMuxes
,
300
.
0
*
nMuxes
/
nTotal
);
Abc_Print
(
1
,
" and =%8d (%6.2f %%) "
,
nAnds
,
100
.
0
*
nAnds
/
nTotal
);
}
if
(
pPars
&&
pPars
->
fSwitch
)
{
...
...
src/aig/gia/giaUtil.c
View file @
93d89eaa
...
...
@@ -746,6 +746,34 @@ int * Gia_ManCreateMuxRefs( Gia_Man_t * p )
/**Function*************************************************************
Synopsis [Assigns references.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Gia_ManCountMuxXor
(
Gia_Man_t
*
p
,
int
*
pnMuxes
,
int
*
pnXors
)
{
Gia_Obj_t
*
pObj
,
*
pFan0
,
*
pFan1
;
int
i
;
*
pnMuxes
=
0
;
*
pnXors
=
0
;
Gia_ManForEachAnd
(
p
,
pObj
,
i
)
{
if
(
!
Gia_ObjIsMuxType
(
pObj
)
)
continue
;
if
(
Gia_ObjRecognizeExor
(
pObj
,
&
pFan0
,
&
pFan1
)
)
(
*
pnXors
)
++
;
else
(
*
pnMuxes
)
++
;
}
}
/**Function*************************************************************
Synopsis [Computes the maximum frontier size.]
Description []
...
...
src/aig/gia/module.make
View file @
93d89eaa
...
...
@@ -33,6 +33,7 @@ SRC += src/aig/gia/giaAig.c \
src/aig/gia/giaIso3.c
\
src/aig/gia/giaJf.c
\
src/aig/gia/giaKf.c
\
src/aig/gia/giaLf.c
\
src/aig/gia/giaMan.c
\
src/aig/gia/giaMem.c
\
src/aig/gia/giaMfs.c
\
...
...
src/base/abci/abc.c
View file @
93d89eaa
...
...
@@ -380,6 +380,7 @@ static int Abc_CommandAbc9Iff ( Abc_Frame_t * pAbc, int argc, cha
static
int
Abc_CommandAbc9If2
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Jf
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Kf
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Lf
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Struct
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Trace
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Speedup
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
...
...
@@ -955,6 +956,7 @@ void Abc_Init( Abc_Frame_t * pAbc )
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&if2"
,
Abc_CommandAbc9If2
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&jf"
,
Abc_CommandAbc9Jf
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&kf"
,
Abc_CommandAbc9Kf
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&lf"
,
Abc_CommandAbc9Lf
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&struct"
,
Abc_CommandAbc9Struct
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&trace"
,
Abc_CommandAbc9Trace
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&speedup"
,
Abc_CommandAbc9Speedup
,
0
);
...
...
@@ -25364,7 +25366,7 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
int
c
;
memset
(
pPars
,
0
,
sizeof
(
Gps_Par_t
)
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Dtpcnlh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Dtpcnl
m
h"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -25383,6 +25385,9 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
case
'l'
:
pPars
->
fLutProf
^=
1
;
break
;
case
'm'
:
pPars
->
fMuxXor
^=
1
;
break
;
case
'D'
:
if
(
globalUtilOptind
>=
argc
)
{
...
...
@@ -25407,13 +25412,14 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: &ps [-tpcnlh] [-D file]
\n
"
);
Abc_Print
(
-
2
,
"usage: &ps [-tpcnl
m
h] [-D file]
\n
"
);
Abc_Print
(
-
2
,
"
\t
prints stats of the current AIG
\n
"
);
Abc_Print
(
-
2
,
"
\t
-t : toggle printing BMC tents [default = %s]
\n
"
,
pPars
->
fTents
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-p : toggle printing switching activity [default = %s]
\n
"
,
pPars
->
fSwitch
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-c : toggle printing the size of frontier cut [default = %s]
\n
"
,
pPars
->
fCut
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-n : toggle printing NPN classes of functions [default = %s]
\n
"
,
pPars
->
fNpn
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-l : toggle printing LUT size profile [default = %s]
\n
"
,
pPars
->
fLutProf
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-m : toggle printing MUX/XOR statistics [default = %s]
\n
"
,
pPars
->
fMuxXor
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-D file : file name to dump statistics [default = none]
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
...
...
@@ -30829,6 +30835,172 @@ usage:
return
1
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Abc_CommandAbc9Lf
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
extern
void
Lf_ManSetDefaultPars
(
Jf_Par_t
*
pPars
);
extern
Gia_Man_t
*
Lf_ManPerformMapping
(
Gia_Man_t
*
pGia
,
Jf_Par_t
*
pPars
);
char
Buffer
[
200
];
Jf_Par_t
Pars
,
*
pPars
=
&
Pars
;
Gia_Man_t
*
pNew
;
int
c
;
Lf_ManSetDefaultPars
(
pPars
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"KCRDWaekmdcgtsvwh"
)
)
!=
EOF
)
{
switch
(
c
)
{
case
'K'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-K
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
pPars
->
nLutSize
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
pPars
->
nLutSize
<
2
||
pPars
->
nLutSize
>
pPars
->
nLutSizeMax
)
{
Abc_Print
(
-
1
,
"LUT size %d is not supported.
\n
"
,
pPars
->
nLutSize
);
goto
usage
;
}
break
;
case
'C'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-C
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
pPars
->
nCutNum
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
pPars
->
nCutNum
<
1
||
pPars
->
nCutNum
>
pPars
->
nCutNumMax
)
{
Abc_Print
(
-
1
,
"This number of cuts (%d) is not supported.
\n
"
,
pPars
->
nCutNum
);
goto
usage
;
}
break
;
case
'R'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-R
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
pPars
->
nRounds
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
pPars
->
nRounds
<
0
)
goto
usage
;
break
;
case
'D'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-D
\"
should be followed by a floating point number.
\n
"
);
goto
usage
;
}
pPars
->
DelayTarget
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
pPars
->
DelayTarget
<=
0
.
0
)
goto
usage
;
break
;
case
'W'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-W
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
pPars
->
nVerbLimit
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
pPars
->
nVerbLimit
<
0
)
goto
usage
;
break
;
case
'a'
:
pPars
->
fAreaOnly
^=
1
;
break
;
case
'e'
:
pPars
->
fOptEdge
^=
1
;
break
;
case
'k'
:
pPars
->
fCoarsen
^=
1
;
break
;
case
'm'
:
pPars
->
fCutMin
^=
1
;
break
;
case
'd'
:
pPars
->
fFuncDsd
^=
1
;
break
;
case
'c'
:
pPars
->
fGenCnf
^=
1
;
break
;
case
'g'
:
pPars
->
fPureAig
^=
1
;
break
;
case
't'
:
pPars
->
fCutHashing
^=
1
;
break
;
case
's'
:
pPars
->
fCutSimple
^=
1
;
break
;
case
'v'
:
pPars
->
fVerbose
^=
1
;
break
;
case
'w'
:
pPars
->
fVeryVerbose
^=
1
;
break
;
case
'h'
:
default:
goto
usage
;
}
}
if
(
pAbc
->
pGia
==
NULL
)
{
Abc_Print
(
-
1
,
"Empty GIA network.
\n
"
);
return
1
;
}
pNew
=
Lf_ManPerformMapping
(
pAbc
->
pGia
,
pPars
);
if
(
pNew
==
NULL
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9Lf(): Mapping into LUTs has failed.
\n
"
);
return
1
;
}
Abc_FrameUpdateGia
(
pAbc
,
pNew
);
return
0
;
usage:
if
(
pPars
->
DelayTarget
==
-
1
)
sprintf
(
Buffer
,
"best possible"
);
else
sprintf
(
Buffer
,
"%d"
,
pPars
->
DelayTarget
);
Abc_Print
(
-
2
,
"usage: &lf [-KCRDW num] [-akmdcgtsvwh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs technology mapping of the network
\n
"
);
Abc_Print
(
-
2
,
"
\t
-K num : LUT size for the mapping (2 <= K <= %d) [default = %d]
\n
"
,
pPars
->
nLutSizeMax
,
pPars
->
nLutSize
);
Abc_Print
(
-
2
,
"
\t
-C num : the max number of priority cuts (1 <= C <= %d) [default = %d]
\n
"
,
pPars
->
nCutNumMax
,
pPars
->
nCutNum
);
Abc_Print
(
-
2
,
"
\t
-R num : the number of mapping rounds [default = %d]
\n
"
,
pPars
->
nRounds
);
Abc_Print
(
-
2
,
"
\t
-D num : sets the delay constraint for the mapping [default = %s]
\n
"
,
Buffer
);
Abc_Print
(
-
2
,
"
\t
-W num : min frequency when printing functions with
\"
-w
\"
[default = %d]
\n
"
,
pPars
->
nVerbLimit
);
Abc_Print
(
-
2
,
"
\t
-a : toggles area-oriented mapping [default = %s]
\n
"
,
pPars
->
fAreaOnly
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-e : toggles edge vs node minimization [default = %s]
\n
"
,
pPars
->
fOptEdge
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-k : toggles coarsening the subject graph [default = %s]
\n
"
,
pPars
->
fCoarsen
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-m : toggles cut minimization [default = %s]
\n
"
,
pPars
->
fCutMin
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-d : toggles using DSD to represent cut functions [default = %s]
\n
"
,
pPars
->
fFuncDsd
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-c : toggles mapping for CNF generation [default = %s]
\n
"
,
pPars
->
fGenCnf
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-g : toggles generating AIG without mapping [default = %s]
\n
"
,
pPars
->
fPureAig
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-t : toggles cut computation using hash table [default = %s]
\n
"
,
pPars
->
fCutHashing
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggles cut computation using a simple method [default = %s]
\n
"
,
pPars
->
fCutSimple
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggles verbose output [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-w : toggles very verbose output [default = %s]
\n
"
,
pPars
->
fVeryVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : prints the command usage
\n
"
);
return
1
;
}
/**Function*************************************************************
src/misc/vec/vecInt.h
View file @
93d89eaa
...
...
@@ -480,6 +480,11 @@ static inline void Vec_IntUpdateEntry( Vec_Int_t * p, int i, int Value )
if
(
Vec_IntEntry
(
p
,
i
)
<
Value
)
Vec_IntWriteEntry
(
p
,
i
,
Value
);
}
static
inline
void
Vec_IntDowndateEntry
(
Vec_Int_t
*
p
,
int
i
,
int
Value
)
{
if
(
Vec_IntEntry
(
p
,
i
)
>
Value
)
Vec_IntWriteEntry
(
p
,
i
,
Value
);
}
/**Function*************************************************************
...
...
src/misc/vec/vecPtr.h
View file @
93d89eaa
...
...
@@ -558,14 +558,18 @@ static inline void Vec_PtrClear( Vec_Ptr_t * p )
SeeAlso []
***********************************************************************/
static
inline
void
Vec_PtrFree
Free
(
Vec_Ptr_t
*
p
)
static
inline
void
Vec_PtrFree
Data
(
Vec_Ptr_t
*
p
)
{
void
*
pTemp
;
int
i
;
void
*
pTemp
;
int
i
;
if
(
p
==
NULL
)
return
;
Vec_PtrForEachEntry
(
void
*
,
p
,
pTemp
,
i
)
if
(
pTemp
!=
(
void
*
)(
ABC_PTRINT_T
)
1
&&
pTemp
!=
(
void
*
)(
ABC_PTRINT_T
)
2
)
ABC_FREE
(
pTemp
);
}
static
inline
void
Vec_PtrFreeFree
(
Vec_Ptr_t
*
p
)
{
if
(
p
==
NULL
)
return
;
Vec_PtrFreeData
(
p
);
Vec_PtrFree
(
p
);
}
...
...
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