summaryrefslogtreecommitdiff
path: root/src/context/context.cpp
blob: a00364fe68eb3fe864261eca5588523986cd997d (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
/*********************                                           -*- C++ -*-  */
/** context.cpp
 ** Original author: mdeters
 ** Major contributors: none
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009 The Analysis of Computer Systems Group (ACSys)
 ** Courant Institute of Mathematical Sciences
 ** New York University
 ** See the file COPYING in the top-level source directory for licensing
 ** information.
 **
 **/


#include "context/context.h"
#include "util/Assert.h"
#include <cstdlib>


namespace CVC4 {
namespace context {


Context::Context() : d_pCNOpre(NULL), d_pCNOpost(NULL) {
  // Create new memory manager
  d_pCMM = new ContextMemoryManager();

  // Create initial Scope
  d_scopeList.push_back(new(d_pCMM) Scope(this, d_pCMM, 0));
}


Context::~Context() {
  // Delete all Scopes
  popto(0);

  // Delete the memory manager
  delete d_pCMM;

  // Clear ContextNotifyObj lists so there are no dangling pointers
  ContextNotifyObj* pCNO;
  while (d_pCNOpre != NULL) {
    pCNO = d_pCNOpre;
    pCNO->d_ppCNOprev = NULL;
    d_pCNOpre = pCNO->d_pCNOnext;
    pCNO->d_pCNOnext = NULL;
  }
  while (d_pCNOpost != NULL) {
    pCNO = d_pCNOpost;
    pCNO->d_ppCNOprev = NULL;
    d_pCNOpost = pCNO->d_pCNOnext;
    pCNO->d_pCNOnext = NULL;
  }
}


void Context::push() {
  // FIXME: TRACE("pushpop", indentStr, "Push", " {");

  // Create a new memory region
  d_pCMM->push();

  // Create a new top Scope
  d_scopeList.push_back(new(d_pCMM) Scope(this, d_pCMM, getLevel()+1));
}


void Context::pop() {
  // Notify the (pre-pop) ContextNotifyObj objects
  ContextNotifyObj* pCNO = d_pCNOpre;
  while (pCNO != NULL) {
    pCNO->notify();
    pCNO = pCNO->d_pCNOnext;
  }

  // Grab the top Scope
  Scope* pScope = d_scopeList.back();

  // Restore the previous Scope
  d_scopeList.pop_back();

  // Restore all objects in the top Scope
  delete pScope;

  // Pop the memory region
  d_pCMM->pop();

  // Notify the (post-pop) ContextNotifyObj objects
  pCNO = d_pCNOpost;
  while (pCNO != NULL) {
    pCNO->notify();
    pCNO = pCNO->d_pCNOnext;
  }

  //FIXME:  TRACE("pushpop", indentStr, "}", " Pop");
}


void Context::popto(int toLevel) {
  // Pop scopes until there are none left or toLevel is reached
  if (toLevel < 0) toLevel = 0;
  while (toLevel < getLevel()) pop();
}


void Context::addNotifyObjPre(ContextNotifyObj* pCNO) {
  // Insert pCNO at *front* of list
  if(d_pCNOpre != NULL)
    d_pCNOpre->prev() = &(pCNO->next());
  pCNO->next() = d_pCNOpre;
  pCNO->prev() = &d_pCNOpre;
  d_pCNOpre = pCNO;
}


void Context::addNotifyObjPost(ContextNotifyObj* pCNO) {
  // Insert pCNO at *front* of list
  if(d_pCNOpost != NULL)
    d_pCNOpost->prev() = &(pCNO->next());
  pCNO->next() = d_pCNOpost;
  pCNO->prev() = &d_pCNOpost;
  d_pCNOpost = pCNO;
}


void ContextObj::update() {
  // Call save() to save the information in the current object
  ContextObj* pContextObjSaved = save(d_pScope->getCMM());

  // Check that base class data was saved
  Assert(pContextObjSaved->d_pContextObjNext == d_pContextObjNext &&
         pContextObjSaved->d_ppContextObjPrev == d_ppContextObjPrev &&
         pContextObjSaved->d_pContextObjRestore == d_pContextObjRestore &&
         pContextObjSaved->d_pScope == d_pScope,
         "save() did not properly copy information in base class");

  // Update Scope pointer to current top Scope
  d_pScope = d_pScope->getContext()->getTopScope();

  // Store the saved copy in the restore pointer
  d_pContextObjRestore = pContextObjSaved;

  // Insert object into the list of objects that need to be restored when this
  // Scope is popped.
  d_pScope->addToChain(this);
}


ContextObj* ContextObj::restoreAndContinue()
{
  // Variable to hold next object in list
  ContextObj* pContextObjNext;

  // Check the restore pointer.  If NULL, this must be the bottom Scope
  if (d_pContextObjRestore == NULL) {
    Assert(d_pScope == d_pScope->getContext()->getBottomScope(),
           "Expected bottom scope");
    pContextObjNext = d_pContextObjNext;
    // Nothing else to do
  }
  else {
    // Call restore to update the subclass data
    restore(d_pContextObjRestore);

    // Remember the next object in the list
    pContextObjNext = d_pContextObjNext;

    // Restore the base class data
    d_pScope = d_pContextObjRestore->d_pScope;
    next() = d_pContextObjRestore->d_pContextObjNext;
    prev() = d_pContextObjRestore->d_ppContextObjPrev;
    d_pContextObjRestore = d_pContextObjRestore->d_pContextObjRestore;
  }
  // Return the next object in the list
  return pContextObjNext;
}


ContextObj::ContextObj(Context* pContext)
  : d_pContextObjRestore(NULL)
{
  Assert(pContext != NULL, "NULL context pointer");
  d_pScope = pContext->getBottomScope();
  d_pScope->addToChain(this);
}


ContextObj::~ContextObj()
{
  for(;;) {
    if (next() != NULL) {
      next()->prev() = prev();
    }
    *(prev()) = next();
    if (d_pContextObjRestore == NULL) break;
    restoreAndContinue();
  }
}


ContextNotifyObj::ContextNotifyObj(Context* pContext, bool preNotify) {
  if (preNotify) {
    pContext->addNotifyObjPre(this);
  }
  else {
    pContext->addNotifyObjPost(this);
  }
}


ContextNotifyObj::~ContextNotifyObj()
{
  if (d_pCNOnext != NULL) {
    d_pCNOnext->d_ppCNOprev = d_ppCNOprev;
  }
  if (d_ppCNOprev != NULL) {
    *(d_ppCNOprev) = d_pCNOnext;
  }
}


template<class T>
void CDList<T>::grow() {
  if (d_list == NULL) {
    // Allocate an initial list if one does not yet exist
    d_sizeAlloc = 10;
    d_list = malloc(sizeof(T)*d_sizeAlloc);
  }
  else {
    // Allocate a new array with double the size
    d_sizeAlloc *= 2;
    T* newList = malloc(sizeof(T)*d_sizeAlloc);

    // Copy the old data
    memcpy(d_list, newList, sizeof(T)*d_size);

    // Free the old list
    free(d_list);
  }
}


} /* CVC4::context namespace */


} /* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback