hopOper.c 11.1 KB
Newer Older
Alan Mishchenko committed
1 2
/**CFile****************************************************************

Alan Mishchenko committed
3
  FileName    [hopOper.c]
Alan Mishchenko committed
4 5 6 7 8 9 10 11 12 13 14 15 16

  SystemName  [ABC: Logic synthesis and verification system.]

  PackageName [Minimalistic And-Inverter Graph package.]

  Synopsis    [AIG operations.]

  Author      [Alan Mishchenko]
  
  Affiliation [UC Berkeley]

  Date        [Ver. 1.0. Started - May 11, 2006.]

Alan Mishchenko committed
17
  Revision    [$Id: hopOper.c,v 1.00 2006/05/11 00:00:00 alanmi Exp $]
Alan Mishchenko committed
18 19 20

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

Alan Mishchenko committed
21
#include "hop.h"
Alan Mishchenko committed
22 23 24 25 26 27

////////////////////////////////////////////////////////////////////////
///                        DECLARATIONS                              ///
////////////////////////////////////////////////////////////////////////

// procedure to detect an EXOR gate
Alan Mishchenko committed
28
static inline int Hop_ObjIsExorType( Hop_Obj_t * p0, Hop_Obj_t * p1, Hop_Obj_t ** ppFan0, Hop_Obj_t ** ppFan1 )
Alan Mishchenko committed
29
{
Alan Mishchenko committed
30
    if ( !Hop_IsComplement(p0) || !Hop_IsComplement(p1) )
Alan Mishchenko committed
31
        return 0;
Alan Mishchenko committed
32 33 34
    p0 = Hop_Regular(p0);
    p1 = Hop_Regular(p1);
    if ( !Hop_ObjIsAnd(p0) || !Hop_ObjIsAnd(p1) )
Alan Mishchenko committed
35
        return 0;
Alan Mishchenko committed
36
    if ( Hop_ObjFanin0(p0) != Hop_ObjFanin0(p1) || Hop_ObjFanin1(p0) != Hop_ObjFanin1(p1) )
Alan Mishchenko committed
37
        return 0;
Alan Mishchenko committed
38
    if ( Hop_ObjFaninC0(p0) == Hop_ObjFaninC0(p1) || Hop_ObjFaninC1(p0) == Hop_ObjFaninC1(p1) )
Alan Mishchenko committed
39
        return 0;
Alan Mishchenko committed
40 41
    *ppFan0 = Hop_ObjChild0(p0);
    *ppFan1 = Hop_ObjChild1(p0);
Alan Mishchenko committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    return 1;
}

////////////////////////////////////////////////////////////////////////
///                     FUNCTION DEFINITIONS                         ///
////////////////////////////////////////////////////////////////////////

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

  Synopsis    [Returns i-th elementary variable.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
60
Hop_Obj_t * Hop_IthVar( Hop_Man_t * p, int i )
Alan Mishchenko committed
61 62
{
    int v;
Alan Mishchenko committed
63 64
    for ( v = Hop_ManPiNum(p); v <= i; v++ )
        Hop_ObjCreatePi( p );
Alan Mishchenko committed
65
    assert( i < Vec_PtrSize(p->vPis) );
Alan Mishchenko committed
66
    return Hop_ManPi( p, i );
Alan Mishchenko committed
67 68 69 70 71 72 73 74 75 76 77 78 79
}

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

  Synopsis    [Perform one operation.]

  Description [The argument nodes can be complemented.]
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
80
Hop_Obj_t * Hop_Oper( Hop_Man_t * p, Hop_Obj_t * p0, Hop_Obj_t * p1, Hop_Type_t Type )
Alan Mishchenko committed
81 82
{
    if ( Type == AIG_AND )
Alan Mishchenko committed
83
        return Hop_And( p, p0, p1 );
Alan Mishchenko committed
84
    if ( Type == AIG_EXOR )
Alan Mishchenko committed
85
        return Hop_Exor( p, p0, p1 );
Alan Mishchenko committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    assert( 0 );
    return NULL;
}

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

  Synopsis    [Performs canonicization step.]

  Description [The argument nodes can be complemented.]
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
101
Hop_Obj_t * Hop_And( Hop_Man_t * p, Hop_Obj_t * p0, Hop_Obj_t * p1 )
Alan Mishchenko committed
102
{
Alan Mishchenko committed
103 104
    Hop_Obj_t * pGhost, * pResult;
//    Hop_Obj_t * pFan0, * pFan1;
Alan Mishchenko committed
105 106 107
    // check trivial cases
    if ( p0 == p1 )
        return p0;
Alan Mishchenko committed
108 109 110 111 112 113
    if ( p0 == Hop_Not(p1) )
        return Hop_Not(p->pConst1);
    if ( Hop_Regular(p0) == p->pConst1 )
        return p0 == p->pConst1 ? p1 : Hop_Not(p->pConst1);
    if ( Hop_Regular(p1) == p->pConst1 )
        return p1 == p->pConst1 ? p0 : Hop_Not(p->pConst1);
Alan Mishchenko committed
114
    // check if it can be an EXOR gate
Alan Mishchenko committed
115 116
//    if ( Hop_ObjIsExorType( p0, p1, &pFan0, &pFan1 ) )
//        return Hop_Exor( p, pFan0, pFan1 );
Alan Mishchenko committed
117
    // check the table
Alan Mishchenko committed
118 119
    pGhost = Hop_ObjCreateGhost( p, p0, p1, AIG_AND );
    if ( pResult = Hop_TableLookup( p, pGhost ) )
Alan Mishchenko committed
120
        return pResult;
Alan Mishchenko committed
121
    return Hop_ObjCreate( p, pGhost );
Alan Mishchenko committed
122 123 124 125 126 127 128 129 130 131 132 133 134
}

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

  Synopsis    [Performs canonicization step.]

  Description [The argument nodes can be complemented.]
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
135
Hop_Obj_t * Hop_Exor( Hop_Man_t * p, Hop_Obj_t * p0, Hop_Obj_t * p1 )
Alan Mishchenko committed
136 137
{
/*
Alan Mishchenko committed
138
    Hop_Obj_t * pGhost, * pResult;
Alan Mishchenko committed
139 140
    // check trivial cases
    if ( p0 == p1 )
Alan Mishchenko committed
141 142
        return Hop_Not(p->pConst1);
    if ( p0 == Hop_Not(p1) )
Alan Mishchenko committed
143
        return p->pConst1;
Alan Mishchenko committed
144 145 146 147
    if ( Hop_Regular(p0) == p->pConst1 )
        return Hop_NotCond( p1, p0 == p->pConst1 );
    if ( Hop_Regular(p1) == p->pConst1 )
        return Hop_NotCond( p0, p1 == p->pConst1 );
Alan Mishchenko committed
148
    // check the table
Alan Mishchenko committed
149 150
    pGhost = Hop_ObjCreateGhost( p, p0, p1, AIG_EXOR );
    if ( pResult = Hop_TableLookup( p, pGhost ) )
Alan Mishchenko committed
151
        return pResult;
Alan Mishchenko committed
152
    return Hop_ObjCreate( p, pGhost );
Alan Mishchenko committed
153
*/
Alan Mishchenko committed
154
    return Hop_Or( p, Hop_And(p, p0, Hop_Not(p1)), Hop_And(p, Hop_Not(p0), p1) );
