This file is indexed.

/usr/include/trilinos/Teuchos_Details_Allocator.hpp is in libtrilinos-teuchos-dev 12.10.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
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
// @HEADER
// ***********************************************************************
//
//                    Teuchos: Common Tools Package
//                 Copyright (2004) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ***********************************************************************
// @HEADER

/// \file Teuchos_Details_Allocator.hpp
/// \brief Declaration of Teuchos::Details::Allocator, a tracking and
///   logging implementation of the C++ Standard Library's Allocator
///   concept.
/// \warning This header file is an implementation detail of Teuchos.
///   We make no promises of backwards compatibility for this header
///   file or its contents.  They may change or disappear at any time.

#ifndef TEUCHOS_DETAILS_ALLOCATOR
#define TEUCHOS_DETAILS_ALLOCATOR

#include <Teuchos_ConfigDefs.hpp>
//#include <memory> // Teuchos_ConfigDefs.hpp includes it
//#include <iostream> // Teuchos_ConfigDefs.hpp includes it
//#include <limits> // Ditto; for std::numeric_limits<size_type>::max()
#ifdef HAVE_TEUCHOSCORE_CXX11
#  include <type_traits>
#endif // HAVE_TEUCHOSCORE_CXX11

namespace Teuchos {
namespace Details {

/// \brief Logging implementation used by Allocator (see below).
///
/// \warning This is an implementation detail of Teuchos.  We make no
///   promises of backwards compatibility for this header file or this
///   class.  They may change or disappear at any time.
///
/// Please refer to
/// <tt> teuchos/core/test/HashTable/Allocator_atexit.cpp </tt>
/// for an example of how to register an atexit() hook that reports
/// current and maximum memory usage at exit from main().  It would
/// be easy to adapt this example to register an MPI_Finalize() hook,
/// using the MPI standard idiom of attaching an attribute to
/// MPI_COMM_SELF.
class AllocationLogger {
public:
  /// \brief Type of the size of an allocation or deallocation.
  ///
  /// This must match Allocator::size_type (see below).
  typedef std::size_t size_type;

  /// \brief Log an allocation.
  ///
  /// This is useful for Allocator<T>, but not so useful for users,
  /// unless they are writing a custom Allocator and want it use this
  /// class for logging.
  ///
  /// \param out [out] Output stream to which to write logging
  ///   information, if \c verbose is true.
  ///
  /// \param numEntries [in] Number of entries (of type \c T) in the
  ///   allocated array (1 if just allocating one instance of \c T).
  ///
  /// \param numBytes [in] Number of bytes in the allocated array.
  ///   This would normally be <tt>numEntries*sizeof(T)</tt>, at least
  ///   for types \c T which are "plain old data" (POD) or structs
  ///   thereof.  We make you compute this, so that the logger doesn't
  ///   have to know about (e.g., be templated on) the type \c T.
  ///
  /// \param typeName [in] Human-readable name of the type \c T, for
  ///   which you are logging an allocation.
  ///
  /// \param verbose [in] Whether to print logging information to the
  ///   given output stream \c out.
  static void
  logAllocation (std::ostream& out,
                 const size_type numEntries,
                 const size_type numBytes,
                 const char typeName[],
                 const bool verbose);

  /// \brief Log a deallocation, that was previously logged using
  ///   logAllocation().
  ///
  /// This is useful for Allocator<T>, but not so useful for users,
  /// unless they are writing a custom Allocator and want it use this
  /// class for logging.
  ///
  /// \param out [out] Output stream to which to write logging
  ///   information, if \c verbose is true.
  ///
  /// \param numEntries [in] Number of entries (of type \c T) in the
  ///   deallocated array (1 if just allocating one instance of \c T).
  ///   Note that the allocate() function in the C++ Standard
  ///   Library's Allocator concept gets this information, unlike
  ///   free() or <tt>operator delete[]</tt>.
  ///
  /// \param numBytes [in] Number of bytes in the deallocated array.
  ///   This would normally be <tt>numEntries*sizeof(T)</tt>, at least
  ///   for types \c T which are "plain old data" (POD) or structs
  ///   thereof.  We make you compute this, so that the logger doesn't
  ///   have to know about (e.g., be templated on) the type \c T.
  ///
  /// \param typeName [in] Human-readable name of the type \c T, for
  ///   which you are logging a deallocation.
  ///
  /// \param verbose [in] Whether to print logging information to the
  ///   given output stream \c out.
  static void
  logDeallocation (std::ostream& out,
                   const size_type numEntries,
                   const size_type numBytes,
                   const char typeName[],
                   const bool verbose);

