ioReadBlif.c 37.9 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 "src/base/main/main.h"
#include "src/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 67
static int Io_ReadBlifNetworkInputArrival( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
static int Io_ReadBlifNetworkDefaultInputArrival( Io_ReadBlif_t * p, Vec_Ptr_t * vTokens );
Alan Mishchenko committed
68
static int Io_ReadBlifNetworkConnectBoxes( Io_ReadBlif_t * p, Abc_Ntk_t * pNtkMaster );
Alan Mishchenko committed
69 70

////////////////////////////////////////////////////////////////////////
Alan Mishchenko committed
71
///                     FUNCTION DEFINITIONS                         ///
Alan Mishchenko committed
72 73 74 75
////////////////////////////////////////////////////////////////////////

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

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

Alan Mishchenko committed
78
  Description []
Alan Mishchenko committed
79 80 81 82 83 84 85 86 87
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Abc_Ntk_t * Io_ReadBlif( char * pFileName, int fCheck )
{
    Io_ReadBlif_t * p;
Alan Mishchenko committed
88
    Abc_Ntk_t * pNtk;
Alan Mishchenko committed
89 90 91 92 93 94

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

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

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

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

Alan Mishchenko committed
118
  Synopsis    [Iteratively reads several networks in the hierarchical design.]
Alan Mishchenko committed
119 120 121 122 123 124 125 126

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
127
Abc_Ntk_t * Io_ReadBlifNetwork( Io_ReadBlif_t * p )
Alan Mishchenko committed
128
{
Alan Mishchenko committed
129
    Abc_Ntk_t * pNtk, * pNtkMaster;
Alan Mishchenko committed
130

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

Alan Mishchenko committed
141 142 143
    // read networks (with EXDC) 
    pNtkMaster = NULL;
    while ( p->vTokens )
Alan Mishchenko committed
144
    {
Alan Mishchenko committed
145 146 147 148
        // read the network and its EXDC if present
        pNtk = Io_ReadBlifNetworkOne( p );
        if ( pNtk == NULL )
            break;
149
        if ( p->vTokens && strcmp((char *)p->vTokens->pArray[0], ".exdc") == 0 )
Alan Mishchenko committed
150
        {
Alan Mishchenko committed
151 152 153
            pNtk->pExdc = Io_ReadBlifNetworkOne( p );
            if ( pNtk->pExdc == NULL )
                break;
154
            Abc_NtkFinalizeRead( pNtk->pExdc );
Alan Mishchenko committed
155 156 157 158 159
        }
        // add this network as part of the hierarchy
        if ( pNtkMaster == NULL ) // no master network so far
        {
            p->pNtkMaster = pNtkMaster = pNtk;
Alan Mishchenko committed
160
            continue;
Alan Mishchenko committed
161
        }
Alan Mishchenko committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175
/*
        // 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 )
176
            pNtkMaster->tName2Model = stmm_init_table((int (*)(void))strcmp, (int (*)(void))stmm_strhash);
Alan Mishchenko committed
177 178
        stmm_insert( pNtkMaster->tName2Model, pNtk->pName, (char *)pNtk );
*/
Alan Mishchenko committed
179
    }
Alan Mishchenko committed
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
/*
    // 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
196 197 198 199
}

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

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

  Description []
               
  SideEffects []

  SeeAlso     []

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

Alan Mishchenko committed
216 217 218 219 220
    // 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
221
    // read the model name
222
    if ( strcmp( (char *)p->vTokens->pArray[0], ".model" ) == 0 )
Alan Mishchenko committed
223 224 225 226 227 228 229 230 231
    {
        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;
        }
232
        for ( pPivot = pToken = (char *)Vec_PtrEntry(p->vTokens, 1); *pToken; pToken++ )
Alan Mishchenko committed
233 234 235 236
            if ( *pToken == '/' || *pToken == '\\' )
                pPivot = pToken+1;
        pNtk->pName = Extra_UtilStrsav( pPivot );
    }
237
    else if ( strcmp( (char *)p->vTokens->pArray[0], ".exdc" ) != 0 ) 
Alan Mishchenko committed
238
    {
Alan Mishchenko committed
239
        printf( "%s: File parsing skipped after line %d (\"%s\").\n", p->pFileName, 
Alan Mishchenko committed
240
            Extra_FileReaderGetLineNumber(p->pReader, 0), (char*)p->vTokens->pArray[0] );
Alan Mishchenko committed
241 242 243
        Abc_NtkDelete(pNtk);
        p->pNtkCur = NULL;
        return NULL;
Alan Mishchenko committed
244
    }
Alan Mishchenko committed
245 246

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

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

/**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++ )
320
        Io_ReadCreatePi( p->pNtkCur, (char *)vTokens->pArray[i] );
Alan Mishchenko committed
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
    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++ )
339
        Io_ReadCreatePo( p->pNtkCur, (char *)vTokens->pArray[i] );
Alan Mishchenko committed
340 341 342 343 344 345 346 347 348 349 350 351 352 353
    return 0;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

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

    // 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
418 419 420 421 422

    // create the node
    ppNames = (char **)vTokens->pArray + 1;
    nNames  = vTokens->nSize - 2;
    pNode   = Io_ReadCreateNode( pNtk, ppNames[nNames], ppNames, nNames );
Alan Mishchenko committed
423 424 425 426 427

    // derive the functionality of the node
    p->vCubes->nSize = 0;
    nFanins = vTokens->nSize - 2;
    if ( nFanins == 0 )
Alan Mishchenko committed
428
    {
Alan Mishchenko committed
429
        while ( (vTokens = Io_ReadBlifGetTokens(p)) )
Alan Mishchenko committed
430
        {
431
            pToken = (char *)vTokens->pArray[0];
Alan Mishchenko committed
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
            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
448
    }
Alan Mishchenko committed
449
    else
Alan Mishchenko committed
450
    {
Alan Mishchenko committed
451
        while ( (vTokens = Io_ReadBlifGetTokens(p)) )
Alan Mishchenko committed
452
        {
453
            pToken = (char *)vTokens->pArray[0];
Alan Mishchenko committed
454 455 456 457 458 459 460 461 462 463 464
            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
465
            Vec_StrPrintStr( p->vCubes, (char *)vTokens->pArray[0] );
Alan Mishchenko committed
466 467
            // check the char 
            Char = ((char *)vTokens->pArray[1])[0];
Alan Mishchenko committed
468
            if ( Char != '0' && Char != '1' && Char != 'x' && Char != 'n' )
Alan Mishchenko committed
469 470 471 472 473 474 475 476 477 478
            {
                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
479
    }
Alan Mishchenko committed
480 481 482 483 484 485 486 487 488
    // 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
489

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

Alan Mishchenko committed
493
    // check the size
494
    if ( Abc_ObjFaninNum(pNode) != Abc_SopGetVarNum((char *)Abc_ObjData(pNode)) )
Alan Mishchenko committed
495 496 497
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
        sprintf( p->sError, "The number of fanins (%d) of node %s is different from SOP size (%d).", 
498
            Abc_ObjFaninNum(pNode), Abc_ObjName(Abc_ObjFanout(pNode,0)), Abc_SopGetVarNum((char *)Abc_ObjData(pNode)) );
Alan Mishchenko committed
499 500 501 502
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

Alan Mishchenko committed
503 504 505 506 507
    // return the last array of tokens
    *pvTokens = vTokens;
    return 0;
}

Alan Mishchenko committed
508 509 510 511 512 513 514 515 516 517 518
/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
519 520 521 522 523 524 525 526 527 528 529 530 531
int Io_ReadBlifReorderFormalNames( Vec_Ptr_t * vTokens, Mio_Gate_t * pGate )
{
    Mio_Pin_t * pGatePin;
    char * pName, * pNamePin;
    int i, k, nSize, Length;
    nSize = Vec_PtrSize(vTokens);
    if ( nSize - 3 != Mio_GateReadInputs(pGate) )
        return 0;
    // 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);
532
        pName = (char *)Vec_PtrEntry(vTokens, i+2);
Alan Mishchenko committed
533 534 535 536 537 538 539 540 541 542 543 544 545
        if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' )
            continue;
        break;
    }
    if ( i == nSize - 3 )
        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++ )
        {
546
            pName = (char *)Vec_PtrEntry(vTokens, k);
Alan Mishchenko committed
547 548 549 550 551 552 553 554 555 556 557
            if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' )
            {
                Vec_PtrPush( vTokens, pName );
                break;
            }
        }
    }
    pNamePin = Mio_GateReadOutName(pGate);
    Length = strlen(pNamePin);
    for ( k = 2; k < nSize; k++ )
    {
558
        pName = (char *)Vec_PtrEntry(vTokens, k);
Alan Mishchenko committed
559 560 561 562 563 564 565 566
        if ( !strncmp( pNamePin, pName, Length ) && pName[Length] == '=' )
        {
            Vec_PtrPush( vTokens, pName );
            break;
        }
    }
    if ( Vec_PtrSize(vTokens) - nSize != nSize - 2 )
        return 0;
567
    Vec_PtrForEachEntryStart( char *, vTokens, pName, k, nSize )
Alan Mishchenko committed
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
        Vec_PtrWriteEntry( vTokens, k - nSize + 2, pName );
    Vec_PtrShrink( vTokens, nSize );
    return 1;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
584 585 586 587 588 589 590 591 592
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
593
    pGenlib = (Mio_Library_t *)Abc_FrameReadLibGen();
Alan Mishchenko committed
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
    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
612
    pGate = Mio_LibraryReadGateByName( pGenlib, (char *)vTokens->pArray[1] );
Alan Mishchenko committed
613 614 615
    if ( pGate == NULL )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
616
        sprintf( p->sError, "Cannot find gate \"%s\" in the library.", (char*)vTokens->pArray[1] );
Alan Mishchenko committed
617 618 619 620 621
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }

    // if this is the first line with gate, update the network type
Alan Mishchenko committed
622
    if ( Abc_NtkNodeNum(p->pNtkCur) == 0 )
Alan Mishchenko committed
623
    {
Alan Mishchenko committed
624 625
        assert( p->pNtkCur->ntkFunc == ABC_FUNC_SOP );
        p->pNtkCur->ntkFunc = ABC_FUNC_MAP;
626
        Mem_FlexStop( (Mem_Flex_t *)p->pNtkCur->pManFunc, 0 );
Alan Mishchenko committed
627
        p->pNtkCur->pManFunc = pGenlib;
Alan Mishchenko committed
628 629
    }

Alan Mishchenko committed
630 631 632 633 634 635 636 637 638 639
    // reorder the formal inputs to be in the same order as in the gate
    if ( !Io_ReadBlifReorderFormalNames( vTokens, pGate ) )
    {
        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
640 641 642
    // remove the formal parameter names
    for ( i = 2; i < vTokens->nSize; i++ )
    {
643
        vTokens->pArray[i] = Io_ReadBlifCleanName( (char *)vTokens->pArray[i] );
Alan Mishchenko committed
644 645 646 647 648 649 650 651 652 653 654 655
        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
    ppNames = (char **)vTokens->pArray + 2;
    nNames  = vTokens->nSize - 3;
Alan Mishchenko committed
656
    pNode   = Io_ReadCreateNode( p->pNtkCur, ppNames[nNames], ppNames, nNames );
Alan Mishchenko committed
657 658 659 660 661 662

    // set the pointer to the functionality of the node
    Abc_ObjSetData( pNode, pGate );
    return 0;
}

Alan Mishchenko committed
663 664 665 666 667 668
/**Function*************************************************************

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

  Description []
               
Alan Mishchenko committed
669
  SideEffects [] 
Alan Mishchenko committed
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691

  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 );
692
    Vec_PtrForEachEntryStart( char *, vTokens, pName, i, 1 )
Alan Mishchenko committed
693 694 695 696 697 698 699 700
//        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
701
    pBox->pCopy = (Abc_Obj_t *)(ABC_PTRINT_T)Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
702 703
    return 0;
}
Alan Mishchenko committed
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724

/**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
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

/**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;
742
 
Alan Mishchenko committed
743
    // make sure this is indeed the .inputs line
744
    assert( strncmp( (char *)vTokens->pArray[0], ".input_arrival", 14 ) == 0 );
Alan Mishchenko committed
745 746 747 748 749 750 751
    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;
    }
752
    pNet = Abc_NtkFindNet( p->pNtkCur, (char *)vTokens->pArray[1] );
Alan Mishchenko committed
753 754 755
    if ( pNet == NULL )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
756
        sprintf( p->sError, "Cannot find object corresponding to %s on .input_arrival line.", (char*)vTokens->pArray[1] );
Alan Mishchenko committed
757 758 759
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
760 761
    TimeRise = strtod( (char *)vTokens->pArray[2], &pFoo1 );
    TimeFall = strtod( (char *)vTokens->pArray[3], &pFoo2 );
Alan Mishchenko committed
762 763 764
    if ( *pFoo1 != '\0' || *pFoo2 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
765
        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
766 767 768 769
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
Alan Mishchenko committed
770
    Abc_NtkTimeSetArrival( p->pNtkCur, Abc_ObjFanin0(pNet)->Id, (float)TimeRise, (float)TimeFall );
Alan Mishchenko committed
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
    return 0;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
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
791
    assert( strncmp( (char *)vTokens->pArray[0], ".default_input_arrival", 23 ) == 0 );
Alan Mishchenko committed
792 793 794 795 796 797 798
    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;
    }
799 800
    TimeRise = strtod( (char *)vTokens->pArray[1], &pFoo1 );
    TimeFall = strtod( (char *)vTokens->pArray[2], &pFoo2 );
Alan Mishchenko committed
801 802 803
    if ( *pFoo1 != '\0' || *pFoo2 != '\0' )
    {
        p->LineCur = Extra_FileReaderGetLineNumber(p->pReader, 0);
Alan Mishchenko committed
804
        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
805 806 807 808
        Io_ReadBlifPrintErrorMessage( p );
        return 1;
    }
    // set the arrival time
Alan Mishchenko committed
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
    Abc_NtkTimeSetDefaultArrival( p->pNtkCur, (float)TimeRise, (float)TimeFall );
    return 0;
}

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

  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
854
            ABC_FREE( p->vNewTokens->pArray[i] );
Alan Mishchenko committed
855 856 857 858
        p->vNewTokens->nSize = 0;
    }

    // get the new tokens
859
    vTokens = (Vec_Ptr_t *)Extra_FileReaderGetTokens(p->pReader);
Alan Mishchenko committed
860 861 862 863
    if ( vTokens == NULL )
        return vTokens;

    // check if there is a transfer to another line
864
    pLastToken = (char *)vTokens->pArray[vTokens->nSize - 1];
Alan Mishchenko committed
865 866 867 868 869 870 871 872 873
    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++ )
874
        Vec_PtrPush( p->vNewTokens, Extra_UtilStrsav((char *)vTokens->pArray[i]) );
Alan Mishchenko committed
875 876 877 878 879

    // load as long as there is the line break
    while ( 1 )
    {
        // get the new tokens
880
        vTokens = (Vec_Ptr_t *)Extra_FileReaderGetTokens(p->pReader);
Alan Mishchenko committed
881 882 883
        if ( vTokens->nSize == 0 )
            return p->vNewTokens;
        // check if there is a transfer to another line
884
        pLastToken = (char *)vTokens->pArray[vTokens->nSize - 1];
Alan Mishchenko committed
885 886 887 888 889 890 891 892
        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++ )
893
                Vec_PtrPush( p->vNewTokens, Extra_UtilStrsav((char *)vTokens->pArray[i]) );
Alan Mishchenko committed
894 895 896 897
            continue;
        }
        // otherwise, load them and break
        for ( i = 0; i < vTokens->nSize; i++ )
898
            Vec_PtrPush( p->vNewTokens, Extra_UtilStrsav((char *)vTokens->pArray[i]) );
Alan Mishchenko committed
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
        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
927
    p = ABC_ALLOC( Io_ReadBlif_t, 1 );
Alan Mishchenko committed
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
    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
953
    ABC_FREE( p );
Alan Mishchenko committed
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
}


/**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
973 974
    char * pName = NULL, * pActual;
    int i, Length, Start = -1;
Alan Mishchenko committed
975 976

    // get the model for this box
977 978
    pNames = (Vec_Ptr_t *)pBox->pData;
    if ( !stmm_lookup( tName2Model, (char *)Vec_PtrEntry(pNames, 0), (char **)&pNtkModel ) )
Alan Mishchenko committed
979
    {
Alan Mishchenko committed
980
        p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
981
        sprintf( p->sError, "Cannot find the model for subcircuit %s.", (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
982 983 984 985 986 987 988 989 990 991 992
        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
    {
993
        Vec_PtrForEachEntryStart( char *, pNames, pName, i, 1 )
Alan Mishchenko committed
994 995 996 997
        {
            pActual = Io_ReadBlifCleanName(pName);
            if ( pActual == NULL )
            {
Alan Mishchenko committed
998
                p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
999 1000 1001 1002 1003 1004 1005 1006 1007 1008
                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
1009
                p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1010
                sprintf( p->sError, "Cannot find formal input \"%s\" as an PI of model \"%s\".", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
                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
1026
                p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1027 1028 1029 1030
                sprintf( p->sError, "Formal input \"%s\" is used more than once.", pName );
                Io_ReadBlifPrintErrorMessage( p );
                return 1;
            }
1031
            pObj->pCopy = (Abc_Obj_t *)pActual;
Alan Mishchenko committed
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
            // 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 )
    {
1043
        pActual = (char *)pObj->pCopy;
Alan Mishchenko committed
1044 1045
        if ( pActual == NULL )
        {
Alan Mishchenko committed
1046
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1047
            sprintf( p->sError, "Formal input \"%s\" of model %s is not driven.", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
            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;
1060
    Vec_PtrForEachEntryStart( char *, pNames, pName, i, Start )
Alan Mishchenko committed
1061 1062 1063 1064
    {
        pActual = Io_ReadBlifCleanName(pName);
        if ( pActual == NULL )
        {
Alan Mishchenko committed
1065
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
            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
1076
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1077
            sprintf( p->sError, "Cannot find formal output \"%s\" as an PO of model \"%s\".", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1078 1079 1080 1081 1082 1083 1084
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
        // get the PO
        pObj = Abc_ObjFanout0(pObj);
        if ( pObj->pCopy != NULL )
        {
Alan Mishchenko committed
1085
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1086 1087 1088 1089
            sprintf( p->sError, "Formal output \"%s\" is used more than once.", pName );
            Io_ReadBlifPrintErrorMessage( p );
            return 1;
        }
1090
        pObj->pCopy = (Abc_Obj_t *)pActual;
Alan Mishchenko committed
1091 1092 1093 1094
    }
    // create the fanouts of the box
    Abc_NtkForEachPo( pNtkModel, pObj, i )
    {
1095
        pActual = (char *)pObj->pCopy;
Alan Mishchenko committed
1096 1097
        if ( pActual == NULL )
        {
Alan Mishchenko committed
1098
            p->LineCur = (int)(ABC_PTRINT_T)pBox->pCopy;
Alan Mishchenko committed
1099
            sprintf( p->sError, "Formal output \"%s\" of model %s is not driven.", pName, (char*)Vec_PtrEntry(pNames, 0) );
Alan Mishchenko committed
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
            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
1110
    Vec_PtrForEachEntry( char *, (Vec_Ptr_t *)pBox->pData, pName, i )
Alan Mishchenko committed
1111
        ABC_FREE( pName );
1112
    Vec_PtrFree( (Vec_Ptr_t *)pBox->pData );
Alan Mishchenko committed
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 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 1158 1159 1160 1161 1162 1163 1164
    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
1165 1166
    return 0;
}
Alan Mishchenko committed
1167

Alan Mishchenko committed
1168
#endif
Alan Mishchenko committed
1169

Alan Mishchenko committed
1170 1171 1172 1173 1174
////////////////////////////////////////////////////////////////////////
///                       END OF FILE                                ///
////////////////////////////////////////////////////////////////////////


1175 1176
ABC_NAMESPACE_IMPL_END