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
a8b5da82
Commit
a8b5da82
authored
Sep 26, 2021
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Other compiler changes.
parent
ba64e786
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
44 additions
and
4 deletions
+44
-4
src/aig/gia/giaEmbed.c
+1
-1
src/base/main/mainUtils.c
+7
-0
src/misc/bzlib/decompress.c
+4
-0
src/misc/extra/extraUtilReader.c
+4
-1
src/misc/mem/mem.c
+16
-0
src/misc/mem/mem.h
+1
-0
src/misc/util/abc_global.h
+6
-1
src/opt/fxch/FxchSCHashTable.c
+4
-0
src/proof/int/int.h
+1
-1
No files found.
src/aig/gia/giaEmbed.c
View file @
a8b5da82
...
@@ -32,7 +32,7 @@ ABC_NAMESPACE_IMPL_START
...
@@ -32,7 +32,7 @@ ABC_NAMESPACE_IMPL_START
http://www.emis.de/journals/JGAA/accepted/2004/HarelKoren2004.8.2.pdf
http://www.emis.de/journals/JGAA/accepted/2004/HarelKoren2004.8.2.pdf
Iterative refinement is described in the paper: F. A. Aloul, I. L. Markov, and K. A. Sakallah.
Iterative refinement is described in the paper: F. A. Aloul, I. L. Markov, and K. A. Sakallah.
"FORCE: A Fast and Easy-To-Implement Variable-Ordering Heuristic", Proc. GLSVLSI03.
"FORCE: A Fast and Easy-To-Implement Variable-Ordering Heuristic", Proc. GLSVLSI
03.
http://www.eecs.umich.edu/~imarkov/pubs/conf/glsvlsi03-force.pdf
http://www.eecs.umich.edu/~imarkov/pubs/conf/glsvlsi03-force.pdf
*/
*/
...
...
src/base/main/mainUtils.c
View file @
a8b5da82
...
@@ -52,7 +52,14 @@ static char * DateReadFromDateString( char * datestr );
...
@@ -52,7 +52,14 @@ static char * DateReadFromDateString( char * datestr );
char
*
Abc_UtilsGetVersion
(
Abc_Frame_t
*
pAbc
)
char
*
Abc_UtilsGetVersion
(
Abc_Frame_t
*
pAbc
)
{
{
static
char
Version
[
1000
];
static
char
Version
[
1000
];
#if __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdate-time"
#endif
sprintf
(
Version
,
"%s (compiled %s %s)"
,
ABC_VERSION
,
__DATE__
,
__TIME__
);
sprintf
(
Version
,
"%s (compiled %s %s)"
,
ABC_VERSION
,
__DATE__
,
__TIME__
);
#if __GNUC__
#pragma GCC diagnostic pop
#endif
return
Version
;
return
Version
;
}
}
...
...
src/misc/bzlib/decompress.c
View file @
a8b5da82
...
@@ -21,6 +21,10 @@
...
@@ -21,6 +21,10 @@
#include "bzlib_private.h"
#include "bzlib_private.h"
#if (__GNUC__ >= 8)
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
#endif
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
...
...
src/misc/extra/extraUtilReader.c
View file @
a8b5da82
...
@@ -22,8 +22,11 @@
...
@@ -22,8 +22,11 @@
#include "extra.h"
#include "extra.h"
#include "misc/vec/vec.h"
#include "misc/vec/vec.h"
ABC_NAMESPACE_IMPL_START
#if (__GNUC__ >= 8)
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
#endif
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
/// DECLARATIONS ///
...
...
src/misc/mem/mem.c
View file @
a8b5da82
...
@@ -156,6 +156,22 @@ void Mem_FixedStop( Mem_Fixed_t * p, int fVerbose )
...
@@ -156,6 +156,22 @@ void Mem_FixedStop( Mem_Fixed_t * p, int fVerbose )
/**Function*************************************************************
/**Function*************************************************************
Synopsis [Wrapper for Mem_FlexStop for use in Vec_AttAlloc]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Mem_FlexStop2
(
Mem_Flex_t
*
p
)
{
Mem_FlexStop
(
p
,
0
);
}
/**Function*************************************************************
Synopsis []
Synopsis []
Description []
Description []
...
...
src/misc/mem/mem.h
View file @
a8b5da82
...
@@ -50,6 +50,7 @@ extern int Mem_FixedReadMaxEntriesUsed( Mem_Fixed_t * p );
...
@@ -50,6 +50,7 @@ extern int Mem_FixedReadMaxEntriesUsed( Mem_Fixed_t * p );
// flexible-size-block memory manager
// flexible-size-block memory manager
extern
Mem_Flex_t
*
Mem_FlexStart
();
extern
Mem_Flex_t
*
Mem_FlexStart
();
extern
void
Mem_FlexStop
(
Mem_Flex_t
*
p
,
int
fVerbose
);
extern
void
Mem_FlexStop
(
Mem_Flex_t
*
p
,
int
fVerbose
);
extern
void
Mem_FlexStop2
(
Mem_Flex_t
*
p
);
extern
char
*
Mem_FlexEntryFetch
(
Mem_Flex_t
*
p
,
int
nBytes
);
extern
char
*
Mem_FlexEntryFetch
(
Mem_Flex_t
*
p
,
int
nBytes
);
extern
void
Mem_FlexRestart
(
Mem_Flex_t
*
p
);
extern
void
Mem_FlexRestart
(
Mem_Flex_t
*
p
);
extern
int
Mem_FlexReadMemUsage
(
Mem_Flex_t
*
p
);
extern
int
Mem_FlexReadMemUsage
(
Mem_Flex_t
*
p
);
...
...
src/misc/util/abc_global.h
View file @
a8b5da82
...
@@ -329,7 +329,12 @@ static inline int Abc_Lit2Att4( int Lit ) { assert(Lit >= 0)
...
@@ -329,7 +329,12 @@ static inline int Abc_Lit2Att4( int Lit ) { assert(Lit >= 0)
typedef
ABC_INT64_T
abctime
;
typedef
ABC_INT64_T
abctime
;
static
inline
abctime
Abc_Clock
()
static
inline
abctime
Abc_Clock
()
{
{
#if (defined(LIN) || defined(LIN64)) && !(__APPLE__ & __MACH__) && !defined(__MINGW32__)
#if defined(__APPLE__) && defined(__MACH__)
#define APPLE_MACH (__APPLE__ & __MACH__)
#else
#define APPLE_MACH 0
#endif
#if (defined(LIN) || defined(LIN64)) && !APPLE_MACH && !defined(__MINGW32__)
struct
timespec
ts
;
struct
timespec
ts
;
if
(
clock_gettime
(
CLOCK_THREAD_CPUTIME_ID
,
&
ts
)
<
0
)
if
(
clock_gettime
(
CLOCK_THREAD_CPUTIME_ID
,
&
ts
)
<
0
)
return
(
abctime
)
-
1
;
return
(
abctime
)
-
1
;
...
...
src/opt/fxch/FxchSCHashTable.c
View file @
a8b5da82
...
@@ -17,6 +17,10 @@
...
@@ -17,6 +17,10 @@
***********************************************************************/
***********************************************************************/
#include "Fxch.h"
#include "Fxch.h"
#if (__GNUC__ >= 8)
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
#endif
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
...
src/proof/int/int.h
View file @
a8b5da82
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
/*
/*
The interpolation algorithm implemented here was introduced in the paper:
The interpolation algorithm implemented here was introduced in the paper:
K. L. McMillan. Interpolation and SAT-based model checking. CAV
’
03, pp. 1-13.
K. L. McMillan. Interpolation and SAT-based model checking. CAV
03, pp. 1-13.
*/
*/
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
...
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