summaryrefslogtreecommitdiffstats
path: root/src/sat/bsat/vecRec.h
blob: 82d7183d62b1f4d6d7331b015f53fab21494c0f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/**CFile****************************************************************

  FileName    [vecRec.h]

  SystemName  [ABC: Logic synthesis and verification system.]

  PackageName [Resizable arrays.]

  Synopsis    [Array of records.]

  Author      [Alan Mishchenko]
  
  Affiliation [UC Berkeley]

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

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

***********************************************************************/
 
#ifndef ABC__sat__bsat__vecRec_h
#define ABC__sat__bsat__vecRec_h


////////////////////////////////////////////////////////////////////////
///                          INCLUDES                                ///
////////////////////////////////////////////////////////////////////////

#include <stdio.h>

ABC_NAMESPACE_HEADER_START


////////////////////////////////////////////////////////////////////////
///                         PARAMETERS                               ///
////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////
///                         BASIC TYPES                              ///
////////////////////////////////////////////////////////////////////////

// data-structure for logging entries
// memory is allocated in 'p->Mask+1' int chunks
// the first 'int' of each entry cannot be 0
typedef struct Vec_Rec_t_ Vec_Rec_t;
struct Vec_Rec_t_ 
{
    int                Mask;         // mask for the log size
    int                hCurrent;     // current position
    int                hShadow;      // current position
    int                nEntries;     // total number of entries
    int                nChunks;      // total number of chunks
    int                nChunksAlloc; // the number of allocated chunks
    int **             pChunks;      // the chunks
};

////////////////////////////////////////////////////////////////////////
///                      MACRO DEFINITIONS                           ///
////////////////////////////////////////////////////////////////////////

// p is vector of records
// Size is given by the user
// Handle is returned to the user
// c (chunk) and s (shift) are variables used here
#define Vec_RecForEachEntry( p, Size, Handle, c, s )   \
    for ( c = 1; c <= p->nChunks; c++ )                \
        for ( s = 0; p->pChunks[c][s] && ((Handle) = (((c)<<16)|(s))); s += Size, assert(s < p->Mask) )

#define Vec_RecForEachEntryStart( p, Size, Handle, c, s, hStart )   \
    for ( c = Vec_RecChunk(hStart), s = Vec_RecShift(hStart); c <= p->nChunks; c++, s = 0 )                \
        for ( ; p->pChunks[c][s] && ((Handle) = (((c)<<16)|(s))); s += Size, assert(s < p->Mask) )

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

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline Vec_Rec_t * Vec_RecAlloc()
{
    Vec_Rec_t * p;
    p = ABC_CALLOC( Vec_Rec_t, 1 );
    p->Mask          = (1 << 15) - 1; // chunk size = 2^15 ints = 128 Kb
    p->hCurrent      = (1 << 16);
    p->nChunks       = 1;
    p->nChunksAlloc  = 16;
    p->pChunks       = ABC_CALLOC( int *, p->nChunksAlloc );
    p->pChunks[0]    = NULL;
    p->pChunks[1]    = ABC_ALLOC( int, (1 << 16) );
    p->pChunks[1][0] = 0;
    return p;
}
static inline void Vec_RecAlloc_( Vec_Rec_t * p )
{
//    Vec_Rec_t * p;
//    p = ABC_CALLOC( Vec_Rec_t, 1 );
    memset( p, 0, sizeof(Vec_Rec_t) );
    p->Mask          = (1 << 15) - 1; // chunk size = 2^15 ints = 128 Kb
    p->hCurrent      = (1 << 16);
    p->nChunks       = 1;
    p->nChunksAlloc  = 16;
    p->pChunks       = ABC_CALLOC( int *, p->nChunksAlloc );
    p->pChunks[0]    = NULL;
    p->pChunks[1]    = ABC_ALLOC( int, (1 << 16) );
    p->pChunks[1][0] = 0;
//    return p;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecChunk( int i )
{
    return i>>16;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecShift( int i )
{
    return i&0xFFFF;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecSize( Vec_Rec_t * p )
{
    return Vec_RecChunk(p->hCurrent) * (p->Mask + 1); 
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecEntryNum( Vec_Rec_t * p )
{
    return p->nEntries;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecEntry( Vec_Rec_t * p, int i )
{
    assert( i <= p->hCurrent );
    return p->pChunks[Vec_RecChunk(i)][Vec_RecShift(i)];
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int * Vec_RecEntryP( Vec_Rec_t * p, int i )
{
    assert( i <= p->hCurrent );
    return p->pChunks[Vec_RecChunk(i)] + Vec_RecShift(i);
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline void Vec_RecRestart( Vec_Rec_t * p )
{
    p->hCurrent = (1 << 16);
    p->nChunks  = 1;
    p->nEntries = 0;
    p->pChunks[1][0] = 0;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline void Vec_RecShrink( Vec_Rec_t * p, int h )
{
    int i;
    assert( Vec_RecEntry(p, h) == 0 );
    for ( i = Vec_RecChunk(h)+1; i < p->nChunksAlloc; i++ )
        ABC_FREE( p->pChunks[i] );
    p->nChunks = Vec_RecChunk(h);
    p->hCurrent = h;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline void Vec_RecFree( Vec_Rec_t * p )
{
    int i;
    for ( i = 0; i < p->nChunksAlloc; i++ )
        ABC_FREE( p->pChunks[i] );
    ABC_FREE( p->pChunks );
    ABC_FREE( p );
}
static inline void Vec_RecFree_( Vec_Rec_t * p )
{
    int i;
    for ( i = 0; i < p->nChunksAlloc; i++ )
        ABC_FREE( p->pChunks[i] );
    ABC_FREE( p->pChunks );
//    ABC_FREE( p );
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecAppend( Vec_Rec_t * p, int nSize )
{
    assert( nSize <= p->Mask );
    assert( Vec_RecEntry(p, p->hCurrent) == 0 );
    assert( Vec_RecChunk(p->hCurrent) == p->nChunks );
    if ( Vec_RecShift(p->hCurrent) + nSize >= p->Mask )
    {
        if ( ++p->nChunks == p->nChunksAlloc )
        {
            p->pChunks = ABC_REALLOC( int *, p->pChunks, p->nChunksAlloc * 2 );
            memset( p->pChunks + p->nChunksAlloc, 0, sizeof(int *) * p->nChunksAlloc );
            p->nChunksAlloc *= 2;
        }
        if ( p->pChunks[p->nChunks] == NULL )
            p->pChunks[p->nChunks] = ABC_ALLOC( int, (p->Mask + 1) );
        p->pChunks[p->nChunks][0] = 0;
        p->hCurrent = p->nChunks << 16;
    }
    p->hCurrent += nSize;
    *Vec_RecEntryP(p, p->hCurrent) = 0;
    p->nEntries++;
    return p->hCurrent - nSize;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecPush( Vec_Rec_t * p, int * pArray, int nSize )
{
    int Handle = Vec_RecAppend( p, nSize );
    memmove( Vec_RecEntryP(p, Handle), pArray, sizeof(int) * nSize );
    return Handle;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline void Vec_RecSetShadow( Vec_Rec_t * p, int hShadow )
{
    p->hShadow = hShadow;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecReadShadow( Vec_Rec_t * p )
{
    return p->hShadow;
}

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

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
static inline int Vec_RecAppendShadow( Vec_Rec_t * p, int nSize )
{
    if ( Vec_RecShift(p->hShadow) + nSize >= p->Mask )
        p->hShadow = ((Vec_RecChunk(p->hShadow) + 1) << 16);
    p->hShadow += nSize;
    return p->hShadow - nSize;
}


ABC_NAMESPACE_HEADER_END

#endif

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