  /// \brief Current total allocation in bytes.
  ///
  /// This count includes allocations using Allocator<T> for all \c T.
  static size_type curAllocInBytes ();

  /// \brief Max total allocation ("high water mark") in bytes.
  ///
  /// This count includes allocations using Allocator<T> for all \c T.
  static size_type maxAllocInBytes ();

  /// \brief Reset the current and max total allocation numbers to zero.
  ///
  /// This is mainly helpful just for tests.
  static void resetAllocationCounts ();

private:
  //! Current total allocation in bytes.
  static size_type curAllocInBytes_;

  //! Max total allocation ("high water mark") in bytes.
  static size_type maxAllocInBytes_;
};

/// \brief Optional tracking allocator for Teuchos Memory Management classes.
/// \tparam T The type of the entries in arrays to allocate.
///
/// \warning This is an implementation detail of Teuchos.  We make no
///   promises of backwards compatibility for this header file or this
///   class.  They may change or disappear at any time.
///
/// This class implements the C++ Standard Library's "Allocator"
/// concept.  It does "high water mark" tracking, and has the option
/// to print to \c stderr on allocations and deallocations.
///
/// \note To Teuchos developers: Making this class be the "allocator"
///   (second) template parameter of the std::vector type that
///   Teuchos::Array uses, would make Teuchos::Array track memory.
///   (This would require changing Teuchos::Array.)  It should also be
///   possible to change Teuchos::ArrayRCP to use this class as well,
///   but only to track memory that it allocates (vs. memory given it
///   by the user, possibly with a custom deallocator functor).
template<class T>
class Allocator {
private:
  /// \brief Internal enum, identifying whether an operation is an
  ///   allocation or a deallocation.
  enum EAllocatorOp {
    ALLOCATOR_ALLOCATE,
    ALLOCATOR_DEALLOCATE
  };

  //! Whether this Allocator logs.
  bool tracking () const { return track_; }

  //! Whether this allocator prints verbosely.
  bool verbose () const { return verbose_; }

  // This lets tracking() and verbose() stay private,
  // without breaking the templated copy constructor.
  template<class U>
  friend class Allocator;

public:
  //! Type of the template parameter of this class.
  typedef T value_type;

  /// \brief Type of a pointer to T.
  ///
  /// This is only needed for C++98, not for C++11 and newer.
  typedef T* pointer;
  /// \brief Type of a pointer to const T.
  ///
  /// This is only needed for C++98, not for C++11 and newer.
  typedef const T* const_pointer;
  /// \brief Type of a reference to T.
  ///
  /// This is only needed for C++98, not for C++11 and newer.
  typedef T& reference;
  /// \brief Type of a reference to const T.
  ///
  /// This is only needed for C++98, not for C++11 and newer.
  typedef const T& const_reference;

  /// \brief Type of the size of an allocation or deallocation.
  ///
  /// This must match AllocationLogger::size_type (see above).  If we
  /// didn't need this to have the same type as that, then we wouldn't
  /// need this typedef.
  typedef AllocationLogger::size_type size_type;

  /// \typedef difference_type
  /// \brief Integer type representing the difference between two pointers.
  ///
  /// This is only needed for C++98, not for C++11 and newer.
  /// However, we want this typedef to exist in both cases.  Thus, if
  /// C++11 is enabled, we use size_type above to compute this, in
  /// order to ensure consistency.
#ifdef HAVE_TEUCHOSCORE_CXX11
  typedef std::make_signed<size_type>::type difference_type;
#else
  typedef std::ptrdiff_t difference_type;
#endif // HAVE_TEUCHOSCORE_CXX11

  //! Default constructor.
  Allocator () :
    track_ (true), verbose_ (false)
  {}

  /// \brief Constructor.
  ///
  /// \param trackMemory [in] Whether to track memory usage at all.
  ///   If false, verboseOutput is ignored.
  /// \param verboseOutput [in] Whether to print on every allocation
  ///   and deallocation.  Even if this is true, trackMemory must also
  ///   be true in order for this to work.
  Allocator (const bool trackMemory,
             const bool verboseOutput) :
    track_ (trackMemory), verbose_ (verboseOutput)
  {}

