2013-01-05 04:13:26 -06:00
/*
* yosys - - Yosys Open SYnthesis Suite
*
* Copyright ( C ) 2012 Clifford Wolf < clifford @ clifford . at >
*
* Permission to use , copy , modify , and / or distribute this software for any
* purpose with or without fee is hereby granted , provided that the above
* copyright notice and this permission notice appear in all copies .
*
* THE SOFTWARE IS PROVIDED " AS IS " AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS . IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL , DIRECT , INDIRECT , OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE , DATA OR PROFITS , WHETHER IN AN
* ACTION OF CONTRACT , NEGLIGENCE OR OTHER TORTIOUS ACTION , ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE .
*
*/
# ifndef LOG_H
# define LOG_H
# include "kernel/rtlil.h"
2014-07-24 08:06:45 -05:00
# include "kernel/register.h"
2013-01-05 04:13:26 -06:00
# include <stdio.h>
2014-07-24 08:06:45 -05:00
# include <string.h>
2013-11-22 07:08:10 -06:00
# include <time.h>
2014-03-11 08:24:24 -05:00
# include <sys/time.h>
# include <sys/resource.h>
2013-01-05 04:13:26 -06:00
# include <vector>
2014-07-24 12:36:20 -05:00
# define S__LINE__sub2(x) #x
# define S__LINE__sub1(x) S__LINE__sub2(x)
# define S__LINE__ S__LINE__sub1(__LINE__)
2013-01-05 04:13:26 -06:00
extern std : : vector < FILE * > log_files ;
extern FILE * log_errfile ;
extern bool log_time ;
extern bool log_cmd_error_throw ;
2013-11-17 06:26:31 -06:00
extern int log_verbose_level ;
2013-01-05 04:13:26 -06:00
std : : string stringf ( const char * fmt , . . . ) ;
void logv ( const char * format , va_list ap ) ;
void logv_header ( const char * format , va_list ap ) ;
void logv_error ( const char * format , va_list ap ) __attribute__ ( ( noreturn ) ) ;
void log ( const char * format , . . . ) __attribute__ ( ( format ( printf , 1 , 2 ) ) ) ;
void log_header ( const char * format , . . . ) __attribute__ ( ( format ( printf , 1 , 2 ) ) ) ;
void log_error ( const char * format , . . . ) __attribute__ ( ( format ( printf , 1 , 2 ) ) ) __attribute__ ( ( noreturn ) ) ;
void log_cmd_error ( const char * format , . . . ) __attribute__ ( ( format ( printf , 1 , 2 ) ) ) __attribute__ ( ( noreturn ) ) ;
void log_push ( ) ;
void log_pop ( ) ;
void log_reset_stack ( ) ;
void log_flush ( ) ;
const char * log_signal ( const RTLIL : : SigSpec & sig , bool autoint = true ) ;
2014-07-19 13:53:29 -05:00
const char * log_id ( std : : string id ) ;
2014-07-18 03:26:01 -05:00
template < typename T > static inline const char * log_id ( T * obj ) {
2014-07-19 13:53:29 -05:00
return log_id ( obj - > name ) ;
2014-07-18 03:26:01 -05:00
}
2014-07-20 03:35:47 -05:00
void log_cell ( RTLIL : : Cell * cell , std : : string indent = " " ) ;
2013-05-24 05:32:06 -05:00
# define log_abort() log_error("Abort in %s:%d.\n", __FILE__, __LINE__)
2013-05-24 07:38:36 -05:00
# define log_assert(_assert_expr_) do { if (_assert_expr_) break; log_error("Assert `%s' failed in %s:%d.\n", #_assert_expr_, __FILE__, __LINE__); } while (0)
2014-07-21 05:01:45 -05:00
# define log_ping() log("-- %s:%d %s --\n", __FILE__, __LINE__, __PRETTY_FUNCTION__)
2013-05-24 05:32:06 -05:00
2014-07-24 08:05:05 -05:00
// ---------------------------------------------------
// This is the magic behind the code coverage counters
// ---------------------------------------------------
2014-07-24 08:06:45 -05:00
# ifndef NDEBUG
# define cover(_id) do { \
static CoverData __d __attribute__ ( ( section ( " yosys_cover_list " ) , aligned ( 1 ) ) ) = { __FILE__ , __FUNCTION__ , _id , __LINE__ , 0 } ; \
__d . counter + + ; \
} while ( 0 )
2014-07-24 08:05:05 -05:00
struct CoverData {
const char * file , * func , * id ;
int line , counter ;
} __attribute__ ( ( packed ) ) ;
// this two symbols are created by the linker for the "yosys_cover_list" ELF section
extern " C " struct CoverData __start_yosys_cover_list [ ] ;
extern " C " struct CoverData __stop_yosys_cover_list [ ] ;
2014-07-24 12:36:20 -05:00
extern std : : map < std : : string , std : : pair < std : : string , int > > extra_coverage_data ;
static inline void cover_extra ( std : : string parent , std : : string id , bool increment = true ) {
if ( extra_coverage_data . count ( id ) = = 0 ) {
for ( CoverData * p = __start_yosys_cover_list ; p ! = __stop_yosys_cover_list ; p + + )
if ( p - > id = = parent )
extra_coverage_data [ id ] . first = stringf ( " %s:%d:%s " , p - > file , p - > line , p - > func ) ;
log_assert ( extra_coverage_data . count ( id ) ) ;
}
if ( increment )
extra_coverage_data [ id ] . second + + ;
}
2014-07-24 08:06:45 -05:00
static inline std : : map < std : : string , std : : pair < std : : string , int > > get_coverage_data ( )
{
std : : map < std : : string , std : : pair < std : : string , int > > coverage_data ;
for ( auto & it : REGISTER_INTERN : : pass_register ) {
std : : string key = stringf ( " passes.%s " , it . first . c_str ( ) ) ;
coverage_data [ key ] . first = stringf ( " %s:%d:%s " , __FILE__ , __LINE__ , __FUNCTION__ ) ;
coverage_data [ key ] . second + = it . second - > call_counter ;
}
2014-07-24 12:36:20 -05:00
for ( auto & it : extra_coverage_data ) {
if ( coverage_data . count ( it . first ) )
log ( " WARNING: found duplicate coverage id \" %s \" . \n " , it . first . c_str ( ) ) ;
coverage_data [ it . first ] . first = it . second . first ;
coverage_data [ it . first ] . second + = it . second . second ;
}
2014-07-24 08:06:45 -05:00
for ( CoverData * p = __start_yosys_cover_list ; p ! = __stop_yosys_cover_list ; p + + ) {
if ( coverage_data . count ( p - > id ) )
log ( " WARNING: found duplicate coverage id \" %s \" . \n " , p - > id ) ;
coverage_data [ p - > id ] . first = stringf ( " %s:%d:%s " , p - > file , p - > line , p - > func ) ;
coverage_data [ p - > id ] . second + = p - > counter ;
}
for ( auto & it : coverage_data )
if ( ! it . second . first . compare ( 0 , strlen ( YOSYS_SRC " / " ) , YOSYS_SRC " / " ) )
it . second . first = it . second . first . substr ( strlen ( YOSYS_SRC " / " ) ) ;
return coverage_data ;
}
2014-07-24 12:36:20 -05:00
# define cover_list(_id, ...) do { cover(_id); \
std : : string r = cover_list_worker ( _id , __VA_ARGS__ ) ; \
log_assert ( r . empty ( ) ) ; \
} while ( 0 )
static inline std : : string cover_list_worker ( std : : string , std : : string last ) {
return last ;
}
template < typename . . . T >
std : : string cover_list_worker ( std : : string prefix , std : : string first , T . . . rest ) {
std : : string selected = cover_list_worker ( prefix , rest . . . ) ;
cover_extra ( prefix , prefix + " . " + first , first = = selected ) ;
return first = = selected ? " " : selected ;
}
2014-07-23 20:48:38 -05:00
# else
2014-07-24 12:36:20 -05:00
# define cover(...) do { } while (0)
# define cover_list(...) do { } while (0)
2014-07-23 20:48:38 -05:00
# endif
// ------------------------------------------------------------
// everything below this line are utilities for troubleshooting
// ------------------------------------------------------------
2013-11-22 07:08:10 -06:00
// simple timer for performance measurements
// toggle the '#if 1' to get a baseline for the perormance penalty added by the measurement
struct PerformanceTimer
{
# if 1
int64_t total_ns ;
PerformanceTimer ( ) {
total_ns = 0 ;
}
static int64_t query ( ) {
2014-03-11 08:24:24 -05:00
# if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
2013-11-22 07:08:10 -06:00
struct timespec ts ;
clock_gettime ( CLOCK_PROCESS_CPUTIME_ID , & ts ) ;
return int64_t ( ts . tv_sec ) * 1000000000 + ts . tv_nsec ;
2014-03-11 08:24:24 -05:00
# elif defined(RUSAGE_SELF)
struct rusage rusage ;
int64_t t ;
if ( getrusage ( RUSAGE_SELF , & rusage ) = = - 1 ) {
log_cmd_error ( " getrusage failed! \n " ) ;
log_abort ( ) ;
}
t = 1000000000ULL * ( int64_t ) rusage . ru_utime . tv_sec + ( int64_t ) rusage . ru_utime . tv_usec * 1000ULL ;
t + = 1000000000ULL * ( int64_t ) rusage . ru_stime . tv_sec + ( int64_t ) rusage . ru_stime . tv_usec * 1000ULL ;
return t ;
# else
# error Dont know how to measure per-process CPU time. Need alternative method (times() / clocks() / gettimeofday()?).
# endif
2013-11-22 07:08:10 -06:00
}
void reset ( ) {
total_ns = 0 ;
}
void add ( ) {
total_ns + = query ( ) ;
}
void sub ( ) {
total_ns - = query ( ) ;
}
float sec ( ) const {
return total_ns * 1e-9 ;
}
# else
void reset ( ) { }
void add ( ) { }
void sub ( ) { }
float sec ( ) const { return 0 ; }
# endif
} ;
2013-12-20 05:11:58 -06:00
// simple API for quickly dumping values when debugging
2014-01-17 16:14:17 -06:00
static inline void log_dump_val_worker ( short v ) { log ( " %d " , v ) ; }
static inline void log_dump_val_worker ( unsigned short v ) { log ( " %u " , v ) ; }
2013-12-20 05:11:58 -06:00
static inline void log_dump_val_worker ( int v ) { log ( " %d " , v ) ; }
2014-01-17 16:14:17 -06:00
static inline void log_dump_val_worker ( unsigned int v ) { log ( " %u " , v ) ; }
2013-12-20 05:11:58 -06:00
static inline void log_dump_val_worker ( long int v ) { log ( " %ld " , v ) ; }
2014-01-17 16:14:17 -06:00
static inline void log_dump_val_worker ( unsigned long int v ) { log ( " %lu " , v ) ; }
2013-12-20 05:11:58 -06:00
static inline void log_dump_val_worker ( long long int v ) { log ( " %lld " , v ) ; }
2014-01-17 16:14:17 -06:00
static inline void log_dump_val_worker ( unsigned long long int v ) { log ( " %lld " , v ) ; }
2013-12-20 05:11:58 -06:00
static inline void log_dump_val_worker ( char c ) { log ( c > = 32 & & c < 127 ? " '%c' " : " ' \\ x%02x' " , c ) ; }
2014-01-17 16:14:17 -06:00
static inline void log_dump_val_worker ( unsigned char c ) { log ( c > = 32 & & c < 127 ? " '%c' " : " ' \\ x%02x' " , c ) ; }
2013-12-20 05:11:58 -06:00
static inline void log_dump_val_worker ( bool v ) { log ( " %s " , v ? " true " : " false " ) ; }
static inline void log_dump_val_worker ( double v ) { log ( " %f " , v ) ; }
static inline void log_dump_val_worker ( const char * v ) { log ( " %s " , v ) ; }
static inline void log_dump_val_worker ( std : : string v ) { log ( " %s " , v . c_str ( ) ) ; }
static inline void log_dump_val_worker ( RTLIL : : SigSpec v ) { log ( " %s " , log_signal ( v ) ) ; }
static inline void log_dump_args_worker ( const char * p ) { log_assert ( * p = = 0 ) ; }
2014-03-14 10:39:50 -05:00
template < typename T >
static inline void log_dump_val_worker ( T * ptr ) { log ( " %p " , ptr ) ; }
2014-07-24 12:36:20 -05:00
template < typename T , typename . . . Args >
2013-12-20 05:11:58 -06:00
void log_dump_args_worker ( const char * p , T first , Args . . . args )
{
int next_p_state = 0 ;
const char * next_p = p ;
while ( * next_p & & ( next_p_state ! = 0 | | * next_p ! = ' , ' ) ) {
if ( * next_p = = ' " ' )
do {
next_p + + ;
while ( * next_p = = ' \\ ' & & * ( next_p + 1 ) )
next_p + = 2 ;
} while ( * next_p & & * next_p ! = ' " ' ) ;
if ( * next_p = = ' \' ' ) {
next_p + + ;
if ( * next_p = = ' \\ ' )
next_p + + ;
if ( * next_p )
next_p + + ;
}
if ( * next_p = = ' ( ' | | * next_p = = ' [ ' | | * next_p = = ' { ' )
next_p_state + + ;
if ( ( * next_p = = ' ) ' | | * next_p = = ' ] ' | | * next_p = = ' } ' ) & & next_p_state > 0 )
next_p_state - - ;
next_p + + ;
}
log ( " \n \t %.*s => " , int ( next_p - p ) , p ) ;
if ( * next_p = = ' , ' )
next_p + + ;
while ( * next_p = = ' ' | | * next_p = = ' \t ' | | * next_p = = ' \r ' | | * next_p = = ' \n ' )
next_p + + ;
log_dump_val_worker ( first ) ;
log_dump_args_worker ( next_p , args . . . ) ;
}
# define log_dump(...) do { \
log ( " DEBUG DUMP IN %s AT %s:%d: " , __PRETTY_FUNCTION__ , __FILE__ , __LINE__ ) ; \
log_dump_args_worker ( # __VA_ARGS__ , __VA_ARGS__ ) ; \
log ( " \n " ) ; \
} while ( 0 )
2013-01-05 04:13:26 -06:00
# endif