Alan Mishchenko committed
155 156 157 158 159 160 161 162 163 164 165 166 167
}

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

  Synopsis    [Implements Boolean OR.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
168
Hop_Obj_t * Hop_Or( Hop_Man_t * p, Hop_Obj_t * p0, Hop_Obj_t * p1 )
Alan Mishchenko committed
169
{
Alan Mishchenko committed
170
    return Hop_Not( Hop_And( p, Hop_Not(p0), Hop_Not(p1) ) );
Alan Mishchenko committed
171 172 173 174 175 176 177 178 179 180 181 182 183
}

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

  Synopsis    [Implements ITE operation.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
184
Hop_Obj_t * Hop_Mux( Hop_Man_t * p, Hop_Obj_t * pC, Hop_Obj_t * p1, Hop_Obj_t * p0 )
Alan Mishchenko committed
185 186
{
/*    
Alan Mishchenko committed
187
    Hop_Obj_t * pTempA1, * pTempA2, * pTempB1, * pTempB2, * pTemp;
Alan Mishchenko committed
188 189
    int Count0, Count1;
    // consider trivial cases
Alan Mishchenko committed
190 191
    if ( p0 == Hop_Not(p1) )
        return Hop_Exor( p, pC, p0 );
Alan Mishchenko committed
192 193 194 195 196
    // other cases can be added
    // implement the first MUX (F = C * x1 + C' * x0)

    // check for constants here!!!

Alan Mishchenko committed
197 198
    pTempA1 = Hop_TableLookup( p, Hop_ObjCreateGhost(p, pC,          p1, AIG_AND) );
    pTempA2 = Hop_TableLookup( p, Hop_ObjCreateGhost(p, Hop_Not(pC), p0, AIG_AND) );
Alan Mishchenko committed
199 200
    if ( pTempA1 && pTempA2 )
    {
Alan Mishchenko committed
201 202
        pTemp = Hop_TableLookup( p, Hop_ObjCreateGhost(p, Hop_Not(pTempA1), Hop_Not(pTempA2), AIG_AND) );
        if ( pTemp ) return Hop_Not(pTemp);
Alan Mishchenko committed
203 204 205
    }
    Count0 = (pTempA1 != NULL) + (pTempA2 != NULL);
    // implement the second MUX (F' = C * x1' + C' * x0')
Alan Mishchenko committed
206 207
    pTempB1 = Hop_TableLookup( p, Hop_ObjCreateGhost(p, pC,          Hop_Not(p1), AIG_AND) );
    pTempB2 = Hop_TableLookup( p, Hop_ObjCreateGhost(p, Hop_Not(pC), Hop_Not(p0), AIG_AND) );
Alan Mishchenko committed
208 209
    if ( pTempB1 && pTempB2 )
    {
Alan Mishchenko committed
210
        pTemp = Hop_TableLookup( p, Hop_ObjCreateGhost(p, Hop_Not(pTempB1), Hop_Not(pTempB2), AIG_AND) );
Alan Mishchenko committed
211 212 213 214 215 216
        if ( pTemp ) return pTemp;
    }
    Count1 = (pTempB1 != NULL) + (pTempB2 != NULL);
    // compare and decide which one to implement
    if ( Count0 >= Count1 )
    {
Alan Mishchenko committed
217 218 219
        pTempA1 = pTempA1? pTempA1 : Hop_And(p, pC,          p1);
        pTempA2 = pTempA2? pTempA2 : Hop_And(p, Hop_Not(pC), p0);
        return Hop_Or( p, pTempA1, pTempA2 );
Alan Mishchenko committed
220
    }
Alan Mishchenko committed
221 222 223
    pTempB1 = pTempB1? pTempB1 : Hop_And(p, pC,          Hop_Not(p1));
    pTempB2 = pTempB2? pTempB2 : Hop_And(p, Hop_Not(pC), Hop_Not(p0));
    return Hop_Not( Hop_Or( p, pTempB1, pTempB2 ) );
Alan Mishchenko committed
224
*/
Alan Mishchenko committed
225
    return Hop_Or( p, Hop_And(p, pC, p1), Hop_And(p, Hop_Not(pC), p0) );
Alan Mishchenko committed
226 227 228 229 230 231 232 233 234 235 236 237 238
}

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

  Synopsis    [Implements ITE operation.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
239
Hop_Obj_t * Hop_Maj( Hop_Man_t * p, Hop_Obj_t * pA, Hop_Obj_t * pB, Hop_Obj_t * pC )
Alan Mishchenko committed
240
{
Alan Mishchenko committed
241
    return Hop_Or( p, Hop_Or(p, Hop_And(p, pA, pB), Hop_And(p, pA, pC)), Hop_And(p, pB, pC) );
Alan Mishchenko committed
242 243 244 245 246 247 248 249 250 251 252 253 254
}

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

  Synopsis    [Constructs the well-balanced tree of gates.]

  Description [Disregards levels and possible logic sharing.]
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
255
Hop_Obj_t * Hop_Multi_rec( Hop_Man_t * p, Hop_Obj_t ** ppObjs, int nObjs, Hop_Type_t Type )
Alan Mishchenko committed
256
{
Alan Mishchenko committed
257
    Hop_Obj_t * pObj1, * pObj2;
Alan Mishchenko committed
258 259
    if ( nObjs == 1 )
        return ppObjs[0];
Alan Mishchenko committed
260 261 262
    pObj1 = Hop_Multi_rec( p, ppObjs,           nObjs/2,         Type );
    pObj2 = Hop_Multi_rec( p, ppObjs + nObjs/2, nObjs - nObjs/2, Type );
    return Hop_Oper( p, pObj1, pObj2, Type );
Alan Mishchenko committed
263 264 265 266 267 268 269 270 271 272 273 274 275
}

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

  Synopsis    [Old code.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
276
Hop_Obj_t * Hop_Multi( Hop_Man_t * p, Hop_Obj_t ** pArgs, int nArgs, Hop_Type_t Type )
Alan Mishchenko committed
277 278 279
{
    assert( Type == AIG_AND || Type == AIG_EXOR );
    assert( nArgs > 0 );
Alan Mishchenko committed
280
    return Hop_Multi_rec( p, pArgs, nArgs, Type );
Alan Mishchenko committed
281 282 283 284 285 286 287 288 289 290 291 292 293
}

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

  Synopsis    [Implements the miter.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
294
Hop_Obj_t * Hop_Miter( Hop_Man_t * p, Vec_Ptr_t * vPairs )
Alan Mishchenko committed
295 296 297 298 299 300
{
    int i;
    assert( vPairs->nSize > 0 );
    assert( vPairs->nSize % 2 == 0 );
    // go through the cubes of the node's SOP
    for ( i = 0; i < vPairs->nSize; i += 2 )
Alan Mishchenko committed
301
        vPairs->pArray[i/2] = Hop_Not( Hop_Exor( p, vPairs->pArray[i], vPairs->pArray[i+1] ) );
Alan Mishchenko committed
302
    vPairs->nSize = vPairs->nSize/2;
Alan Mishchenko committed
303
    return Hop_Not( Hop_Multi_rec( p, (Hop_Obj_t **)vPairs->pArray, vPairs->nSize, AIG_AND ) );
Alan Mishchenko committed
304 305 306 307 308 309 310 311 312 313 314 315 316
}

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

  Synopsis    [Creates AND function with nVars inputs.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
317
Hop_Obj_t * Hop_CreateAnd( Hop_Man_t * p, int nVars )
Alan Mishchenko committed
318
{
Alan Mishchenko committed
319
    Hop_Obj_t * pFunc;
Alan Mishchenko committed
320
    int i;
Alan Mishchenko committed
321
    pFunc = Hop_ManConst1( p );
Alan Mishchenko committed
322
    for ( i = 0; i < nVars; i++ )
Alan Mishchenko committed
323
        pFunc = Hop_And( p, pFunc, Hop_IthVar(p, i) );
Alan Mishchenko committed
324 325 326 327 328 329 330 331 332 333 334 335 336 337
    return pFunc;
}

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

  Synopsis    [Creates AND function with nVars inputs.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
338
Hop_Obj_t * Hop_CreateOr( Hop_Man_t * p, int nVars )
Alan Mishchenko committed
339
{
Alan Mishchenko committed
340
    Hop_Obj_t * pFunc;
Alan Mishchenko committed
341
    int i;
Alan Mishchenko committed
342
    pFunc = Hop_ManConst0( p );
Alan Mishchenko committed
343
    for ( i = 0; i < nVars; i++ )
Alan Mishchenko committed
344
        pFunc = Hop_Or( p, pFunc, Hop_IthVar(p, i) );
Alan Mishchenko committed
345 346 347 348 349 350 351 352 353 354 355 356 357 358
    return pFunc;
}

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

  Synopsis    [Creates AND function with nVars inputs.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
Alan Mishchenko committed
359
Hop_Obj_t * Hop_CreateExor( Hop_Man_t * p, int nVars )
Alan Mishchenko committed
360
{
Alan Mishchenko committed
361
    Hop_Obj_t * pFunc;
Alan Mishchenko committed
362
    int i;
Alan Mishchenko committed
363
    pFunc = Hop_ManConst0( p );
Alan Mishchenko committed
364
    for ( i = 0; i < nVars; i++ )
Alan Mishchenko committed
365
        pFunc = Hop_Exor( p, pFunc, Hop_IthVar(p, i) );
Alan Mishchenko committed
366 367 368 369 370 371 372 373
    return pFunc;
}

////////////////////////////////////////////////////////////////////////
///                       END OF FILE                                ///
////////////////////////////////////////////////////////////////////////