  //! Copy constructor that takes an Allocator<U> for any U.
  template<class U>
  Allocator (const Allocator<U>& src) :
    track_ (src.tracking ()), verbose_ (src.verbose ())
  {}

  /// \brief Mapping to an Allocator for a different type \c U.
  ///
  /// Most users do not need this.
  ///
  /// \note To Teuchos developers: This is only optional if the
  ///   Allocator has the form Allocator<T, Args>, where Args is zero
  ///   or more additional template parameters.  I don't want to make
  ///   Allocator require C++11, so it does not have this form.  Thus,
  ///   the rebind struct is required.
  template<class U>
  struct rebind { typedef Allocator<U> other; };

  /// \brief Upper bound (possibly loose) on maximum allocation size.
  ///
  /// Implementations of the Allocator concept should not NEED this
  /// method, but it makes the Clang compiler happy.
  size_type max_size() const {
    return std::numeric_limits<size_type>::max();
  }

  /// \brief Allocate an array of n instances of value_type.
  ///
  /// \param n [in] Number of entries in the array.
  ///
  /// The optional second argument provides an "allocation hint."
  /// This implementation ignores the hint.
  ///
  /// \return The allocated but uninitialized array.
  value_type* allocate (const size_type& n, const void* = 0) {
    if (tracking ()) {
      AllocationLogger::logAllocation (std::cerr, n, n * sizeof (value_type),
                                       typeid (value_type).name (), verbose_);
    }
    return (value_type*) (::operator new (n * sizeof (T)));
  }

  /// \brief Deallocate n instances of value_type.
  ///
  /// \param p [in] Pointer to the array to deallocate.
  /// \param n [in] Number of entries in the array p.
  void deallocate (value_type* p, const size_type& n) {
    if (tracking ()) {
      // Thankfully, this method accepts the array size.  Thus, we don't
      // have to do tricks like allocating extra space and stashing the
      // size in the array.
      AllocationLogger::logDeallocation (std::cerr, n, n * sizeof (value_type),
                                         typeid (value_type).name (), verbose_);
    }
    ::operator delete ((void*) p);
  }

  //! Current total allocation in bytes, over all Allocator<U>.
  size_type curAllocInBytes () {
    return AllocationLogger::curAllocInBytes ();
  }

  //! Max total allocation ("high water mark") in bytes, over all Allocator<U>.
  size_type maxAllocInBytes () {
    return AllocationLogger::maxAllocInBytes ();
  }

#ifndef HAVE_TEUCHOSCORE_CXX11
  /// \brief Invoke the constructor of an instance of \c T, without
  ///   allocating.
  ///
  /// \warning This variant only exists if C++11 is OFF.  C++11
  ///   requires a method with a different signature, but it also
  ///   supplies a good default implementation if this method is
  ///   missing.
  ///
  /// \param p [in] Pointer to an area of memory in which to construct
  ///   a T instance, using placement new.
  /// \param val [in] Argument to T's (copy) constructor.
  void construct (pointer p, const_reference val) {
    new ((void*) p) T (val);
  }
#endif // HAVE_TEUCHOSCORE_CXX11

#ifndef HAVE_TEUCHOSCORE_CXX11
  /// \brief Invoke the destructor of an instance of \c T, without
  ///   deallocating.
  ///
  /// \warning This variant only exists if C++11 is OFF.  C++11
  ///   requires a method with a different signature, but it also
  ///   supplies a good default implementation if this method is
  ///   missing.
  ///
  /// \param p [in] Pointer to an instance of \c T to destroy.
  void destroy (pointer p) {
    ((T*)p)->~T ();
  }
#endif // HAVE_TEUCHOSCORE_CXX11

private:
  bool track_;
  bool verbose_;
};


/// \brief Return true if and only if the two input Allocator
///   instances are interchangeable.
///
/// All instances of our Allocator class use the same memory space,
/// memory pool, and allocation mechanism.  Thus, by this function
/// returning true, we state that all instances of our Allocator class
/// are interchangeable.
template<class T, class U>
bool operator== (const Allocator<T>&, const Allocator<U>&) {
  return true;
}

//! Return <tt> ! (a_t == a_u) </tt> (see above).
template<class T, class U>
bool operator!= (const Allocator<T>& a_t, const Allocator<U>& a_u) {
  return ! (a_t == a_u);
}

} // namespace Details
} // namespace Teuchos

#endif // TEUCHOS_DETAILS_ALLOCATOR