LCOV - code coverage report
Current view: top level - include/llvm/Support - Capacity.h (source / functions) Hit Total Coverage
Test: llvm-toolchain.info Lines: 1 1 100.0 %
Date: 2018-10-20 13:21:21 Functions: 0 0 -
Legend: Lines: hit not hit

          Line data    Source code
       1             : //===--- Capacity.h - Generic computation of ADT memory use -----*- C++ -*-===//
       2             : //
       3             : //                     The LLVM Compiler Infrastructure
       4             : //
       5             : // This file is distributed under the University of Illinois Open Source
       6             : // License. See LICENSE.TXT for details.
       7             : //
       8             : //===----------------------------------------------------------------------===//
       9             : //
      10             : // This file defines the capacity function that computes the amount of
      11             : // memory used by an ADT.
      12             : //
      13             : //===----------------------------------------------------------------------===//
      14             : 
      15             : #ifndef LLVM_SUPPORT_CAPACITY_H
      16             : #define LLVM_SUPPORT_CAPACITY_H
      17             : 
      18             : #include <cstddef>
      19             : 
      20             : namespace llvm {
      21             : 
      22             : template <typename T>
      23             : static inline size_t capacity_in_bytes(const T &x) {
      24             :   // This default definition of capacity should work for things like std::vector
      25             :   // and friends.  More specialized versions will work for others.
      26          20 :   return x.capacity() * sizeof(typename T::value_type);
      27             : }
      28             : 
      29             : } // end namespace llvm
      30             : 
      31             : #endif
      32             : 

Generated by: LCOV version 1.13