/usr/include/gecode/kernel/global-prop-info.hpp is in libgecode-dev 3.7.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
*
* Copyright:
* Christian Schulte, 2009
*
* Last modified:
* $Date: 2009-10-26 21:16:25 +0100 (Mon, 26 Oct 2009) $ by $Author: schulte $
* $Revision: 9991 $
*
* This file is part of Gecode, the generic constraint
* development environment:
* http://www.gecode.org
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
namespace Gecode {
class GlobalPropInfo;
/// Class for propagator information
class PropInfo {
private:
/// Accumulated failure count
double _afc;
public:
/// Initialize
PropInfo(void);
/// Initialize
void init(void);
/// Return accumulated failure count
double afc(void) const;
/// Increment failure count
void fail(GlobalPropInfo& gpi);
};
/// Globally shared object for propagator information
class GlobalPropInfo {
friend class PropInfo;
private:
/// Block of propagator information (of variable size)
class Block {
public:
/// Next block
Block* next;
/// Start of information entries
PropInfo pi[1];
/// Allocate block with \a n entries and previous block \a p
static Block* allocate(unsigned int n, Block* p=NULL);
};
/// Initial smallest number of entries per block
static const unsigned int size_min = 32;
/// Largest possible number of entries per block
static const unsigned int size_max = 32 * 1024;
/// The actual object to store the required information
class Object {
public:
/// Mutex to synchronize globally shared access
Support::Mutex* mutex;
/// Link to previous object (NULL if none)
Object* parent;
/// How many spaces or objects use this object
unsigned int use_cnt;
/// Size of current block
unsigned int size;
/// Number of free entries in current block
unsigned int free;
/// Currently used block
Block* cur;
/// Constructor
Object(Support::Mutex* m, Object* p=NULL);
/// Allocate memory from heap
static void* operator new(size_t s);
/// Free memory allocated from heap
static void operator delete(void* p);
};
/// Pointer to object, possibly marked
void* mo;
/// Pointer to object without mark
Object* object(void) const;
/// Whether pointer points to local object
bool local(void) const;
/// Set pointer to local object
void local(Object* o);
/// Set global pointer to possibly marked object
void global(void* mo);
public:
/// Initialize
GlobalPropInfo(void);
/// Copy during cloning
GlobalPropInfo(const GlobalPropInfo& gpi);
/// Destructor
~GlobalPropInfo(void);
/// Allocate new propagator info
PropInfo& allocate(void);
};
/*
* Propagator information
*
*/
forceinline
PropInfo::PropInfo(void)
: _afc(0.0) {}
forceinline void
PropInfo::init(void) {
_afc=0.0;
}
forceinline double
PropInfo::afc(void) const {
return _afc;
}
/*
* Global propagator information
*
*/
forceinline void*
GlobalPropInfo::Object::operator new(size_t s) {
return Gecode::heap.ralloc(s);
}
forceinline void
GlobalPropInfo::Object::operator delete(void* p) {
Gecode::heap.rfree(p);
}
forceinline GlobalPropInfo::Block*
GlobalPropInfo::Block::allocate(unsigned int n, GlobalPropInfo::Block* p) {
Block* b = static_cast<Block*>(heap.ralloc(sizeof(Block)+
(n-1)*sizeof(PropInfo)));
b->next = p;
return b;
}
forceinline
GlobalPropInfo::Object::Object(Support::Mutex* m, Object* p)
: mutex(m), parent(p), use_cnt(1), size(size_min), free(size_min),
cur(Block::allocate(size)) {}
forceinline GlobalPropInfo::Object*
GlobalPropInfo::object(void) const {
return static_cast<Object*>(Support::funmark(mo));
}
forceinline bool
GlobalPropInfo::local(void) const {
return !Support::marked(mo);
}
forceinline void
GlobalPropInfo::local(Object* o) {
assert(!Support::marked(o));
mo = o;
}
forceinline void
GlobalPropInfo::global(void* o) {
mo = Support::fmark(o);
}
forceinline
GlobalPropInfo::GlobalPropInfo(void) {
// No synchronization needed as single thread is creating this object
local(new Object(new Support::Mutex));
}
forceinline
GlobalPropInfo::GlobalPropInfo(const GlobalPropInfo& gpi) {
global(gpi.mo);
Object* o = object();
o->mutex->acquire();
o->use_cnt++;
o->mutex->release();
}
forceinline
GlobalPropInfo::~GlobalPropInfo(void) {
Support::Mutex* m = object()->mutex;
m->acquire();
Object* c = object();
while ((c != NULL) && (--c->use_cnt == 0)) {
// Delete all blocks for c
Block* b = c->cur;
while (b != NULL) {
Block* d = b; b=b->next;
heap.rfree(d);
}
// Delete object
Object* d = c; c = c->parent;
delete d;
}
m->release();
// All objects are deleted, so also delete mutex
if (c == NULL)
delete m;
}
forceinline void
PropInfo::fail(GlobalPropInfo& gpi) {
Support::Mutex& m = *gpi.object()->mutex;
m.acquire();
_afc++;
m.release();
}
forceinline PropInfo&
GlobalPropInfo::allocate(void) {
/*
* If there is no local object, create one.
*
* There is no synchronization needed as only ONE space has access
* to the marked pointer AND the local object.
*/
if (!local())
local(new Object(object()->mutex,object()));
assert(local());
Object* o = object();
if (o->free == 0) {
if (2*o->size <= size_max)
o->size *= 2;
o->free = o->size;
o->cur = Block::allocate(o->size,o->cur);
}
PropInfo* pi = &o->cur->pi[--o->free];
pi->init();
return *pi;
}
}
// STATISTICS: kernel-prop
|