ioReadBlif.c 45.6 KB
Newer Older
Alan Mishchenko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/**CFile****************************************************************

  FileName    [ioReadBlif.c]

  SystemName  [ABC: Logic synthesis and verification system.]

  PackageName [Command processing package.]

  Synopsis    [Procedures to read BLIF files.]

  Author      [Alan Mishchenko]
  
  Affiliation [UC Berkeley]

  Date        [Ver. 1.0. Started - June 20, 2005.]

  Revision    [$Id: ioReadBlif.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]

***********************************************************************/

Alan Mishchenko committed
21
#include "ioAbc.h"
22 23
#include "base/main/main.h"
#include "map/mio/mio.h"
Alan Mishchenko committed
24

25 26 27
ABC_NAMESPACE_IMPL_START


Alan Mishchenko committed
28 29 30 31 32 33 34 35
////////////////////////////////////////////////////////////////////////
///                        DECLARATIONS                              ///
////////////////////////////////////////////////////////////////////////

typedef struct Io_ReadBlif_t_        Io_ReadBlif_t;   // all reading info
struct Io_ReadBlif_t_
{
    // general info about file
Alan Mishchenko committed
36 37
    char *               pFileName;    // the name of the file
    Extra_FileReader_t * pReader;      // the input file reader
Alan Mishchenko committed
38
    // current processing info
Alan Mishchenko committed
39 40
    Abc_Ntk_t *          pNtkMaster;   // the primary network
    Abc_Ntk_t *          pNtkCur;      // the primary network
Alan Mishchenko committed
41
    int                  LineCur;      // the line currently parsed
Alan Mishchenko committed
42
    // temporary storage for tokens
Alan Mishchenko committed
43
    Vec_Ptr_t *          vTokens;      // the current tokens
Alan Mishchenko committed
44 45
    Vec_Ptr_t *          vNewTokens;   // the temporary storage for the tokens
    Vec_Str_t *          vCubes;       // the temporary storage for the tokens
Alan Mishchenko committed
46
    // the error message
Alan Mishchenko committed
47 48
    FILE *               Output;       // the output stream
    char                 sError[1000]; // the error string generated during parsing
Alan Mishchenko committed
49
    int                  fError;       // set to 1 when error occurs
Alan Mishchenko committed
50 51 52 53 54 55
};

static Io_ReadBlif_t * Io_ReadBlifFile( char * pFileName );
static void Io_ReadBlifFree( Io_ReadBlif_t * p );
static void Io_ReadBlifPrintErrorMessage( Io_ReadBlif_t * p );
static Vec_Ptr_t * Io_ReadBlifGetTokens( Io_ReadBlif_t * p );
Alan Mishchenko committed
56
static char * Io_ReadBlifCleanName( char * pName );
Alan Mishchenko committed
57

Alan Mishchenko committed
58 59
static Abc_Ntk_t * Io_ReadBlifNetwork( Io_ReadBlif_t * p );
static Abc_Ntk_t * Io_ReadBlifNetworkOne( Io_ReadBlif_t * p );
Alan Mishchenko committed
60 61 62 63
static int Io_ReadBlifNetworkInputs( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
static int Io_ReadBlifNetworkOutputs( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
static int Io_ReadBlifNetworkLatch( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
static int Io_ReadBlifNetworkNames( Io_ReadBlif_t * p, Vec_Ptr_t ** pvTokens );
Alan Mishchenko committed
64
static int Io_ReadBlifNetworkGate( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
Alan Mishchenko committed
65
static int Io_ReadBlifNetworkSubcircuit( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
Alan Mishchenko committed
66
static int Io_ReadBlifNetworkInputArrival( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
67
static int Io_ReadBlifNetworkOutputRequired( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
Alan Mishchenko committed
68
static int Io_ReadBlifNetworkDefaultInputArrival( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
69
static int Io_ReadBlifNetworkDefaultOutputRequired( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
70
static int Io_ReadBlifNetworkAndGateDelay( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
Alan Mishchenko committed
71
static int Io_ReadBlifNetworkConnectBoxes( Io_ReadBlif_t * p, Abc_Ntk_t * pNtkMaster );
Alan Mishchenko committed
72 73

////////////////////////////////////////////////////////////////////////
Alan Mishchenko committed
74
///                     FUNCTION DEFINITIONS                         ///
Alan Mishchenko committed
75 76 77 78
////////////////////////////////////////////////////////////////////////

/**Function*************************************************************

Alan Mishchenko committed
79
  Synopsis    [Reads the (hierarchical) network from the BLIF file.]
Alan Mishchenko committed
80

Alan Mishchenko committed
81
  Description []
Alan Mishchenko committed
82 83 84 85 86 87 88 89 90
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Abc_Ntk_t * Io_ReadBlif( char * pFileName, int fCheck )
{
    Io_ReadBlif_t * p;
Alan Mishchenko committed
91
    Abc_Ntk_t * pNtk;
Alan Mishchenko committed
92 93 94 95 96 97

    // start the file
    p = Io_ReadBlifFile( pFileName );
    if ( p == NULL )
        return NULL;

Alan Mishchenko committed
98
    // read the hierarchical network
Alan Mishchenko committed
99 100 101 102 103 104
    pNtk = Io_ReadBlifNetwork( p );
    if ( pNtk == NULL )
    {
        Io_ReadBlifFree( p );
        return NULL;
    }
Alan Mishchenko committed
105
    pNtk->pSpec = Extra_UtilStrsav( pFileName );
106
    Abc_NtkTimeInitialize( pNtk, NULL );
Alan Mishchenko committed
107 108 109
    Io_ReadBlifFree( p );

    // make sure that everything is okay with the network structure
Alan Mishchenko committed
110
    if ( fCheck && !Abc_NtkCheckRead( pNtk ) )
Alan Mishchenko committed
111 112 113 114 115 116 117 118 119 120
    {
        printf( "Io_ReadBlif: The network check has failed.\n" );
        Abc_NtkDelete( pNtk );
        return NULL;
    }
    return pNtk;
}

/**Function*************************************************************

Alan Mishchenko committed
121
  Synopsis    [Iteratively reads several networks in the hierarchical design.]
Alan Mishchenko committed
122 123 124 125 126 127 128 129

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
130
Abc_Ntk_t * Io_ReadBlifNetwork( Io_ReadBlif_t * p )
Alan Mishchenko committed
131
{
Alan Mishchenko committed
132
    Abc_Ntk_t * pNtk, * pNtkMaster;
Alan Mishchenko committed
133

Alan Mishchenko committed
134 135
    // read the name of the master network
    p->vTokens = Io_ReadBlifGetTokens(p);
136
    if ( p->vTokens == NULL || strcmp( (char *)p->vTokens->pArray[0], ".model" ) )
Alan Mishchenko committed
137
    {
Alan Mishchenko committed
138 139 140 141
        p->LineCur = 0;
        sprintf( p->sError, "Wrong input file format." );
        Io_ReadBlifPrintErrorMessage( p );
        return NULL;
Alan Mishchenko committed
142
    }
Alan Mishchenko committed
143

Alan Mishchenko committed
144 145 146
    // read networks (with EXDC) 
    pNtkMaster = NULL;
    while ( p->vTokens )
Alan Mishchenko committed
147
    {
Alan Mishchenko committed
148 149 150 151
        // read the network and its EXDC if present
        pNtk = Io_ReadBlifNetworkOne( p );
        if ( pNtk == NULL )
            break;
152
        if ( p->vTokens && strcmp((char *)p->vTokens->pArray[0], ".exdc") == 0 )
Alan Mishchenko committed
153
        {
Alan Mishchenko committed
154 155 156
            pNtk->pExdc = Io_ReadBlifNetworkOne( p );
            if ( pNtk->pExdc == NULL )
                break;
157
            Abc_NtkFinalizeRead( pNtk->pExdc );
Alan Mishchenko committed
158 159 160 161 162
        }
        // add this network as part of the hierarchy
        if ( pNtkMaster == NULL ) // no master network so far
        {
            p->pNtkMaster = pNtkMaster = pNtk;
Alan Mishchenko committed
163
            continue;
Alan Mishchenko committed
164
        }
Alan Mishchenko committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178
/*
        // make sure hierarchy does not have the network with this name
        if ( pNtkMaster->tName2Model && stmm_is_member( pNtkMaster->tName2Model, pNtk->pName ) )
        {
            p->LineCur = 0;
            sprintf( p->sError, "Model %s is multiply defined in the file.", pNtk->pName );
            Io_ReadBlifPrintErrorMessage( p );
            Abc_NtkDelete( pNtk );
            Abc_NtkDelete( pNtkMaster );
            pNtkMaster = NULL;
            return NULL;
        }
        // add the network to the hierarchy
        if ( pNtkMaster->tName2Model == NULL )
179
            pNtkMaster->tName2Model = stmm_init_table((int (*)(void))strcmp, (int (*)(void))stmm_strhash);
Alan Mishchenko committed
180 181
        stmm_insert( pNtkMaster->tName2Model, pNtk->pName, (char *)pNtk );
*/
Alan Mishchenko committed
182
    }
Alan Mishchenko committed
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
/*
    // if there is a hierarchy, connect the boxes
    if ( pNtkMaster && pNtkMaster->tName2Model )
    {
        if ( Io_ReadBlifNetworkConnectBoxes( p, pNtkMaster ) )
        {
            Abc_NtkDelete( pNtkMaster );
            return NULL;
        }
    }
    else 
*/
    if ( !p->fError )
        Abc_NtkFinalizeRead( pNtkMaster );
    // return the master network
    return pNtkMaster;
Alan Mishchenko committed
199 200 201 202
}

/**Function*************************************************************

Alan Mishchenko committed
203
  Synopsis    [Reads one (main or exdc) network from the BLIF file.]
Alan Mishchenko committed
204 205 206 207 208 209 210 211

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
212
Abc_Ntk_t * Io_ReadBlifNetworkOne( Io_ReadBlif_t * p )
Alan Mishchenko committed
213
{
Alan Mishchenko committed
214
    ProgressBar * pProgress = NULL;
Alan Mishchenko committed
215 216
    Abc_Ntk_t * pNtk;
    char * pDirective;
Alan Mishchenko committed
217 218
    int iLine, fTokensReady, fStatus;

Alan Mishchenko committed
219 220 221 222 223
    // make sure the tokens are present
    assert( p->vTokens != NULL );

    // create the new network
    p->pNtkCur = pNtk = Abc_NtkAlloc( ABC_NTK_NETLIST, ABC_FUNC_SOP, 1 );
Alan Mishchenko committed
224
    // read the model name
225
    if ( strcmp( (char *)p->vTokens->pArray[0], ".model" ) == 0 )
Alan Mishchenko committed
226 227 228 229 230 231 232 233 234
    {
        char * pToken, * pPivot;
        if ( Vec_PtrSize(p->vTokens) != 2 )
        {
            p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
            sprintf( p->sError, "The .model line does not have exactly two entries." );
            Io_ReadBlifPrintErrorMessage( p );
            return NULL;
        }
235
        for ( pPivot = pToken = (char *)Vec_PtrEntry(p->vTokens, 1); *pToken; pToken++ )
Alan Mishchenko committed
236 237 238 239
            if ( *pToken == '/' || *pToken == '\\' )
                pPivot = pToken+1;
        pNtk->pName = Extra_UtilStrsav( pPivot );
    }
240
    else if ( strcmp( (char *)p->vTokens->pArray[0], ".exdc" ) != 0 ) 
Alan Mishchenko committed
241
    {
Alan Mishchenko committed
242
        printf( "%s: File parsing skipped after line %d (\"%s\").\n", p->pFileName, 
Alan Mishchenko committed
243
            Extra_FileReaderGetLineNumber(p->pReader, 0), (char*)p->vTokens->pArray[0] );
Alan Mishchenko committed
244 245 246
        Abc_NtkDelete(pNtk);
        p->pNtkCur = NULL;
        return NULL;
Alan Mishchenko committed
247
    }
Alan Mishchenko committed
248 249

    // read the inputs/outputs
Alan Mishchenko committed
250
    if ( p->pNtkMaster == NULL )
Alan Mishchenko committed
251
        pProgress = Extra_ProgressBarStart( stdout, Extra_FileReaderGetFileSize(p->pReader) );
Alan Mishchenko committed
252
    fTokensReady = fStatus = 0;
Alan Mishchenko committed
253
    for ( iLine = 0; fTokensReady || (p->vTokens = Io_ReadBlifGetTokens(p)); iLine++ )
Alan Mishchenko committed
254
    {
Alan Mishchenko committed
255
        if ( p->pNtkMaster == NULL && iLine % 1000 == 0 )
Alan Mishchenko committed
256
            Extra_ProgressBarUpdate( pProgress, Extra_FileReaderGetCurPosition(p->pReader), NULL );
Alan Mishchenko committed
257 258 259

        // consider different line types
        fTokensReady = 0;
260
        pDirective = (char *)p->vTokens->pArray[0];
Alan Mishchenko committed
261
        if ( !strcmp( pDirective, ".names" ) )
Alan Mishchenko committed
262
            { fStatus = Io_ReadBlifNetworkNames( p, &p->vTokens ); fTokensReady = 1; }
Alan Mishchenko committed
263
        else if ( !strcmp( pDirective, ".gate" ) )
Alan Mishchenko committed
264
            fStatus = Io_ReadBlifNetworkGate( p, p->vTokens );
Alan Mishchenko committed
265
        else if ( !strcmp( pDirective, ".latch" ) )
Alan Mishchenko committed
266
            fStatus = Io_ReadBlifNetworkLatch( p, p->vTokens );
Alan Mishchenko committed
267
        else if ( !strcmp( pDirective, ".inputs" ) )
Alan Mishchenko committed
268
            fStatus = Io_ReadBlifNetworkInputs( p, p->vTokens );
Alan Mishchenko committed
269
        else if ( !strcmp( pDirective, ".outputs" ) )
Alan Mishchenko committed
270
            fStatus = Io_ReadBlifNetworkOutputs( p, p->vTokens );
Alan Mishchenko committed
271
        else if ( !strcmp( pDirective, ".input_arrival" ) )
Alan Mishchenko committed
272
            fStatus = Io_ReadBlifNetworkInputArrival( p, p->vTokens );
273 274
        else if ( !strcmp( pDirective, ".output_required" ) )
            fStatus = Io_ReadBlifNetworkOutputRequired( p, p->vTokens );
Alan Mishchenko committed
275
        else if ( !strcmp( pDirective, ".default_input_arrival" ) )
Alan Mishchenko committed
276
            fStatus = Io_ReadBlifNetworkDefaultInputArrival( p, p->vTokens );
277 278
        else if ( !strcmp( pDirective, ".default_output_required" ) )
            fStatus = Io_ReadBlifNetworkDefaultOutputRequired( p, p->vTokens );
279 280
        else if ( !strcmp( pDirective, ".and_gate_delay" ) )
            fStatus = Io_ReadBlifNetworkAndGateDelay( p, p->vTokens );
Alan Mishchenko committed
281 282
//        else if ( !strcmp( pDirective, ".subckt" ) )
//            fStatus = Io_ReadBlifNetworkSubcircuit( p, p->vTokens );
Alan Mishchenko committed
283
        else if ( !strcmp( pDirective, ".exdc" ) )
Alan Mishchenko committed
284
            break;
Alan Mishchenko committed
285
        else if ( !strcmp( pDirective, ".end" ) )
Alan Mishchenko committed
286 287
        {
            p->vTokens = Io_ReadBlifGetTokens(p);
Alan Mishchenko committed
288
            break;
Alan Mishchenko committed
289 290 291 292 293
        }
        else if ( !strcmp( pDirective, ".blackbox" ) )
        {
            pNtk->ntkType = ABC_NTK_NETLIST;
            pNtk->ntkFunc = ABC_FUNC_BLACKBOX;
294
            Mem_FlexStop( (Mem_Flex_t *)pNtk->pManFunc, 0 );
Alan Mishchenko committed
295 296
            pNtk->pManFunc = NULL;
        }
Alan Mishchenko committed
297 298
        else
            printf( "%s (line %d): Skipping directive \"%s\".\n", p->pFileName, 
Alan Mishchenko committed
299
                Extra_FileReaderGetLineNumber(p->pReader, 0), pDirective );
Alan Mishchenko committed
300
        if ( p->vTokens == NULL ) // some files do not have ".end" in the end
Alan Mishchenko committed
301 302
            break;
        if ( fStatus == 1 )
Alan Mishchenko committed
303 304 305
        {
            Extra_ProgressBarStop( pProgress );
            Abc_NtkDelete( pNtk );
Alan Mishchenko committed
306
            return NULL;
Alan Mishchenko committed
307
        }
Alan Mishchenko committed
308
    }
Alan Mishchenko committed
309
    if ( p->pNtkMaster == NULL )
Alan Mishchenko committed
310
        Extra_ProgressBarStop( pProgress );
Alan Mishchenko committed
311
    return pNtk;
Alan Mishchenko committed
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkInputs( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    int i;
    for ( i = 1; i < vTokens->nSize; i++ )
329
        Io_ReadCreatePi( p->pNtkCur, (char *)vTokens->pArray[i] );
Alan Mishchenko committed
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
    return 0;
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkOutputs( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    int i;
    for ( i = 1; i < vTokens->nSize; i++ )
348
        Io_ReadCreatePo( p->pNtkCur, (char *)vTokens->pArray[i] );
Alan Mishchenko committed
349 350 351 352 353 354 355 356 357 358 359 360 361 362
    return 0;
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
363 364 365
int Io_ReadBlifNetworkLatch( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{ 
    Abc_Ntk_t * pNtk = p->pNtkCur;
Alan Mishchenko committed
366
    Abc_Obj_t * pLatch;
Alan Mishchenko committed
367 368 369 370 371 372 373 374
    int ResetValue;
    if ( vTokens->nSize < 3 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The .latch line does not have enough tokens." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
Alan Mishchenko committed
375
    // create the latch
376
    pLatch = Io_ReadCreateLatch( pNtk, (char *)vTokens->pArray[1], (char *)vTokens->pArray[2] );
Alan Mishchenko committed
377 378
    // get the latch reset value
    if ( vTokens->nSize == 3 )
Alan Mishchenko committed
379
        Abc_LatchSetInitDc( pLatch );
Alan Mishchenko committed
380 381
    else
    {
382
        ResetValue = atoi((char *)vTokens->pArray[vTokens->nSize-1]);
Alan Mishchenko committed
383 384 385
        if ( ResetValue != 0 && ResetValue != 1 && ResetValue != 2 )
        {
            p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
386
            sprintf( p->sError, "The .latch line has an unknown reset value (%s).", (char*)vTokens->pArray[3] );
Alan Mishchenko committed
387 388 389
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
Alan Mishchenko committed
390 391 392 393 394 395
        if ( ResetValue == 0 )
            Abc_LatchSetInit0( pLatch );
        else if ( ResetValue == 1 )
            Abc_LatchSetInit1( pLatch );
        else if ( ResetValue == 2 )
            Abc_LatchSetInitDc( pLatch );
Alan Mishchenko committed
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
    }
    return 0;
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkNames( Io_ReadBlif_t * p, Vec_Ptr_t ** pvTokens )
{
    Vec_Ptr_t * vTokens = *pvTokens;
Alan Mishchenko committed
414
    Abc_Ntk_t * pNtk = p->pNtkCur;
Alan Mishchenko committed
415 416 417
    Abc_Obj_t * pNode;
    char * pToken, Char, ** ppNames;
    int nFanins, nNames;
Alan Mishchenko committed
418 419 420 421 422 423 424 425 426

    // create a new node and add it to the network
    if ( vTokens->nSize < 2 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The .names line has less than two tokens." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
Alan Mishchenko committed
427 428 429 430 431

    // create the node
    ppNames = (char **)vTokens->pArray + 1;
    nNames  = vTokens->nSize - 2;
    pNode   = Io_ReadCreateNode( pNtk, ppNames[nNames], ppNames, nNames );
Alan Mishchenko committed
432 433 434 435 436

    // derive the functionality of the node
    p->vCubes->nSize = 0;
    nFanins = vTokens->nSize - 2;
    if ( nFanins == 0 )
Alan Mishchenko committed
437
    {
Alan Mishchenko committed
438
        while ( (vTokens = Io_ReadBlifGetTokens(p)) )
Alan Mishchenko committed
439
        {
440
            pToken = (char *)vTokens->pArray[0];
Alan Mishchenko committed
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
            if ( pToken[0] == '.' )
                break;
            // read the cube
            if ( vTokens->nSize != 1 )
            {
                p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
                sprintf( p->sError, "The number of tokens in the constant cube is wrong." );
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
            // create the cube
            Char = ((char *)vTokens->pArray[0])[0];
            Vec_StrPush( p->vCubes, ' ' );
            Vec_StrPush( p->vCubes, Char );
            Vec_StrPush( p->vCubes, '\n' );
        }
Alan Mishchenko committed
457
    }
Alan Mishchenko committed
458
    else
Alan Mishchenko committed
459
    {
Alan Mishchenko committed
460
        while ( (vTokens = Io_ReadBlifGetTokens(p)) )
Alan Mishchenko committed
461
        {
462
            pToken = (char *)vTokens->pArray[0];
Alan Mishchenko committed
463 464 465 466 467 468 469 470 471 472 473
            if ( pToken[0] == '.' )
                break;
            // read the cube
            if ( vTokens->nSize != 2 )
            {
                p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
                sprintf( p->sError, "The number of tokens in the cube is wrong." );
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
            // create the cube
474
            Vec_StrPrintStr( p->vCubes, (char *)vTokens->pArray[0] );
Alan Mishchenko committed
475 476
            // check the char 
            Char = ((char *)vTokens->pArray[1])[0];
Alan Mishchenko committed
477
            if ( Char != '0' && Char != '1' && Char != 'x' && Char != 'n' )
Alan Mishchenko committed
478 479 480 481 482 483 484 485 486 487
            {
                p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
                sprintf( p->sError, "The output character in the constant cube is wrong." );
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
            Vec_StrPush( p->vCubes, ' ' );
            Vec_StrPush( p->vCubes, Char );
            Vec_StrPush( p->vCubes, '\n' );
        }
Alan Mishchenko committed
488
    }
Alan Mishchenko committed
489 490 491 492 493 494 495 496 497
    // if there is nothing there
    if ( p->vCubes->nSize == 0 )
    {
        // create an empty cube
        Vec_StrPush( p->vCubes, ' ' );
        Vec_StrPush( p->vCubes, '0' );
        Vec_StrPush( p->vCubes, '\n' );
    }
    Vec_StrPush( p->vCubes, 0 );
Alan Mishchenko committed
498

Alan Mishchenko committed
499
    // set the pointer to the functionality of the node
500
    Abc_ObjSetData( pNode, Abc_SopRegister((Mem_Flex_t *)pNtk->pManFunc, p->vCubes->pArray) );
Alan Mishchenko committed
501

Alan Mishchenko committed
502
    // check the size
503
    if ( Abc_ObjFaninNum(pNode) != Abc_SopGetVarNum((char *)Abc_ObjData(pNode)) )
Alan Mishchenko committed
504 505 506
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The number of fanins (%d) of node %s is different from SOP size (%d).", 
507
            Abc_ObjFaninNum(pNode), Abc_ObjName(Abc_ObjFanout(pNode,0)), Abc_SopGetVarNum((char *)Abc_ObjData(pNode)) );
Alan Mishchenko committed
508 509 510 511
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

Alan Mishchenko committed
512 513 514 515 516
    // return the last array of tokens
    *pvTokens = vTokens;
    return 0;
}

Alan Mishchenko committed
517 518 519 520 521 522 523 524 525 526 527
/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
528
int Io_ReadBlifReorderFormalNames( Vec_Ptr_t * vTokens, Mio_Gate_t * pGate, Mio_Gate_t * pTwin )
Alan Mishchenko committed
529 530 531 532 533
{
    Mio_Pin_t * pGatePin;
    char * pName, * pNamePin;
    int i, k, nSize, Length;
    nSize = Vec_PtrSize(vTokens);
534 535
    if ( pTwin == NULL )
    {
536
        if ( nSize - 3 != Mio_GateReadPinNum(pGate) )
537 538 539 540
            return 0;
    }
    else
    {
541
        if ( nSize - 3 != Mio_GateReadPinNum(pGate) && nSize - 4 != Mio_GateReadPinNum(pGate) )
542 543
            return 0;
    }
Alan Mishchenko committed
544 545 546 547 548
    // check if the names are in order
    for ( pGatePin = Mio_GateReadPins(pGate), i = 0; pGatePin; pGatePin = Mio_PinReadNext(pGatePin), i++ )
    {
        pNamePin = Mio_PinReadName(pGatePin);
        Length = strlen(pNamePin);
549
        pName = (char *)Vec_PtrEntry(vTokens, i+2);
Alan Mishchenko committed
550 551 552 553
        if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' )
            continue;
        break;
    }
554
    if ( pTwin == NULL )
Alan Mishchenko committed
555
    {
556
        if ( i == Mio_GateReadPinNum(pGate) )
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
            return 1;
        // reorder the pins
        for ( pGatePin = Mio_GateReadPins(pGate), i = 0; pGatePin; pGatePin = Mio_PinReadNext(pGatePin), i++ )
        {
            pNamePin = Mio_PinReadName(pGatePin);
            Length = strlen(pNamePin);
            for ( k = 2; k < nSize; k++ )
            {
                pName = (char *)Vec_PtrEntry(vTokens, k);
                if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' )
                {
                    Vec_PtrPush( vTokens, pName );
                    break;
                }
            }
        }
        pNamePin = Mio_GateReadOutName(pGate);
Alan Mishchenko committed
574 575 576
        Length = strlen(pNamePin);
        for ( k = 2; k < nSize; k++ )
        {
577
            pName = (char *)Vec_PtrEntry(vTokens, k);
Alan Mishchenko committed
578 579 580 581 582 583
            if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' )
            {
                Vec_PtrPush( vTokens, pName );
                break;
            }
        }
584 585 586 587 588
        if ( Vec_PtrSize(vTokens) - nSize != nSize - 2 )
            return 0;
        Vec_PtrForEachEntryStart( char *, vTokens, pName, k, nSize )
            Vec_PtrWriteEntry( vTokens, k - nSize + 2, pName );
        Vec_PtrShrink( vTokens, nSize );
Alan Mishchenko committed
589
    }
590
    else
Alan Mishchenko committed
591
    {
592
        if ( i != Mio_GateReadPinNum(pGate) ) // expect the correct order of input pins in the network with twin gates
593 594
            return 0;
        // check the last two entries
595
        if ( nSize - 3 == Mio_GateReadPinNum(pGate) ) // only one output is available
Alan Mishchenko committed
596
        {
597 598 599 600 601 602 603 604 605 606 607 608 609
            pNamePin = Mio_GateReadOutName(pGate);
            Length = strlen(pNamePin);
            pName = (char *)Vec_PtrEntry(vTokens, nSize - 1);
            if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' ) // the last entry is pGate
            {
                Vec_PtrPush( vTokens, NULL );
                return 1;
            }
            pNamePin = Mio_GateReadOutName(pTwin);
            Length = strlen(pNamePin);
            pName = (char *)Vec_PtrEntry(vTokens, nSize - 1);
            if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' ) // the last entry is pTwin
            {
610
                pName = (char *)Vec_PtrPop( vTokens );
611 612 613 614 615
                Vec_PtrPush( vTokens, NULL );
                Vec_PtrPush( vTokens, pName );
                return 1;
            }
            return 0;
Alan Mishchenko committed
616
        }
617
        if ( nSize - 4 == Mio_GateReadPinNum(pGate) ) // two outputs are available
618 619 620 621 622 623 624 625 626 627 628 629 630 631
        {
            pNamePin = Mio_GateReadOutName(pGate);
            Length = strlen(pNamePin);
            pName = (char *)Vec_PtrEntry(vTokens, nSize - 2);
            if ( !(!strncmp( pNamePin, pName, Length ) && pName[Length] == '=') )
                return 0;
            pNamePin = Mio_GateReadOutName(pTwin);
            Length = strlen(pNamePin);
            pName = (char *)Vec_PtrEntry(vTokens, nSize - 1);
            if ( !(!strncmp( pNamePin, pName, Length ) && pName[Length] == '=') )
                return 0;
            return 1;
        }
        assert( 0 );
Alan Mishchenko committed
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
    }
    return 1;
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
647 648 649 650 651 652 653 654 655
int Io_ReadBlifNetworkGate( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    Mio_Library_t * pGenlib; 
    Mio_Gate_t * pGate;
    Abc_Obj_t * pNode;
    char ** ppNames;
    int i, nNames;

    // check that the library is available
656
    pGenlib = (Mio_Library_t *)Abc_FrameReadLibGen();
Alan Mishchenko committed
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
    if ( pGenlib == NULL )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The current library is not available." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

    // create a new node and add it to the network
    if ( vTokens->nSize < 2 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The .gate line has less than two tokens." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

    // get the gate
675
    pGate = Mio_LibraryReadGateByName( pGenlib, (char *)vTokens->pArray[1], NULL );
Alan Mishchenko committed
676 677 678
    if ( pGate == NULL )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
679
        sprintf( p->sError, "Cannot find gate \"%s\" in the library.", (char*)vTokens->pArray[1] );
Alan Mishchenko committed
680 681 682 683 684
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

    // if this is the first line with gate, update the network type
Alan Mishchenko committed
685
    if ( Abc_NtkNodeNum(p->pNtkCur) == 0 )
Alan Mishchenko committed
686
    {
Alan Mishchenko committed
687 688
        assert( p->pNtkCur->ntkFunc == ABC_FUNC_SOP );
        p->pNtkCur->ntkFunc = ABC_FUNC_MAP;
689
        Mem_FlexStop( (Mem_Flex_t *)p->pNtkCur->pManFunc, 0 );
Alan Mishchenko committed
690
        p->pNtkCur->pManFunc = pGenlib;
Alan Mishchenko committed
691 692
    }

Alan Mishchenko committed
693
    // reorder the formal inputs to be in the same order as in the gate
694
    if ( !Io_ReadBlifReorderFormalNames( vTokens, pGate, Mio_GateReadTwin(pGate) ) )
Alan Mishchenko committed
695 696 697 698 699 700 701 702
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Mismatch in the fanins of gate \"%s\".", (char*)vTokens->pArray[1] );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }


Alan Mishchenko committed
703 704 705
    // remove the formal parameter names
    for ( i = 2; i < vTokens->nSize; i++ )
    {
706
        vTokens->pArray[i] = Io_ReadBlifCleanName( (char *)vTokens->pArray[i] );
Alan Mishchenko committed
707 708 709 710 711 712 713 714 715 716
        if ( vTokens->pArray[i] == NULL )
        {
            p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
            sprintf( p->sError, "Invalid gate input assignment." );
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
    }

    // create the node
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
    if ( Mio_GateReadTwin(pGate) == NULL )
    {
        nNames  = vTokens->nSize - 3;
        ppNames = (char **)vTokens->pArray + 2;
        pNode   = Io_ReadCreateNode( p->pNtkCur, ppNames[nNames], ppNames, nNames );
        Abc_ObjSetData( pNode, pGate );
    }
    else
    {
        nNames  = vTokens->nSize - 4;
        ppNames = (char **)vTokens->pArray + 2;
        assert( ppNames[nNames] != NULL || ppNames[nNames+1] != NULL );
        if ( ppNames[nNames] )
        {
            pNode   = Io_ReadCreateNode( p->pNtkCur, ppNames[nNames], ppNames, nNames );
            Abc_ObjSetData( pNode, pGate );
        }
        if ( ppNames[nNames+1] )
        {
            pNode   = Io_ReadCreateNode( p->pNtkCur, ppNames[nNames+1], ppNames, nNames );
            Abc_ObjSetData( pNode, Mio_GateReadTwin(pGate) );
        }
    }
Alan Mishchenko committed
740 741 742
    return 0;
}

Alan Mishchenko committed
743 744 745 746 747 748
/**Function*************************************************************

  Synopsis    [Creates a multi-input multi-output box in the hierarchical design.]

  Description []
               
Alan Mishchenko committed
749
  SideEffects [] 
Alan Mishchenko committed
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkSubcircuit( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    Abc_Obj_t * pBox;
    Vec_Ptr_t * vNames;
    char * pName;
    int i;

    // create a new node and add it to the network
    if ( vTokens->nSize < 3 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The .subcircuit line has less than three tokens." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

    // store the names of formal/actual inputs/outputs of the box
    vNames = Vec_PtrAlloc( 10 );
772
    Vec_PtrForEachEntryStart( char *, vTokens, pName, i, 1 )
Alan Mishchenko committed
773 774 775 776 777 778 779 780
//        Vec_PtrPush( vNames, Abc_NtkRegisterName(p->pNtkCur, pName) );
        Vec_PtrPush( vNames, Extra_UtilStrsav(pName) );  // memory leak!!!

    // create a new box and add it to the network
    pBox = Abc_NtkCreateBlackbox( p->pNtkCur );
    // set the pointer to the node names
    Abc_ObjSetData( pBox, vNames );
    // remember the line of the file
781
    pBox->pCopy = (Abc_Obj_t *)(ABC_PTRINT_T)Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
782 783
    return 0;
}
Alan Mishchenko committed
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
char * Io_ReadBlifCleanName( char * pName )
{
    int i, Length;
    Length = strlen(pName);
    for ( i = 0; i < Length; i++ )
        if ( pName[i] == '=' )
            return pName + i + 1;
    return NULL;
}
Alan Mishchenko committed
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkInputArrival( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    Abc_Obj_t * pNet;
    char * pFoo1, * pFoo2;
    double TimeRise, TimeFall;
822
 
Alan Mishchenko committed
823
    // make sure this is indeed the .inputs line
824
    assert( strncmp( (char *)vTokens->pArray[0], ".input_arrival", 14 ) == 0 );
Alan Mishchenko committed
825 826 827 828 829 830 831
    if ( vTokens->nSize != 4 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Wrong number of arguments on .input_arrival line." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
832
    pNet = Abc_NtkFindNet( p->pNtkCur, (char *)vTokens->pArray[1] );
Alan Mishchenko committed
833 834 835
    if ( pNet == NULL )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
836
        sprintf( p->sError, "Cannot find object corresponding to %s on .input_arrival line.", (char*)vTokens->pArray[1] );
Alan Mishchenko committed
837 838 839
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
840 841
    TimeRise = strtod( (char *)vTokens->pArray[2], &pFoo1 );
    TimeFall = strtod( (char *)vTokens->pArray[3], &pFoo2 );
Alan Mishchenko committed
842 843 844
    if ( *pFoo1 != '\0' || *pFoo2 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
845
        sprintf( p->sError, "Bad value (%s %s) for rise or fall time on .input_arrival line.", (char*)vTokens->pArray[2], (char*)vTokens->pArray[3] );
Alan Mishchenko committed
846 847 848 849
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
Alan Mishchenko committed
850
    Abc_NtkTimeSetArrival( p->pNtkCur, Abc_ObjFanin0(pNet)->Id, (float)TimeRise, (float)TimeFall );
Alan Mishchenko committed
851 852 853 854 855 856 857 858 859 860 861 862 863 864
    return 0;
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
int Io_ReadBlifNetworkOutputRequired( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    Abc_Obj_t * pNet;
    char * pFoo1, * pFoo2;
    double TimeRise, TimeFall;
 
    // make sure this is indeed the .inputs line
    assert( strncmp( (char *)vTokens->pArray[0], ".output_required", 16 ) == 0 );
    if ( vTokens->nSize != 4 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Wrong number of arguments on .output_required line." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    pNet = Abc_NtkFindNet( p->pNtkCur, (char *)vTokens->pArray[1] );
    if ( pNet == NULL )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Cannot find object corresponding to %s on .output_required line.", (char*)vTokens->pArray[1] );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    TimeRise = strtod( (char *)vTokens->pArray[2], &pFoo1 );
    TimeFall = strtod( (char *)vTokens->pArray[3], &pFoo2 );
    if ( *pFoo1 != '\0' || *pFoo2 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Bad value (%s %s) for rise or fall time on .output_required line.", (char*)vTokens->pArray[2], (char*)vTokens->pArray[3] );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
    Abc_NtkTimeSetRequired( p->pNtkCur, Abc_ObjFanout0(pNet)->Id, (float)TimeRise, (float)TimeFall );
    return 0;
}

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
913 914 915 916 917 918
int Io_ReadBlifNetworkDefaultInputArrival( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    char * pFoo1, * pFoo2;
    double TimeRise, TimeFall;

    // make sure this is indeed the .inputs line
919
    assert( strncmp( (char *)vTokens->pArray[0], ".default_input_arrival", 23 ) == 0 );
Alan Mishchenko committed
920 921 922 923 924 925 926
    if ( vTokens->nSize != 3 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Wrong number of arguments on .default_input_arrival line." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
927 928
    TimeRise = strtod( (char *)vTokens->pArray[1], &pFoo1 );
    TimeFall = strtod( (char *)vTokens->pArray[2], &pFoo2 );
Alan Mishchenko committed
929 930 931
    if ( *pFoo1 != '\0' || *pFoo2 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
932
        sprintf( p->sError, "Bad value (%s %s) for rise or fall time on .default_input_arrival line.", (char*)vTokens->pArray[1], (char*)vTokens->pArray[2] );
Alan Mishchenko committed
933 934 935 936
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
Alan Mishchenko committed
937 938 939 940 941 942
    Abc_NtkTimeSetDefaultArrival( p->pNtkCur, (float)TimeRise, (float)TimeFall );
    return 0;
}

/**Function*************************************************************

943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkDefaultOutputRequired( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    char * pFoo1, * pFoo2;
    double TimeRise, TimeFall;

    // make sure this is indeed the .inputs line
    assert( strncmp( (char *)vTokens->pArray[0], ".default_output_required", 25 ) == 0 );
    if ( vTokens->nSize != 3 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Wrong number of arguments on .default_output_required line." );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    TimeRise = strtod( (char *)vTokens->pArray[1], &pFoo1 );
    TimeFall = strtod( (char *)vTokens->pArray[2], &pFoo2 );
    if ( *pFoo1 != '\0' || *pFoo2 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Bad value (%s %s) for rise or fall time on .default_output_required line.", (char*)vTokens->pArray[1], (char*)vTokens->pArray[2] );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
    Abc_NtkTimeSetDefaultRequired( p->pNtkCur, (float)TimeRise, (float)TimeFall );
    return 0;
}

/**Function*************************************************************

982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkAndGateDelay( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens )
{
    char * pFoo1;
    double AndGateDelay;

    // make sure this is indeed the .inputs line
    assert( strncmp( (char *)vTokens->pArray[0], ".and_gate_delay", 25 ) == 0 );
    if ( vTokens->nSize != 2 )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "Wrong number of arguments (%d) on .and_gate_delay line (should be 1).", vTokens->nSize-1 );
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    AndGateDelay = strtod( (char *)vTokens->pArray[1], &pFoo1 );
    if ( *pFoo1 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
1009
        sprintf( p->sError, "Bad value (%s) for AND gate delay in on .and_gate_delay line line.", (char*)vTokens->pArray[1] );
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
    p->pNtkCur->AndGateDelay = (float)AndGateDelay;
    return 0;
}

/**Function*************************************************************

Alan Mishchenko committed
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
  Synopsis    [Prints the error message including the file name and line number.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
void Io_ReadBlifPrintErrorMessage( Io_ReadBlif_t * p )
{
    p->fError = 1;
    if ( p->LineCur == 0 ) // the line number is not given
        fprintf( p->Output, "%s: %s\n", p->pFileName, p->sError );
    else // print the error message with the line number
        fprintf( p->Output, "%s (line %d): %s\n", p->pFileName, p->LineCur, p->sError );
}

/**Function*************************************************************

  Synopsis    [Gets the tokens taking into account the line breaks.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Vec_Ptr_t * Io_ReadBlifGetTokens( Io_ReadBlif_t * p )
{
    Vec_Ptr_t * vTokens;
    char * pLastToken;
    int i;

    // get rid of the old tokens
    if ( p->vNewTokens->nSize > 0 )
    {
        for ( i = 0; i < p->vNewTokens->nSize; i++ )
Alan Mishchenko committed
1059
            ABC_FREE( p->vNewTokens->pArray[i] );
Alan Mishchenko committed
1060 1061 1062 1063
        p->vNewTokens->nSize = 0;
    }

    // get the new tokens
1064
    vTokens = (Vec_Ptr_t *)Extra_FileReaderGetTokens(p->pReader);
Alan Mishchenko committed
1065 1066 1067 1068
    if ( vTokens == NULL )
        return vTokens;

    // check if there is a transfer to another line
1069
    pLastToken = (char *)vTokens->pArray[vTokens->nSize - 1];
Alan Mishchenko committed
1070 1071 1072 1073 1074 1075 1076 1077 1078
    if ( pLastToken[ strlen(pLastToken)-1 ] != '\\' )
        return vTokens;

    // remove the slash
    pLastToken[ strlen(pLastToken)-1 ] = 0;
    if ( pLastToken[0] == 0 )
        vTokens->nSize--;
    // load them into the new array
    for ( i = 0; i < vTokens->nSize; i++ )
1079
        Vec_PtrPush( p->vNewTokens, Extra_UtilStrsav((char *)vTokens->pArray[i]) );
Alan Mishchenko committed
1080 1081 1082 1083 1084

    // load as long as there is the line break
    while ( 1 )
    {
        // get the new tokens
1085
        vTokens = (Vec_Ptr_t *)Extra_FileReaderGetTokens(p->pReader);
Alan Mishchenko committed
1086 1087 1088
        if ( vTokens->nSize == 0 )
            return p->vNewTokens;
        // check if there is a transfer to another line
1089
        pLastToken = (char *)vTokens->pArray[vTokens->nSize - 1];
Alan Mishchenko committed
1090 1091 1092 1093 1094 1095 1096 1097
        if ( pLastToken[ strlen(pLastToken)-1 ] == '\\' )
        {
            // remove the slash
            pLastToken[ strlen(pLastToken)-1 ] = 0;
            if ( pLastToken[0] == 0 )
                vTokens->nSize--;
            // load them into the new array
            for ( i = 0; i < vTokens->nSize; i++ )
1098
                Vec_PtrPush( p->vNewTokens, Extra_UtilStrsav((char *)vTokens->pArray[i]) );
Alan Mishchenko committed
1099 1100 1101 1102
            continue;
        }
        // otherwise, load them and break
        for ( i = 0; i < vTokens->nSize; i++ )
1103
            Vec_PtrPush( p->vNewTokens, Extra_UtilStrsav((char *)vTokens->pArray[i]) );
Alan Mishchenko committed
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
        break;
    }
    return p->vNewTokens;
}

/**Function*************************************************************

  Synopsis    [Starts the reading data structure.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Io_ReadBlif_t * Io_ReadBlifFile( char * pFileName )
{
    Extra_FileReader_t * pReader;
    Io_ReadBlif_t * p;

    // start the reader
    pReader = Extra_FileReaderAlloc( pFileName, "#", "\n\r", " \t" );

    if ( pReader == NULL )
        return NULL;

    // start the reading data structure
Alan Mishchenko committed
1132
    p = ABC_ALLOC( Io_ReadBlif_t, 1 );
Alan Mishchenko committed
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
    memset( p, 0, sizeof(Io_ReadBlif_t) );
    p->pFileName  = pFileName;
    p->pReader    = pReader;
    p->Output     = stdout;
    p->vNewTokens = Vec_PtrAlloc( 100 );
    p->vCubes     = Vec_StrAlloc( 100 );
    return p;
}

/**Function*************************************************************

  Synopsis    [Frees the data structure.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
void Io_ReadBlifFree( Io_ReadBlif_t * p )
{
    Extra_FileReaderFree( p->pReader );
    Vec_PtrFree( p->vNewTokens );
    Vec_StrFree( p->vCubes );
Alan Mishchenko committed
1158
    ABC_FREE( p );
Alan Mishchenko committed
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
}


/**Function*************************************************************

  Synopsis    [Connect one box.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkConnectBoxesOneBox( Io_ReadBlif_t * p, Abc_Obj_t * pBox, stmm_table * tName2Model )
{
    Vec_Ptr_t * pNames;
    Abc_Ntk_t * pNtkModel;
    Abc_Obj_t * pObj, * pNet;
Alan Mishchenko committed
1178 1179
    char * pName = NULL, * pActual;
    int i, Length, Start = -1;
Alan Mishchenko committed
1180 1181

    // get the model for this box
1182 1183
    pNames = (Vec_Ptr_t *)pBox->pData;
    if ( !stmm_lookup( tName2Model, (char *)Vec_PtrEntry(pNames, 0), (char **)&pNtkModel ) )
Alan Mishchenko committed
1184
    {
Alan Mishchenko committed
1185
        p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1186
        sprintf( p->sError, "Cannot find the model for subcircuit %s.", (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

    // create the fanins of the box
    Abc_NtkForEachPi( pNtkModel, pObj, i )
        pObj->pCopy = NULL;
    if ( Abc_NtkPiNum(pNtkModel) == 0 )
        Start = 1;
    else
    {
1198
        Vec_PtrForEachEntryStart( char *, pNames, pName, i, 1 )
Alan Mishchenko committed
1199 1200 1201 1202
        {
            pActual = Io_ReadBlifCleanName(pName);
            if ( pActual == NULL )
            {
Alan Mishchenko committed
1203
                p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
                sprintf( p->sError, "Cannot parse formal/actual name pair \"%s\".", pName );
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
            Length = pActual - pName - 1;
            pName[Length] = 0;
            // find the PI net with this name
            pObj = Abc_NtkFindNet( pNtkModel, pName );
            if ( pObj == NULL )
            {
Alan Mishchenko committed
1214
                p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1215
                sprintf( p->sError, "Cannot find formal input \"%s\" as an PI of model \"%s\".", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
            // get the PI
            pObj = Abc_ObjFanin0(pObj);
            // quit if this is not a PI net
            if ( !Abc_ObjIsPi(pObj) )
            {
                pName[Length] = '=';
                Start = i;
                break;
            }
            // remember the actual name in the net
            if ( pObj->pCopy != NULL )
            {
Alan Mishchenko committed
1231
                p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1232 1233 1234 1235
                sprintf( p->sError, "Formal input \"%s\" is used more than once.", pName );
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
1236
            pObj->pCopy = (Abc_Obj_t *)pActual;
Alan Mishchenko committed
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
            // quit if we processed all PIs
            if ( i == Abc_NtkPiNum(pNtkModel) )
            {
                Start = i+1;
                break;
            }
        }
    }
    // create the fanins of the box
    Abc_NtkForEachPi( pNtkModel, pObj, i )
    {
1248
        pActual = (char *)pObj->pCopy;
Alan Mishchenko committed
1249 1250
        if ( pActual == NULL )
        {
Alan Mishchenko committed
1251
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1252
            sprintf( p->sError, "Formal input \"%s\" of model %s is not driven.", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
        pNet = Abc_NtkFindOrCreateNet( pBox->pNtk, pActual );
        Abc_ObjAddFanin( pBox, pNet );
    }
    Abc_NtkForEachPi( pNtkModel, pObj, i )
        pObj->pCopy = NULL;

    // create the fanouts of the box
    Abc_NtkForEachPo( pNtkModel, pObj, i )
        pObj->pCopy = NULL;
1265
    Vec_PtrForEachEntryStart( char *, pNames, pName, i, Start )
Alan Mishchenko committed
1266 1267 1268 1269
    {
        pActual = Io_ReadBlifCleanName(pName);
        if ( pActual == NULL )
        {
Alan Mishchenko committed
1270
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
            sprintf( p->sError, "Cannot parse formal/actual name pair \"%s\".", pName );
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
        Length = pActual - pName - 1;
        pName[Length] = 0;
        // find the PO net with this name
        pObj = Abc_NtkFindNet( pNtkModel, pName );
        if ( pObj == NULL )
        {
Alan Mishchenko committed
1281
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1282
            sprintf( p->sError, "Cannot find formal output \"%s\" as an PO of model \"%s\".", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1283 1284 1285 1286 1287 1288 1289
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
        // get the PO
        pObj = Abc_ObjFanout0(pObj);
        if ( pObj->pCopy != NULL )
        {
Alan Mishchenko committed
1290
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1291 1292 1293 1294
            sprintf( p->sError, "Formal output \"%s\" is used more than once.", pName );
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
1295
        pObj->pCopy = (Abc_Obj_t *)pActual;
Alan Mishchenko committed
1296 1297 1298 1299
    }
    // create the fanouts of the box
    Abc_NtkForEachPo( pNtkModel, pObj, i )
    {
1300
        pActual = (char *)pObj->pCopy;
Alan Mishchenko committed
1301 1302
        if ( pActual == NULL )
        {
Alan Mishchenko committed
1303
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1304
            sprintf( p->sError, "Formal output \"%s\" of model %s is not driven.", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
        pNet = Abc_NtkFindOrCreateNet( pBox->pNtk, pActual );
        Abc_ObjAddFanin( pNet, pBox );
    }
    Abc_NtkForEachPo( pNtkModel, pObj, i )
        pObj->pCopy = NULL;

    // remove the array of names, assign the pointer to the model
1315
    Vec_PtrForEachEntry( char *, (Vec_Ptr_t *)pBox->pData, pName, i )
Alan Mishchenko committed
1316
        ABC_FREE( pName );
1317
    Vec_PtrFree( (Vec_Ptr_t *)pBox->pData );
Alan Mishchenko committed
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
    pBox->pData = pNtkModel;
    return 0;
}

/**Function*************************************************************

  Synopsis    [Connect the boxes in the hierarchy of networks.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkConnectBoxesOne( Io_ReadBlif_t * p, Abc_Ntk_t * pNtk, stmm_table * tName2Model )
{
    Abc_Obj_t * pBox;
    int i;
    // go through the boxes
    Abc_NtkForEachBlackbox( pNtk, pBox, i )
        if ( Io_ReadBlifNetworkConnectBoxesOneBox( p, pBox, tName2Model ) )
            return 1;
    Abc_NtkFinalizeRead( pNtk );
    return 0;
}

#if 0

/**Function*************************************************************

  Synopsis    [Connect the boxes in the hierarchy of networks.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Io_ReadBlifNetworkConnectBoxes( Io_ReadBlif_t * p, Abc_Ntk_t * pNtkMaster )
{
    stmm_generator * gen;
    Abc_Ntk_t * pNtk;
    char * pName;
    // connect the master network
    if ( Io_ReadBlifNetworkConnectBoxesOne( p, pNtkMaster, pNtkMaster->tName2Model ) )
        return 1;
    // connect other networks
    stmm_foreach_item( pNtkMaster->tName2Model, gen, &pName, (char **)&pNtk )
        if ( Io_ReadBlifNetworkConnectBoxesOne( p, pNtk, pNtkMaster->tName2Model ) )
            return 1;
Alan Mishchenko committed
1370 1371
    return 0;
}
Alan Mishchenko committed
1372

Alan Mishchenko committed
1373
#endif
Alan Mishchenko committed
1374

Alan Mishchenko committed
1375 1376 1377 1378 1379
////////////////////////////////////////////////////////////////////////
///                       END OF FILE                                ///
////////////////////////////////////////////////////////////////////////


1380 1381
ABC_NAMESPACE_IMPL_END