aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/defs.hh
blob: 6571648f7b92e5b717c4b5418283738ba7274306 (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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
#ifndef DEFS_HH
#define DEFS_HH

#include <cctk.h>

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdlib>
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <stack>
#include <vector>

#include "typeprops.hh"



using namespace std;



// Stringify
#define STRINGIFY1(x) #x
#define STRINGIFY(x) STRINGIFY1(x)



// Define the restrict qualifier
#ifdef CCTK_CXX_RESTRICT
#  define restrict CCTK_CXX_RESTRICT
#endif



// Structure member offsets
#undef offsetof
#define offsetof(TYPE,MEMBER) ((size_t)&((TYPE*)0)->MEMBER)
#undef __offsetof__
#define __offsetof__ offsetof



// Number of dimensions
#ifndef CARPET_DIM
#  define CARPET_DIM 3
#endif
const int dim = CARPET_DIM;



// Begin a new line without flushing the output buffer
char const * const eol = "\n";


  
// A compile time pseudo assert statement
#define static_assert(_x, _msg) do { typedef int ai[(_x) ? 1 : -1]; } while(0)



// Check a return value
#define check(_expr) do { bool const _val = (_expr); assert(_val); } while(0)



// Use this macro AT instead of vector's operator[] or at().
// Depending on the macro CARPET_OPTIMISE, this macro AT either checks
// for valid indices or not.
#if ! defined(CARPET_OPTIMISE)
#  define AT(index) at(index)
#else
#  define AT(index) operator[](index)
#endif
  


// Some shortcuts for type names
template<typename T, int D> class vect;
template<typename T, int D> class bbox;
template<typename T, int D> class bboxset;
template<typename T, int D, typename P> class fulltree;

typedef vect<bool,dim>      bvect;
typedef vect<int,dim>       ivect;
typedef vect<CCTK_INT,dim>  jvect;
typedef vect<CCTK_REAL,dim> rvect;
typedef bbox<int,dim>       ibbox;
typedef bbox<CCTK_INT,dim>  jbbox;
typedef bbox<CCTK_REAL,dim> rbbox;
typedef bboxset<int,dim>    ibset;
  
// (Try to replace these by b2vect and i2vect)
typedef vect<vect<bool,2>,dim> bbvect;
typedef vect<vect<int,2>,dim>  iivect;
typedef vect<vect<CCTK_INT,2>,dim> jjvect;

typedef vect<vect<bool,dim>,2> b2vect;
typedef vect<vect<int,dim>,2>  i2vect;
typedef vect<vect<CCTK_INT,dim>,2>  j2vect;
typedef vect<vect<CCTK_REAL,dim>,2> r2vect;



struct pseudoregion_t;
struct region_t;

typedef fulltree<int,dim,pseudoregion_t> ipfulltree;



// A general type
enum centering { error_centered, vertex_centered, cell_centered };



// Useful helper
template<class T>
inline T square (const T x) { return x*x; }

// Another useful helper
template<class T>
T ipow (T x, int y) CCTK_ATTRIBUTE_CONST;



// Access to CarpetLib parameters
CCTK_INT get_poison_value() CCTK_ATTRIBUTE_PURE;
CCTK_INT get_deadbeef() CCTK_ATTRIBUTE_PURE;



// Input streams
struct input_error { };
void skipws (istream& is);
void expect (istream& is, char c);
void consume (istream& is, char c);
void consume (istream& is, char const * c);



// Names for types

#ifdef HAVE_CCTK_INT1
inline const char * typestring (const CCTK_INT1&)
{ return "CCTK_INT1"; }
#endif

#ifdef HAVE_CCTK_INT2
inline const char * typestring (const CCTK_INT2&)
{ return "CCTK_INT2"; }
#endif

#ifdef HAVE_CCTK_INT4
inline const char * typestring (const CCTK_INT4&)
{ return "CCTK_INT4"; }
#endif

#ifdef HAVE_CCTK_INT8
inline const char * typestring (const CCTK_INT8&)
{ return "CCTK_INT8"; }
#endif

#ifdef HAVE_CCTK_REAL4
inline const char * typestring (const CCTK_REAL4&)
{ return "CCTK_REAL4"; }
#endif

#ifdef HAVE_CCTK_REAL8
inline const char * typestring (const CCTK_REAL8&)
{ return "CCTK_REAL8"; }
#endif

#ifdef HAVE_CCTK_REAL16
inline const char * typestring (const CCTK_REAL16&)
{ return "CCTK_REAL16"; }
#endif

#ifdef HAVE_CCTK_REAL4
inline const char * typestring (const CCTK_COMPLEX8&)
{ return "CCTK_COMPLEX8"; }
#endif

#ifdef HAVE_CCTK_REAL8
inline const char * typestring (const CCTK_COMPLEX16&)
{ return "CCTK_COMPLEX16"; }
#endif

#ifdef HAVE_CCTK_REAL16
inline const char * typestring (const CCTK_COMPLEX32&)
{ return "CCTK_COMPLEX32"; }
#endif



// Capture the system's fpclassify, isfinite, isinf, isnan, and
// isnormal functions

// #ifdef HAVE_CCTK_REAL4
// inline int myfpclassify (CCTK_REAL4 const x)
// { return fpclassify (x); }
// #endif
// #ifdef HAVE_CCTK_REAL8
// inline int myfpclassify (CCTK_REAL8 const x)
// { return fpclassify (x); }
// #endif
// #ifdef HAVE_CCTK_REAL16
// inline int myfpclassify (CCTK_REAL16 const x)
// { return fpclassify (x); }
// #endif
// 
// #undef fpclassify

#ifdef HAVE_CCTK_REAL4
inline int myisfinite (CCTK_REAL4 const x)
{ return isfinite (x); }
#endif
#ifdef HAVE_CCTK_REAL8
inline int myisfinite (CCTK_REAL8 const x)
{ return isfinite (x); }
#endif
#ifdef HAVE_CCTK_REAL16
inline int myisfinite (CCTK_REAL16 const x)
{ return isfinite (x); }
#endif

#undef isfinite

#ifdef HAVE_CCTK_REAL4
inline int myisinf (CCTK_REAL4 const x)
{ return isinf (x); }
#endif
#ifdef HAVE_CCTK_REAL8
inline int myisinf (CCTK_REAL8 const x)
{ return isinf (x); }
#endif
#ifdef HAVE_CCTK_REAL16
inline int myisinf (CCTK_REAL16 const x)
{ return isinf (x); }
#endif

#undef isinf

#ifdef HAVE_CCTK_REAL4
inline int myisnan (CCTK_REAL4 const x)
{ return isnan (x); }
#endif
#ifdef HAVE_CCTK_REAL8
inline int myisnan (CCTK_REAL8 const x)
{ return isnan (x); }
#endif
#ifdef HAVE_CCTK_REAL16
inline int myisnan (CCTK_REAL16 const x)
{ return isnan (x); }
#endif

#undef isnan

#ifdef HAVE_CCTK_REAL4
inline int myisnormal (CCTK_REAL4 const x)
{ return isnormal (x); }
#endif
#ifdef HAVE_CCTK_REAL8
inline int myisnormal (CCTK_REAL8 const x)
{ return isnormal (x); }
#endif
#ifdef HAVE_CCTK_REAL16
inline int myisnormal (CCTK_REAL16 const x)
{ return isnormal (x); }
#endif

#undef isnormal



namespace CarpetLib {
  namespace good {
    
    // Explicitly overload some functions for all types in the same
    // namespace CarpetLib::good, to circumvent confusion among some
    // compilers
    
    //
    // abs
    //
    
    template <typename T>
    inline typename typeprops<T>::real abs (T const x)
    { return std::abs (x); }
    
//     // This does not work on Linux with Intel compilers, which do not
//     // always have long long llabs (long long)
//     template<> inline signed char abs<signed char> (signed char const x) { return ::abs (x); }
//     template<> inline unsigned char abs<unsigned char> (unsigned char const x) CCTK_ATTRIBUTE_CONST { return ::abs (x); }
//     template<> inline short abs<short> (short const x) { return ::abs (x); }
//     template<> inline int abs<int> (int const x) { return ::abs (x); }
//     template<> inline long abs<long> (long const x) { return ::labs (x); }
// #ifdef SIZEOF_LONG_LONG
//     inline long long abs<long long> (long long const x) { return ::llabs (x); }
// #endif
    
//     // This template does not work on AIX, which does not have long
//     // long abs (long long)
// #ifdef HAVE_CCTK_INT1
//     template<> inline CCTK_INT1 abs<CCTK_INT1> (CCTK_INT1 const x) { return x < 0 ? - x : x; }
// #endif
// #ifdef HAVE_CCTK_INT2
//     template<> inline CCTK_INT2 abs<CCTK_INT2> (CCTK_INT2 const x)  { return x < 0 ? - x : x; }
// #endif
// #ifdef HAVE_CCTK_INT4
//     template<> inline CCTK_INT4 abs<CCTK_INT4> (CCTK_INT4 const x) { return x < 0 ? - x : x; }
// #endif
// #ifdef HAVE_CCTK_INT8
//     template<> inline CCTK_INT8 abs<CCTK_INT8> (CCTK_INT8 const x) { return x < 0 ? - x : x; }
// #endif
    
#ifdef HAVE_CCTK_COMPLEX8
    template<> inline CCTK_REAL4 abs<CCTK_COMPLEX8> (CCTK_COMPLEX8 const x)
    { return CCTK_Cmplx8Abs (x); }
#endif
#ifdef HAVE_CCTK_COMPLEX16
    template<> inline CCTK_REAL8 abs<CCTK_COMPLEX16> (CCTK_COMPLEX16 const x)
    { return CCTK_Cmplx16Abs (x); }
#endif
#ifdef HAVE_CCTK_COMPLEX32
    template<> inline CCTK_REAL16 abs<CCTK_COMPLEX32> (CCTK_COMPLEX32 const x)
    { return CCTK_Cmplx32Abs (x); }
#endif
    
//     //
//     // fpclassify
//     //
//     
//     // Default implementation, only good for integers
//     template <typename T>
//     inline int fpclassify (T const x)
//     { return x ? FP_NORMAL : FP_ZERO; }
//     
// #ifdef HAVE_CCTK_REAL4
//     template<> inline int fpclassify (CCTK_REAL4 const x)
//     { return myfpclassify (x); }
// #endif
// #ifdef HAVE_CCTK_REAL8
//     template<> inline int fpclassify (CCTK_REAL8 const x)
//     { return myfpclassify (x); }
// #endif
// #ifdef HAVE_CCTK_REAL16
//     template<> inline int fpclassify (CCTK_REAL16 const x)
//     { return myfpclassify (x); }
// #endif
//     
// #ifdef HAVE_CCTK_COMPLEX8
//     template<> inline int fpclassify (CCTK_COMPLEX8 const x)
//     { assert(0); }
// #endif
// #ifdef HAVE_CCTK_COMPLEX16
//     template<> inline int fpclassify (CCTK_COMPLEX16 const x)
//     { assert(0); }
// #endif
// #ifdef HAVE_CCTK_COMPLEX32
//     template<> inline int fpclassify (CCTK_COMPLEX32 const x)
//     { assert(0); }
// #endif
    
    //
    // isfinite
    //
    
    // Default implementation, only good for integers
    template <typename T>
    inline int isfinite (T const x)
    { return 1; }
    
#ifdef HAVE_CCTK_REAL4
    template<> inline int isfinite (CCTK_REAL4 const x)
    { return myisfinite (x); }
#endif
#ifdef HAVE_CCTK_REAL8
    template<> inline int isfinite (CCTK_REAL8 const x)
    { return myisfinite (x); }
#endif
#ifdef HAVE_CCTK_REAL16
    template<> inline int isfinite (CCTK_REAL16 const x)
    { return myisfinite (x); }
#endif
    
#ifdef HAVE_CCTK_COMPLEX8
    template<> inline int isfinite (CCTK_COMPLEX8 const x)
    { return myisfinite (CCTK_Cmplx8Real (x)) and myisfinite (CCTK_Cmplx8Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX16
    template<> inline int isfinite (CCTK_COMPLEX16 const x)
    { return myisfinite (CCTK_Cmplx16Real (x)) and myisfinite (CCTK_Cmplx16Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX32
    template<> inline int isfinite (CCTK_COMPLEX32 const x)
    { return myisfinite (CCTK_Cmplx32Real (x)) and myisfinite (CCTK_Cmplx32Imag (x)); }
#endif
    
    //
    // isinf
    //
    
    // Default implementation, only good for integers
    template <typename T>
    inline int isinf (T const x)
    { return 0; }
    
#ifdef HAVE_CCTK_REAL4
    template<> inline int isinf (CCTK_REAL4 const x)
    { return myisinf (x); }
#endif
#ifdef HAVE_CCTK_REAL8
    template<> inline int isinf (CCTK_REAL8 const x)
    { return myisinf (x); }
#endif
#ifdef HAVE_CCTK_REAL16
    template<> inline int isinf (CCTK_REAL16 const x)
    { return myisinf (x); }
#endif
    
#ifdef HAVE_CCTK_COMPLEX8
    template<> inline int isinf (CCTK_COMPLEX8 const x)
    { return myisinf (CCTK_Cmplx8Real (x)) or myisinf (CCTK_Cmplx8Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX16
    template<> inline int isinf (CCTK_COMPLEX16 const x)
    { return myisinf (CCTK_Cmplx16Real (x)) or myisinf (CCTK_Cmplx16Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX32
    template<> inline int isinf (CCTK_COMPLEX32 const x)
    { return myisinf (CCTK_Cmplx32Real (x)) or myisinf (CCTK_Cmplx32Imag (x)); }
#endif
    
    //
    // isnan
    //
    
    // Default implementation, only good for integers
    template <typename T>
    inline int isnan (T const x)
    { return 0; }
    
#ifdef HAVE_CCTK_REAL4
    template<> inline int isnan (CCTK_REAL4 const x)
    { return myisnan (x); }
#endif
#ifdef HAVE_CCTK_REAL8
    template<> inline int isnan (CCTK_REAL8 const x)
    { return myisnan (x); }
#endif
#ifdef HAVE_CCTK_REAL16
    template<> inline int isnan (CCTK_REAL16 const x)
    { return myisnan (x); }
#endif
    
#ifdef HAVE_CCTK_COMPLEX8
    template<> inline int isnan (CCTK_COMPLEX8 const x)
    { return myisnan (CCTK_Cmplx8Real (x)) or myisnan (CCTK_Cmplx8Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX16
    template<> inline int isnan (CCTK_COMPLEX16 const x)
    { return myisnan (CCTK_Cmplx16Real (x)) or myisnan (CCTK_Cmplx16Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX32
    template<> inline int isnan (CCTK_COMPLEX32 const x)
    { return myisnan (CCTK_Cmplx32Real (x)) or myisnan (CCTK_Cmplx32Imag (x)); }
#endif
    
    //
    // isnormal
    //
    
    // Default implementation, only good for integers
    template <typename T>
    inline int isnormal (T const x)
    { return 1; }
    
#ifdef HAVE_CCTK_REAL4
    template<> inline int isnormal (CCTK_REAL4 const x)
    { return myisnormal (x); }
#endif
#ifdef HAVE_CCTK_REAL8
    template<> inline int isnormal (CCTK_REAL8 const x)
    { return myisnormal (x); }
#endif
#ifdef HAVE_CCTK_REAL16
    template<> inline int isnormal (CCTK_REAL16 const x)
    { return myisnormal (x); }
#endif
    
#ifdef HAVE_CCTK_COMPLEX8
    template<> inline int isnormal (CCTK_COMPLEX8 const x)
    { return myisnormal (CCTK_Cmplx8Real (x)) and myisnormal (CCTK_Cmplx8Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX16
    template<> inline int isnormal (CCTK_COMPLEX16 const x)
    { return myisnormal (CCTK_Cmplx16Real (x)) and myisnormal (CCTK_Cmplx16Imag (x)); }
#endif
#ifdef HAVE_CCTK_COMPLEX32
    template<> inline int isnormal (CCTK_COMPLEX32 const x)
    { return myisnormal (CCTK_Cmplx32Real (x)) and myisnormal (CCTK_Cmplx32Imag (x)); }
#endif
    
  } // namespace good
} // namespace CarpetLib



// Use #defines to access the CarpetLib::good functions from the
// global namespace.  Because macros are not scoped, this makes the
// corresponding functions in CarpetLib::good inaccessible, so we
// rename them by adding an underscore.

namespace CarpetLib {
  namespace good {
    
#define ALIAS_GOOD_FUNCTION(typ,func)           \
    template <typename T>                       \
    inline typ func##_ (T const x)              \
    { return func (x); }

    // ALIAS_GOOD_FUNCTION(int,fpclassify)
    ALIAS_GOOD_FUNCTION(int,isfinite)
    ALIAS_GOOD_FUNCTION(int,isinf)
    ALIAS_GOOD_FUNCTION(int,isnan)
    ALIAS_GOOD_FUNCTION(int,isnormal)

#undef ALIAS_GOOD_FUNCTION
    
  } // namespace good
}   // namespace CarpetLib

#define isfinite (::CarpetLib::good::isfinite_)
#define isinf    (::CarpetLib::good::isinf_)
#define isnan    (::CarpetLib::good::isnan_)
#define isnormal (::CarpetLib::good::isnormal_)



// Container equality
template <typename T>
bool equals (vector<T> const& v, vector<T> const& w)
{
  if (v.size() != w.size()) return false;
  for (size_t i=0; i<v.size(); ++i) {
    if (v.AT(i) != w.AT(i)) return false;
  }
  return true;
}



// Container memory usage
inline size_t memoryof (char const & e) { return sizeof e; }
inline size_t memoryof (short const & e) { return sizeof e; }
inline size_t memoryof (int const & e) { return sizeof e; }
inline size_t memoryof (long const & e) { return sizeof e; }
inline size_t memoryof (long long const & e) { return sizeof e; }
inline size_t memoryof (unsigned char const & e) { return sizeof e; }
inline size_t memoryof (unsigned short const & e) { return sizeof e; }
inline size_t memoryof (unsigned int const & e) { return sizeof e; }
inline size_t memoryof (unsigned long const & e) { return sizeof e; }
inline size_t memoryof (unsigned long long const & e) { return sizeof e; }
inline size_t memoryof (float const & e) { return sizeof e; }
inline size_t memoryof (double const & e) { return sizeof e; }
inline size_t memoryof (long double const & e) { return sizeof e; }
inline size_t memoryof (void const * const & e) { return sizeof e; }
template<class T> inline size_t memoryof (T const * const & e) { return sizeof e; }
template<class T> inline size_t memoryof (typename list<T>::iterator const & i) { return sizeof i; }
template<class T> inline size_t memoryof (typename list<T>::const_iterator const & i) { return sizeof i; }

template<class T> size_t memoryof (list<T> const & c) CCTK_ATTRIBUTE_PURE;
template<class T> size_t memoryof (set<T> const & c) CCTK_ATTRIBUTE_PURE;
template<class T> size_t memoryof (stack<T> const & c) CCTK_ATTRIBUTE_PURE;
template<class T> size_t memoryof (vector<T> const & c) CCTK_ATTRIBUTE_PURE;



// Container input
template<class T> istream& input (istream& is, list<T>& l);
template<class T> istream& input (istream& is, set<T>& s);
template<class T> istream& input (istream& is, vector<T>& v);

template<class T>
inline istream& operator>> (istream& is, list<T>& l) {
  return input(is,l);
}

template<class T>
inline istream& operator>> (istream& is, set<T>& s) {
  return input(is,s);
}

template<class T>
inline istream& operator>> (istream& is, vector<T>& v) {
  return input(is,v);
}



// Container output
template<class T> ostream& output (ostream& os, const list<T>& l);
template<class S, class T> ostream& output (ostream& os, const map<S,T>& m);
template<class S, class T> ostream& output (ostream& os, const pair<S,T>& p);
template<class T> ostream& output (ostream& os, const set<T>& s);
template<class T> ostream& output (ostream& os, const stack<T>& s);
template<class T> ostream& output (ostream& os, const vector<T>& v);

template<class T>
inline ostream& operator<< (ostream& os, const list<T>& l) {
  return output(os,l);
}

template<class S, class T>
inline ostream& operator<< (ostream& os, const map<S,T>& m) {
  return output(os,m);
}

template<class T>
inline ostream& operator<< (ostream& os, const set<T>& s) {
  return output(os,s);
}

template<class T>
inline ostream& operator<< (ostream& os, const stack<T>& s) {
  return output(os,s);
}

template<class T>
inline ostream& operator<< (ostream& os, const vector<T>& v) {
  return output(os,v);
}



#endif // DEFS_HH