From dbc43ca393468029f0d4f274519efd47358c2f35 Mon Sep 17 00:00:00 2001 From: podlesny <podlesny@zedat.fu-berlin.de> Date: Mon, 15 Jun 2020 16:32:30 +0200 Subject: [PATCH] . --- .../faultfactories/rockfaultfactory.hh | 174 +- dune/faultnetworks/faultp1nodalbasis.hh | 2 + .../results/sparse/plot.tex | 2 +- .../sparsecantorfaultnetwork.cc | 7 +- src/geofaultnetworks/CMakeLists.txt | 7 +- src/geofaultnetworks/callgrind.out.22801 | 67323 ++++++++++++++++ src/geofaultnetworks/results/rock/plot.tex | 25 + src/geofaultnetworks/rockfaultnetwork.cc | 376 + src/geofaultnetworks/rockfaultnetwork.parset | 31 + 9 files changed, 67870 insertions(+), 77 deletions(-) create mode 100644 src/geofaultnetworks/callgrind.out.22801 create mode 100644 src/geofaultnetworks/results/rock/plot.tex create mode 100644 src/geofaultnetworks/rockfaultnetwork.cc create mode 100644 src/geofaultnetworks/rockfaultnetwork.parset diff --git a/dune/faultnetworks/faultfactories/rockfaultfactory.hh b/dune/faultnetworks/faultfactories/rockfaultfactory.hh index 31e0f13..ed50053 100644 --- a/dune/faultnetworks/faultfactories/rockfaultfactory.hh +++ b/dune/faultnetworks/faultfactories/rockfaultfactory.hh @@ -127,8 +127,11 @@ protected: const auto& vertex = vertexPositions_[isDof]; ID IDs = {computeID(vertex, 0), computeID(vertex, 1)}; + if ((centerIDs[0]==IDs[0]) and (centerIDs[1]==IDs[1])) + return true; + auto val = direction[dim]; - bool centerPassed = ((0 < val) - (val < 0)>0) ? (centerIDs[dim]<IDs[dim]) : (centerIDs[dim]>IDs[dim]); + bool centerPassed = ((0 < val) - (val < 0)>0) ? (centerIDs[dim]<=IDs[dim]) : (centerIDs[dim]>=IDs[dim]); if (faultDofs.count(isDof) or separatingIDs.count(IDs[otherDim]) or centerPassed or deadendDofs.count(isDof)) { return false; } @@ -147,6 +150,7 @@ protected: //works only in 2D, vertex(1) = vertex(0) - yid, intersection of line (given by vertex and derivative 1) with y axis int computeID(const Coords& vertex, int dim) const { + auto v = vertex; return (int) (vertex[dim]*resolution_); } @@ -231,7 +235,7 @@ protected: }*/ - void generateFault(std::shared_ptr<FaultInterface<GV>> fault, const size_t faultSeedIdx, const Coords& center, + bool generateFault(std::shared_ptr<FaultInterface<GV>> fault, const size_t faultSeedIdx, const Coords& center, const size_t corridor, const std::set<size_t>& separatingDofs) { //std::cout << "LevelGeoFaultFactory::generateFault() " << std::endl; @@ -263,7 +267,7 @@ protected: faultDofs.push_back(faultSeedIdx); faultDofSet.insert(faultSeedIdx); - std::vector<size_t> faultFaces; + std::vector<size_t> faultFaces(0); std::map<size_t, std::vector<size_t>> vertexToAdmissibleFaces; @@ -303,13 +307,18 @@ protected: std::vector<size_t>& suitableFaces = vertexToAdmissibleFaces[vertexID]; if (suitableFaces.size()==0) { - faultDofSet.erase(faultDofs.back()); - faultDofs.pop_back(); - faultFaces.pop_back(); - vertexToAdmissibleFaces.erase(vertexID); + if (faultDofs.size()>0) { + faultDofSet.erase(faultDofs.back()); + faultDofs.pop_back(); + faultFaces.pop_back(); + vertexToAdmissibleFaces.erase(vertexID); + + deadendDofs.insert(vertexID); + } - deadendDofs.insert(vertexID); - vertexQueue.push(faultDofs.back()); + if (faultDofs.size()>0) { + vertexQueue.push(faultDofs.back()); + } } else { // generate random number from (0,1) @@ -337,16 +346,13 @@ protected: } } - if (!success) { - std::cout << "Generating a fault failed: Unable to reach target boundary! This should not happend!" << std::endl; - DUNE_THROW(Dune::Exception, "Generating a fault failed: Unable to reach target boundary!"); - } - - for (size_t i=0; i<faultFaces.size(); i++) { - fault->addFace(faces_[faultFaces[i]]); + if (success) { + for (size_t i=0; i<faultFaces.size(); i++) { + fault->addFace(faces_[faultFaces[i]]); + } } - //std::cout << "------------------------------------- " << std::endl << std::endl; + return success; } auto searchDof(const ID& IDs, const std::set<size_t>& separatingDofs, size_t dim, int dir) { @@ -374,12 +380,12 @@ protected: return lastDof; } + void createRock(MyRock& rock, const Coords& center, const std::set<size_t>& separatingDofs, const std::set<size_t>& xFaultDofs, bool xFaultBottom, const std::set<size_t>& yFaultDofs, bool yFaultRight) { rock.level = level_; - rock.center = center; const ID centerIDs = {computeID(center, 0), computeID(center, 1)}; @@ -432,69 +438,98 @@ protected: return 100.0*res > prob; } + void appendFaultDofs(const std::shared_ptr<FaultInterface<GV>>& fault, const size_t centerIdx, std::set<size_t>& dofs) { + const auto& faultDofs = fault->getInterfaceDofs(); + dofs.insert(faultDofs.begin(), faultDofs.end()); + dofs.erase(centerIdx); + } + void split(const MyRock& rock, const std::set<size_t>& separatingDofs) { + auto forbiddenDofs = separatingDofs; + Rock newRock; prolong(rock, newRock); + std::set<int> set; + set.insert(newRock.left); + set.insert(newRock.right); + set.insert(newRock.top); + set.insert(newRock.bottom); + bool canSplit = (set.size()==4); + bool toBeSplit = (rock.level == coarseLevelFactory_.level()) and randomSplit(rock); - if (!toBeSplit) { + if (!toBeSplit or !canSplit) { rocks_.push_back(newRock); } else { const ID centerIDs = {computeID(newRock.center, 0), computeID(newRock.center, 1)}; + const size_t centerIdx = IDsToDof_[centerIDs]; - size_t xCorridor = 1.0/4 * std::min(centerIDs[0] - vertexIDs_[newRock.left][0], + size_t xCorridor = 1.0/2 * std::min(centerIDs[0] - vertexIDs_[newRock.left][0], vertexIDs_[newRock.right][0] - centerIDs[0]); - size_t yCorridor = 1.0/4 * std::min(centerIDs[1] - vertexIDs_[newRock.bottom][1], + size_t yCorridor = 1.0/2 * std::min(centerIDs[1] - vertexIDs_[newRock.bottom][1], vertexIDs_[newRock.top][1] - centerIDs[1]); + auto& l = vertexIDs_[newRock.left]; + auto& r = vertexIDs_[newRock.right]; + auto& t = vertexIDs_[newRock.top]; + auto& b = vertexIDs_[newRock.bottom]; + // split rock into 4 subparts by 4 new faults intersecting at center of rock std::shared_ptr<FaultInterface<GV>> x1Fault = std::make_shared<FaultInterface<GV>>(gridView_, level_); - generateFault(x1Fault, newRock.left, newRock.center, yCorridor, separatingDofs); - faults_.push_back(x1Fault); + auto x1 = generateFault(x1Fault, newRock.left, newRock.center, yCorridor, forbiddenDofs); + appendFaultDofs(x1Fault, centerIdx, forbiddenDofs); std::shared_ptr<FaultInterface<GV>> x2Fault = std::make_shared<FaultInterface<GV>>(gridView_, level_); - generateFault(x2Fault, newRock.right, newRock.center, yCorridor, separatingDofs); - faults_.push_back(x2Fault); + auto x2 = generateFault(x2Fault, newRock.right, newRock.center, yCorridor, forbiddenDofs); + appendFaultDofs(x2Fault, centerIdx, forbiddenDofs); std::shared_ptr<FaultInterface<GV>> y1Fault = std::make_shared<FaultInterface<GV>>(gridView_, level_); - generateFault(y1Fault, newRock.bottom, newRock.center, xCorridor, separatingDofs); - faults_.push_back(y1Fault); + auto y1 = generateFault(y1Fault, newRock.bottom, newRock.center, xCorridor, forbiddenDofs); + appendFaultDofs(y1Fault, centerIdx, forbiddenDofs); std::shared_ptr<FaultInterface<GV>> y2Fault = std::make_shared<FaultInterface<GV>>(gridView_, level_); - generateFault(y2Fault, newRock.top, newRock.center, xCorridor, separatingDofs); - faults_.push_back(y2Fault); - - auto left = vertexPositions_[newRock.left]; - auto right = vertexPositions_[newRock.right]; - auto top = vertexPositions_[newRock.top]; - auto bottom = vertexPositions_[newRock.bottom]; - - MyRock rock00; - auto center00 = 1.0/2*(right + bottom); - createRock(rock00, center00, separatingDofs, x2Fault->getInterfaceDofs(), 0, y1Fault->getInterfaceDofs(), 0); - rocks_.push_back(rock00); - - MyRock rock01; - auto center01 = 1.0/2*(left + bottom); - createRock(rock01, center01, separatingDofs, x1Fault->getInterfaceDofs(), 0, y1Fault->getInterfaceDofs(), 1); - rocks_.push_back(rock01); - - MyRock rock10; - auto center10 = 1.0/2*(right + top); - createRock(rock10, center10, separatingDofs, x2Fault->getInterfaceDofs(), 1, y2Fault->getInterfaceDofs(), 0); - rocks_.push_back(rock10); - - MyRock rock11; - auto center11 = 1.0/2*(left + top); - createRock(rock11, center11, separatingDofs, x1Fault->getInterfaceDofs(), 1, y2Fault->getInterfaceDofs(), 1); - rocks_.push_back(rock11); + auto y2 = generateFault(y2Fault, newRock.top, newRock.center, xCorridor, forbiddenDofs); + + bool generatingFaultsSuccessful = x1 and x2 and y1 and y2; + + if (generatingFaultsSuccessful) { + faults_.push_back(x1Fault); + faults_.push_back(x2Fault); + faults_.push_back(y1Fault); + faults_.push_back(y2Fault); + + auto left = vertexPositions_[newRock.left]; + auto right = vertexPositions_[newRock.right]; + auto top = vertexPositions_[newRock.top]; + auto bottom = vertexPositions_[newRock.bottom]; + + MyRock rock00; + auto center00 = 1.0/2*(right + bottom); + createRock(rock00, center00, separatingDofs, x2Fault->getInterfaceDofs(), 0, y1Fault->getInterfaceDofs(), 0); + rocks_.push_back(rock00); + + MyRock rock01; + auto center01 = 1.0/2*(left + bottom); + createRock(rock01, center01, separatingDofs, x1Fault->getInterfaceDofs(), 0, y1Fault->getInterfaceDofs(), 1); + rocks_.push_back(rock01); + + MyRock rock10; + auto center10 = 1.0/2*(right + top); + createRock(rock10, center10, separatingDofs, x2Fault->getInterfaceDofs(), 1, y2Fault->getInterfaceDofs(), 0); + rocks_.push_back(rock10); + + MyRock rock11; + auto center11 = 1.0/2*(left + top); + createRock(rock11, center11, separatingDofs, x1Fault->getInterfaceDofs(), 1, y2Fault->getInterfaceDofs(), 1); + rocks_.push_back(rock11); + } } } public: LevelRockFaultFactory(const std::shared_ptr<GridType> grid, const int level, const ctype resolution, - const LevelRockFaultFactory* coarseLevelFactory, - const double splittingThreshold = 1.0, const double maxAngle = 2) : + const std::shared_ptr<LevelRockFaultFactory> coarseLevelFactory, + const double splittingThreshold = 1.0, const double maxAngle = 2.0) : grid_(grid), level_(level), resolution_(resolution), @@ -519,18 +554,19 @@ protected: const int faceID = faceMapper_.subIndex(elem, isect.indexInInside(), 1); - if (isect.boundary()) { - std::set<size_t> intersectionDofs; - computeIntersectionDofs(isect, intersectionDofs); - boundaryDofs_.insert(intersectionDofs.begin(), intersectionDofs.end()); - } - if (faceHandled[faceID]) continue; faceHandled[faceID] = true; faces_[faceID] = isect; + if (isect.boundary()) { + std::set<size_t> intersectionDofs; + computeIntersectionDofs(isect, intersectionDofs); + boundaryDofs_.insert(intersectionDofs.begin(), intersectionDofs.end()); + continue; + } + const auto& refElement = Dune::ReferenceElements<double,dimElement>::general(elem.type()); for (int i=0; i<refElement.size(isect.indexInInside(), 1, dimElement); i++) { @@ -711,20 +747,20 @@ public: // init level 0 rockFaultFactory levelResolutions_[0] = std::pow(2, coarseResolution_); - InitLevelRockFaultFactory<GridType> initFactory(grid_, 0, levelResolutions_[0]); + auto initFactory = std::make_shared<InitLevelRockFaultFactory<GridType>>(grid_, 0, levelResolutions_[0]); std::set<size_t> boundaryDofs; - BoundaryIterator<GV> bIt(initFactory.gridView(), BoundaryIterator<GV>::begin); - BoundaryIterator<GV> bEnd(initFactory.gridView(), BoundaryIterator<GV>::end); + BoundaryIterator<GV> bIt(initFactory->gridView(), BoundaryIterator<GV>::begin); + BoundaryIterator<GV> bEnd(initFactory->gridView(), BoundaryIterator<GV>::end); for(; bIt!=bEnd; ++bIt) { std::set<size_t> intersectionDofs; - initFactory.computeIntersectionDofs(*bIt, intersectionDofs); + initFactory->computeIntersectionDofs(*bIt, intersectionDofs); boundaryDofs.insert(intersectionDofs.begin(), intersectionDofs.end()); } - initFactory.build(boundaryDofs); + initFactory->build(boundaryDofs); - levelRockFaultFactories_[0] = std::make_shared<LevelRockFaultFactory<GridType>>(grid_, 0, levelResolutions_[0], &initFactory, 0.0); + levelRockFaultFactories_[0] = std::make_shared<LevelRockFaultFactory<GridType>>(grid_, 0, levelResolutions_[0], initFactory, 0.0, maxAngle); levelRockFaultFactories_[0]->build(boundaryDofs); auto faults = levelRockFaultFactories_[0]->faults(); @@ -737,7 +773,7 @@ public: levelResolutions_[i] = std::pow(2, coarseResolution_+i); //generate faults on level - levelRockFaultFactories_[i] = std::make_shared<LevelRockFaultFactory<GridType>>(grid_, i, levelResolutions_[i], levelRockFaultFactories_[i-1].get(), (i==1)*0.5 + (i>1)*1.0); + levelRockFaultFactories_[i] = std::make_shared<LevelRockFaultFactory<GridType>>(grid_, i, levelResolutions_[i], levelRockFaultFactories_[i-1], (i==1)*0.5 + (i>1)*1.0, maxAngle); levelRockFaultFactories_[i]->build(interfaceNetwork_->getInterfaceNetworkDofs(i)); faults = levelRockFaultFactories_[i]->faults(); diff --git a/dune/faultnetworks/faultp1nodalbasis.hh b/dune/faultnetworks/faultp1nodalbasis.hh index 3a62c6f..a0555ed 100644 --- a/dune/faultnetworks/faultp1nodalbasis.hh +++ b/dune/faultnetworks/faultp1nodalbasis.hh @@ -17,6 +17,8 @@ #include <dune/faultnetworks/levelinterfacenetwork.hh> +#include <dune/faultnetworks/utils/debugutils.hh> + template <class GV, class RT=double> class FaultP1NodalBasis : public P1NodalBasis< diff --git a/src/cantorfaultnetworks/results/sparse/plot.tex b/src/cantorfaultnetworks/results/sparse/plot.tex index 6633d7c..baea5c3 100644 --- a/src/cantorfaultnetworks/results/sparse/plot.tex +++ b/src/cantorfaultnetworks/results/sparse/plot.tex @@ -17,7 +17,7 @@ \hspace{3em} \begin{minipage}[t]{0.45\linewidth} \flushright - \input{levelinterfacenetwork_3.tikz}\\ + %\input{levelinterfacenetwork_3.tikz}\\ \vspace{2em} %\input{levelinterfacenetwork_4.tikz} \vfill diff --git a/src/cantorfaultnetworks/sparsecantorfaultnetwork.cc b/src/cantorfaultnetworks/sparsecantorfaultnetwork.cc index 9297708..8c1da5b 100644 --- a/src/cantorfaultnetworks/sparsecantorfaultnetwork.cc +++ b/src/cantorfaultnetworks/sparsecantorfaultnetwork.cc @@ -59,7 +59,6 @@ #include <dune/faultnetworks/dgmgtransfer.hh> #include <dune/faultnetworks/faultfactories/sparsecantorfaultfactory.hh> -#include <dune/faultnetworks/faultfactories/rockfaultfactory.hh> #include <dune/solvers/solvers/loopsolver.hh> @@ -152,11 +151,7 @@ int main(int argc, char** argv) { try const int exactLevelIdx = 2*(maxCantorLevel - minCantorLevel); // build multilevel cantor fault network - //SparseCantorFaultFactory<GridType> faultFactory(minCantorLevel, maxCantorLevel); - //const auto& interfaceNetwork = faultFactory.interfaceNetwork(); - - std::srand(5); - RockFaultFactory<GridType> faultFactory(5, 1); + SparseCantorFaultFactory<GridType> faultFactory(minCantorLevel, maxCantorLevel); const auto& interfaceNetwork = faultFactory.interfaceNetwork(); if (problemCount==0) { diff --git a/src/geofaultnetworks/CMakeLists.txt b/src/geofaultnetworks/CMakeLists.txt index 1b370c6..abd0662 100644 --- a/src/geofaultnetworks/CMakeLists.txt +++ b/src/geofaultnetworks/CMakeLists.txt @@ -1,8 +1,13 @@ add_executable("geofaultnetwork" geofaultnetwork.cc) target_link_dune_default_libraries("geofaultnetwork") +add_executable("rockfaultnetwork" rockfaultnetwork.cc) +target_link_dune_default_libraries("rockfaultnetwork") + add_custom_target(geofaultnetworks_srcs SOURCES geofaultnetwork.parset ) - +add_custom_target(rockfaultnetworks_srcs SOURCES +rockfaultnetwork.parset +) diff --git a/src/geofaultnetworks/callgrind.out.22801 b/src/geofaultnetworks/callgrind.out.22801 new file mode 100644 index 0000000..ab7bf31 --- /dev/null +++ b/src/geofaultnetworks/callgrind.out.22801 @@ -0,0 +1,67323 @@ +# callgrind format +version: 1 +creator: callgrind-3.15.0 +pid: 22801 +cmd: /home/joscha/Desktop/dune/build-debug/dune-faultnetworks/src/geofaultnetworks/rockfaultnetwork +part: 1 + + +desc: I1 cache: +desc: D1 cache: +desc: LL cache: + +desc: Timerange: Basic block 0 - 3113981828 +desc: Trigger: Program termination + +positions: line +events: Ir +summary: 22494912406 + + +ob=(12) /usr/lib/x86_64-linux-gnu/libmetis.so.5.1.0 +fl=(197) ??? +fn=(1276) 0x000000000000c6c0 +0 17 + +ob=(2) ??? +fl=(18) ??? +fn=(552) 0x000000000592d330 +0 20 +cob=(3) /usr/lib/x86_64-linux-gnu/libc-2.30.so +cfi=(150) /build/glibc-t7JzpG/glibc-2.30/malloc/malloc.c +cfn=(554) malloc +calls=10 3023 +0 2184 + +fn=(566) 0x0000000004e88610 +0 16 +cob=(3) +cfi=(165) /build/glibc-t7JzpG/glibc-2.30/stdio-common/reg-printf.c +cfn=(570) register_printf_specifier +calls=7 44 +0 210 +cob=(1) /usr/lib/x86_64-linux-gnu/ld-2.30.so +cfi=(125) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86_64/dl-trampoline.h +cfn=(378) _dl_runtime_resolve_xsave +calls=1 67 +0 6105 +0 5 + +fn=(590) 0x00000000058cc000 +0 7 + +fn=(970) 0x0000000006136000 +0 7 + +fn=(1782) 0x0000000005626710 +0 2 +cob=(1) +cfi=(125) +cfn=(379) _dl_runtime_resolve_xsave'2 +calls=1 67 +0 31727 +0 5 + +fn=(1788) 0x0000000005627600 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 30371 +0 5 + +fn=(1818) 0x0000000005627a20 +0 24 +cob=(14) /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28 +cfi=(199) ??? +cfn=(1822) std::ctype<wchar_t>::_M_convert_to_wmask(unsigned short) const +calls=11 0 +0 3637 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3051 +0 5 + +fn=(1830) 0x000000000592d5c0 +0 98 +cob=(3) +cfi=(231) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memcmp-avx2-movbe.S +cfn=(1832) __memcmp_avx2_movbe +calls=49 59 +0 1107 + +fn=(1864) 0x0000000005627dd0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1825 +0 5 + +fn=(1908) 0x0000000005629940 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1861 +0 5 + +fn=(1998) 0x0000000005628650 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1438 +0 5 + +fn=(2084) 0x0000000005626230 +0 110 +cob=(14) +cfi=(199) +cfn=(2088) std::ctype<char> const& std::use_facet<std::ctype<char> >(std::locale const&) +calls=54 0 +0 9288 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1663 +0 5 + +fn=(2134) 0x00000000056261b0 +0 8 +cob=(14) +cfi=(199) +cfn=(2138) std::ctype<wchar_t> const& std::use_facet<std::ctype<wchar_t> >(std::locale const&) +calls=3 0 +0 360 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1611 +0 5 + +fn=(2164) 0x00000000003996a0 +0 64 +cob=(3) +cfi=(200) /build/glibc-t7JzpG/glibc-2.30/stdlib/cxa_atexit.c +cfn=(1320) __cxa_atexit +calls=32 69 +0 2617 + +fn=(2442) 0x00000000003999f0 +0 48 +cob=(14) +cfi=(199) +cfn=(2444) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider::_Alloc_hider(char*, std::allocator<char> const&) +calls=24 0 +0 72 + +fn=(2522) 0x0000000005628a90 +0 6 +cob=(14) +cfi=(199) +cfn=(2526) std::codecvt<char, char, __mbstate_t> const& std::use_facet<std::codecvt<char, char, __mbstate_t> >(std::locale const&) +calls=2 0 +0 240 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1784 +0 5 + +fn=(2584) 0x0000000005626940 +0 6 +cob=(14) +cfi=(199) +cfn=(2588) std::basic_filebuf<char, std::char_traits<char> >::_M_allocate_internal_buffer() +calls=2 0 +0 1015 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1999 +0 5 + +fn=(2594) 0x0000000005629760 +0 72 +cob=(14) +cfi=(199) +cfn=(2598) std::basic_ios<char, std::char_traits<char> >::clear(std::_Ios_Iostate) +calls=35 0 +0 245 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1642 +0 5 + +fn=(2634) 0x00000000003994a0 +0 52 +cob=(14) +cfi=(199) +cfn=(2636) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::append(char const*) +calls=26 0 +0 4159 + +fn=(2732) 0x00000000003996b0 +0 140 +cob=(14) +cfi=(199) +cfn=(2734) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_first_not_of(char const*, unsigned long) const +calls=70 0 +0 8003 + +fn=(2750) 0x0000000000399320 +0 168 +cob=(14) +cfi=(199) +cfn=(2752) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=84 0 +0 3086 + +fn=(2806) 0x00000000003993b0 +0 32 +cob=(14) +cfi=(199) +cfn=(2808) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::length() const +calls=16 0 +0 48 + +fn=(2908) 0x00000000003993e0 +0 194 +cob=(14) +cfi=(199) +cfn=(2910) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_copy_chars(char*, char*, char*) +calls=97 0 +0 1527 + +fn=(3040) 0x0000000005629a30 +0 34 +cob=(14) +cfi=(199) +cfn=(3044) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_assign(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 0 +0 1239 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1828 +0 5 + +fn=(3404) 0x0000000005629380 +0 8 +cob=(14) +cfi=(199) +cfn=(3408) std::__basic_file<char>::close() +calls=3 0 +0 474 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3363 +0 5 + +fn=(3606) 0x0000000005627d10 +0 10 +cob=(14) +cfi=(199) +cfn=(3610) std::istreambuf_iterator<char, std::char_traits<char> > std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > >::_M_extract_int<long>(std::istreambuf_iterator<char, std::char_traits<char> >, std::istreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, std::_Ios_Iostate&, long&) const +calls=4 0 +0 997 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 2382 +0 5 + +fn=(3666) 0x0000000005629c80 +0 6 +cob=(14) +cfi=(199) +cfn=(3670) std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > >::_M_extract_float(std::istreambuf_iterator<char, std::char_traits<char> >, std::istreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, std::_Ios_Iostate&, std::string&) const +calls=2 0 +0 2250 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2322 +0 5 + +fn=(3678) 0x0000000005628cd0 +0 6 +cob=(3) +cfi=(311) /build/glibc-t7JzpG/glibc-2.30/stdlib/strtod_l.c +cfn=(3682) strtod_l +calls=2 1783 +0 1213 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1850 +0 5 + +fn=(3762) 0x0000000000398f30 +0 2 +cob=(14) +cfi=(199) +cfn=(3764) std::basic_ofstream<char, std::char_traits<char> >::basic_ofstream(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::_Ios_Openmode) +calls=1 0 +0 3922 + +fn=(3780) 0x00000000003994b0 +0 2 +cob=(14) +cfi=(199) +cfn=(3782) std::basic_ios<char, std::char_traits<char> >::rdbuf(std::basic_streambuf<char, std::char_traits<char> >*) +calls=1 0 +0 18 + +fn=(3804) 0x0000000005626dd0 +0 16 +cob=(14) +cfi=(199) +cfn=(3808) std::ostream::sentry::~sentry() +calls=7 0 +0 49 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1290 +0 5 + +fn=(3810) 0x0000000005628320 +0 10 +cob=(14) +cfi=(199) +cfn=(3814) std::ostream::flush() +calls=4 0 +0 760 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 6151 +0 5 + +fn=(3964) 0x0000000005627ad0 +0 12 +cob=(14) +cfi=(199) +cfn=(3968) std::__cxx11::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >::_M_pbump(char*, char*, long) +calls=5 0 +0 50 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1755 +0 5 + +fn=(3972) 0x0000000000399150 +0 46 +cob=(14) +cfi=(199) +cfn=(3974) std::basic_ios<char, std::char_traits<char> >::operator bool() const +calls=23 0 +0 92 + +fn=(4272) 0x0000000000399700 +0 4737414 +cob=(3) +cfi=(150) +cfn=(554) +calls=2368707 3023 +0 447724663 + +fn=(4278) 0x00000000003991b0 +0 1504 +cob=(3) +cfi=(170) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strlen-avx2.S +cfn=(744) __strlen_avx2 +calls=752 42 +0 13296 + +fn=(4350) 0x0000000000399870 +0 778 +cob=(3) +cfi=(371) /build/glibc-t7JzpG/glibc-2.30/stdio-common/sprintf.c +cfn=(4352) sprintf +calls=389 25 +0 856028 + +fn=(4498) 0x0000000000398e60 +0 14 +cob=(3) +cfi=(384) /build/glibc-t7JzpG/glibc-2.30/stdio-common/isoc99_sscanf.c +cfn=(4500) __isoc99_sscanf +calls=7 24 +0 16362 + +fn=(5650) 0x00000000003992d0 +0 32544 +cob=(4) /usr/lib/x86_64-linux-gnu/libm-2.30.so +cfi=(407) /build/glibc-t7JzpG/glibc-2.30/math/w_sqrt_compat.c +cfn=(5652) sqrt +calls=16272 30 +0 130176 + +fn=(488) 0x000000000592d580 +0 8 +cob=(3) +cfi=(150) +cfn=(494) calloc +calls=3 3366 +0 5002 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 73728 +0 5 + +fn=(1528) 0x0000000004a5f000 +0 6 + +fn=(1676) 0x0000000005627440 +0 226 +cob=(5) /usr/lib/x86_64-linux-gnu/libpthread-2.30.so +cfi=(221) /build/glibc-t7JzpG/glibc-2.30/nptl/pthread_once.c +cfn=(1680) pthread_once +calls=112 136 +0 672 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 99556 +0 5 + +fn=(1677) 0x0000000005627440'2 +0 28 +cob=(5) +cfi=(221) +cfn=(1681) pthread_once'2 +calls=14 136 +0 3409 + +fn=(1746) 0x0000000005629020 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2138 +0 5 + +fn=(1806) 0x00000000056294b0 +0 512 +cob=(3) +cfi=(226) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/btowc.c +cfn=(1810) btowc +calls=255 33 +0 11365 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1421 +0 5 + +fn=(1858) 0x0000000005628d50 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3468 +0 5 + +fn=(2040) 0x00000000056290b0 +0 100 +cob=(14) +cfi=(199) +cfn=(2044) std::ios_base::_M_init() +calls=49 0 +0 4949 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 4248 +0 5 + +fn=(2058) 0x0000000005629270 +0 110 +cob=(14) +cfi=(199) +cfn=(2062) std::basic_ios<char, std::char_traits<char> >::_M_cache_locale(std::locale const&) +calls=54 0 +0 47142 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 16180 +0 5 + +fn=(2426) 0x0000000000399130 +0 8 +cob=(14) +cfi=(199) +cfn=(1342) __cxa_guard_acquire +calls=4 0 +0 132 + +fn=(2462) 0x00000000003994c0 +0 144 +cob=(14) +cfi=(199) +cfn=(2464) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create(unsigned long&, unsigned long) +calls=72 0 +0 9039 + +fn=(2470) 0x0000000000398fd0 +0 144 +cob=(14) +cfi=(199) +cfn=(2472) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_data(char*) +calls=72 0 +0 216 + +fn=(2474) 0x00000000003997c0 +0 144 +cob=(14) +cfi=(199) +cfn=(2476) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_capacity(unsigned long) +calls=72 0 +0 216 + +fn=(2528) 0x00000000056285e0 +0 6 +cob=(14) +cfi=(199) +cfn=(2532) std::basic_filebuf<char, std::char_traits<char> >::open(char const*, std::_Ios_Openmode) +calls=2 0 +0 3104 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 9178 +0 5 + +fn=(2638) 0x0000000005627800 +0 562 +cob=(3) +cfi=(170) +cfn=(744) +calls=280 42 +0 4560 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1485 +0 5 + +fn=(2660) 0x00000000003999e0 +0 84 +cob=(14) +cfi=(199) +cfn=(2662) std::basic_ios<char, std::char_traits<char> >::eof() const +calls=42 0 +0 210 + +fn=(2764) 0x00000000056277a0 +0 29274 +cob=(3) +cfi=(150) +cfn=(1082) free +calls=14636 3087 +0 1218063 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1666 +0 5 + +fn=(3030) 0x00000000003998e0 +0 6342 +cob=(14) +cfi=(199) +cfn=(3032) std::_Rb_tree_insert_and_rebalance(bool, std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node_base&) +calls=3171 0 +0 149312 + +fn=(3176) 0x0000000000398f10 +0 6 +cob=(14) +cfi=(199) +cfn=(3178) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator+=(char const*) +calls=3 0 +0 210 + +fn=(3378) 0x0000000000398dc0 +0 4 +cob=(14) +cfi=(199) +cfn=(3380) std::basic_ifstream<char, std::char_traits<char> >::~basic_ifstream() +calls=2 0 +0 14683 + +fn=(3438) 0x0000000005627340 +0 4 +cob=(14) +cfi=(199) +cfn=(3442) std::__basic_file<char>::~__basic_file() +calls=1 0 +0 19 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1428 +0 5 + +fn=(3444) 0x0000000005628af0 +0 34 +cob=(14) +cfi=(199) +cfn=(3448) std::ios_base::~ios_base() +calls=16 0 +0 880 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 4409 +0 5 + +fn=(3574) 0x0000000005626340 +0 20 +cob=(14) +cfi=(199) +cfn=(3578) std::locale::locale(std::locale::_Impl*) +calls=9 0 +0 27 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1367 +0 5 + +fn=(3590) 0x00000000056281e0 +0 18 +cob=(14) +cfi=(199) +cfn=(3594) std::ios_base::imbue(std::locale const&) +calls=8 0 +0 552 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1534 +0 5 + +fn=(3772) 0x0000000000398ee0 +0 2 +cob=(14) +cfi=(199) +cfn=(3774) std::basic_ios<char, std::char_traits<char> >::rdbuf() const +calls=1 0 +0 3 + +fn=(3790) 0x0000000005626c30 +0 8 +cob=(14) +cfi=(199) +cfn=(3794) std::ostream::put(char) +calls=3 0 +0 204 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 4038 +0 5 + +fn=(3952) 0x0000000000399770 +0 2 +cob=(14) +cfi=(199) +cfn=(3954) std::basic_ifstream<char, std::char_traits<char> >::is_open() +calls=1 0 +0 9 + +fn=(3970) 0x0000000000398d70 +0 46 +cob=(14) +cfi=(199) +cfn=(2682) std::basic_istream<char, std::char_traits<char> >& std::getline<char, std::char_traits<char>, std::allocator<char> >(std::basic_istream<char, std::char_traits<char> >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&, char) +calls=23 0 +0 3710 + +fn=(364) 0x00000000058ec000 +0 3 +cob=(5) +cfi=(122) /build/glibc-t7JzpG/glibc-2.30/nptl/nptl-init.c +cfn=(366) __pthread_initialize_minimal +calls=1 262 +0 7387 +0 2 + +fn=(372) 0x00000000058eca90 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1730 +0 5 + +fn=(392) 0x00000000058ec990 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 2163 +0 5 + +fn=(444) 0x0000000006415000 +0 7 + +fn=(1116) 0x00000000058ec780 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1442 +0 5 + +fn=(1354) 0x0000000005626d50 +0 29630 +cob=(3) +cfi=(150) +cfn=(554) +calls=14814 3023 +0 701367 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1707 +0 5 + +fn=(1538) 0x0000000004a52000 +0 6 + +fn=(1568) 0x0000000004a30000 +0 6 + +fn=(1598) 0x0000000004878000 +0 6 + +fn=(1666) 0x0000000005627400 +0 200 +cob=(14) +cfi=(199) +cfn=(1670) std::locale::locale() +calls=99 0 +0 4059 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 100949 +0 5 + +fn=(1734) 0x0000000005627330 +0 866 +cob=(14) +cfi=(199) +cfn=(1738) std::locale::id::_M_id() const +calls=432 0 +0 2968 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1399 +0 5 + +fn=(1834) 0x00000000056270c0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1512 +0 5 + +fn=(1870) 0x0000000005626820 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1478 +0 5 + +fn=(2034) 0x0000000005629000 +0 92 +cob=(14) +cfi=(199) +cfn=(2038) std::basic_ios<char, std::char_traits<char> >::init(std::basic_streambuf<char, std::char_traits<char> >*) +calls=45 0 +0 45045 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 22212 +0 5 + +fn=(2104) 0x0000000005626150 +0 110 +cob=(14) +cfi=(199) +cfn=(2108) bool std::has_facet<std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > > >(std::locale const&) +calls=54 0 +0 6588 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2039 +0 5 + +fn=(2432) 0x00000000003997d0 +0 48 +cob=(14) +cfi=(199) +cfn=(2434) std::allocator<char>::allocator() +calls=24 0 +0 48 + +fn=(2478) 0x0000000000398e70 +0 622 +cob=(14) +cfi=(199) +cfn=(2480) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_data() const +calls=311 0 +0 933 + +fn=(2516) 0x0000000005627850 +0 6 +cob=(14) +cfi=(199) +cfn=(2520) bool std::has_facet<std::codecvt<char, char, __mbstate_t> >(std::locale const&) +calls=2 0 +0 244 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1733 +0 5 + +fn=(2610) 0x00000000003995d0 +0 6 +cob=(14) +cfi=(199) +cfn=(2612) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::reserve(unsigned long) +calls=3 0 +0 2400 + +fn=(2644) 0x0000000000399760 +0 136 +cob=(14) +cfi=(199) +cfn=(2646) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=68 0 +0 1088 + +fn=(2664) 0x00000000003992f0 +0 74 +cob=(14) +cfi=(199) +cfn=(2666) std::basic_istream<char, std::char_traits<char> >& std::getline<char, std::char_traits<char>, std::allocator<char> >(std::basic_istream<char, std::char_traits<char> >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) +calls=37 0 +0 27060 + +fn=(2684) 0x0000000005629400 +0 156 +cob=(14) +cfi=(199) +cfn=(2688) std::istream::sentry::sentry(std::istream&, bool) +calls=77 0 +0 2375 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1388 +0 5 + +fn=(2694) 0x0000000005627b00 +0 6 +cob=(14) +cfi=(199) +cfn=(2698) std::__basic_file<char>::xsgetn(char*, long) +calls=2 0 +0 100 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 5792 +0 5 + +fn=(2890) 0x0000000000398ef0 +0 184 +cob=(14) +cfi=(199) +cfn=(2892) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=92 0 +0 14994 + +fn=(3410) 0x00000000056290e0 +0 4 +cob=(3) +cfi=(299) /build/glibc-t7JzpG/glibc-2.30/libio/iofclose.c +cfn=(3414) fclose@@GLIBC_2.2.5 +calls=1 34 +0 420 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1861 +0 5 + +fn=(3462) 0x0000000000399a50 +0 48 +cob=(14) +cfi=(199) +cfn=(3464) std::allocator<char>::~allocator() +calls=24 0 +0 48 + +fn=(3560) 0x0000000000399250 +0 18 +cob=(14) +cfi=(199) +cfn=(3562) std::__cxx11::basic_istringstream<char, std::char_traits<char>, std::allocator<char> >::basic_istringstream(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::_Ios_Openmode) +calls=9 0 +0 23221 + +fn=(3640) 0x00000000056274e0 +0 6 +cob=(14) +cfi=(199) +cfn=(3644) std::istream& std::istream::_M_extract<double>(double&) +calls=2 0 +0 4489 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 13473 +0 5 + +fn=(3672) 0x0000000005628110 +0 6 +cob=(14) +cfi=(199) +cfn=(3676) void std::__convert_to_v<double>(char const*, double&, std::_Ios_Iostate&, __locale_struct* const&) +calls=2 0 +0 1285 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3598 +0 5 + +fn=(3736) 0x0000000000399220 +0 2 +cob=(14) +cfi=(199) +cfn=(2088) +calls=1 0 +0 172 + +fn=(3746) 0x0000000000399140 +0 4 +cob=(4) +cfi=(321) /build/glibc-t7JzpG/glibc-2.30/math/./w_pow_template.c +cfn=(3748) pow@@GLIBC_2.29 +calls=2 31 +0 252 + +fn=(3758) 0x0000000000398fb0 +0 10 +cob=(14) +cfi=(199) +cfn=(3760) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::capacity() const +calls=5 0 +0 30 + +fn=(4020) 0x0000000000399610 +0 32 +cob=(3) +cfi=(335) /build/glibc-t7JzpG/glibc-2.30/stdlib/atof.c +cfn=(4022) atof +calls=16 26 +0 6384 + +fn=(4282) 0x0000000000399360 +0 4928 +cob=(3) +cfi=(285) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strchr-avx2.S +cfn=(2582) __strchr_avx2 +calls=2464 44 +0 54208 + +fn=(4458) 0x0000000005628600 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2257 +0 5 + +fn=(4488) 0x000000000592d5d0 +0 250 +cob=(3) +cfi=(164) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S +cfn=(4490) __mempcpy_avx_unaligned_erms +calls=125 212 +0 2245 + +fn=(4834) 0x0000000000398f60 +0 3040616 +cob=(3) +cfi=(164) +cfn=(560) __memcpy_avx_unaligned_erms +calls=1520308 225 +0 18225913 + +fn=(406) 0x00000000058eca70 +0 12 +cob=(1) +cfi=(8) /build/glibc-t7JzpG/glibc-2.30/elf/dl-tunables.c +cfn=(26) __tunable_get_val +calls=5 369 +0 95 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1633 +0 5 + +fn=(1662) 0x0000000000399840 +0 40 +cob=(14) +cfi=(199) +cfn=(1664) std::ios_base::Init::Init() +calls=20 0 +0 146893 + +fn=(1714) 0x0000000005627030 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3254 +0 5 + +fn=(1770) 0x0000000005628880 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1803 +0 5 + +fn=(1840) 0x00000000056267f0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2050 +0 5 + +fn=(2090) 0x0000000005628c50 +0 110 +cob=(14) +cfi=(199) +cfn=(2094) bool std::has_facet<std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > > >(std::locale const&) +calls=54 0 +0 6588 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1964 +0 5 + +fn=(2110) 0x0000000005627540 +0 110 +cob=(14) +cfi=(199) +cfn=(2114) std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > > const& std::use_facet<std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > > >(std::locale const&) +calls=54 0 +0 6480 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2175 +0 5 + +fn=(2122) 0x0000000005629b50 +0 8 +cob=(14) +cfi=(199) +cfn=(2126) std::basic_ios<wchar_t, std::char_traits<wchar_t> >::_M_cache_locale(std::locale const&) +calls=3 0 +0 2307 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 13027 +0 5 + +fn=(2430) 0x00000000003993a0 +0 8 +cob=(14) +cfi=(199) +cfn=(1348) __cxa_guard_release +calls=4 0 +0 64 + +fn=(2580) 0x000000000592d4a0 +0 6 +cob=(3) +cfi=(285) +cfn=(2582) +calls=3 44 +0 74 + +fn=(2606) 0x0000000000399060 +0 90 +cob=(14) +cfi=(199) +cfn=(2608) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::size() const +calls=45 0 +0 135 + +fn=(2718) 0x0000000005626750 +0 696 +cob=(3) +cfi=(290) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memchr-avx2.S +cfn=(2722) __memchr_avx2 +calls=347 40 +0 6820 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1536 +0 5 + +fn=(2742) 0x0000000000399830 +0 362 +cob=(14) +cfi=(199) +cfn=(2744) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::substr(unsigned long, unsigned long) const +calls=181 0 +0 35135 + +fn=(2776) 0x0000000005626640 +0 262 +cob=(14) +cfi=(199) +cfn=(2780) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find(char const*, unsigned long, unsigned long) const +calls=130 0 +0 9225 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1739 +0 5 + +fn=(44) 0x00000000040010a0 +0 298 +cob=(1) +cfi=(19) /build/glibc-t7JzpG/glibc-2.30/elf/dl-minimal.c +cfn=(46) malloc +calls=149 49 +0 4006 + +fn=(3036) 0x00000000003999a0 +0 34 +cob=(14) +cfi=(199) +cfn=(3038) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=17 0 +0 3225 + +fn=(3124) 0x0000000000398e90 +0 1096 +cob=(14) +cfi=(199) +cfn=(3126) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=548 0 +0 26445 + +fn=(3150) 0x0000000000399380 +0 29040 +cob=(14) +cfi=(199) +cfn=(2762) operator delete(void*) +calls=14520 0 +0 1266441 + +fn=(3326) 0x0000000000399290 +0 8508 +cob=(14) +cfi=(199) +cfn=(3328) std::_Rb_tree_decrement(std::_Rb_tree_node_base*) +calls=4254 0 +0 88242 + +fn=(3388) 0x0000000005627760 +0 4 +cob=(14) +cfi=(199) +cfn=(3392) std::basic_filebuf<char, std::char_traits<char> >::_M_terminate_output() +calls=1 0 +0 30 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1705 +0 5 + +fn=(3484) 0x0000000000399270 +0 10 +cob=(14) +cfi=(199) +cfn=(3486) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::begin() +calls=5 0 +0 15 + +fn=(3564) 0x0000000005628800 +0 28 +cob=(14) +cfi=(199) +cfn=(3568) std::__cxx11::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >::_M_sync(char*, unsigned long, unsigned long) +calls=13 0 +0 2236 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1792 +0 5 + +fn=(3580) 0x0000000000399330 +0 18 +cob=(14) +cfi=(199) +cfn=(3582) std::basic_ios<char, std::char_traits<char> >::imbue(std::locale const&) +calls=9 0 +0 12341 + +fn=(3584) 0x0000000005626720 +0 54 +cob=(14) +cfi=(199) +cfn=(3588) std::locale::locale(std::locale const&) +calls=26 0 +0 182 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1315 +0 5 + +fn=(3620) 0x0000000000398d60 +0 18 +cob=(14) +cfi=(199) +cfn=(3622) std::basic_istream<char, std::char_traits<char> >& std::operator>><char, std::char_traits<char> >(std::basic_istream<char, std::char_traits<char> >&, char&) +calls=9 0 +0 504 + +fn=(3660) 0x0000000005626210 +0 6 +cob=(14) +cfi=(199) +cfn=(3664) std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) +calls=2 0 +0 158 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1474 +0 5 + +fn=(3834) 0x0000000005629930 +0 10 +cob=(5) +cfi=(324) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/write.c +cfn=(3838) write +calls=4 25 +0 36 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1468 +0 5 + +fn=(5046) 0x0000000000399720 +0 6528 +cob=(14) +cfi=(199) +cfn=(5048) std::_Rb_tree_increment(std::_Rb_tree_node_base const*) +calls=3264 0 +0 61227 + +fn=(6386) 0x0000000000399240 +0 90 +cob=(14) +cfi=(199) +cfn=(2592) operator new[](unsigned long) +calls=45 0 +0 6478 + +fn=(558) 0x000000000592d500 +0 16 +cob=(3) +cfi=(164) +cfn=(560) +calls=8 225 +0 110 + +fn=(1080) 0x000000000592d350 +0 6 +cob=(3) +cfi=(150) +cfn=(1082) +calls=3 3087 +0 287 + +fn=(1498) 0x0000000004b26000 +0 7 + +fn=(1518) 0x0000000004a69000 +0 6 + +fn=(1618) 0x0000000004854000 +0 7 + +fn=(1688) 0x0000000005626f50 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 97994 +0 5 + +fn=(1700) 0x0000000005626360 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 6283 +0 5 + +fn=(1720) 0x0000000005627f50 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1553 +0 5 + +fn=(1740) 0x0000000005627530 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1520 +0 5 + +fn=(1776) 0x0000000005626240 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1440 +0 5 + +fn=(1794) 0x0000000005628980 +0 4 +cob=(3) +cfi=(224) /build/glibc-t7JzpG/glibc-2.30/locale/uselocale.c +cfn=(1798) uselocale +calls=1 30 +0 22 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1572 +0 5 + +fn=(1824) 0x00000000056270a0 +0 20 +cob=(3) +cfi=(230) /build/glibc-t7JzpG/glibc-2.30/wctype/wctype_l.c +cfn=(1828) wctype_l +calls=9 27 +0 3441 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1555 +0 5 + +fn=(2064) 0x0000000005629c70 +0 110 +cob=(14) +cfi=(199) +cfn=(2068) bool std::has_facet<std::ctype<char> >(std::locale const&) +calls=54 0 +0 9396 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 4490 +0 5 + +fn=(2140) 0x0000000005626a80 +0 8 +cob=(14) +cfi=(199) +cfn=(2144) bool std::has_facet<std::num_put<wchar_t, std::ostreambuf_iterator<wchar_t, std::char_traits<wchar_t> > > >(std::locale const&) +calls=3 0 +0 366 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1957 +0 5 + +fn=(2466) 0x0000000005626840 +0 328 +cob=(14) +cfi=(199) +cfn=(2380) operator new(unsigned long) +calls=163 0 +0 17362 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1475 +0 5 + +fn=(2500) 0x0000000000398de0 +0 2 +cob=(14) +cfi=(199) +cfn=(2502) std::basic_ifstream<char, std::char_traits<char> >::basic_ifstream(char const*, std::_Ios_Openmode) +calls=1 0 +0 19814 + +fn=(2600) 0x0000000000398db0 +0 20 +cob=(14) +cfi=(199) +cfn=(2602) std::basic_ios<char, std::char_traits<char> >::operator!() const +calls=10 0 +0 40 + +fn=(2618) 0x0000000000399110 +0 6 +cob=(14) +cfi=(199) +cfn=(2620) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::append(char const*, unsigned long) +calls=3 0 +0 1895 + +fn=(2746) 0x0000000005628de0 +0 390 +cob=(30) /home/joscha/software/dune/build-debug/dune-faultnetworks/src/geofaultnetworks/rockfaultnetwork +cfi=(274) /usr/include/c++/9/bits/basic_string.tcc +cfn=(2452) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<char const*>(char const*, char const*, std::forward_iterator_tag) +calls=194 206 +0 31224 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1766 +0 5 + +fn=(2796) 0x0000000000398ea0 +0 32 +cob=(14) +cfi=(199) +cfn=(2798) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::insert(unsigned long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 0 +0 6764 + +fn=(2800) 0x0000000005626180 +0 40 +cob=(14) +cfi=(199) +cfn=(2804) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_replace(unsigned long, unsigned long, char const*, unsigned long) +calls=19 0 +0 5023 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1876 +0 5 + +fn=(3164) 0x00000000003998f0 +0 6 +cob=(14) +cfi=(199) +cfn=(3166) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find(char, unsigned long) const +calls=3 0 +0 132 + +fn=(3382) 0x0000000005629440 +0 6 +cob=(14) +cfi=(199) +cfn=(3386) std::basic_filebuf<char, std::char_traits<char> >::close() +calls=2 0 +0 724 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 8637 +0 5 + +fn=(3394) 0x00000000056279a0 +0 4 +cob=(14) +cfi=(199) +cfn=(3398) std::basic_filebuf<char, std::char_traits<char> >::_M_destroy_internal_buffer() +calls=1 0 +0 158 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1905 +0 5 + +fn=(3508) 0x0000000000399880 +0 6 +cob=(14) +cfi=(199) +cfn=(3510) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_copy_chars(char*, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >) +calls=3 0 +0 63 + +fn=(3648) 0x00000000056267b0 +0 6 +cob=(14) +cfi=(199) +cfn=(3652) std::string::reserve(unsigned long) +calls=2 0 +0 282 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 4357 +0 5 + +fn=(3750) 0x0000000005789310 +0 4 +cob=(4) +cfi=(322) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/ieee754/dbl-64/e_pow.c +cfn=(3752) __ieee754_pow_fma +calls=2 283 +0 210 + +fn=(3784) 0x0000000000399860 +0 10 +cob=(14) +cfi=(199) +cfn=(3786) std::ostream::operator<<(std::ostream& (*)(std::ostream&)) +calls=5 0 +0 11273 + +fn=(3818) 0x0000000005629980 +0 10 +cob=(14) +cfi=(199) +cfn=(3822) std::basic_filebuf<char, std::char_traits<char> >::_M_convert_to_external(char*, long) +calls=4 0 +0 432 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 4773 +0 5 + +fn=(3858) 0x0000000005628420 +0 6 +cob=(14) +cfi=(199) +cfn=(3862) std::basic_streambuf<char, std::char_traits<char> >::xsputn(char const*, long) +calls=2 0 +0 96 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1766 +0 5 + +fn=(3948) 0x00000000003998d0 +0 2 +cob=(14) +cfi=(199) +cfn=(3950) std::basic_ifstream<char, std::char_traits<char> >::basic_ifstream(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::_Ios_Openmode) +calls=1 0 +0 4253 + +fn=(4288) 0x00000000003991d0 +0 868 +cob=(3) +cfi=(356) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcpy-avx2.S +cfn=(4290) __strcpy_avx2 +calls=434 50 +0 13368 + +fn=(4296) 0x0000000000399630 +0 1110 +cob=(3) +cfi=(232) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcmp-avx2.S +cfn=(2082) __strcmp_avx2 +calls=555 79 +0 12134 + +fn=(4450) 0x0000000005626ff0 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 3786 +0 5 + +fn=(4484) 0x0000000000399a20 +0 2 +cob=(3) +cfi=(372) /build/glibc-t7JzpG/glibc-2.30/libio/iovsprintf.c +cfn=(4486) vsprintf +calls=1 103 +0 1081 + +fn=(102) 0x00000000040010f0 +0 2 +cob=(1) +cfi=(34) /build/glibc-t7JzpG/glibc-2.30/elf/dl-error-skeleton.c +cfn=(104) _dl_catch_error +calls=1 213 +0 2860 + +fn=(428) 0x000000000592d620 +0 2 +cob=(3) +cfi=(139) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strrchr-avx2.S +cfn=(430) __strrchr_avx2 +calls=1 42 +0 72 + +fn=(456) 0x0000000005789000 +0 7 + +fn=(466) 0x0000000004e88000 +0 7 + +fn=(478) 0x0000000004e88650 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 75360 +0 5 + +fn=(516) 0x000000000592d480 +0 22 +cob=(1) +cfi=(8) +cfn=(26) +calls=10 369 +0 198 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1592 +0 5 + +fn=(536) 0x000000000592d590 +0 820 +cob=(3) +cfi=(161) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S +cfn=(538) __memset_avx2_unaligned_erms +calls=410 167 +0 11646 + +fn=(742) 0x000000000592d490 +0 776 +cob=(3) +cfi=(170) +cfn=(744) +calls=388 42 +0 6384 + +fn=(960) 0x000000000616c000 +0 7 + +fn=(1294) 0x0000000005622000 +0 7 + +fn=(1316) 0x0000000005627140 +0 16 +cob=(3) +cfi=(200) +cfn=(1320) +calls=7 69 +0 504 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1579 +0 5 + +fn=(1488) 0x0000000004eec000 +0 7 + +fn=(1558) 0x0000000004a3d000 +0 6 + +fn=(1588) 0x00000000048a6000 +0 6 + +fn=(1752) 0x0000000005627940 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1917 +0 5 + +fn=(1758) 0x0000000005628ea0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1925 +0 5 + +fn=(1974) 0x0000000005628c00 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1939 +0 5 + +fn=(2070) 0x0000000005628c90 +0 722 +cob=(14) +cfi=(199) +cfn=(2074) __dynamic_cast +calls=360 0 +0 38120 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2970 +0 5 + +fn=(2078) 0x0000000005628ad0 +0 222 +cob=(3) +cfi=(232) +cfn=(2082) +calls=110 79 +0 2310 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1517 +0 5 + +fn=(2146) 0x00000000056289a0 +0 8 +cob=(14) +cfi=(199) +cfn=(2150) std::num_put<wchar_t, std::ostreambuf_iterator<wchar_t, std::char_traits<wchar_t> > > const& std::use_facet<std::num_put<wchar_t, std::ostreambuf_iterator<wchar_t, std::char_traits<wchar_t> > > >(std::locale const&) +calls=3 0 +0 360 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2056 +0 5 + +fn=(2152) 0x0000000005628390 +0 8 +cob=(14) +cfi=(199) +cfn=(2156) bool std::has_facet<std::num_get<wchar_t, std::istreambuf_iterator<wchar_t, std::char_traits<wchar_t> > > >(std::locale const&) +calls=3 0 +0 366 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1965 +0 5 + +fn=(2378) 0x0000000000398f50 +0 29300 +cob=(14) +cfi=(199) +cfn=(2380) +calls=14650 0 +0 876385 + +fn=(2482) 0x0000000000398da0 +0 422 +cob=(14) +cfi=(199) +cfn=(2484) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_S_copy_chars(char*, char const*, char const*) +calls=211 0 +0 5976 + +fn=(2496) 0x0000000000398eb0 +0 54 +cob=(14) +cfi=(199) +cfn=(2498) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::c_str() const +calls=27 0 +0 81 + +fn=(2504) 0x00000000056297d0 +0 6 +cob=(14) +cfi=(199) +cfn=(2508) std::basic_filebuf<char, std::char_traits<char> >::basic_filebuf() +calls=2 0 +0 706 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 6803 +0 5 + +fn=(2510) 0x0000000005629880 +0 6 +cob=(14) +cfi=(199) +cfn=(2514) std::__basic_file<char>::__basic_file(pthread_mutex_t*) +calls=2 0 +0 8 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1581 +0 5 + +fn=(2674) 0x0000000005628f80 +0 1172 +cob=(3) +cfi=(231) +cfn=(1832) +calls=585 59 +0 13567 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1516 +0 5 + +fn=(2758) 0x0000000005626f70 +0 234 +cob=(14) +cfi=(199) +cfn=(2762) +calls=116 0 +0 10166 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 2923 +0 5 + +fn=(2772) 0x0000000000398d90 +0 262 +cob=(14) +cfi=(199) +cfn=(2774) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find(char const*, unsigned long) const +calls=131 0 +0 15816 + +fn=(2784) 0x0000000000399650 +0 76 +cob=(14) +cfi=(199) +cfn=(2786) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_not_of(char const*, unsigned long) const +calls=38 0 +0 6990 + +fn=(2894) 0x0000000005626f10 +0 184 +cob=(30) +cfi=(274) +cfn=(2898) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<char*>(char*, char*, std::forward_iterator_tag) +calls=91 206 +0 12540 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1529 +0 5 + +fn=(3524) 0x000000000592d3c0 +0 1580 +cob=(3) +cfi=(285) +cfn=(3526) __strchrnul_avx2 +calls=790 44 +0 18126 + +fn=(4034) 0x0000000000399450 +0 2 +cob=(14) +cfi=(199) +cfn=(4036) std::basic_ifstream<char, std::char_traits<char> >::close() +calls=1 0 +0 705 + +fn=(4050) 0x00000000003995c0 +0 2 +cob=(4) +cfi=(337) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/ieee754/dbl-64/e_log2.c +cfn=(4052) log2@@GLIBC_2.29 +calls=1 44 +0 74 + +fn=(4064) 0x0000000000399080 +0 2 +cob=(14) +cfi=(199) +cfn=(4066) std::istream::operator>>(unsigned int&) +calls=1 0 +0 3907 + +fn=(4084) 0x00000000003999d0 +0 2 +cob=(3) +cfi=(339) /build/glibc-t7JzpG/glibc-2.30/stdlib/random.c +cfn=(4086) srand +calls=1 209 +0 6815 + +fn=(4440) 0x0000000000398d40 +0 24 +cob=(3) +cfi=(150) +cfn=(1082) +calls=12 3087 +0 1030 + +fn=(4442) 0x00000000003990b0 +0 2 +cob=(14) +cfi=(199) +cfn=(4444) std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream() +calls=1 0 +0 3228 + +fn=(5054) 0x0000000000399690 +0 6016 +cob=(14) +cfi=(199) +cfn=(5056) std::_Rb_tree_rebalance_for_erase(std::_Rb_tree_node_base*, std::_Rb_tree_node_base&) +calls=3008 0 +0 192364 + +fn=(5606) 0x0000000000399530 +0 2 +cob=(14) +cfi=(199) +cfn=(5608) std::__detail::_Prime_rehash_policy::_M_next_bkt(unsigned long) const +calls=1 0 +0 121 + +fn=(5796) 0x0000000000399820 +0 6272 +cob=(14) +cfi=(199) +cfn=(5798) std::__detail::_Prime_rehash_policy::_M_need_rehash(unsigned long, unsigned long, unsigned long) const +calls=3136 0 +0 21952 + +fn=(8850) 0x0000000000398f20 +0 458752 +cob=(4) +cfi=(435) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_floor-sse4_1.S +cfn=(8852) __floor_sse41 +calls=229376 22 +0 688128 + +fn=(40) 0x00000000040010c0 +0 120 +cob=(1) +cfi=(19) +cfn=(42) calloc +calls=60 92 +0 2401 + +fn=(386) 0x00000000058ec600 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1553 +0 5 + +fn=(506) 0x000000000592d540 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1923 +0 5 + +fn=(640) 0x0000000006190000 +0 7 + +fn=(1196) 0x00000000058ec940 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1465 +0 5 + +fn=(1284) 0x0000000005b2b000 +0 7 + +fn=(1338) 0x00000000056285d0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1349 +0 5 + +fn=(1344) 0x0000000005626e80 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1384 +0 5 + +fn=(1646) 0x0000000000398000 +0 7 + +fn=(1728) 0x0000000005627bb0 +0 64 +cob=(14) +cfi=(199) +cfn=(1732) std::locale::_Impl::_M_install_facet(std::locale::id const*, std::locale::facet const*) +calls=31 0 +0 12214 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3428 +0 5 + +fn=(1878) 0x0000000005627270 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2050 +0 5 + +fn=(2098) 0x0000000005626650 +0 110 +cob=(14) +cfi=(199) +cfn=(2102) std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > > const& std::use_facet<std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > > >(std::locale const&) +calls=54 0 +0 6480 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2077 +0 5 + +fn=(2128) 0x0000000005626ec0 +0 8 +cob=(14) +cfi=(199) +cfn=(2132) bool std::has_facet<std::ctype<wchar_t> >(std::locale const&) +calls=3 0 +0 366 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1589 +0 5 + +fn=(2158) 0x0000000005629640 +0 8 +cob=(14) +cfi=(199) +cfn=(2162) std::num_get<wchar_t, std::istreambuf_iterator<wchar_t, std::char_traits<wchar_t> > > const& std::use_facet<std::num_get<wchar_t, std::istreambuf_iterator<wchar_t, std::char_traits<wchar_t> > > >(std::locale const&) +calls=3 0 +0 360 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2048 +0 5 + +fn=(2438) 0x0000000000399200 +0 48 +cob=(14) +cfi=(199) +cfn=(2440) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_local_data() +calls=24 0 +0 72 + +fn=(2486) 0x0000000005629b30 +0 782 +cob=(3) +cfi=(164) +cfn=(560) +calls=390 225 +0 5102 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1674 +0 5 + +fn=(2540) 0x0000000005626d80 +0 6 +cob=(14) +cfi=(199) +cfn=(2544) std::__basic_file<char>::open(char const*, std::_Ios_Openmode, int) +calls=2 0 +0 1949 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3771 +0 5 + +fn=(2590) 0x0000000005625f10 +0 6 +cob=(14) +cfi=(199) +cfn=(2592) +calls=3 0 +0 1187 + +fn=(2668) 0x0000000005627ae0 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 4082 +0 5 + +fn=(2700) 0x0000000005626c00 +0 16 +cob=(14) +cfi=(199) +cfn=(2704) std::__basic_file<char>::fd() +calls=7 0 +0 84 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2903 +0 5 + +fn=(2706) 0x00000000056261d0 +0 16 +cob=(3) +cfi=(288) /build/glibc-t7JzpG/glibc-2.30/libio/fileno.c +cfn=(2710) fileno +calls=7 32 +0 49 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1460 +0 5 + +fn=(2754) 0x0000000000399550 +0 752 +cob=(14) +cfi=(199) +cfn=(2756) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string() +calls=376 0 +0 14363 + +fn=(3348) 0x00000000056285f0 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1495 +0 5 + +fn=(3400) 0x0000000005625eb0 +0 4 +cob=(14) +cfi=(199) +cfn=(3402) operator delete[](void*) +calls=2 0 +0 272 + +fn=(3450) 0x0000000005627f90 +0 52 +cob=(14) +cfi=(199) +cfn=(3454) std::ios_base::_M_call_callbacks(std::ios_base::event) +calls=25 0 +0 275 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1565 +0 5 + +fn=(3456) 0x0000000005626420 +0 34 +cob=(14) +cfi=(199) +cfn=(3460) std::ios_base::_M_dispose_callbacks() +calls=16 0 +0 208 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1495 +0 5 + +fn=(3550) 0x00000000003992b0 +0 6 +cob=(14) +cfi=(199) +cfn=(3552) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::insert(unsigned long, char const*) +calls=3 0 +0 384 + +fn=(3570) 0x0000000000398f00 +0 20 +cob=(14) +cfi=(199) +cfn=(3572) std::locale::classic() +calls=10 0 +0 1719 + +fn=(3654) 0x0000000005628170 +0 6 +cob=(14) +cfi=(199) +cfn=(3658) std::string::_Rep::_M_clone(std::allocator<char> const&, unsigned long) +calls=2 0 +0 214 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2983 +0 5 + +fn=(3704) 0x0000000005628890 +0 6 +cob=(14) +cfi=(199) +cfn=(3708) std::string::push_back(char) +calls=2 0 +0 64 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1458 +0 5 + +fn=(3796) 0x0000000005629c50 +0 16 +cob=(14) +cfi=(199) +cfn=(3800) std::ostream::sentry::sentry(std::ostream&) +calls=7 0 +0 154 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1353 +0 5 + +fn=(3824) 0x00000000056276f0 +0 10 +cob=(14) +cfi=(199) +cfn=(3828) std::__basic_file<char>::xsputn(char const*, long) +calls=4 0 +0 256 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3009 +0 5 + +fn=(4504) 0x000000000592d600 +0 14 +cob=(3) +cfi=(290) +cfn=(4506) __rawmemchr_avx2 +calls=7 40 +0 121 + +fn=(5452) 0x0000000000399500 +0 10 +cob=(3) +cfi=(65) /build/glibc-t7JzpG/glibc-2.30/time/../sysdeps/unix/sysv/linux/x86/time.c +cfn=(5454) __time_syscall +calls=5 28 +0 20 + +fn=(1272) 0x0000000005ecb1c0 +0 6 + +fn=(1332) 0x0000000005627080 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 4232 +0 5 + +fn=(1694) 0x0000000005626f20 +0 14 +cob=(14) +cfi=(199) +cfn=(1698) std::locale::facet::_S_get_c_name() +calls=6 0 +0 18 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1567 +0 5 + +fn=(1706) 0x0000000005628d60 +0 34 +cob=(14) +cfi=(199) +cfn=(1710) std::locale::facet::_S_get_c_locale() +calls=16 0 +0 304 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 4828 +0 5 + +fn=(1764) 0x0000000005628410 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 3438 +0 5 + +fn=(1800) 0x0000000005627b20 +0 256 +cob=(3) +cfi=(225) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/wctob.c +cfn=(1804) wctob +calls=127 31 +0 2794 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1500 +0 5 + +fn=(1846) 0x0000000005628740 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1974 +0 5 + +fn=(1896) 0x00000000056265d0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1958 +0 5 + +fn=(1944) 0x0000000005627b80 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2054 +0 5 + +fn=(1962) 0x00000000056281a0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1873 +0 5 + +fn=(2028) 0x0000000005626e40 +0 52 +cob=(14) +cfi=(199) +cfn=(2032) std::ios_base::ios_base() +calls=25 0 +0 2550 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1476 +0 5 + +fn=(2116) 0x0000000005628550 +0 8 +cob=(14) +cfi=(199) +cfn=(2120) std::basic_ios<wchar_t, std::char_traits<wchar_t> >::init(std::basic_streambuf<wchar_t, std::char_traits<wchar_t> >*) +calls=3 0 +0 2691 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 14874 +0 5 + +fn=(2552) 0x00000000056295c0 +0 6 +cob=(3) +cfi=(278) /build/glibc-t7JzpG/glibc-2.30/libio/iofopen.c +cfn=(2556) fopen@@GLIBC_2.2.5 +calls=2 85 +0 1861 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2084 +0 5 + +fn=(2628) 0x0000000000399680 +0 52 +cob=(14) +cfi=(199) +cfn=(2630) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::append(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=26 0 +0 1666 + +fn=(2712) 0x0000000005626d30 +0 6 +cob=(5) +cfi=(289) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/read.c +cfn=(2716) read +calls=2 25 +0 16 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1421 +0 5 + +fn=(2768) 0x0000000000399990 +0 110 +cob=(14) +cfi=(199) +cfn=(2770) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator[](unsigned long) +calls=55 0 +0 220 + +fn=(2788) 0x0000000005629bd0 +0 76 +cob=(14) +cfi=(199) +cfn=(2792) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_last_not_of(char const*, unsigned long, unsigned long) const +calls=37 0 +0 3469 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 2110 +0 5 + +fn=(88) 0x0000000004001080 +0 56 +cob=(1) +cfi=(19) +cfn=(90) free +calls=28 109 +0 140 + +fn=(3598) 0x0000000000399810 +0 18 +cob=(14) +cfi=(199) +cfn=(2056) std::locale::~locale() +calls=9 0 +0 72 + +fn=(3600) 0x0000000000399a00 +0 10 +cob=(14) +cfi=(199) +cfn=(3602) std::istream::operator>>(int&) +calls=5 0 +0 4004 + +fn=(3624) 0x0000000000399890 +0 18 +cob=(14) +cfi=(199) +cfn=(3626) std::basic_ios<char, std::char_traits<char> >::fail() const +calls=9 0 +0 36 + +fn=(3628) 0x0000000000399390 +0 18 +cob=(14) +cfi=(199) +cfn=(3630) std::__cxx11::basic_istringstream<char, std::char_traits<char>, std::allocator<char> >::~basic_istringstream() +calls=9 0 +0 864 + +fn=(3698) 0x0000000005626590 +0 6 +cob=(14) +cfi=(199) +cfn=(3702) std::string::_Rep::_M_destroy(std::allocator<char> const&) +calls=2 0 +0 180 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1485 +0 5 + +fn=(3776) 0x0000000000398e00 +0 2 +cob=(14) +cfi=(199) +cfn=(3778) std::basic_ofstream<char, std::char_traits<char> >::rdbuf() const +calls=1 0 +0 3 + +fn=(3846) 0x00000000003993c0 +0 6 +cob=(14) +cfi=(199) +cfn=(3848) std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*) +calls=3 0 +0 4332 + +fn=(4076) 0x0000000005629770 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2398 +0 5 + +fn=(4262) 0x0000000000398d80 +0 4 +cob=(3) +cfi=(173) /build/glibc-t7JzpG/glibc-2.30/string/strdup.c +cfn=(854) strdup +calls=2 40 +0 192 + +fn=(5872) 0x0000000000399920 +0 12032 +cob=(3) +cfi=(231) +cfn=(1832) +calls=6016 59 +0 114304 + +fn=(106) 0x0000000004001090 +0 208 +cob=(1) +cfi=(34) +cfn=(108) _dl_catch_exception +calls=104 175 +0 391131 + +fn=(544) 0x0000000004e88720 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 2247 +0 5 + +fn=(1306) 0x0000000005627ba0 +0 4 +cob=(14) +cfi=(199) +cfn=(1312) std::error_category::error_category() +calls=1 0 +0 5 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1368 +0 5 + +fn=(1508) 0x0000000004ada000 +0 7 + +fn=(1548) 0x0000000004a49000 +0 6 + +fn=(1578) 0x0000000004952000 +0 6 + +fn=(1608) 0x000000000486f000 +0 6 + +fn=(1628) 0x0000000004830000 +0 7 + +fn=(1852) 0x0000000005626b80 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1949 +0 5 + +fn=(1932) 0x0000000005629df0 +0 2 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1422 +0 5 + +fn=(2046) 0x00000000056283d0 +0 136 +cob=(14) +cfi=(199) +cfn=(2050) std::locale::operator=(std::locale const&) +calls=67 0 +0 1340 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1440 +0 5 + +fn=(2052) 0x0000000005628860 +0 204 +cob=(14) +cfi=(199) +cfn=(2056) +calls=101 0 +0 808 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1369 +0 5 + +fn=(2248) 0x00000000003990c0 +0 4737404 +cob=(3) +cfi=(161) +cfn=(538) +calls=2368702 167 +0 43027811 + +fn=(2294) 0x0000000000399120 +0 148 +cob=(14) +cfi=(199) +cfn=(2296) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string() +calls=74 0 +0 444 + +fn=(2490) 0x00000000003999b0 +0 622 +cob=(14) +cfi=(199) +cfn=(2492) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_set_length(unsigned long) +calls=311 0 +0 1555 + +fn=(2534) 0x0000000005628e50 +0 34 +cob=(14) +cfi=(199) +cfn=(2538) std::__basic_file<char>::is_open() const +calls=16 0 +0 64 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 1554 +0 5 + +fn=(2614) 0x0000000005628290 +0 82 +cob=(14) +cfi=(199) +cfn=(2464) +calls=40 0 +0 3655 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1919 +0 5 + +fn=(2622) 0x0000000005628150 +0 200 +cob=(14) +cfi=(199) +cfn=(2626) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_append(char const*, unsigned long) +calls=99 0 +0 9432 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1776 +0 5 + +fn=(2678) 0x0000000005626520 +0 74 +cob=(14) +cfi=(199) +cfn=(2682) +calls=36 0 +0 9097 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 13049 +0 5 + +fn=(2724) 0x0000000005629a20 +0 70 +cob=(14) +cfi=(199) +cfn=(2728) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_mutate(unsigned long, unsigned long, char const*, unsigned long) +calls=34 0 +0 6256 +cob=(1) +cfi=(125) +cfn=(379) +calls=1 67 +0 2032 +0 5 + +fn=(2736) 0x0000000005627260 +0 140 +cob=(14) +cfi=(199) +cfn=(2740) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find_first_not_of(char const*, unsigned long, unsigned long) const +calls=69 0 +0 3520 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1888 +0 5 + +fn=(3172) 0x0000000000399710 +0 14 +cob=(14) +cfi=(199) +cfn=(3174) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare(char const*) const +calls=7 0 +0 388 + +fn=(3480) 0x0000000000399350 +0 8 +cob=(14) +cfi=(199) +cfn=(3482) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::end() +calls=4 0 +0 16 + +fn=(3636) 0x0000000000399a30 +0 6 +cob=(14) +cfi=(199) +cfn=(3638) std::istream::operator>>(double&) +calls=3 0 +0 17979 + +fn=(3850) 0x0000000005628520 +0 6 +cob=(14) +cfi=(199) +cfn=(3854) std::basic_ostream<char, std::char_traits<char> >& std::__ostream_insert<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*, long) +calls=2 0 +0 366 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 3820 +0 5 + +fn=(3960) 0x0000000000399a40 +0 10 +cob=(14) +cfi=(199) +cfn=(3962) std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::basic_stringstream(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::_Ios_Openmode) +calls=5 0 +0 18845 + +fn=(3976) 0x0000000000399190 +0 12 +cob=(14) +cfi=(199) +cfn=(3978) std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::~basic_stringstream() +calls=6 0 +0 600 + +fn=(3982) 0x00000000003990f0 +0 4 +cob=(3) +cfi=(333) /build/glibc-t7JzpG/glibc-2.30/stdlib/atoi.c +cfn=(3984) atoi +calls=2 26 +0 224 + +fn=(4054) 0x00000000003996d0 +0 2 +cob=(4) +cfi=(338) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/ieee754/dbl-64/wordsize-64/s_round.c +cfn=(4056) round +calls=1 30 +0 16 + +fn=(4068) 0x00000000056269c0 +0 2 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 3898 +0 5 + +fn=(4446) 0x00000000003990e0 +0 2 +cob=(14) +cfi=(199) +cfn=(4448) std::ostream::operator<<(int) +calls=1 0 +0 3804 + +fn=(4472) 0x00000000003994e0 +0 2 +cob=(14) +cfi=(199) +cfn=(4474) std::__cxx11::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >::str() const +calls=1 0 +0 90 + +fn=(5444) 0x0000000000399670 +0 6 +cob=(3) +cfi=(150) +cfn=(494) +calls=3 3366 +0 753 + +fn=(6478) 0x0000000000399180 +0 12 +cob=(14) +cfi=(199) +cfn=(3402) +calls=6 0 +0 540 + +ob=(10) /usr/lib/x86_64-linux-gnu/librt-2.30.so +fl=(174) ??? +fn=(964) 0x0000000000003960 +0 12 + +ob=(22) /usr/lib/x86_64-linux-gnu/libcamd.so.2.4.6 +fl=(209) ??? +fn=(1562) 0x0000000000001130 +0 11 + +ob=(27) /usr/lib/x86_64-linux-gnu/libldl.so.2.2.6 +fl=(214) ??? +fn=(1612) 0x00000000000010f0 +0 11 + +ob=(29) /usr/lib/x86_64-linux-gnu/valgrind/vgpreload_core-amd64-linux.so +fl=(216) ??? +fn=(1632) 0x0000000000001120 +0 12 + +ob=(4) +fl=(322) +fn=(3752) +283 2 +45 4 +283 2 +45 2 +fi=(323) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/ieee754/dbl-64/math_config.h ++22 4 +fe=(322) +-22 2 +292 2 +45 2 +292 6 +-8 2 ++8 8 +62 2 ++5 2 ++10 2 ++11 2 +-26 2 ++50 4 +-49 2 ++1 2 ++48 2 +-48 2 +-1 2 ++4 2 ++3 2 +-5 4 ++5 2 +-5 2 ++5 6 ++7 2 ++11 2 +-11 2 ++18 2 +-5 2 ++22 2 +-22 2 ++22 2 +-23 2 ++2 4 ++5 2 ++17 2 +-16 2 ++4 2 +-1 2 ++12 2 +-10 2 ++11 2 +-1 2 +-10 2 ++11 2 +-1 2 ++1 2 ++1 2 ++1 4 +369 2 ++1 2 +45 2 +fi=(323) ++22 2 +fe=(322) +-22 2 +193 2 ++1 2 +370 2 +194 4 ++31 8 ++18 2 +fi=(323) +67 2 +fe=(322) +227 2 ++2 2 ++4 2 ++1 2 +-5 2 ++4 2 ++1 2 ++9 2 +-10 2 ++4 2 +-6 2 ++12 4 +-3 2 ++3 8 ++1 4 +fi=(323) +79 2 +fe=(322) +249 4 + +fl=(338) +fn=(4056) +30 1 ++4 1 +-4 1 ++3 1 ++1 3 ++1 2 ++2 2 ++8 2 ++1 2 ++19 1 + +fl=(106) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_expf.c +fn=(314) expf@@GLIBC_2.27 +26 1 +fi=(438) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/ifunc-fma.h ++4 1 +-1 1 ++1 2 +-1 3 +fe=(106) +-3 1 + +fl=(113) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_log.c +fn=(328) __log_finite +26 1 +fi=(439) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/ifunc-avx-fma4.h ++7 5 +-1 2 +fe=(113) +-6 1 + +fl=(116) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_exp2f.c +fn=(336) exp2f@@GLIBC_2.27 +26 1 +fi=(438) ++4 1 +-1 1 ++1 2 +-1 3 +fe=(116) +-3 1 + +fl=(321) +fn=(3748) +31 4 ++1 6 +cob=(2) +cfi=(18) +cfn=(3750) +calls=2 -32 +* 214 ++1 16 ++12 6 ++4 4 +-4 2 + +fl=(115) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_sinf.c +fn=(332) sinf +26 1 +fi=(438) ++4 1 +-1 1 ++1 2 +-1 3 +fe=(115) +-3 1 + +fl=(105) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_exp.c +fn=(312) __exp_finite +26 1 +fi=(439) ++7 5 +-1 2 +fe=(105) +-6 1 + +fl=(109) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_sincosf.c +fn=(320) sincosf +26 1 +fi=(438) ++4 1 +-1 1 ++1 2 +-1 3 +fe=(109) +-3 1 + +fl=(120) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_ceil.c +fn=(348) ceil +31 1 +fi=(440) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/ifunc-sse4_1.h +-2 5 +fe=(120) ++2 1 + +fl=(108) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_logf.c +fn=(318) logf@@GLIBC_2.27 +26 1 +fi=(438) ++4 1 +-1 1 ++1 2 +-1 3 +fe=(108) +-3 1 + +fl=(408) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/e_sqrt.c +fn=(5654) __sqrt_finite +24 16272 ++3 16272 ++3 16272 + +fl=(114) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_asin.c +fn=(334) __asin_finite +25 1 +fi=(441) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/ifunc-fma4.h ++7 5 +-1 2 +fe=(114) +-6 1 + +fn=(330) __acos_finite +33 1 +fi=(441) +-1 5 +-1 2 +fe=(114) ++2 1 + +fl=(146) ??? +fn=(460) 0x000000000000f480 +0 12 + +fl=(118) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_floor.c +fn=(344) floor +31 1 +fi=(440) +-2 5 +fe=(118) ++2 1 + +fl=(107) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_sin.c +fn=(340) sin +27 1 +fi=(439) ++6 5 +-1 2 +fe=(107) +-5 1 + +fn=(316) cos +34 1 +fi=(439) +-1 5 +-1 2 +fe=(107) ++2 1 + +fl=(117) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_atan2.c +fn=(338) __atan2_finite +24 1 +fi=(439) ++9 5 +-1 2 +fe=(117) +-8 1 + +fl=(104) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/s_cosf.c +fn=(310) cosf +26 1 +fi=(438) ++4 1 +-1 1 ++1 2 +-1 3 +fe=(104) +-3 1 + +fl=(110) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_powf.c +fn=(322) powf@@GLIBC_2.27 +29 1 +fi=(438) ++1 1 +-1 1 ++1 2 +-1 4 +fe=(110) + +fl=(112) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_log2f.c +fn=(326) log2f@@GLIBC_2.27 +26 1 +fi=(438) ++4 1 +-1 1 ++1 2 +-1 3 +fe=(112) +-3 1 + +fl=(337) +fn=(4052) +44 1 +fi=(323) ++23 1 +fe=(337) +-28 1 ++17 3 +-17 1 ++17 2 ++28 3 ++17 1 ++37 1 +-30 1 +-4 1 +-3 1 ++37 1 +-15 1 +-19 1 +-2 1 ++1 1 ++1 1 +-2 1 ++6 1 ++15 1 +-19 1 ++16 4 +-15 1 ++15 1 +-15 1 ++15 1 +-15 1 ++15 2 +fi=(323) +-41 1 +fe=(337) ++41 1 ++8 1 ++10 1 +-4 1 +fi=(323) +-55 1 +fe=(337) ++55 1 ++4 1 +fi=(323) +-59 1 +fe=(337) ++59 1 +fi=(323) +-59 1 +fe=(337) ++59 1 +-15 1 ++15 1 +-3 2 +-6 2 ++9 2 +-8 1 ++8 2 +-8 1 ++8 2 +-16 2 ++2 1 ++15 1 +-15 2 ++6 1 ++9 2 ++1 1 + +fl=(435) +fn=(8852) +22 229376 ++1 229376 ++1 229376 + +fl=(111) /build/glibc-t7JzpG/glibc-2.30/math/../sysdeps/x86_64/fpu/multiarch/e_pow.c +fn=(324) __pow_finite +26 1 +fi=(441) ++6 5 +-1 2 +fe=(111) +-5 1 + +fl=(407) +fn=(5652) +30 16272 ++1 48816 ++3 16272 +cfi=(408) +cfn=(5654) +calls=16272 -10 +* 48816 + +ob=(17) /usr/lib/x86_64-linux-gnu/libf77blas.so.3.10.3 +fl=(204) ??? +fn=(1512) 0x0000000000007b70 +0 12 + +ob=(1) +fl=(33) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/strcspn.S +fn=(100) strcspn +28 1 ++2 1 ++7 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++1 33 ++3 3 ++7 1 ++1 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++9 3 ++12 1 ++2 1 ++1 1 ++1 1 +-4 16 ++2 16 ++1 16 ++1 16 ++2 16 ++1 16 ++1 16 ++2 16 ++1 16 ++1 16 ++2 16 ++1 16 ++1 16 ++6 1 ++7 1 ++4 1 + +fl=(19) +fn=(80) strsep +262 2 ++3 4 ++2 2 ++1 4 ++4 33 ++7 84 +-2 56 ++13 1 ++4 4 +-22 14 ++15 14 +-15 30 + +fn=(46) +49 745 ++1 596 ++11 298 ++3 149 +-3 149 ++3 866 ++18 149 ++1 149 ++2 596 +-16 28 ++1 14 ++2 7 ++1 49 +cfi=(41) /build/glibc-t7JzpG/glibc-2.30/misc/../sysdeps/unix/sysv/linux/mmap64.c +cfn=(132) mmap +calls=7 -25 +* 140 +* 7 ++2 14 ++2 14 ++2 24 +-23 1 +-1 1 ++1 1 ++1 2 +-2 3 ++24 4 + +fn=(90) +109 30 ++2 120 + +fn=(42) +92 120 ++4 60 ++4 60 +-1 120 ++1 120 ++3 60 +cob=(2) +cfi=(18) +cfn=(44) +calls=60 0 +* 1861 + +fl=(126) /build/glibc-t7JzpG/glibc-2.30/elf/../elf/dl-runtime.c +fn=(380) _dl_fixup +66 507 ++6 338 +-6 169 ++3 338 ++3 507 +-4 169 ++5 169 ++2 169 +-2 845 ++2 169 +-2 169 ++2 169 ++5 338 ++4 338 ++4 507 ++4 338 ++1 676 +-7 676 ++16 169 +-1 169 ++1 338 ++10 1690 +cfi=(6) /build/glibc-t7JzpG/glibc-2.30/elf/dl-lookup.c +cfn=(202) _dl_lookup_symbol_x +calls=169 787 +* 245384 +* 169 ++4 845 ++10 1521 ++7 169 ++8 676 ++4 507 +fi=(5) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86_64/dl-machine.h ++97 169 +fe=(126) +-93 507 +fi=(192) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86_64/dl-irel.h +32 8 +cob=(3) +cfi=(59) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memmove.c +cfn=(210) memmove +calls=1 -3 +* 17 +cob=(3) +cfi=(94) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memchr.c +cfn=(284) memchr +calls=1 -3 +* 10 +cob=(3) +cfi=(73) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memcmp.c +cfn=(240) bcmp +calls=1 -3 +* 13 +cob=(3) +cfi=(91) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strlen.c +cfn=(278) strlen +calls=1 -3 +* 10 +cob=(3) +cfi=(84) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memcpy.c +cfn=(262) memcpy@@GLIBC_2.14 +calls=1 -3 +* 17 +cob=(3) +cfi=(76) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcmp.c +cfn=(246) strcmp +calls=1 +21 +* 9 +cob=(3) +cfi=(193) /build/glibc-t7JzpG/glibc-2.30/posix/../sysdeps/x86_64/multiarch/sched_cpucount.c +cfn=(1130) __sched_cpucount +calls=1 +3 +* 7 +cob=(3) +cfi=(77) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memset.c +cfn=(248) memset +calls=1 -3 +* 19 +* 8 +fe=(126) + +fl=(24) /build/glibc-t7JzpG/glibc-2.30/posix/../sysdeps/unix/syscall-template.S +fn=(66) uname +78 5 ++1 1 + +fl=(34) +fn=(176) _dl_receive_error +226 6 ++1 1 ++1 1 ++3 1 ++1 1 ++2 1 +cfi=(2) /build/glibc-t7JzpG/glibc-2.30/elf/rtld.c +cfn=(178) version_check_doit +calls=1 637 +* 183007 ++2 1 ++1 1 ++1 4 + +fn=(104) +213 10 ++2 2 +cob=(2) +cfi=(18) +cfn=(106) +calls=1 0 +* 2837 ++1 2 ++1 1 ++1 1 +-1 1 ++1 1 ++2 5 + +fn=(108) +175 312 ++15 104 +-2 104 +-13 104 ++19 104 +-7 208 ++7 104 +-6 104 ++3 104 +-16 104 ++15 104 ++1 104 ++3 104 +cfi=(35) /build/glibc-t7JzpG/glibc-2.30/setjmp/../sysdeps/x86_64/setjmp.S +cfn=(110) __sigsetjmp +calls=104 30 +* 2496 +* 416 ++2 312 +cfi=(46) /build/glibc-t7JzpG/glibc-2.30/elf/dl-deps.c +cfn=(148) openaux +calls=103 61 +* 382425 +cfi=(2) +cfn=(112) map_doit +calls=1 604 +* 2778 ++2 104 +-1 104 ++1 104 +-1 104 ++1 208 ++9 416 + +fl=(40) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/wordsize-64/fxstat.c +fn=(128) _fxstat +33 112 ++1 56 ++1 112 ++4 28 + +fl=(1) ??? +fn=(0) 0x0000000000001100 +0 2 +cfi=(2) +cfn=(2) _dl_start +calls=1 461 +0 4715022 +0 14 +cfi=(121) /build/glibc-t7JzpG/glibc-2.30/elf/dl-init.c +cfn=(360) _dl_init +calls=1 79 +0 159387 +0 3 +cob=(30) +cfi=(217) ??? +cfn=(1640) _start +calls=1 0 +0 22490037978 + +fl=(7) /build/glibc-t7JzpG/glibc-2.30/elf/../elf/dl-sysdep.c +fn=(352) _dl_sysdep_start_cleanup +259 1 ++1 1 + +fn=(12) _dl_sysdep_start +88 9 ++25 1 +-1 1 ++1 175 ++6 1 +-3 1 ++1 1 +-4 1 ++3 1 ++3 8 +-29 1 +-1 2 ++30 20 ++1 108 ++61 1 ++1 1 +-1 1 ++1 1 +-63 75 ++34 1 +-34 2 ++35 1 +-35 2 ++46 1 +-46 1 ++47 1 +-1 1 +-46 3 ++40 1 +-40 1 ++41 1 +-1 1 +-40 3 ++37 1 +-37 2 ++38 1 +-38 3 ++13 1 +-13 2 ++14 1 +-14 2 ++10 1 +-10 2 ++11 1 +-11 2 ++7 1 +-7 4 ++4 1 +-4 4 +224 1 +cfi=(8) +cfn=(14) __GI___tunables_init +calls=1 +64 +* 24244 +fi=(10) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/unix/sysv/linux/dl-sysdep.c +36 2 +cfi=(11) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/unix/sysv/linux/x86_64/brk.c +cfn=(20) brk +calls=1 -8 +* 10 +fi=(12) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86/cpu-features.c +322 1 +-13 1 ++13 1 +-12 1 ++1 1 ++11 1 ++3 6 +476 3 ++1 1 ++3 2 ++1 1 ++6 1 ++6 1 +-5 1 ++5 1 +-3 1 ++3 1 +-4 1 ++4 1 +cfi=(8) +cfn=(26) +calls=1 369 +* 18 ++2 4 +cfi=(8) +cfn=(26) +calls=1 369 +* 20 +* 1 ++2 3 +-2 1 ++2 1 +cfi=(8) +cfn=(26) +calls=1 369 +* 20 +* 1 ++2 3 +-2 1 ++2 1 +cfi=(8) +cfn=(26) +calls=1 369 +* 20 +* 1 ++12 1 +-1 1 +-11 1 ++12 1 ++47 4 +cfi=(8) +cfn=(26) +calls=1 369 +* 18 ++2 4 +cfi=(8) +cfn=(26) +calls=1 369 +* 18 +fi=(13) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/unix/sysv/linux/x86/cpu-features.c +28 6 +fe=(7) +235 3 ++1 1 +cfi=(14) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/../strlen.S +cfn=(30) strlen +calls=1 41 +* 17 +* 1 ++2 2 +cfi=(15) /build/glibc-t7JzpG/glibc-2.30/elf/../misc/sbrk.c +cfn=(32) sbrk +calls=1 32 +* 18 +* 3 ++12 3 ++3 5 +cfi=(2) +cfn=(34) dl_main +calls=1 1088 +* 4688806 ++1 1 ++1 8 +fi=(12) +515 3 ++28 2 +-9 3 ++2 4 ++1 2 ++2 4 ++1 2 +331 6 +cfn=(24) get_common_indices.constprop.0 +calls=1 71 +* 99 +49 4 ++1 2 ++1 6 ++5 2 ++1 6 ++5 2 ++1 6 +336 7 ++89 4 +-96 1 ++96 2 +-99 1 ++12 10 ++38 2 ++14 1 ++10 5 ++14 2 ++1 1 +fe=(7) + +fl=(44) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/close_nocancel.c +fn=(140) __GI___close_nocancel +25 28 ++1 112 ++1 28 + +fl=(35) +fn=(110) +30 104 ++2 104 ++9 104 ++1 208 ++1 104 ++4 104 ++1 104 ++1 104 ++1 104 ++1 104 ++2 208 ++2 104 ++1 104 ++1 104 ++2 208 ++2 104 ++8 104 ++3 104 ++1 104 ++7 104 ++1 104 + +fl=(25) /build/glibc-t7JzpG/glibc-2.30/elf/dl-load.c +fn=(68) _dl_init_paths +681 2 ++13 2 +-13 8 ++13 3 +cfi=(26) /build/glibc-t7JzpG/glibc-2.30/elf/dl-hwcaps.c +cfn=(70) _dl_important_hwcaps +calls=1 42 +* 747 ++5 1 +-5 1 ++5 1 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 27 +-1 1 ++2 2 ++7 2 ++1 4 +-1 3 ++4 4 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 27 +* 2 ++2 2 ++7 1 ++10 1 +-2 2 ++2 1 ++3 2 ++9 1 +-7 1 ++7 2 +-3 1 +-20 1 ++12 1 ++3 1 ++8 1 +-3 17 +cfi=(28) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S +cfn=(76) memset +calls=4 108 +* 52 ++3 18 +-14 9 ++14 3 +-12 6 ++4 3 ++4 3 +-7 3 ++3 3 ++1 3 +-2 3 ++5 3 ++1 3 +-4 3 ++4 3 ++14 1 +-11 1 ++6 1 ++1 1 ++5 2 ++2 4 ++2 3 ++38 5 +-19 1 +-2 1 ++2 2 ++21 2 +cfi=(14) +cfn=(30) +calls=1 41 +* 17 +* 10 +-7 2 ++7 9 +cfi=(20) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S +cfn=(48) memcpy +calls=1 127 +* 11 +* 1 ++5 4 +-1 2 ++2 56 +-1 57 ++5 1 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 27 +-1 1 ++1 1 ++1 2 ++6 6 +cfn=(78) fillin_rpath +calls=1 447 +* 588 ++3 3 ++6 1 ++4 8 +-30 2 + +fn=(152) open_verify.constprop.0 +1653 590 ++39 59 +-39 118 ++39 118 ++31 236 +cfi=(37) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/open64_nocancel.c +cfn=(120) __open_nocancel +calls=59 34 +* 1220 +* 59 ++2 118 ++11 26 ++1 52 ++5 26 +-5 26 ++5 130 +cfi=(38) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/read_nocancel.c +cfn=(122) __read_nocancel +calls=26 25 +* 156 ++2 52 ++2 78 ++2 52 ++6 52 ++16 234 +-65 33 +1990 531 +1770 182 ++74 52 ++5 52 ++2 104 ++6 52 ++11 52 ++6 26 ++1 26 +-1 26 ++2 26 +-2 52 ++1 26 +-1 26 ++1 52 ++22 78 +1730 26 +1897 1450 ++2 686 ++13 105 ++3 70 ++1 35 +-1 70 ++6 6 ++1 48 ++10 24 +cfi=(51) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/lseek64.c +cfn=(168) lseek +calls=3 28 +* 18 ++1 18 +cfi=(38) +cfn=(122) +calls=3 25 +* 18 +* 18 ++10 210 +-3 240 ++15 10 ++6 15 +-3 5 ++1 5 ++1 5 ++2 5 +-3 15 +-1 5 ++4 10 +1770 12 +1986 52 +cob=(2) +cfi=(18) +cfn=(88) +calls=26 0 +* 182 +* 26 +-43 210 ++3 35 +-4 35 ++4 70 ++5 5 ++1 70 +-73 15 ++1 3 +-1 2 ++1 1 +cfi=(51) +cfn=(168) +calls=1 28 +* 6 ++1 5 +cfi=(38) +cfn=(122) +calls=1 25 +* 6 +* 8 + +fn=(118) open_verify.constprop.1 +1653 1 ++70 1 +-70 6 ++70 1 +-70 5 ++70 1 +cfi=(37) +cfn=(120) +calls=1 34 +* 19 +* 1 ++2 2 ++11 2 ++6 1 +-6 1 ++1 2 ++5 5 +cfi=(38) +cfn=(122) +calls=1 25 +* 6 ++2 2 ++2 3 ++2 2 ++6 2 ++16 9 +1986 2 +cob=(2) +cfi=(18) +cfn=(88) +calls=1 0 +* 7 ++4 9 +1770 7 ++74 2 ++5 2 ++2 4 ++6 2 ++11 2 ++6 1 ++1 1 +-1 3 ++1 1 +-1 1 ++1 2 ++1 2 ++21 3 +1730 1 +1897 68 ++2 34 ++13 6 ++3 8 ++28 12 +-3 12 ++3 12 ++3 2 +-4 2 ++4 4 ++6 4 +-36 6 + +fn=(114) _dl_map_object +2152 1040 ++8 208 ++1 416 ++3 5932 ++5 12439 ++2 5331 +cfi=(36) /build/glibc-t7JzpG/glibc-2.30/elf/dl-misc.c +cfn=(116) _dl_name_match_p +calls=1777 282 +* 168932 +* 3554 ++4 3400 ++1 5100 ++3 1501 ++1 1501 ++1 1501 +-1 1501 ++1 1501 +cfi=(22) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/strcmp.S +cfn=(58) strcmp +calls=1501 111 +* 56718 +* 3002 +2463 936 +2197 162 +-43 27 ++53 81 ++36 54 +-2 27 ++2 27 +cfi=(29) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/../strchr.S +cfn=(84) index +calls=27 23 +* 720 +* 54 +2394 2 +-1 3 +cfn=(82) expand_dynamic_string_token +calls=1 378 +* 246 ++2 1 +-3 1 ++1 1 ++2 2 ++4 5 +cfn=(118) +calls=1 1653 +* 294 +* 1 ++3 2 ++12 4 ++46 1 ++1 3 +-1 1 ++1 9 +cfn=(124) _dl_map_object_from_fd +calls=1 866 +* 1850 +-1 26 ++1 78 +-1 26 ++1 234 +cfn=(124) +calls=26 866 +* 50556 +* 81 +2247 52 +cfi=(14) +cfn=(30) +calls=26 41 +* 496 +* 52 ++2 52 ++7 104 ++36 312 +cfn=(150) open_path +calls=26 2004 +* 8282 ++6 26 +-6 26 ++6 104 +659 26 +2299 26 +659 52 ++3 10 +2386 52 ++28 104 ++2 104 +2260 130 ++8 104 +-3 99 +659 33 +2266 33 +659 66 ++3 10 ++3 15 ++3 5 ++1 5 +2307 26 ++14 52 ++2 78 ++4 52 +cfi=(48) /build/glibc-t7JzpG/glibc-2.30/elf/dl-cache.c +cfn=(156) _dl_load_cache_lookup +calls=26 187 +* 35687 +* 26 ++2 52 ++4 52 ++8 78 ++23 182 +cfn=(152) +calls=26 1653 +* 6876 ++4 52 +-4 26 ++4 26 ++1 52 +-89 104 ++1 208 +659 26 +2282 26 +659 52 +2291 52 ++1 52 +665 15 ++3 5 ++1 5 + +fn=(124) +866 297 ++10 27 +-10 27 ++10 27 +-10 81 ++10 27 +cfi=(31) /build/glibc-t7JzpG/glibc-2.30/elf/dl-debug.c +cfn=(92) _dl_debug_initialize +calls=27 46 +* 243 +fi=(39) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/posix/dl-fileid.h +37 81 +fe=(25) +876 27 +fi=(39) +37 27 +cfi=(40) +cfn=(128) +calls=27 -4 +* 297 +* 54 ++3 27 +fe=(25) +892 27 +fi=(39) +40 27 ++1 54 +fe=(25) +892 1458 ++1 810 +fi=(39) +49 1512 +fe=(25) +1401 243 +910 54 ++24 108 ++10 54 ++7 108 ++32 54 +877 27 +986 189 +cfi=(17) /build/glibc-t7JzpG/glibc-2.30/elf/dl-object.c +cfn=(38) _dl_new_object +calls=27 59 +* 9754 +* 27 ++1 54 ++11 54 ++5 27 +-5 27 ++1 27 ++5 27 +-5 27 ++1 27 ++2 27 +-2 27 ++2 54 ++1 81 ++20 54 +-2 27 ++2 459 ++8 27 +-8 27 ++8 27 +-8 27 ++8 81 ++97 27 +1025 27 +1128 27 +1024 27 +-5 54 +1128 81 +-96 2063 ++23 530 ++5 742 ++8 106 ++1 106 ++1 106 +-2 106 ++1 212 ++1 318 +-1 106 ++1 106 +-1 212 ++1 424 ++3 106 +-3 106 ++1 212 ++2 106 ++4 212 ++1 474 ++5 158 +-1 79 ++1 79 +-1 79 +-14 79 ++15 395 +-52 474 ++52 54 +-1 27 ++1 27 +-1 27 +-14 27 ++15 135 +-52 1146 +1152 54 +999 54 +1165 54 ++10 108 +fi=(42) /build/glibc-t7JzpG/glibc-2.30/elf/./dl-map-segments.h +56 27 +fe=(25) +1175 54 +fi=(42) +56 54 +fe=(25) +1175 81 +fi=(42) +56 54 +-6 27 ++6 27 +-6 27 ++6 27 +cfi=(41) +cfn=(132) +calls=27 -8 +* 542 +* 27 ++4 54 ++3 54 ++1 27 ++2 27 +-3 27 ++1 27 ++2 27 ++7 80 +cfi=(50) /build/glibc-t7JzpG/glibc-2.30/misc/../sysdeps/unix/syscall-template.S +cfn=(164) mprotect +calls=8 +5 +* 48 +* 16 ++7 27 ++2 27 +fi=(43) /build/glibc-t7JzpG/glibc-2.30/elf/./dl-load.h ++8 212 ++1 81 ++2 212 +fi=(42) ++11 424 ++6 27 ++2 27 +-2 27 ++1 27 ++2 54 +-1 54 ++3 54 ++5 54 ++17 54 ++12 106 +-59 530 ++2 395 ++2 632 +cfi=(41) +cfn=(132) +calls=79 -46 +* 1422 +* 158 +fe=(25) +1096 15 ++4 5 ++1 10 ++1 5 ++3 25 ++1 5 ++3 5 +-3 5 ++7 20 ++6 5 +cfi=(32) /build/glibc-t7JzpG/glibc-2.30/elf/../elf/dl-tls.c +cfn=(166) _dl_next_tls_modid +calls=5 48 +* 35 +* 5 ++1 10 +-71 4 ++1 2 +-12 54 ++5 54 ++1 108 +1144 185 +cfi=(21) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86/dl-prop.h +cfn=(130) _dl_process_pt_note +calls=37 153 +* 1821 +* 148 +1032 310 +1139 108 ++2 27 +-6 54 ++1 27 +1007 14 ++1 1 +-1 1 ++1 1 +-1 1 ++1 2 +cfi=(51) +cfn=(168) +calls=1 28 +* 6 ++1 4 +cfi=(38) +cfn=(122) +calls=1 25 +* 6 +* 2 +1187 108 ++9 81 +fi=(3) /build/glibc-t7JzpG/glibc-2.30/elf/get-dynamic-info.h +42 27 ++6 27 +-2 27 ++2 54 ++15 27 ++5 27 ++3 27 +-2 27 +-2 27 +-3 54 +-1 616 ++1 381 +-16 127 ++26 127 +-26 852 ++26 598 +-26 1196 ++2 1450 ++23 1196 +-8 135 ++3 108 ++3 108 ++1 108 ++9 54 ++20 86 ++1 108 ++1 108 ++1 108 ++2 108 ++5 107 ++1 106 ++1 108 ++5 81 ++5 52 ++7 54 ++1 81 ++18 81 ++5 10 ++2 10 ++2 10 ++2 10 ++3 81 ++2 9 ++8 6 ++5 6 ++3 54 +fe=(25) +1203 54 ++1 54 ++20 81 ++19 54 ++2 135 ++48 81 ++1 10 ++3 10 +cfi=(44) +cfn=(140) +calls=5 25 +* 30 +* 44 +cfi=(44) +cfn=(140) +calls=22 25 +* 132 +* 54 ++9 54 ++2 108 ++2 54 ++16 54 +cfi=(6) +cfn=(10) _dl_setup_hash +calls=27 909 +* 648 ++4 54 ++1 54 ++17 54 ++1 2 ++3 2 ++5 2 +-5 4 ++5 2 +-5 25 ++5 25 +-5 50 ++5 25 ++10 54 ++10 81 +cfi=(17) +cfn=(50) _dl_add_to_namespace_list +calls=27 31 +* 2592 ++4 81 +fi=(42) +123 54 ++8 189 +cfi=(28) +cfn=(76) +calls=27 -23 +* 2142 ++1 81 +fi=(39) +-83 48 +fi=(43) ++45 125 ++2 25 +-1 50 ++1 25 +-1 25 ++1 25 +-1 25 ++1 25 +-1 50 ++3 100 +fi=(42) ++43 24 +cfi=(41) +cfn=(132) +calls=3 -93 +* 54 ++3 6 +fe=(25) + +fn=(150) +2004 208 ++1 26 +-1 182 ++1 26 ++6 52 ++5 416 +1427 26 +2009 26 +-1 26 ++8 156 ++3 52 ++9 156 ++7 78 ++1 26 +-1 26 +cfi=(20) +cfn=(74) mempcpy +calls=26 114 +* 338 +-12 26 ++12 26 ++55 52 +-22 182 +-32 177 ++3 208 +-3 208 ++3 208 ++4 231 +cfi=(20) +cfn=(74) +calls=33 114 +* 459 +* 132 +cfi=(20) +cfn=(74) +calls=33 114 +* 429 ++3 66 ++3 99 ++3 231 +cfn=(152) +calls=33 1653 +* 1782 +* 33 ++2 99 ++2 16 ++62 26 ++27 234 +2036 525 ++85 208 ++7 52 +-2 52 ++2 52 ++3 78 +-51 100 ++2 50 +-46 66 ++25 16 ++1 56 ++6 16 ++2 24 +-2 16 ++2 8 +cfi=(47) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/wordsize-64/xstat.c +cfn=(154) _xstat +calls=8 33 +* 109 +* 8 ++3 8 +-3 16 ++1 1 ++2 1 +-2 1 ++2 23 +-57 52 + +fn=(82) +378 14 +234 2 +378 2 +234 2 +378 2 +234 2 +cfi=(29) +cfn=(84) +calls=2 23 +* 114 ++3 4 +403 2 +-11 2 ++11 12 +-11 2 +cfi=(30) /build/glibc-t7JzpG/glibc-2.30/string/strdup.c +cfn=(86) strdup +calls=2 40 +* 206 + +fn=(78) +447 7 ++2 1 +-2 9 ++4 3 +cfi=(19) +cfn=(80) +calls=1 262 +* 240 +* 3 +cfi=(19) +cfn=(80) +calls=1 262 +* 8 +* 6 ++7 2 ++2 3 +cfn=(82) +calls=1 -82 +* 120 +* 1 ++4 2 ++5 2 +cfi=(14) +cfn=(30) +calls=1 41 +* 17 +* 1 ++1 2 ++7 5 ++9 17 ++1 8 ++57 2 +cob=(2) +cfi=(18) +cfn=(88) +calls=1 0 +* 7 +* 1 +-39 2 ++4 8 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 27 ++2 3 ++5 1 ++1 2 +-2 2 ++2 1 +cfi=(20) +cfn=(74) +calls=1 114 +* 13 ++1 1 ++2 1 +-3 1 ++1 1 ++2 1 ++6 4 ++1 10 ++1 4 +-1 2 ++1 4 +-1 6 ++3 1 ++1 1 +-1 1 ++1 1 ++8 1 +-1 1 ++4 3 +-60 4 ++23 2 ++43 1 ++3 9 +-15 2 + +fn=(146) _dl_dst_count +231 206 ++3 103 +-3 206 ++7 103 +-7 206 ++3 103 +cfi=(29) +cfn=(84) +calls=103 23 +* 2976 ++3 206 ++20 721 + +fl=(14) +fn=(30) +41 139 ++38 139 ++1 139 ++1 139 ++1 139 ++1 139 ++1 139 ++1 139 ++2 139 ++2 139 ++31 139 ++1 139 ++1 139 ++1 139 ++1 139 ++1 52 ++2 52 ++4 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++1 87 ++5 690 ++74 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++16 3 ++2 3 ++1 42 ++2 3 ++1 3 ++1 3 ++2 3 + +fl=(15) +fn=(32) +32 5 ++8 6 ++4 2 ++16 5 + +fl=(50) +fn=(164) +78 185 ++1 37 + +fn=(356) munmap +78 5 ++1 1 + +fl=(52) /build/glibc-t7JzpG/glibc-2.30/malloc/scratch_buffer_set_array_size.c +fn=(170) __libc_scratch_buffer_set_array_size +30 27 ++4 27 +-4 27 ++1 27 ++3 27 +-3 27 +-1 27 ++5 27 +-5 54 ++5 27 ++11 27 +-1 54 ++18 108 + +fl=(30) +fn=(86) +40 140 ++1 28 +cfi=(14) +cfn=(30) +calls=28 * +* 988 +* 28 ++1 56 +cob=(2) +cfi=(18) +cfn=(44) +calls=28 -42 +* 756 ++2 56 ++4 28 +-1 84 ++1 56 +-1 28 +cfi=(20) +cfn=(48) +calls=28 +80 +* 508 + +fl=(2) +fn=(2) +461 10 +64 3 +fi=(5) +-5 1 +fe=(2) ++5 1 +fi=(3) +-16 1 +fi=(5) ++11 2 +fe=(2) +505 1 +-3 1 +fi=(3) +48 2 ++15 1 ++5 1 ++3 1 ++1 1 ++1 1 +-4 1 +-2 1 +-3 2 +-1 20 ++1 12 +-16 4 ++26 4 +-26 8 ++2 36 ++23 13 +-25 13 ++26 13 +-26 27 ++26 1 +-26 2 ++33 2 ++20 4 ++1 4 ++1 4 ++1 4 ++2 4 ++5 4 ++1 4 ++1 4 ++5 3 ++5 2 ++7 3 ++1 3 ++8 3 ++3 3 ++4 2 ++1 2 +fe=(2) +516 2 ++7 1 +64 1 +428 1 +64 3 +428 1 +cfi=(6) +cfn=(10) +calls=1 909 +* 24 ++1 1 ++18 2 +-18 1 ++1 2 ++1 2 ++1 2 ++9 1 ++6 1 +cfi=(7) +cfn=(12) +calls=1 88 +* 4713948 +* 1 ++2 2 ++99 9 +fi=(3) +65 5 ++3 4 +fe=(2) +521 25 +fi=(4) /build/glibc-t7JzpG/glibc-2.30/elf/do-rel.h +84 1 +-1 1 ++28 3 ++1 2 +fi=(5) +540 2 +fi=(4) +112 80 +fi=(5) +540 80 ++1 41 +fi=(4) +111 41 +fi=(5) +541 82 +fi=(4) +111 82 ++5 2 +fi=(5) +421 1 +fi=(4) +124 2 +fi=(5) +333 18 +fi=(4) +124 27 ++12 9 ++3 9 +-3 9 +fi=(5) +301 9 +fi=(4) +139 9 +-3 9 ++1 18 +fi=(5) +301 18 ++8 90 ++3 18 ++21 45 +fi=(3) +71 4 ++1 3 ++1 2 +fi=(5) +353 18 ++1 9 +fe=(2) + +fn=(52) rtld_lock_default_lock_recursive +799 150 ++1 150 ++1 150 + +fn=(54) rtld_lock_default_unlock_recursive +805 150 ++1 150 ++1 150 + +fn=(98) handle_preload_list +856 10 ++5 5 +-4 1 ++10 2 +-3 3 +cfi=(33) +cfn=(100) +calls=1 28 +* 273 +* 1 ++1 3 ++9 1 +166 1 +876 2 +166 2 +878 2 +778 2 +-10 1 ++8 1 ++2 2 +-6 1 ++6 1 +-5 1 ++1 1 ++4 1 +cob=(2) +cfi=(18) +cfn=(102) +calls=1 0 +* 2862 ++1 3 ++8 4 ++74 2 ++21 9 +-15 4 +cfi=(20) +cfn=(48) +calls=1 127 +* 27 ++1 2 + +fn=(184) init_tls +697 1 ++2 1 ++4 1 +-4 1 ++4 1 ++11 1 +-1 3 +cob=(2) +cfi=(18) +cfn=(40) +calls=1 0 +* 38 +-4 1 ++15 1 +-12 1 ++6 1 +-9 1 ++11 1 ++4 1 ++2 3 +-1 2 ++3 87 ++4 5 ++2 5 +-2 5 +-5 15 +-1 10 ++10 2 ++3 1 +cfi=(32) +cfn=(186) _dl_determine_tlsoffset +calls=1 135 +* 204 ++7 1 +cfi=(32) +cfn=(188) _dl_allocate_tls_storage +calls=1 332 +* 434 +* 1 ++1 2 ++6 1 ++3 1 +-3 1 ++3 6 ++6 1 +-3 1 ++3 2 +-35 24 +-1 49 + +fn=(34) +1088 2 ++12 1 +-12 7 ++16 1 +-16 1 ++16 2 +-16 1 ++12 1 ++4 1 +2533 1 +1104 1 +-16 1 ++22 2 +2533 1 +-7 1 +1104 1 +-16 1 +2526 1 ++7 2 +1104 1 +2528 1 ++5 1 +-4 1 ++4 1 ++2 4 +cfi=(16) /build/glibc-t7JzpG/glibc-2.30/elf/dl-environ.c +cfn=(36) _dl_next_ld_env_entry +calls=1 28 +* 79 +* 4 +cfi=(16) +cfn=(36) +calls=2 28 +* 300 +* 9 ++4 6 +-2 2 ++2 42 ++1 19 +-1 57 ++9 12 +2697 3 ++32 3 +1120 4 +2624 3 ++1 3 +-56 2 ++7 2 +1328 7 +cfi=(17) +cfn=(38) +calls=1 59 +* 245 +* 1 ++2 2 ++1 1 ++1 1 ++5 2 +-5 1 ++1 3 ++4 1 +cfi=(17) +cfn=(50) +calls=1 31 +* 35 ++1 2 +1097 1 +1367 1 +-5 1 +-2 1 ++4 1 ++3 1 +-5 1 ++5 5 ++56 2 +-15 1 +1094 1 +1386 1 ++37 3 +-55 104 +fi=(21) +142 3 ++1 1 ++1 2 ++1 1 +fe=(2) +1367 24 +1476 5 ++3 2 ++2 2 ++2 3 ++13 3 ++3 2 +-2 1 ++2 1 +-2 2 +cfi=(22) +cfn=(58) +calls=1 111 +* 25 +* 2 ++7 1 ++3 1 +-5 1 ++3 1 ++2 1 ++1 2 ++4 2 ++2 2 +fi=(3) +33 1 ++9 2 ++6 1 +-2 1 ++2 2 ++15 1 ++5 1 ++4 1 +-1 1 +-2 1 +-2 1 +-3 2 +-1 24 ++1 15 +-16 5 ++26 5 +-26 10 ++2 92 ++23 41 +-25 41 ++26 41 +-26 82 ++33 3 ++20 3 ++1 4 ++1 4 ++1 4 ++2 4 ++5 4 ++1 4 ++1 4 ++5 3 ++5 2 ++7 2 ++1 3 ++18 3 ++5 2 ++2 2 ++2 2 ++2 2 ++3 3 ++2 3 ++8 2 ++5 2 ++3 2 +fe=(2) +1519 2 +cfi=(6) +cfn=(10) +calls=1 909 +* 24 ++3 2 +fi=(23) /build/glibc-t7JzpG/glibc-2.30/elf/setup-vdso.h +24 2 +fi=(21) ++35 6 +191 2 +67 2 +190 1 +67 1 +190 1 +64 1 ++3 1 +-2 1 ++2 3 ++70 5 +-1 1 +-69 4 ++3 4 ++1 2 ++1 2 ++4 3 ++4 3 ++3 3 ++1 2 ++4 1 ++1 3 ++11 1 ++1 4 ++5 2 +-12 2 +-1 1 ++1 2 ++3 2 +fe=(2) +1396 1 +-9 1 ++27 1 +-27 1 ++2 1 +-3 1 ++10 2 +-19 2 +-10 1 ++10 1 +-10 2 ++56 8 +-1 4 ++1 4 +-1 4 ++2 8 ++1 1 ++3 2 ++1 2 +-1 6 ++1 6 ++1 4 ++1 10 ++1 1 +-65 3 ++5 2 +-5 1 ++5 1 +-5 2 ++1 14 ++95 2 +-96 1 ++96 2 +-96 3 +1538 4 ++6 1 +cfi=(10) +cfn=(64) _dl_discover_osversion +calls=1 46 +* 80 +* 9 +fi=(3) +65 5 +fe=(2) +1459 1 +-92 1 ++92 1 +-92 2 +fi=(3) +68 4 ++3 4 ++1 4 +fe=(2) +1549 2 +cfi=(25) +cfn=(68) +calls=1 681 +* 1823 ++3 3 +cfi=(31) +cfn=(92) +calls=1 46 +* 18 ++7 1 +-7 1 ++2 1 ++5 1 ++4 1 ++3 1 +-3 3 ++1 2 ++3 1 ++5 1 +-7 1 ++7 1 ++18 2 ++1 2 ++5 1 +-3 2 ++2 1 ++1 2 ++5 3 ++1 5 +-1 2 ++15 3 ++1 1 +-2 1 ++2 3 ++18 1 +cfi=(32) +cfn=(94) _dl_count_modids +calls=1 108 +* 6 +* 1 ++8 3 ++3 2 ++4 3 ++5 2 ++1 1 +cfi=(31) +cfn=(96) _dl_debug_state +calls=1 73 +* 2 ++1 1 ++4 3 ++15 3 ++2 1 ++2 2 ++8 2 ++15 3 +cfi=(45) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/access.c +cfn=(142) access +calls=1 25 +* 9 +* 2 ++76 4 +64 1 +1799 1 +64 2 +1799 1 +64 1 +1799 6 +cfi=(46) +cfn=(144) _dl_map_object_deps +calls=1 159 +* 422862 +71 1 +1804 1 +71 2 ++9 2 +1804 2 ++1 5 +-1 4 ++1 56 +-1 112 ++4 3 ++1 3 ++1 1 ++2 3 ++1 4 +-1 63 ++1 88 ++12 1 ++1 1 +-1 2 ++1 2 ++2 1 ++2 4 ++2 1 +-4 1 ++5 1 +-1 2 ++14 2 ++1 2 ++1 3 ++2 2 ++1 1 +-28 2 +fi=(3) +161 2 +fe=(2) +2576 4 ++2 2 ++1 1 ++46 2 ++2 2 ++1 1 +1573 6 +-11 4 +fi=(3) +179 3 +fe=(2) +1604 2 ++6 1 +-6 2 ++6 1 +1859 1 ++1 1 +-1 1 ++2 4 +-2 3 ++2 1 +cfi=(34) +cfn=(176) +calls=1 226 +* 183024 ++10 1 ++1 1 +-1 1 ++1 1 ++3 2 +815 1 +fi=(442) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/unix/sysv/linux/dl-osinfo.h +64 2 +fe=(2) +817 1 +fi=(442) +77 1 +fe=(2) +826 1 ++7 1 +-5 1 +1880 3 +2110 3 +2277 4 ++2 1 ++7 3 +cfi=(32) +cfn=(350) _dl_allocate_tls_init +calls=1 437 +* 3618 ++3 2 ++4 2 +2170 1 ++6 1 +-10 1 ++10 1 +-6 1 ++9 2 ++8 1 +fi=(21) +33 3 +cfi=(56) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86/dl-cet.c +cfn=(190) _dl_cet_check +calls=1 343 +* 31 +fe=(2) +2233 3 ++3 1 +64 2 +2240 1 +64 2 +2241 91 ++2 58 ++5 58 ++2 58 ++6 29 ++2 58 ++1 224 +cfi=(57) /build/glibc-t7JzpG/glibc-2.30/elf/dl-reloc.c +cfn=(194) _dl_relocate_object +calls=28 148 +* 4056036 ++4 68 ++1 10 +cfi=(32) +cfn=(308) _dl_add_to_slotinfo +calls=5 887 +* 105 +* 5 +-12 1 ++1 1 +-3 2 +71 3 ++1 1 +2272 1 +72 1 +2272 1 ++26 3 ++2 2 ++24 1 +cfi=(7) +cfn=(352) +calls=1 259 +* 2 ++4 3 ++20 3 +cfi=(31) +cfn=(92) +calls=1 46 +* 9 ++1 1 +-1 1 ++2 1 +cfi=(31) +cfn=(96) +calls=1 73 +* 2 ++1 1 ++4 1 +cfi=(48) +cfn=(354) _dl_unload_cache +calls=1 330 +* 17 ++5 8 +64 1 +2313 1 ++1 3 +64 3 +2314 2 +cfi=(57) +cfn=(194) +calls=1 148 +* 13907 +71 3 ++9 3 +1873 1 +cfn=(184) +calls=1 697 +* 917 +* 2 +fi=(21) +113 2 ++3 1 ++4 1 +fe=(2) +-56 1 +1684 1 +64 2 +1684 1 +64 1 +1684 2 +cfn=(98) +calls=1 856 +* 3230 +* 1 +71 3 ++9 3 +1783 17 ++1 1 +-1 1 ++4 3 ++1 1 ++1 2 ++1 2 +-7 2 + +fn=(112) +604 2 ++2 1 +-2 1 ++2 1 ++1 2 +-1 2 ++1 3 +cfi=(25) +cfn=(114) +calls=1 2152 +* 2763 +* 1 ++2 2 + +fn=(178) +637 3 ++2 4 +cfi=(55) /build/glibc-t7JzpG/glibc-2.30/elf/dl-version.c +cfn=(180) _dl_check_all_versions +calls=1 362 +* 182996 +* 2 ++4 2 + +fl=(155) /build/glibc-t7JzpG/glibc-2.30/elf/dl-open.c +fn=(510) _dl_find_dso_for_object +174 9 ++4 3 ++1 4 ++1 88 ++1 2 +-2 63 ++5 2 ++4 7 + +fl=(45) +fn=(142) +25 1 ++2 7 ++4 1 + +fl=(12) +fn=(24) +71 2 ++4 4 ++3 3 ++4 2 +-4 1 ++4 1 +-4 1 ++3 1 ++1 1 ++1 4 ++1 4 ++1 3 ++1 2 ++7 2 ++1 3 ++6 1 +-6 4 ++6 1 ++1 7 ++7 3 ++4 2 ++2 4 +225 2 ++4 3 ++1 2 ++3 1 +-1 1 ++4 1 ++2 1 +-2 1 ++5 2 ++50 3 +118 2 ++3 4 ++3 2 ++8 1 +-5 3 ++8 2 ++2 2 ++2 3 ++4 2 ++4 2 ++7 3 + +fl=(46) +fn=(148) +61 309 ++7 103 +-4 206 ++1 103 +-1 824 +cfi=(25) +cfn=(114) +calls=103 2152 +* 380571 +* 103 ++5 206 + +fn=(144) +159 2 ++1 3 +-1 2 ++1 1 +-1 1 ++1 1 +-1 5 ++1 3 +-1 1 ++1 1 +-1 1 ++1 7 +-15 1 ++15 2 +-8 1 +-6 1 +-1 1 ++15 1 +-16 1 ++8 3 +-6 1 ++6 1 ++24 3 +-28 3 +-2 1 ++31 1 +-33 2 ++2 5 +-1 4 ++7 4 ++24 7 ++4 1 +fi=(53) /build/glibc-t7JzpG/glibc-2.30/elf/../include/scratch_buffer.h +77 3 +fe=(46) +198 1 +fi=(53) +78 1 +fe=(46) +200 2 ++87 1 +-89 1 ++4 1 ++7 1 ++4 4 +-4 28 ++4 112 ++11 64 +-18 3 ++18 6 +433 87 ++2 27 ++3 27 +-3 54 ++3 54 +cob=(2) +cfi=(18) +cfn=(44) +calls=27 0 +* 729 +* 27 ++1 54 ++6 27 ++1 135 +cfi=(20) +cfn=(48) +calls=27 127 +* 361 ++1 135 +cfi=(20) +cfn=(48) +calls=27 127 +* 361 ++4 27 +-1 27 ++5 116 +202 84 +458 84 +-1 29 ++1 58 +199 3 ++27 26 ++11 26 +-5 26 +-6 52 ++5 26 ++2 52 ++1 52 ++3 104 ++66 26 +-97 26 ++97 26 +-66 26 ++66 52 +-65 78 ++6 104 +cfi=(25) +cfn=(146) +calls=26 -13 +* 1164 +* 308 +cfi=(25) +cfn=(146) +calls=77 -13 +* 3666 +* 309 ++4 309 +-2 103 ++2 103 +cob=(2) +cfi=(18) +cfn=(106) +calls=103 0 +* 388502 ++1 206 ++9 103 ++2 206 ++5 135 ++6 27 ++2 27 +-8 54 ++3 27 ++1 27 ++1 27 ++1 27 ++4 135 ++4 309 ++1 246 +-43 2936 ++1 1416 ++44 1893 +-38 206 +fi=(53) +85 3 +fe=(46) +464 6 ++1 1 ++3 5 ++11 4 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 27 +* 1 ++2 2 ++5 6 ++1 1 ++2 4 ++2 1 ++4 3 ++4 2 +-10 3 ++2 28 ++4 84 ++4 56 +-10 84 ++13 2 ++51 3 ++2 1 +-1 1 ++1 2 ++35 5 +cfi=(20) +cfn=(48) +calls=1 127 +* 69 ++4 5 +cfi=(54) /build/glibc-t7JzpG/glibc-2.30/elf/dl-sort-maps.c +cfn=(174) _dl_sort_maps +calls=1 28 +* 15467 ++3 1 ++2 1 ++1 1 +-1 1 ++2 2 ++7 3 ++3 3 ++3 8 +214 200 ++3 27 +fi=(53) +-86 81 +cfi=(52) +cfn=(170) +calls=27 30 +* 486 +fe=(46) ++86 54 ++4 81 +-61 2 +380 56 + +fl=(22) +fn=(58) +111 11121 ++33 11121 ++1 11121 ++2 11121 ++1 11121 ++21 11121 ++1 11121 ++1 9824 ++1 9824 ++1 7998 ++1 7998 ++1 7998 ++1 7998 ++21 7998 ++1 7998 ++1 7998 ++1 7998 ++1 7998 ++1 7998 ++1 7998 ++5 170 ++1 510 ++9 170 ++1 170 ++1 170 ++1 170 ++1 170 ++1 170 ++1 170 ++1 170 +-7 3123 ++1 3123 ++1 3123 ++1 3123 ++1 3123 ++1 3123 ++1 3123 ++1 3123 ++1 3030 ++1 1774 ++1 1774 ++1 1774 ++2 1774 ++1 1774 ++1 1774 ++1 1774 ++1 1774 ++1 1774 +-5 1256 ++1 1256 ++1 1256 ++1 1256 ++1 1256 ++1 1256 ++10 263 ++1 263 ++1 263 ++2 263 ++6 263 ++1 263 ++1 263 ++1 263 ++1 263 ++5 263 ++2 121 ++1 121 ++1 242 ++8 121 ++1 121 ++3 121 ++1 121 ++1 121 ++1 121 ++1 121 ++1 121 +-9 24 ++1 24 ++3 24 ++1 24 ++1 24 ++1 24 ++1 24 ++1 24 ++6 35 ++1 35 ++1 35 ++3 35 ++1 35 ++1 35 ++1 35 ++1 35 ++1 35 ++5 24 ++1 24 ++9 5 ++1 5 ++1 5 ++1 5 ++1 5 ++2 5 ++1 5 ++1 5 ++1 5 ++1 5 ++1 5 ++1 5 ++1 5 ++3 5 ++1 5 ++1 5 ++6 5 ++1 5 ++1 10 ++4 5 ++1 5 ++3 5 ++1 5 ++1 5 ++3 5 ++1 5 ++1 5 ++6 5 ++1 5 ++1 5 ++1 5 ++1 5 ++1 5 ++6 2 ++1 2 ++2 2 ++1 2 ++2 2 ++1 2 ++1 2 ++3 2 ++1 2 ++1 2 ++6 2 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++48 105 ++1 105 ++1 105 ++1 105 ++1 105 ++2 105 ++1 105 ++1 105 ++1 105 ++1 105 ++1 105 ++1 105 ++1 12 ++3 12 ++1 12 ++1 12 ++6 12 ++1 12 ++1 24 ++4 12 ++1 12 ++3 12 ++1 12 ++1 12 ++3 12 ++1 12 ++1 12 ++6 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++72 45 ++1 45 ++1 45 ++1 45 ++1 45 ++2 45 ++1 45 ++1 45 ++1 45 ++1 45 ++1 45 ++1 45 ++1 18 ++4 18 ++1 18 ++1 18 ++6 18 ++1 18 ++1 36 ++4 18 ++1 18 +-1 1 ++1 1 ++3 19 ++1 19 ++1 19 ++3 19 ++1 19 ++1 19 ++6 19 ++1 19 ++1 19 ++1 19 ++1 19 ++1 19 ++7 1 ++1 1 ++2 1 ++1 1 ++2 1 ++1 1 ++1 1 ++3 1 ++1 1 ++1 1 ++6 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++7 1 ++1 1 ++1 1 ++32 24 ++1 24 ++1 24 ++1 24 ++1 24 ++2 24 ++1 24 ++1 24 ++1 24 ++1 24 ++1 24 ++1 24 ++1 23 ++4 23 ++1 23 ++1 23 ++6 23 ++1 23 ++1 46 ++4 23 ++1 23 +-1 4 ++1 4 ++3 27 ++1 27 ++1 27 ++3 27 ++1 27 ++1 27 ++6 27 ++1 27 ++1 27 ++1 27 ++1 27 ++1 27 ++7 10 ++1 10 ++2 10 ++1 10 ++2 10 ++1 10 ++1 10 ++3 10 ++1 10 ++1 10 ++6 10 ++1 10 ++1 10 ++1 10 ++1 10 ++1 10 ++7 4 ++1 4 ++1 4 ++32 42 ++1 42 ++1 42 ++1 42 ++1 42 ++2 42 ++1 42 ++1 42 ++1 42 ++1 42 ++1 42 ++1 42 ++1 24 ++4 24 ++1 24 ++1 24 ++6 24 ++1 24 ++1 48 ++4 24 ++1 24 +-1 2 ++1 2 ++3 26 ++1 26 ++1 26 ++3 26 ++1 26 ++1 26 ++6 26 ++1 26 ++1 26 ++1 26 ++1 26 ++1 26 ++7 3 ++1 3 ++2 3 ++1 3 ++2 3 ++1 3 ++1 3 ++3 3 ++1 3 ++1 3 ++6 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++7 2 ++1 2 ++1 2 ++32 189 ++1 189 ++1 189 ++1 189 ++1 189 ++2 189 ++1 189 ++1 189 ++1 189 ++1 189 ++1 189 ++1 189 ++1 30 ++4 30 ++1 30 ++1 30 ++6 30 ++1 30 ++1 60 ++4 30 ++1 30 +-1 4 ++1 4 ++3 34 ++1 34 ++1 34 ++3 34 ++1 34 ++1 34 ++6 34 ++1 34 ++1 34 ++1 34 ++1 34 ++1 34 ++7 5 ++1 5 ++2 5 ++1 5 ++2 5 ++1 5 ++1 5 ++3 5 ++1 5 ++1 5 ++6 5 ++1 5 ++1 5 ++1 5 ++1 5 ++1 5 ++7 4 ++1 4 ++1 4 ++32 106 ++1 106 ++1 106 ++1 106 ++1 106 ++2 106 ++1 106 ++1 106 ++1 106 ++1 106 ++1 106 ++1 106 ++1 31 ++4 31 ++1 31 ++1 31 ++6 31 ++1 31 ++1 62 ++4 31 ++1 31 +-1 5 ++1 5 ++3 36 ++1 36 ++1 36 ++3 36 ++1 36 ++1 36 ++6 36 ++1 36 ++1 36 ++1 36 ++1 36 ++1 36 ++7 9 ++1 9 ++2 9 ++1 9 ++2 9 ++1 9 ++1 9 ++3 9 ++1 9 ++1 9 ++6 9 ++1 9 ++1 9 ++1 9 ++1 9 ++1 9 ++7 5 ++1 5 ++1 5 ++32 174 ++1 174 ++1 174 ++1 174 ++1 174 ++2 174 ++1 174 ++1 174 ++1 174 ++1 174 ++1 174 ++1 174 ++1 45 ++4 45 ++1 45 ++1 45 ++6 45 ++1 45 ++1 90 ++4 45 ++1 45 +-1 6 ++1 6 ++3 51 ++1 51 ++1 51 ++3 51 ++1 51 ++1 51 ++6 51 ++1 51 ++1 51 ++1 51 ++1 51 ++1 51 ++7 12 ++1 12 ++2 12 ++1 12 ++2 12 ++1 12 ++1 12 ++3 12 ++1 12 ++1 12 ++6 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++7 6 ++1 6 ++1 6 ++32 229 ++1 229 ++1 229 ++1 229 ++1 229 ++2 229 ++1 229 ++1 229 ++1 229 ++1 229 ++1 229 ++1 229 ++1 90 ++4 90 ++1 90 ++1 90 ++6 90 ++1 90 ++1 180 ++4 90 ++1 90 +-1 9 ++1 9 ++3 99 ++1 99 ++1 99 ++3 99 ++1 99 ++1 99 ++6 99 ++1 99 ++1 99 ++1 99 ++1 99 ++1 99 ++7 13 ++1 13 ++2 13 ++1 13 ++2 13 ++1 13 ++1 13 ++3 13 ++1 13 ++1 13 ++6 13 ++1 13 ++1 13 ++1 13 ++1 13 ++1 13 ++7 9 ++1 9 ++1 9 ++32 383 ++1 383 ++1 383 ++1 383 ++1 383 ++2 383 ++1 383 ++1 383 ++1 383 ++1 383 ++1 383 ++1 383 ++1 123 ++4 123 ++1 123 ++1 123 ++6 123 ++1 123 ++1 246 ++4 123 ++1 123 +-1 9 ++1 9 ++3 132 ++1 132 ++1 132 ++3 132 ++1 132 ++1 132 ++6 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++7 12 ++1 12 ++2 12 ++1 12 ++2 12 ++1 12 ++1 12 ++3 12 ++1 12 ++1 12 ++6 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++7 9 ++1 9 ++1 9 ++32 248 ++1 248 ++1 248 ++1 248 ++1 248 ++2 248 ++1 248 ++1 248 ++1 248 ++1 248 ++1 248 ++1 248 ++1 47 ++4 47 ++1 47 ++1 47 ++6 47 ++1 47 ++1 94 ++4 47 ++1 47 +-1 4 ++1 4 ++3 51 ++1 51 ++1 51 ++3 51 ++1 51 ++1 51 ++6 51 ++1 51 ++1 51 ++1 51 ++1 51 ++1 51 ++7 9 ++1 9 ++2 9 ++1 9 ++2 9 ++1 9 ++1 9 ++3 9 ++1 9 ++1 9 ++6 9 ++1 9 ++1 9 ++1 9 ++1 9 ++1 9 ++7 4 ++1 4 ++1 4 ++32 409 ++1 409 ++1 409 ++1 409 ++1 409 ++2 409 ++1 409 ++1 409 ++1 409 ++1 409 ++1 409 ++1 409 ++1 64 ++4 64 ++1 64 ++1 64 ++6 64 ++1 64 ++1 128 ++4 64 ++1 64 +-1 12 ++1 12 ++3 76 ++1 76 ++1 76 ++3 76 ++1 76 ++1 76 ++6 76 ++1 76 ++1 76 ++1 76 ++1 76 ++1 76 ++7 21 ++1 21 ++2 21 ++1 21 ++2 21 ++1 21 ++1 21 ++3 21 ++1 21 ++1 21 ++6 21 ++1 21 ++1 21 ++1 21 ++1 21 ++1 21 ++7 12 ++1 12 ++1 12 ++32 276 ++1 276 ++1 276 ++1 276 ++1 276 ++2 276 ++1 276 ++1 276 ++1 276 ++1 276 ++1 276 ++1 276 ++1 49 ++4 49 ++1 49 ++1 49 ++6 49 ++1 49 ++1 98 ++4 49 ++1 49 +-1 13 ++1 13 ++3 62 ++1 62 ++1 62 ++3 62 ++1 62 ++1 62 ++6 62 ++1 62 ++1 62 ++1 62 ++1 62 ++1 62 ++7 20 ++1 20 ++2 20 ++1 20 ++2 20 ++1 20 ++1 20 ++3 20 ++1 20 ++1 20 ++6 20 ++1 20 ++1 20 ++1 20 ++1 20 ++1 20 ++7 13 ++1 13 ++1 13 ++32 488 ++1 488 ++1 488 ++1 488 ++1 488 ++2 488 ++1 488 ++1 488 ++1 488 ++1 488 ++1 488 ++1 488 ++1 55 ++4 55 ++1 55 ++1 55 ++6 55 ++1 55 ++1 110 ++4 55 ++1 55 +-1 17 ++1 17 ++3 72 ++1 72 ++1 72 ++3 72 ++1 72 ++1 72 ++6 72 ++1 72 ++1 72 ++1 72 ++1 72 ++1 72 ++7 24 ++1 24 ++2 24 ++1 24 ++2 24 ++1 24 ++1 24 ++3 24 ++1 24 ++1 24 ++6 24 ++1 24 ++1 24 ++1 24 ++1 24 ++1 24 ++7 17 ++1 17 ++1 17 ++32 307 ++1 307 ++1 307 ++1 307 ++1 307 ++2 307 ++1 307 ++1 307 ++1 307 ++1 307 ++1 307 ++1 307 ++2 36 ++4 36 ++1 36 ++1 36 ++6 36 ++1 36 ++2 72 ++4 36 ++1 36 +-1 10 ++1 10 ++3 46 ++1 46 ++1 46 ++3 46 ++1 46 ++1 46 ++6 46 ++1 46 ++1 46 ++1 46 ++1 46 ++1 46 ++7 19 ++1 19 ++2 19 ++1 19 ++2 19 ++1 19 ++1 19 ++3 19 ++1 19 ++1 19 ++6 19 ++1 19 ++1 19 ++1 19 ++1 19 ++1 19 ++7 10 ++1 10 ++1 10 ++4 1 ++1 1 ++1 1 ++1 1 ++7 1 ++1 1 ++1 1 ++18 773 ++2 773 ++1 773 ++1 773 ++1 773 +-3 2520 ++1 2520 ++1 2520 ++1 2520 ++1 3548 ++5 1774 ++6 1774 ++1 1774 ++8 1774 ++1 1774 +-16 9347 ++6 9347 ++1 9347 ++8 9347 ++1 9347 + +fl=(10) +fn=(64) +46 5 ++2 3 ++85 5 +-45 2 +cfi=(24) +cfn=(66) +calls=1 -10 +* 6 ++15 1 +-15 2 ++20 1 +-1 1 ++3 12 ++4 3 +-2 6 ++2 9 ++7 3 +-1 3 ++4 3 +-2 3 ++2 10 ++5 2 + +fl=(57) +fn=(194) +148 319 ++15 29 +-15 58 ++15 29 ++1 145 ++6 58 ++6 145 +-18 56 ++22 56 ++7 116 ++40 29 +fi=(5) +76 29 +fe=(57) +227 58 +fi=(5) +76 85 ++6 52 ++4 78 ++14 26 +-8 26 ++8 52 ++20 52 ++11 104 +fe=(57) +254 1079 +-95 26 +fi=(5) +481 78 +fe=(57) +159 52 ++95 26 +fi=(4) +48 26 +fe=(57) +254 26 +fi=(4) +47 26 ++11 26 +-11 52 ++11 52 +fe=(57) +254 3 +-95 3 +fi=(5) +481 9 +fe=(57) +159 6 ++95 3 +fi=(4) +48 3 +fe=(57) +254 3 +fi=(4) +47 3 ++11 3 +-11 6 ++11 6 +fe=(57) +254 29 +fi=(4) +48 29 +fe=(57) +254 29 +fi=(4) +47 29 ++11 29 +-11 58 ++11 58 +-7 26 +-1 52 ++11 52 +fi=(5) +551 5386 ++4 5386 ++3 8079 ++1 2693 +fi=(4) +61 8247 ++2 11004 ++2 176 +-4 6 ++13 52 ++1 14 ++1 116 +fi=(5) +551 58 ++25 116 ++2 58 +cob=(4) +cfi=(107) +cfn=(340) +calls=1 27 +* 9 +cob=(4) +cfi=(117) +cfn=(338) +calls=1 24 +* 9 +cob=(4) +cfi=(116) +cfn=(336) +calls=1 26 +* 9 +cob=(4) +cfi=(114) +cfn=(334) +calls=1 25 +* 9 +cob=(4) +cfi=(115) +cfn=(332) +calls=1 26 +* 9 +cob=(4) +cfi=(114) +cfn=(330) +calls=1 33 +* 9 +cob=(4) +cfi=(113) +cfn=(328) +calls=1 26 +* 9 +cob=(4) +cfi=(112) +cfn=(326) +calls=1 26 +* 9 +cob=(4) +cfi=(111) +cfn=(324) +calls=1 26 +* 9 +cob=(4) +cfi=(110) +cfn=(322) +calls=1 29 +* 9 +cob=(4) +cfi=(109) +cfn=(320) +calls=1 26 +* 9 +cob=(4) +cfi=(108) +cfn=(318) +calls=1 26 +* 9 +cob=(4) +cfi=(107) +cfn=(316) +calls=1 34 +* 9 +cob=(4) +cfi=(106) +cfn=(314) +calls=1 26 +* 9 +cob=(4) +cfi=(105) +cfn=(312) +calls=1 26 +* 9 +cob=(4) +cfi=(104) +cfn=(310) +calls=1 26 +* 9 +cob=(3) +cfi=(103) /build/glibc-t7JzpG/glibc-2.30/time/../sysdeps/unix/sysv/linux/x86/gettimeofday.c +cfn=(302) gettimeofday +calls=1 42 +* 75 +cob=(3) +cfi=(102) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strncase_l.c +cfn=(300) strncasecmp_l +calls=1 31 +* 6 +cob=(3) +cfi=(101) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strchrnul.c +cfn=(298) strchrnul +calls=1 31 +* 10 +cob=(3) +cfi=(99) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wmemcmp.c +cfn=(294) wmemcmp +calls=1 29 +* 13 +cob=(3) +cfi=(98) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/stpcpy.c +cfn=(292) stpcpy +calls=1 33 +* 9 +cob=(3) +cfi=(97) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/stpncpy.c +cfn=(290) stpncpy +calls=1 31 +* 9 +cob=(3) +cfi=(96) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strspn.c +cfn=(288) strspn +calls=1 29 +* 7 +cob=(3) +cfi=(95) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wcslen.c +cfn=(286) wcslen +calls=1 29 +* 10 +cob=(3) +cfi=(94) +cfn=(284) +calls=1 29 +* 10 +cob=(3) +cfi=(93) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcasecmp_l.c +cfn=(282) strcasecmp_l +calls=1 31 +* 6 +cob=(3) +cfi=(92) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/memrchr.c +cfn=(280) memrchr +calls=1 29 +* 10 +cob=(3) +cfi=(91) +cfn=(278) +calls=1 29 +* 10 +cob=(3) +cfi=(90) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strchr.c +cfn=(276) index +calls=1 49 +* 9 +cob=(3) +cfi=(89) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strpbrk.c +cfn=(274) strpbrk +calls=1 29 +* 7 +cob=(3) +cfi=(88) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wcscpy.c +cfn=(272) wcscpy +calls=1 43 +* 7 +cob=(3) +cfi=(86) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wmemset.c +cfn=(268) wmemset +calls=2 31 +* 34 +cob=(3) +cfi=(85) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wcsnlen.c +cfn=(266) wcsnlen +calls=1 49 +* 9 +cob=(3) +cfi=(84) +cfn=(262) +calls=1 29 +* 17 +cob=(3) +cfi=(83) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcpy.c +cfn=(260) strcpy +calls=1 29 +* 9 +cob=(3) +cfi=(82) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strncase.c +cfn=(258) strncasecmp +calls=1 31 +* 6 +cob=(3) +cfi=(81) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcspn.c +cfn=(256) strcspn +calls=1 29 +* 7 +cob=(3) +cfi=(80) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strnlen.c +cfn=(254) strnlen +calls=2 31 +* 20 +cob=(3) +cfi=(79) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wcschr.c +cfn=(252) wcschr +calls=2 31 +* 20 +cob=(3) +cfi=(77) +cfn=(248) +calls=1 29 +* 19 +cob=(3) +cfi=(76) +cfn=(246) +calls=1 53 +* 9 +cob=(3) +cfi=(75) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strncmp.c +cfn=(244) strncmp +calls=1 54 +* 9 +cob=(3) +cfi=(73) +cfn=(240) +calls=1 29 +* 13 +cob=(3) +cfi=(72) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/mempcpy.c +cfn=(236) mempcpy +calls=1 33 +* 17 +cob=(3) +cfi=(71) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wcscmp.c +cfn=(234) wcscmp +calls=1 30 +* 10 +cob=(3) +cfi=(70) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/wmemchr.c +cfn=(232) wmemchr +calls=2 31 +* 20 +cob=(3) +cfi=(69) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/rawmemchr.c +cfn=(230) rawmemchr +calls=1 31 +* 10 +cob=(3) +cfi=(65) +cfn=(222) time +calls=1 43 +* 75 +cob=(3) +cfi=(64) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strrchr.c +cfn=(220) rindex +calls=1 28 +* 10 +cob=(3) +cfi=(63) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcat.c +cfn=(218) strcat +calls=1 29 +* 9 +cob=(3) +cfi=(62) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strcasecmp.c +cfn=(216) strcasecmp +calls=1 31 +* 6 +cob=(3) +cfi=(61) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strncpy.c +cfn=(214) strncpy +calls=1 29 +* 9 +cob=(3) +cfi=(59) +cfn=(210) +calls=2 29 +* 34 +-27 58 ++28 58 +fi=(4) +75 176 +fe=(57) +254 232 ++3 116 ++24 29 ++3 58 ++17 87 ++2 232 +177 58 ++3 3 +fi=(4) +-96 64 +-1 32 ++3 32 +-3 32 ++3 32 ++12 32 +-12 32 ++12 64 ++10 60 ++10 12 ++3 58 ++3 58 +-73 27 +-1 27 +fi=(5) +491 81 +fi=(4) +127 15804 ++9 7902 ++1 3951 +-1 7902 ++1 3951 ++2 3951 +-2 3951 ++2 7902 +-1 7902 +fi=(5) +276 7902 ++21 7902 ++4 7902 ++7 15804 +fi=(58) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/generic/ldsodefs.h +109 11784 +fi=(5) +308 53745 +fi=(4) +138 2446 +fi=(5) +308 2446 +fi=(4) +138 2446 +fi=(5) +308 2446 +fi=(4) +138 2446 +fi=(5) +308 4892 +fi=(4) +138 9 +fi=(5) +308 9 +fi=(4) +138 9 +fi=(5) +308 9 +fi=(4) +138 9 +fi=(5) +308 29478 +cfi=(6) +cfn=(202) +calls=2455 787 +* 3552004 +* 14730 ++1 11784 ++24 23676 +457 11706 ++1 3902 +fi=(4) +124 11853 ++19 135 +fi=(5) +367 16 ++1 32 ++61 81 ++4 108 ++5 27 ++9 27 +-9 54 ++9 54 +-72 15 ++11 5 +-9 10 ++9 10 +497 27 ++4 54 +cfi=(20) +cfn=(48) +calls=9 127 +* 231 ++2 27 ++1 9 +fi=(4) +111 88 ++1 28 +fi=(5) +535 28 +fi=(4) +112 28 +fi=(5) +535 56 +fi=(4) +112 5742 +fi=(5) +535 5742 +fi=(4) +112 5742 +fi=(5) +535 11484 ++5 11540 ++1 5770 +fi=(4) +111 5770 +fi=(5) +541 11540 +fi=(4) +111 11540 ++7 84 +-67 3 +160 12 ++2 36 ++9 27 +-1 54 +fi=(5) +276 18 ++21 18 ++4 18 ++7 36 +fi=(58) +109 27 +fi=(5) +308 297 +cfi=(6) +cfn=(202) +calls=9 787 +* 13763 +* 63 ++1 27 ++24 100 +-24 3944 ++3 3875 +-3 3875 ++3 7750 ++2 75 ++3 30 ++1 45 ++1 30 ++4 15 ++7 15 +cob=(3) +cfi=(73) +cfn=(240) +calls=1 29 +* 13 +cob=(4) +cfi=(120) +cfn=(348) +calls=1 31 +* 7 +cob=(3) +cfi=(76) +cfn=(246) +calls=1 53 +* 9 +cob=(3) +cfi=(65) +cfn=(222) +calls=1 43 +* 75 +cob=(3) +cfi=(63) +cfn=(218) +calls=1 29 +* 9 +cob=(3) +cfi=(90) +cfn=(276) +calls=1 49 +* 9 +cob=(3) +cfi=(119) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/strstr.c +cfn=(346) strstr +calls=1 44 +* 7 +cob=(3) +cfi=(83) +cfn=(260) +calls=1 29 +* 9 +cob=(3) +cfi=(91) +cfn=(278) +calls=1 29 +* 10 +cob=(3) +cfi=(77) +cfn=(248) +calls=1 29 +* 19 +cob=(3) +cfi=(75) +cfn=(244) +calls=1 54 +* 9 +cob=(3) +cfi=(59) +cfn=(210) +calls=1 29 +* 17 +cob=(3) +cfi=(61) +cfn=(214) +calls=1 29 +* 9 +cob=(4) +cfi=(118) +cfn=(344) +calls=1 31 +* 7 +cob=(3) +cfi=(84) +cfn=(262) +calls=1 29 +* 17 +* 30 ++3 30 +-25 678 ++1 15408 +131 3 +fe=(57) +309 145 ++3 29 +-3 29 ++3 29 ++4 58 ++1 116 +cfi=(50) +cfn=(164) +calls=29 78 +* 174 +* 58 +fi=(5) +124 104 +-2 52 +fe=(57) +254 6 +fi=(5) ++54 13925 +457 27 ++1 9 +fi=(4) +160 29 ++14 6 +fi=(5) +309 3 ++3 3 +-3 3 ++3 6 +-3 12 +-1 36568 +fe=(57) + +fl=(6) +fn=(202) +787 26330 +552 2633 +787 10532 +552 7899 +-1 5266 ++2 2633 +-1 2633 ++1 7899 +-1 7899 ++1 103688 +-1 103688 ++1 311064 +-1 313697 +793 2633 +-4 2633 ++1 2633 ++7 2633 +-8 2633 ++1 2633 ++7 7653 ++5 13165 ++6 5266 +-7 15798 ++7 492 ++1 34229 +cfn=(204) do_lookup_x +calls=2633 339 +* 2721716 +* 10450 ++5 5266 ++24 20408 ++40 10204 ++14 7653 ++3 10204 ++5 2551 ++2 23697 +-86 492 ++17 82 ++1 164 ++59 2 + +fn=(206) check_match +75 33644 ++3 5176 ++13 10204 +-13 10204 ++13 5102 ++3 6726 +cfi=(22) +cfn=(58) +calls=406 +17 +* 27867 +* 812 ++4 2551 ++1 5102 ++2 5020 ++19 5020 ++1 20080 ++2 4 ++1 4 ++36 2548 ++7 15288 +-18 82 ++2 82 ++1 41 +-1 82 ++1 123 +-1 82 ++4 6 ++1 21 ++2 9 ++2 3 ++7 240 +-45 7524 +cfi=(22) +cfn=(58) +calls=2508 -11 +* 65723 +* 5016 +-44 150 ++82 74 + +fn=(204) +339 21064 ++1 2633 +-1 15798 ++48 2633 ++35 7899 +-65 2633 +-11 2633 ++41 2633 +-30 5266 ++65 5266 +-51 147276 ++4 49092 ++4 49092 +-3 49092 ++3 98184 ++1 147276 ++3 49092 ++1 98184 ++7 98184 +-3 98184 +-2 49092 ++5 147276 ++3 343644 +541 139650 +350 98202 ++3 98202 ++4 98526 ++4 98184 ++4 98184 ++88 5102 +fi=(58) +109 7653 +fe=(6) +504 5102 ++3 13580 ++16 12145 ++2 5102 +398 16014 +-1 10676 ++2 10676 ++2 4593 ++6 13779 +-6 4593 ++6 41337 ++7 22962 +-10 51010 ++3 2588 +-1 5176 ++1 5176 +-1 2588 ++2 5176 +-1 31056 +cfn=(206) +calls=2588 75 +* 234610 ++4 7844 +544 82 ++1 21064 +-34 4938 +204 244 +-1 122 ++3 244 +-2 122 ++2 244 ++2 122 +-2 366 +cfi=(2) +cfn=(52) +calls=122 799 +* 366 ++2 122 ++1 122 ++1 244 +-2 122 ++2 122 ++2 242 ++1 121 +-1 363 ++1 121 +-1 121 ++1 242 +-1 363 ++1 242 +-1 1232 ++24 426 ++3 132 ++1 396 +-24 1012 ++1 80 +cfi=(22) +cfn=(58) +calls=40 111 +* 2814 +* 80 ++2 200 ++10 40 ++1 160 ++2 160 +cfi=(2) +cfn=(54) +calls=40 805 +* 120 ++1 40 +445 4093 ++2 6 +244 1215 ++61 656 ++13 656 ++5 328 +cfi=(2) +cfn=(54) +calls=82 805 +* 246 ++2 328 +181 518 +-2 84 ++1 252 +-3 332 ++8 164 +-1 82 ++1 82 ++2 82 +-2 82 +313 328 +-72 132 ++46 2 ++9 4 +cob=(2) +cfi=(18) +cfn=(40) +calls=1 0 +* 38 +* 1 ++1 2 ++3 1 ++1 2 +-6 1 ++7 1 +-1 1 ++1 1 +-7 1 ++7 12297 +-51 8 +cfi=(36) +cfn=(342) _dl_higher_prime_number +calls=2 +49 +* 159 ++2 4 +-2 2 ++2 2 +cob=(2) +cfi=(18) +cfn=(40) +calls=2 0 +* 76 +* 2 ++1 4 ++7 296 ++1 276 ++1 140 +-88 70 ++88 140 +-88 70 ++88 70 +-88 70 ++1 70 +-1 70 ++1 210 ++1 440 ++2 14 ++1 42 +-3 168 ++8 70 +-1 70 ++1 70 ++2 70 +-2 70 ++3 70 +-7 10 ++86 18 +cfi=(19) +cfn=(90) +calls=2 109 +* 10 ++4 4 +-20 2 ++19 4 +-2 2 ++3 6 +-1 2 ++1 17852 + +fn=(10) +909 29 ++3 87 ++2 29 ++2 58 ++2 29 +-1 29 ++3 87 ++1 29 ++4 29 +-3 29 ++7 29 +-7 29 ++3 29 +-1 29 ++3 29 ++2 29 +-7 29 ++7 29 ++1 29 + +fl=(51) +fn=(168) +28 8 ++8 32 ++2 8 + +fl=(17) +fn=(38) +59 364 ++1 28 +-1 28 ++1 56 +cfi=(14) +cfn=(30) +calls=28 -19 +* 574 ++6 28 ++7 28 +-13 56 ++6 56 +-6 28 ++6 84 ++2 56 ++5 84 +cob=(2) +cfi=(18) +cfn=(40) +calls=28 -73 +* 1266 +* 28 ++3 56 ++4 28 ++5 28 +-6 28 ++6 28 +-5 28 ++5 28 +-5 28 ++4 28 ++1 56 +-1 28 ++1 56 +cfi=(20) +cfn=(48) +calls=28 +42 +* 327 +* 28 ++10 28 +-10 28 ++10 28 +-8 28 ++8 84 ++1 28 +-1 28 ++1 112 ++3 56 ++2 28 ++4 28 ++3 61 ++2 1 +-2 3 ++2 15 +-2 45 ++18 56 +-5 28 ++5 28 +-6 28 ++6 28 +-6 28 ++6 56 ++2 54 ++3 54 +-3 54 ++7 136 ++4 54 ++2 1 ++6 1 ++3 1 ++3 2 +-3 1 ++3 1 +-3 27 ++3 54 +-3 27 ++3 27 ++2 27 ++21 27 +-21 27 +cfi=(14) +cfn=(30) +calls=27 41 +* 971 ++4 27 +-4 81 ++17 27 +-13 81 ++50 81 +cfi=(20) +cfn=(74) +calls=27 -95 +* 551 +* 27 ++5 54 ++1 54 +-1 802 ++1 802 ++2 54 ++3 27 ++3 27 ++4 252 +100 56 ++39 81 +-15 1 ++7 58 ++32 54 +cob=(2) +cfi=(18) +cfn=(44) +calls=27 0 +* 729 +* 27 ++1 108 + +fn=(50) +31 56 ++2 28 +-2 56 ++2 28 +-2 56 ++2 28 +cfi=(2) +cfn=(52) +calls=28 799 +* 84 ++2 195 ++3 1620 ++2 27 ++2 27 ++4 27 ++4 27 ++1 27 +-5 54 ++1 54 ++1 27 ++3 27 +-3 27 ++3 27 +-1 27 +cfi=(2) +cfn=(54) +calls=27 805 +* 81 +-4 1 ++4 1 ++1 1 +-5 2 ++1 2 ++1 1 ++3 1 +-3 1 ++3 1 +-1 1 +cfi=(2) +cfn=(54) +calls=1 805 +* 3 +-5 2 + +fl=(28) +fn=(76) +108 64 ++1 320 ++6 64 ++1 64 ++1 43 ++1 43 ++2 16 ++1 16 ++2 16 ++65 27 ++1 27 ++1 12 ++1 12 ++1 12 ++1 12 ++3 12 ++3 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++2 683 ++1 683 ++1 683 ++1 683 ++1 683 ++1 683 ++1 683 ++1 15 ++15 21 ++1 21 ++1 21 ++1 3 ++1 3 ++1 1 ++1 1 ++24 18 ++1 18 ++2 18 ++3 2 ++1 2 ++2 2 ++3 1 ++1 1 ++2 1 + +fl=(21) +fn=(130) +153 370 ++4 37 ++2 148 +53 68 ++6 52 +160 9 +-98 9 ++5 18 ++89 10 +-89 10 ++89 20 +-89 20 ++70 40 +-1 10 +-69 30 ++3 30 ++1 20 ++1 20 ++4 30 ++4 30 ++3 30 ++1 20 ++4 10 ++1 20 ++11 10 ++1 40 ++5 20 +-13 20 ++1 10 ++3 23 ++66 6 ++17 20 ++3 37 ++1 296 +-20 42 ++6 9 +-6 3 ++6 3 +cfi=(51) +cfn=(168) +calls=3 28 +* 18 ++1 3 +-7 3 ++7 12 +cfi=(38) +cfn=(122) +calls=3 25 +* 18 +* 6 +53 6 ++6 2 ++3 1 ++5 2 ++75 50 ++1 10 ++1 20 ++1 20 +-32 20 ++3 20 ++4 10 + +fl=(47) +fn=(154) +33 32 ++1 16 ++1 32 ++4 1 +-4 28 + +fl=(125) +fn=(378) +67 68 ++5 68 ++3 68 ++2 68 ++10 68 ++6 68 ++1 68 ++1 68 ++1 68 ++1 68 ++1 68 ++1 68 ++4 68 ++1 68 ++3 68 ++1 68 ++2 68 ++1 68 ++1 68 ++1 68 ++1 68 ++1 68 ++2 68 ++7 68 ++1 68 ++1 68 +cfi=(126) +cfn=(380) +calls=68 -60 +* 103106 ++1 68 ++5 68 ++1 68 ++1 68 ++2 68 ++1 68 ++1 68 ++1 68 ++1 68 ++1 68 ++1 68 ++2 68 ++2 68 ++4 68 ++3 68 + +fn=(379) +67 101 ++5 101 ++3 101 ++2 101 ++10 101 ++6 101 ++1 101 ++1 101 ++1 101 ++1 101 ++1 101 ++1 101 ++4 101 ++1 101 ++3 101 ++1 101 ++2 101 ++1 101 ++1 101 ++1 101 ++1 101 ++1 101 ++2 101 ++7 101 ++1 101 ++1 101 +cfi=(126) +cfn=(380) +calls=101 -60 +* 155916 ++1 101 ++5 101 ++1 101 ++1 101 ++2 101 ++1 101 ++1 101 ++1 101 ++1 101 ++1 101 ++1 101 ++2 101 ++2 101 ++4 101 ++3 101 + +fl=(41) +fn=(132) +48 117 ++3 234 +-3 468 ++6 234 ++5 702 ++2 351 +-7 72 + +fl=(8) +fn=(14) +288 9 +-9 4 +68 170 ++6 55 +-3 55 ++3 5013 +-6 110 +363 8 +78 110 ++5 110 +fi=(9) /build/glibc-t7JzpG/glibc-2.30/elf/dl-tunables.h ++36 55 +fe=(8) +-36 220 +fi=(9) ++37 30 +-1 105 ++1 30 +-1 55 ++1 110 +fe=(8) +329 220 +-12 6875 +fi=(9) +119 2970 ++1 68 +-1 699 ++1 1553 +fe=(8) +311 5500 +71 110 + +fn=(26) +369 50 ++3 300 ++9 50 +-9 194 ++9 9 ++17 250 ++2 50 +-9 41 ++1 41 + +fl=(55) +fn=(180) +362 6 ++4 5 +-2 2 ++4 174 +cfn=(182) _dl_check_map_versions +calls=29 156 +* 182599 +-2 29 ++2 116 +-2 58 ++5 7 + +fn=(182) +156 232 ++15 29 +-15 58 ++15 58 ++2 29 ++3 58 +-3 29 ++2 29 ++1 29 +-1 29 ++3 58 ++3 52 +-16 26 +-8 26 ++28 26 +-4 26 ++4 156 ++16 26 +37 52 +201 26 +37 130 +201 39 +37 78 +201 39 +37 195 ++1 1333 +-1 2666 ++2 4194 +cfi=(36) +cfn=(116) +calls=1398 282 +* 131960 +* 2796 +209 195 ++5 65 +-71 130 ++71 130 +-71 195 ++79 65 +-2 65 +-2 130 ++4 65 +-4 390 ++4 106 +-2 106 +-2 212 ++4 106 +-4 746 +57 66 ++8 66 +-8 447 ++8 447 ++6 513 ++16 171 ++1 342 ++2 171 ++5 1197 ++14 3002 ++12 3990 ++4 1330 +-30 2660 +225 684 ++3 513 ++5 106 +-11 106 +111 171 ++3 684 +cfi=(22) +cfn=(58) +calls=171 -3 +* 6396 +* 749 +237 260 ++5 78 +-44 39 ++1 39 ++11 26 ++41 104 ++3 48 ++10 166 +-7 664 ++3 498 +-3 48 ++3 36 ++8 54 ++89 261 +165 3 ++86 3 +-94 3 ++94 5 ++23 108 +cob=(2) +cfi=(18) +cfn=(40) +calls=27 0 +* 1065 +-1 27 ++1 27 ++1 54 ++13 27 +-3 27 ++3 54 ++2 81 ++3 104 ++4 195 ++7 171 ++1 171 +-1 342 ++1 171 +-1 171 ++1 171 ++1 171 +-2 171 ++2 342 ++1 513 ++3 513 ++5 106 +-15 106 ++2 106 +-2 106 ++2 106 +-2 106 ++2 212 +-2 65 ++2 65 +-2 65 ++2 65 +-2 65 ++2 130 ++16 195 ++5 39 +-28 39 ++33 81 ++3 48 ++4 166 ++6 166 ++1 166 ++1 166 +-1 498 ++1 166 +-1 166 ++1 166 ++1 166 ++3 498 ++4 166 +-14 356 ++10 36 + +fl=(54) +fn=(174) +28 13 ++2 2 ++4 19 ++1 3 +-1 1 ++1 2 +cfi=(28) +cfn=(76) +calls=1 +73 +* 17 +* 8 +-2 4 ++6 4 ++3 1 +-3 2 ++1 3 ++2 1 +-3 132 ++3 33 +-3 66 ++1 99 ++2 33 ++12 167 ++2 99 ++1 66 +-1 1083 ++1 722 ++33 776 +-36 1552 ++61 165 ++7 8 +-63 5178 ++1 4095 ++6 6 +-1 18 ++1 12 +-1 12 ++1 6 +-1 18 +cfi=(20) +cfn=(48) +calls=6 +62 +* 154 ++4 12 +-2 6 ++2 36 ++8 42 ++41 162 +cfi=(28) +cfn=(76) +calls=27 -10 +* 410 +* 81 +-34 36 +cfi=(20) +cfn=(48) +calls=6 +43 +* 66 ++1 18 ++2 6 +-2 6 ++2 6 + +fl=(37) +fn=(120) +34 61 ++3 61 +-3 183 ++3 366 ++8 427 ++2 28 +-2 99 ++2 33 + +fl=(11) +fn=(20) +28 1 ++3 5 ++2 2 ++6 1 ++1 1 + +fl=(20) +fn=(74) +114 130 ++1 130 ++1 130 ++1 130 ++17 130 ++1 130 ++1 38 ++1 38 ++5 14 ++1 14 ++1 14 ++1 14 ++5 14 +280 92 ++1 92 ++1 37 ++1 37 ++1 31 ++1 31 ++1 29 ++4 29 ++22 55 ++1 55 ++1 55 ++1 55 ++1 55 ++3 6 ++1 6 ++1 6 ++1 6 ++1 6 ++3 2 ++1 2 ++1 2 ++1 2 ++1 2 ++10 24 ++1 24 ++1 24 ++1 24 ++2 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++2 1 ++3 23 ++1 23 ++1 23 ++1 23 ++1 23 ++1 23 ++1 23 ++1 23 ++2 23 + +fn=(48) +127 160 ++1 160 ++6 160 ++1 160 ++1 135 ++1 135 ++5 63 ++1 63 ++1 63 ++1 63 ++5 63 +280 25 ++1 25 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++2 1 ++22 24 ++1 24 ++1 24 ++1 24 ++1 24 ++24 72 ++1 72 ++1 69 ++1 69 ++2 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++1 12 ++2 12 ++3 57 ++1 57 ++1 57 ++1 57 ++1 57 ++1 57 ++1 57 ++1 57 ++2 57 ++3 3 ++1 3 ++2 3 ++3 3 ++1 3 ++1 3 ++1 3 ++1 3 ++2 3 ++1 3 ++3 3 ++1 3 ++2 3 ++2 3 ++2 3 ++2 3 ++8 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 +-12 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++2 3 ++1 3 ++1 3 ++1 3 ++2 3 ++2 3 + +fl=(16) +fn=(36) +28 3 ++1 3 ++3 63 ++13 53 +-13 106 ++2 110 ++1 32 ++5 2 +-3 2 ++3 2 ++2 2 ++7 1 + +fl=(32) +fn=(350) +437 9 ++1 2 ++4 1 ++6 1 +-6 1 ++6 2 ++12 1 +-15 1 +-1 2 ++21 5 ++9 15 ++1 10 ++6 15 ++3 5 +-2 5 ++6 5 +-6 5 ++2 10 ++4 5 +-4 15 ++3 10 ++4 10 ++1 20 ++2 10 ++1 10 ++12 5 +-3 5 ++3 10 +cfi=(20) +cfn=(74) +calls=5 114 +* 70 +* 25 +cfi=(28) +cfn=(76) +calls=5 108 +* 3279 +* 5 +-42 15 ++6 18 ++50 2 ++3 9 + +fn=(94) +108 1 ++5 2 ++1 1 ++15 2 + +fn=(188) +332 2 ++13 1 +-13 2 ++2 1 ++12 2 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 67 ++1 3 ++8 2 +-69 1 ++69 2 ++1 1 ++4 297 ++19 1 +-94 2 ++1 2 +cob=(2) +cfi=(18) +cfn=(40) +calls=1 0 +* 38 ++1 2 ++3 1 ++6 2 ++89 5 + +fn=(186) +135 4 ++6 1 +-6 2 ++6 2 ++3 2 ++36 3 ++2 1 +-2 1 +-2 1 +-40 1 +-1 1 +-1 2 ++69 8 ++3 4 +-3 4 ++3 4 +-3 16 ++2 8 ++4 3 ++6 1 +-12 1 +-25 6 ++37 3 +-12 3 +-25 24 ++2 10 ++3 5 +-1 5 ++5 10 +-5 5 ++1 5 +-1 5 ++3 10 ++2 15 ++2 7 ++3 2 ++6 1 ++1 8 ++20 1 ++52 2 +-1 1 +-51 1 ++52 2 +-52 1 ++52 2 + +fn=(308) +887 25 ++9 5 +-3 5 ++4 5 ++4 25 ++41 15 ++1 5 ++1 20 + +fn=(166) +48 5 ++3 20 ++48 5 ++4 5 + +fn=(384) _dl_get_tls_static_info +308 1 ++1 2 ++1 2 ++1 1 + +fl=(121) +fn=(362) call_init.part.0 +28 232 ++8 29 +-8 29 ++11 29 +-3 58 ++3 87 ++5 84 ++5 54 ++9 162 +cob=(2) +cfi=(18) +cfn=(1628) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1618) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1608) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1598) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1588) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1578) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1568) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1558) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1548) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1538) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1528) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1518) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(1508) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1498) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1488) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1294) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1284) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(1272) +calls=1 -58 +* 6 +cob=(2) +cfi=(18) +cfn=(970) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(960) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(640) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(590) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(466) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(456) +calls=1 -58 +* 7 +cob=(2) +cfi=(18) +cfn=(444) +calls=1 -58 +* 7 +cob=(3) +cfi=(135) /build/glibc-t7JzpG/glibc-2.30/csu/../csu/init-first.c +cfn=(420) _init +calls=1 -6 +* 244 +cob=(2) +cfi=(18) +cfn=(364) +calls=1 -58 +* 7392 +* 27 ++4 54 ++6 27 ++2 54 +-2 54 ++3 135 ++1 108 +cob=(29) +cfi=(216) +cfn=(1632) +calls=1 -72 +* 12 +cob=(28) /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +cfi=(215) ??? +cfn=(1622) 0x0000000000002310 +calls=1 -72 +* 12 +cob=(27) +cfi=(214) +cfn=(1612) +calls=1 -72 +* 11 +cob=(26) /usr/lib/x86_64-linux-gnu/libspqr.so.2.0.9 +cfi=(213) ??? +cfn=(1602) 0x0000000000005340 +calls=1 -72 +* 11 +cob=(25) /usr/lib/x86_64-linux-gnu/libumfpack.so.5.7.8 +cfi=(212) ??? +cfn=(1592) 0x00000000000063d0 +calls=1 -72 +* 11 +cob=(24) /usr/lib/x86_64-linux-gnu/libcholmod.so.3.0.13 +cfi=(211) ??? +cfn=(1582) 0x0000000000006440 +calls=1 -72 +* 11 +cob=(23) /usr/lib/x86_64-linux-gnu/libamd.so.2.4.6 +cfi=(210) ??? +cfn=(1572) 0x0000000000001120 +calls=1 -72 +* 11 +cob=(22) +cfi=(209) +cfn=(1562) +calls=1 -72 +* 11 +cob=(21) /usr/lib/x86_64-linux-gnu/libcolamd.so.2.9.6 +cfi=(208) ??? +cfn=(1552) 0x0000000000001110 +calls=1 -72 +* 11 +cob=(20) /usr/lib/x86_64-linux-gnu/libccolamd.so.2.9.6 +cfi=(207) ??? +cfn=(1542) 0x0000000000001110 +calls=1 -72 +* 11 +cob=(19) /usr/lib/x86_64-linux-gnu/libsuitesparseconfig.so.5.4.0 +cfi=(206) ??? +cfn=(1532) 0x0000000000001120 +calls=1 -72 +* 11 +cob=(18) /usr/lib/x86_64-linux-gnu/libsuperlu.so.5.2.1 +cfi=(205) ??? +cfn=(1522) 0x0000000000006560 +calls=1 -72 +* 11 +cob=(17) +cfi=(204) +cfn=(1512) +calls=1 -72 +* 12 +cob=(16) /usr/lib/x86_64-linux-gnu/libatlas.so.3.10.3 +cfi=(203) ??? +cfn=(1502) 0x000000000002d1b0 +calls=1 -72 +* 12 +cob=(15) /usr/lib/x86_64-linux-gnu/atlas/liblapack.so.3.10.3 +cfi=(202) ??? +cfn=(1492) 0x000000000001e1d0 +calls=1 -72 +* 12 +cob=(14) +cfi=(199) +cfn=(1298) 0x00000000000a79b0 +calls=1 -72 +* 12 +cob=(13) /usr/lib/x86_64-linux-gnu/atlas/libblas.so.3.10.3 +cfi=(198) ??? +cfn=(1288) 0x00000000000321f0 +calls=1 -72 +* 12 +cob=(12) +cfi=(197) +cfn=(1276) +calls=1 -72 +* 17 +cob=(11) /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0 +cfi=(175) ??? +cfn=(974) 0x000000000000c2d0 +calls=1 -72 +* 12 +cob=(10) +cfi=(174) +cfn=(964) +calls=1 -72 +* 12 +cob=(9) /usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0 +cfi=(167) ??? +cfn=(644) 0x000000000001e4b0 +calls=1 -72 +* 165 +cob=(8) /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +cfi=(166) ??? +cfn=(594) __cpu_indicator_init +calls=1 -72 +* 166 +cob=(7) /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0 +cfi=(147) ??? +cfn=(470) 0x0000000000003cc0 +calls=1 -72 +* 12 +cob=(4) +cfi=(146) +cfn=(460) +calls=1 -72 +* 12 +cob=(6) /usr/lib/x86_64-linux-gnu/libdl-2.30.so +cfi=(144) ??? +cfn=(448) 0x00000000000012e0 +calls=1 -72 +* 12 +cob=(3) +cfi=(141) /build/glibc-t7JzpG/glibc-2.30/libio/vtables.c +cfn=(434) check_stdfiles_vtables +calls=1 +11 +* 12 +cob=(5) +cfi=(133) ??? +cfn=(412) 0x0000000000007c20 +calls=1 -72 +* 12 +* 88 +cob=(14) +cfi=(199) +cfn=(1482) 0x00000000000a78a0 +calls=1 -72 +* 237 +cob=(14) +cfi=(199) +cfn=(1456) 0x00000000000a77e0 +calls=1 -72 +* 50 +cob=(14) +cfi=(199) +cfn=(1430) 0x00000000000a7720 +calls=1 -72 +* 50 +cob=(14) +cfi=(199) +cfn=(1412) 0x00000000000a76a0 +calls=1 -72 +* 34 +cob=(14) +cfi=(199) +cfn=(1394) 0x00000000000a7620 +calls=1 -72 +* 34 +cob=(14) +cfi=(199) +cfn=(1390) 0x00000000000a75e0 +calls=1 -72 +* 159 +cob=(14) +cfi=(199) +cfn=(1388) 0x00000000000a73d0 +calls=1 -72 +* 52 +cob=(14) +cfi=(199) +cfn=(1362) 0x00000000000a72c0 +calls=1 -72 +* 74 +cob=(14) +cfi=(199) +cfn=(1352) 0x00000000000a7240 +calls=1 -72 +* 1731 +cob=(14) +cfi=(199) +cfn=(1330) 0x00000000000a7220 +calls=1 -72 +* 4246 +cob=(14) +cfi=(199) +cfn=(1304) 0x00000000000a7190 +calls=1 -72 +* 3065 +cob=(11) +cfi=(175) +cfn=(1266) 0x000000000000c1e0 +calls=1 -72 +* 49 +cob=(11) +cfi=(175) +cfn=(980) 0x000000000000a450 +calls=1 -72 +* 29466 +cob=(9) +cfi=(167) +cfn=(956) 0x000000000001e1f0 +calls=1 -72 +* 32 +cob=(9) +cfi=(167) +cfn=(726) 0x000000000001e1c0 +calls=1 -72 +* 22309 +cob=(9) +cfi=(167) +cfn=(714) 0x000000000001e190 +calls=1 -72 +* 1519 +cob=(9) +cfi=(167) +cfn=(708) 0x000000000001e8f0 +calls=1 -72 +* 12 +cob=(8) +cfi=(166) +cfn=(634) 0x0000000000003d00 +calls=1 -72 +* 12 +cob=(7) +cfi=(147) +cfn=(476) 0x0000000000003b00 +calls=1 -72 +* 84002 +cob=(6) +cfi=(145) /build/glibc-t7JzpG/glibc-2.30/dlfcn/dlfcn.c +cfn=(454) init +calls=1 -44 +* 4 +cob=(3) +cfi=(142) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86/cacheinfo.c +cfn=(436) init_cacheinfo +calls=1 488 +* 1691 +cob=(5) +cfi=(134) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/x86/elision-conf.c +cfn=(418) elision_init +calls=1 +33 +* 142 +-1 147 ++3 174 +-29 3 +-5 3 + +fn=(360) +79 12 ++1 1 ++1 1 ++3 3 ++8 2 ++25 1 ++1 5 ++1 2 +-89 2 ++89 56 +-89 168 +cfn=(362) +calls=28 -2 +* 151428 ++88 87 ++7 8 +-95 3 +cfn=(362) +calls=1 -2 +* 7606 ++57 2 + +fl=(38) +fn=(122) +25 35 ++1 140 ++1 35 + +fl=(36) +fn=(158) _dl_sysdep_read_whole_file +44 2 ++3 1 +-3 6 ++3 1 +-3 1 ++3 1 +cfi=(37) +cfn=(120) +calls=1 -13 +* 19 ++1 2 ++23 7 +-21 5 +cfi=(40) +cfn=(128) +calls=1 -17 +* 11 +* 2 ++2 2 ++3 2 ++13 2 +cfi=(44) +cfn=(140) +calls=1 -43 +* 6 +* 1 +-11 6 +cfi=(41) +cfn=(132) +calls=1 -9 +* 20 +* 2 + +fn=(116) +282 19050 ++1 6350 +cfi=(22) +cfn=(58) +calls=3175 111 +* 98913 +* 3175 ++1 3175 +-1 6350 ++3 3175 ++2 6350 ++4 3151 +-4 6302 ++1 9879 +cfi=(22) +cfn=(58) +calls=3293 111 +* 112561 +* 6586 +-5 142 ++11 3601 +-1 3033 ++1 9099 + +fn=(342) +300 2 ++38 2 +-1 2 ++3 2 ++2 80 ++1 37 +-3 24 ++18 2 ++1 2 +-15 6 + +fl=(26) +fn=(70) +42 6 ++1 1 +-1 5 ++1 1 +-1 1 ++1 1 +-1 1 ++1 2 +-1 1 ++1 1 +cfi=(8) +cfn=(26) +calls=1 369 +* 20 +* 1 ++2 1 ++1 2 +-1 1 ++1 1 ++9 1 +-12 1 ++12 4 ++1 6 ++1 1 +-1 2 +-1 12 ++10 3 +193 3 ++2 1 ++1 2 ++1 4 ++3 1 ++1 1 +-1 1 ++4 2 ++3 5 ++4 7 ++1 2 ++2 2 ++1 2 ++1 2 +-1 1 ++1 1 +-1 2 ++9 2 ++6 10 ++1 2 +-1 1 ++1 2 +cob=(2) +cfi=(18) +cfn=(44) +calls=1 0 +* 27 ++1 4 +-1 1 ++1 1 ++31 10 ++3 4 ++7 3 ++10 9 +-4 2 +-3 1 ++3 1 +cfi=(20) +cfn=(74) +calls=1 114 +* 17 +* 2 +-3 1 ++3 1 +cfi=(20) +cfn=(74) +calls=1 114 +* 17 ++3 2 +-3 6 ++3 4 ++1 12 ++1 5 +cfi=(20) +cfn=(74) +calls=1 114 +* 15 +* 2 +-2 2 ++5 6 +cfi=(20) +cfn=(74) +calls=2 114 +* 30 +* 4 ++2 6 +-7 3 ++13 1 +-1 1 ++1 2 +-1 2 ++1 7 +-1 7 ++1 14 +-1 18 ++5 9 ++4 4 +-4 12 ++4 44 ++1 24 +-1 24 ++1 24 +-1 24 +-1 24 ++4 9 ++3 1 ++2 2 +-1 1 +-1 1 ++2 1 +-2 1 ++2 3 +-1 1 ++1 2 ++2 6 ++1 2 ++3 2 +-6 5 ++13 7 ++1 1 +-1 2 ++3 2 +-3 3 ++1 3 +-1 6 ++3 6 ++3 3 ++3 9 +148 7 ++1 1 +-1 2 ++37 3 ++5 2 +-5 1 ++5 5 +-4 10 +fi=(27) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86/dl-hwcap.h +57 6 +fe=(26) +188 1 ++1 1 +cfi=(14) +cfn=(30) +calls=1 41 +* 17 ++1 5 +-5 1 ++4 1 ++1 1 +-5 5 +-37 10 ++37 2 +316 1 ++1 2 +-6 6 +-94 4 +-2 3 + +fl=(48) +fn=(162) _dl_cache_libcmp +141 268 ++1 1130 ++2 6224 ++20 3052 ++2 3046 ++5 2572 +-1 1286 ++1 1286 +-29 2572 ++32 81 +-28 60 ++6 29 ++2 29 +-2 29 ++1 58 +-1 29 ++2 89 ++1 6 +-1 8 ++2 87 +-3 29 ++3 31 ++1 6 +-1 8 ++2 58 ++7 3 ++10 3 +-8 474 +-5 2 + +fn=(354) +330 1 ++1 4 +-1 1 ++3 2 +cfi=(50) +cfn=(356) +calls=1 78 +* 6 ++1 1 ++2 2 + +fn=(156) +187 260 ++8 52 ++3 78 ++48 75 ++6 130 ++11 26 +-2 26 +fi=(49) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/x86/dl-procinfo.h +39 52 ++3 78 +cfi=(22) +cfn=(58) +calls=26 +69 +* 650 +* 104 +fe=(48) +267 104 +cfi=(8) +cfn=(26) +calls=26 369 +* 520 +* 52 ++8 52 ++15 3126 +cfn=(162) +calls=241 141 +* 20287 +* 1662 +cfn=(162) +calls=27 141 +* 2268 +* 163 +-14 26 +-1 52 ++1 52 +-1 52 ++15 572 ++16 52 ++4 52 ++8 78 +cfi=(14) +cfn=(30) +calls=26 41 +* 910 +* 338 ++1 52 +-1 26 ++1 26 +cfi=(20) +cfn=(48) +calls=26 127 +* 470 +* 26 ++1 26 +cfi=(30) +cfn=(86) +calls=26 40 +* 2550 ++1 208 +-3 52 +201 4 +cfi=(36) +cfn=(158) +calls=1 44 +* 99 +* 1 ++8 5 ++1 8 ++3 1 ++1 2 ++88 182 + +fl=(31) +fn=(96) +73 2 ++1 2 + +fn=(92) +46 29 ++3 58 ++5 56 ++5 2 +-1 1 ++1 2 ++1 2 +-1 1 ++5 1 +-14 29 ++4 58 ++3 1 ++1 30 + +fl=(56) +fn=(190) +343 1 ++1 1 +cfn=(192) dl_cet_check +calls=1 97 +* 29 + +fn=(192) +97 7 ++3 1 +-1 1 ++4 1 +-4 1 ++3 1 ++4 2 ++1 2 +-1 2 ++6 1 ++5 2 +326 8 + +fl=(29) +fn=(84) +23 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 107 ++4 107 ++1 107 ++1 107 ++1 107 ++2 107 ++4 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 25 ++1 27 ++5 1 ++1 1 ++3 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++2 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++3 1 ++4 1 ++1 1 ++1 1 ++1 1 ++2 1 +-9 24 ++4 24 ++1 24 ++1 24 ++1 24 ++2 24 + +ob=(3) +fl=(127) /build/glibc-t7JzpG/glibc-2.30/resource/../sysdeps/unix/sysv/linux/getrlimit64.c +fn=(390) getrlimit +37 2 ++1 7 ++1 1 + +fl=(162) /build/glibc-t7JzpG/glibc-2.30/stdio-common/reg-modifier.c +fn=(548) register_printf_modifier +43 6 ++1 6 ++8 1 ++4 1 +-4 2 ++1 2 ++5 4 ++7 2 +fi=(149) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../sysdeps/unix/sysv/linux/x86/lowlevellock.h +-18 1 +fe=(162) ++18 1 +fi=(149) +-18 1 +fe=(162) ++20 3 ++11 1 +-1 2 +cob=(2) +cfi=(18) +cfn=(552) +calls=1 -77 +* 191 +* 1 ++3 2 ++3 1 ++2 3 +-1 1 ++1 1 +-2 2 ++1 5 ++1 1 +cfi=(163) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/wmemcpy.c +cfn=(556) wmemcpy +calls=1 -60 +* 20 ++2 1 ++2 1 +-2 2 ++5 4 ++3 7 +-26 3 +cob=(2) +cfi=(18) +cfn=(488) +calls=1 -69 +* 360 +* 2 ++2 2 + +fl=(165) +fn=(570) +44 40 ++1 32 ++7 24 +fi=(149) +-5 16 +fe=(165) ++7 31 ++14 7 +-17 7 ++18 7 ++3 21 +-4 1 +-17 1 ++18 1 ++3 11 ++3 40 +-18 3 +cob=(2) +cfi=(18) +cfn=(488) +calls=1 -57 +* 4344 +-1 1 ++2 2 ++7 1 +-1 2 + +fl=(339) +fn=(4086) +209 3 ++1 3 +fi=(201) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/unix/sysv/linux/x86/lowlevellock.h +47 2 +fe=(339) +211 3 +cfi=(340) /build/glibc-t7JzpG/glibc-2.30/stdlib/random_r.c +cfn=(4090) srandom_r +calls=1 -49 +* 6798 ++1 4 ++1 2 + +fl=(153) /build/glibc-t7JzpG/glibc-2.30/elf/dl-addr.c +fn=(502) _dl_addr +127 7 ++2 1 +-2 4 ++5 1 +-5 1 ++5 2 +cob=(5) +cfi=(154) /build/glibc-t7JzpG/glibc-2.30/nptl/../nptl/pthread_mutex_lock.c +cfn=(504) pthread_mutex_lock +calls=1 -68 +* 35 ++2 2 +cob=(2) +cfi=(18) +cfn=(506) +calls=1 0 +* 1930 ++2 2 +30 4 ++4 2 ++5 1 ++6 1 +-7 1 ++2 2 ++2 1 +-2 1 ++2 2 ++3 2 ++4 5 +-5 4 ++5 4043 ++2 1010 ++1 2020 +-1 1 ++1 2 ++2 3680 ++9 9296 ++1 14950 ++7 2355 +-2 2355 ++2 6145 +-11 11775 ++2 7034 ++39 2 ++1 1 ++1 3 ++3 2 ++36 2 +cob=(5) +cfi=(156) /build/glibc-t7JzpG/glibc-2.30/nptl/pthread_mutex_unlock.c +cfn=(512) pthread_mutex_unlock +calls=1 356 +* 31 ++3 9 +-81 2007 ++54 1 ++21 1 +-21 2 + +fl=(99) +fn=(294) +29 1 +fi=(100) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/ifunc-memcmp.h ++3 1 ++1 3 +-1 2 ++2 3 ++1 2 +fe=(99) +-6 1 + +fl=(91) +fn=(278) +29 3 +fi=(443) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-avx2.h ++3 9 +-2 15 +fe=(91) +-1 3 + +fl=(103) +fn=(302) +42 2 +fi=(66) /build/glibc-t7JzpG/glibc-2.30/time/../sysdeps/generic/dl-hash.h ++3 1 +-2 1 ++1 1 ++4 3 ++14 4 +-17 3 ++3 9 ++14 12 +-17 9 ++22 1 +fi=(67) /build/glibc-t7JzpG/glibc-2.30/time/../sysdeps/unix/sysv/linux/dl-vdso.h +-37 2 ++1 1 +fe=(103) ++11 2 +fi=(67) +-11 4 +fe=(103) ++11 1 +cfi=(68) /build/glibc-t7JzpG/glibc-2.30/elf/../sysdeps/unix/sysv/linux/dl-vdso.c +cfn=(228) _dl_vdso_vsym +calls=1 -17 +* 14 +* 5 + +fl=(304) /build/glibc-t7JzpG/glibc-2.30/libio/strops.c +fn=(3520) _IO_str_init_static_internal +36 3618 ++4 804 ++1 21 +cob=(2) +cfi=(18) +cfn=(4504) +calls=7 -41 +* 135 +* 14 ++5 49 +cfi=(279) /build/glibc-t7JzpG/glibc-2.30/libio/genops.c +cfn=(3430) _IO_setb +calls=7 329 +* 175 +-5 395 ++5 2765 +cfi=(279) +cfn=(3430) +calls=395 329 +* 9875 ++3 402 ++1 402 +-1 402 ++2 804 ++2 790 ++2 395 +-2 790 ++11 395 ++1 2370 +-1 7 ++1 42 +-23 395 ++1 1580 ++18 7 +-2 7 ++2 7 + +fn=(4518) _IO_str_underflow +142 7 ++1 28 ++2 42 ++6 14 ++3 7 ++1 7 + +fl=(200) +fn=(1324) __new_exitfn +82 41 ++6 82 +-6 164 ++11 164 +-10 82 ++12 82 ++1 200 +-1 82 +-2 1 ++10 1 +-10 3 ++13 80 ++25 39 ++1 78 +-1 78 ++7 39 ++5 39 +-4 39 ++4 156 +-5 2 ++5 2 +-4 2 ++4 8 +-33 3 ++4 3 +cob=(2) +cfi=(18) +cfn=(488) +calls=1 0 +* 304 +* 1 ++1 2 ++2 1 ++1 1 ++7 1 +-1 1 ++1 2 +-1 1 ++1 1 + +fn=(1320) +69 246 +-28 123 ++2 41 +fi=(201) ++4 41 +fe=(200) +-4 82 +fi=(201) ++4 82 +fe=(200) +-3 82 +cfn=(1324) +calls=41 +38 +* 1785 ++2 82 ++10 41 +-3 41 ++5 41 +-5 82 ++3 41 +-1 41 ++1 41 ++3 164 ++12 205 + +fl=(77) +fn=(248) +29 3 +fi=(78) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-memset.h ++13 15 ++4 6 +-1 6 ++12 12 ++2 15 +fe=(77) + +fl=(185) /build/glibc-t7JzpG/glibc-2.30/dirent/../sysdeps/unix/sysv/linux/getdents64.c +fn=(1072) __getdents +27 2 ++5 14 ++1 2 + +fl=(336) /build/glibc-t7JzpG/glibc-2.30/stdlib/strtod.c +fn=(4024) strtod +82 16 ++1 64 +cfi=(311) +cfn=(3684) ____strtod_l_internal +calls=16 509 +* 6256 + +fl=(176) /build/glibc-t7JzpG/glibc-2.30/stdlib/secure-getenv.c +fn=(1044) secure_getenv +28 1 ++1 5 +cfi=(169) /build/glibc-t7JzpG/glibc-2.30/stdlib/getenv.c +cfn=(740) getenv +calls=1 +5 +* 383 + +fl=(229) /build/glibc-t7JzpG/glibc-2.30/iconv/gconv_simple.c +fn=(1816) __gconv_btwoc_ascii +50 128 ++2 512 ++3 128 + +fl=(371) +fn=(4352) +25 6339 ++4 258 ++1 516 +-1 258 ++1 258 +-1 258 ++1 258 +-1 774 ++1 258 +cfi=(372) +cfn=(4354) __vsprintf_internal +calls=258 +42 +* 700118 +-5 393 ++4 131 ++1 262 +-1 131 ++1 131 +-1 131 ++1 131 +-1 393 ++1 131 +cfi=(372) +cfn=(4354) +calls=131 +42 +* 142954 ++4 1945 + +fl=(81) +fn=(256) +29 1 +fi=(444) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-sse4_2.h ++1 5 +fe=(81) +-1 1 + +fl=(140) /build/glibc-t7JzpG/glibc-2.30/ctype/ctype-info.c +fn=(432) __ctype_init +29 1 ++2 7 ++2 4 ++2 4 ++1 1 + +fl=(164) +fn=(4490) +212 125 ++1 125 ++1 125 ++1 125 ++17 125 ++1 125 ++44 125 ++1 125 ++2 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++2 124 ++14 1 ++1 1 ++1 1 ++1 1 ++1 1 + +fn=(560) +225 1520708 ++1 1520708 ++6 1520708 ++1 1520708 ++1 54 ++1 54 ++3 36 ++1 36 ++1 36 ++1 36 ++2 36 ++1 36 ++3 2 ++1 2 ++1 2 ++1 2 ++2 2 ++1 2 ++1 2 ++5 2 ++2 2 ++1 24578 ++2 2 ++13 1520654 ++1 1520654 ++2 738276 ++1 738276 ++1 99 ++1 99 ++1 32 ++1 32 ++1 7 ++1 7 ++1 7 ++2 7 ++14 782378 ++1 782378 ++1 782378 ++1 782378 ++1 782378 ++4 738177 ++1 738177 ++1 738177 ++1 738177 ++1 738177 ++3 67 ++1 67 ++1 67 ++1 67 ++1 67 ++3 25 ++1 25 ++1 25 ++1 25 ++1 25 ++4 18 ++1 18 ++5 16 ++1 16 ++1 6 ++1 6 ++2 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++1 6 ++15 10 ++1 10 ++58 10 ++1 10 ++1 10 ++1 10 ++1 10 ++2 10 ++3 10 ++1 10 ++1 10 ++1 10 ++2 10 ++2 10 ++2 10 ++3 10 ++1 10 ++4 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++1 122 ++2 10 ++1 10 ++1 10 ++1 10 ++2 10 ++1 10 ++1 10 + +fl=(79) +fn=(252) +31 2 +fi=(445) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/ifunc-avx2.h ++1 6 +-2 10 +fe=(79) ++1 2 + +fl=(283) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/open64.c +fn=(2576) open +37 6 ++3 3 +-3 24 ++3 14 ++8 30 ++2 21 +-7 2 ++1 1 +-1 3 ++2 1 + +fl=(312) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/x86_64/lshift.S +fn=(3688) __mpn_lshift +28 279 ++1 279 ++1 279 ++2 279 ++1 279 ++1 279 ++12 279 ++1 279 ++1 279 ++1 279 ++1 279 ++1 279 ++1 279 ++6 279 ++1 279 ++1 279 + +fl=(376) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/ieee754/dbl-64/dbl2mpn.c +fn=(4376) __mpn_extract_double +33 258 ++4 258 +-2 258 ++2 516 ++1 258 ++9 258 +-9 258 ++9 258 ++9 258 +-18 774 ++9 258 ++9 516 ++4 132 ++2 66 ++45 132 +-4 192 ++4 192 +-4 192 ++4 192 + +fl=(82) +fn=(258) +31 1 +fi=(446) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-strcasecmp.h ++1 4 +fe=(82) +-1 1 + +fl=(95) +fn=(286) +29 1 +fi=(445) ++3 3 +-2 5 +fe=(95) +-1 1 + +fl=(278) +fn=(2556) +85 18 +-20 3 ++20 6 +-20 3 +cob=(2) +cfi=(18) +cfn=(552) +calls=3 -65 +* 1182 ++2 9 ++3 3 ++2 6 +-2 3 ++2 15 +cfi=(279) +cfn=(2558) _IO_no_init +calls=3 563 +* 159 ++1 3 ++1 3 +-1 3 ++1 3 +cfi=(280) /build/glibc-t7JzpG/glibc-2.30/libio/fileops.c +cfn=(2562) _IO_new_file_init_internal +calls=3 +33 +* 396 ++1 15 +cfi=(280) +cfn=(2572) _IO_file_fopen@@GLIBC_2.2.5 +calls=3 214 +* 612 +* 6 +-38 6 ++50 21 + +fl=(89) +fn=(274) +29 1 +fi=(444) ++1 5 +fe=(89) +-1 1 + +fl=(305) /build/glibc-t7JzpG/glibc-2.30/stdio-common/vfprintf-internal.c +fn=(3532) printf_positional +1754 5925 +fi=(309) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../include/scratch_buffer.h +77 395 +fe=(305) +1754 3160 +fi=(309) +77 1185 ++1 395 +-1 790 ++1 395 +fe=(305) +1778 395 ++7 790 ++14 790 +-41 395 ++15 395 +-5 790 +-9 395 +-1 790 ++59 1580 +-17 395 ++17 1580 +cfi=(307) /build/glibc-t7JzpG/glibc-2.30/stdio-common/printf-parsemb.c +cfn=(3534) __parse_one_specmb +calls=395 64 +* 70285 +-17 395 ++17 395 +-18 790 ++11 1185 +fi=(309) +131 1580 +cfi=(308) /build/glibc-t7JzpG/glibc-2.30/malloc/scratch_buffer_set_array_size.c +cfn=(3536) __libc_scratch_buffer_set_array_size +calls=395 30 +* 7110 +* 395 +fe=(305) +1832 790 ++5 395 ++4 395 ++1 395 +-1 790 +-4 395 ++6 395 +-1 395 ++1 2765 +cob=(2) +cfi=(18) +cfn=(536) +calls=395 0 +* 7505 ++9 3950 ++16 1185 ++1 1185 +-17 1185 ++3 1185 ++4 1185 ++3 1975 +-10 790 ++33 790 ++25 395 ++6 395 +-31 1580 ++25 395 ++6 790 +-30 3950 +fi=(309) +85 2370 +fe=(305) +2120 4740 +1924 33 +-39 1185 ++62 1580 +2072 790 +fi=(306) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../libio/libioP.h +941 790 +fe=(305) +2072 4345 +fi=(306) +941 1580 +fe=(305) +1962 395 ++13 395 +-3 395 +-10 395 ++2 395 +-1 395 ++2 395 +-3 395 ++2 395 ++2 395 ++2 395 +-3 395 +-3 395 ++6 395 ++7 395 +-12 395 ++2 395 ++1 395 ++2 395 +-6 395 ++2 395 ++5 395 +-6 395 ++1 395 +-1 395 ++4 395 ++2 395 ++4 395 +-9 395 ++6 395 ++3 395 +-8 395 ++9 395 +-7 395 ++6 395 ++8 395 +-12 395 ++1 395 +-4 395 ++3 395 ++1 395 +-3 395 ++7 395 ++7 790 ++16 1185 ++15 1975 ++27 395 +-1 790 ++2 1975 ++30 1580 +1899 1072 ++9 3096 +1791 1580 ++3 790 ++1 395 +-4 395 ++4 790 ++1 790 +1899 670 ++64 395 ++5 395 ++1 395 ++1 395 +2070 790 +1963 395 ++2 790 ++9 790 ++96 3160 +-92 395 +-1 395 ++1 790 +-7 790 ++71 4128 ++4 774 ++2 258 +-2 1032 ++2 1032 +-1 516 +-1 1806 ++5 1548 +cob=(7) +cfi=(147) +cfn=(4362) 0x0000000000026db0 +calls=258 0 +* 5160 ++3 1290 ++18 258 ++33 790 ++5 1580 +fi=(306) +943 1185 ++1 790 +fe=(305) +2110 1975 +cfi=(279) +cfn=(3530) _IO_default_xsputn +calls=395 371 +* 2227 +* 5135 +1947 790 +2110 790 +-38 2299 +fi=(306) +943 402 ++1 268 +fe=(305) +2072 536 +cfi=(279) +cfn=(3530) +calls=134 371 +* 8636 +* 2948 +cfi=(310) /build/glibc-t7JzpG/glibc-2.30/stdio-common/_itoa.c +cfn=(3540) _itoa_word +calls=134 165 +* 5528 +* 2537 ++1 179 +-1 8440 +cfi=(374) /build/glibc-t7JzpG/glibc-2.30/stdio-common/printf_fp.c +cfn=(4370) __printf_fp +calls=258 1266 +* 445730 +* 2322 +-30 516 ++30 2769 +1913 268 +2073 12 +fi=(306) +943 9 ++1 6 +fe=(305) +2073 12 +cfi=(279) +cfn=(3530) +calls=3 371 +* 318 +* 33 +-1 402 ++1 9 +cob=(2) +cfi=(18) +cfn=(742) +calls=3 0 +* 54 +* 30 +-1 938 + +fn=(3522) __vfprintf_internal +1289 6320 ++31 1185 ++8 1185 ++4 1975 ++11 1185 ++11 790 +fi=(373) /build/glibc-t7JzpG/glibc-2.30/stdio-common/printf-parse.h +111 790 +fe=(305) +1354 790 +fi=(373) +111 395 +cob=(2) +cfi=(18) +cfn=(3524) +calls=395 0 +* 9843 +fe=(305) +1369 790 +fi=(373) +111 395 +fe=(305) +1369 395 +fi=(306) +941 395 +fe=(305) +1373 395 +fi=(306) +941 790 ++2 395 +-2 790 ++2 790 ++1 790 +fe=(305) +1373 2370 +cfi=(279) +cfn=(3530) +calls=395 371 +* 10473 +* 1580 ++4 395 +-4 395 ++4 790 ++4 1580 +-53 790 +1741 790 ++1 1185 ++3 4740 +-12 6715 +cfn=(3532) +calls=395 +21 +* 718636 +* 1185 +1324 395 +-33 395 ++59 790 + +fl=(97) +fn=(290) +31 1 +fi=(447) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-strcpy.h ++5 3 +-2 1 ++2 1 +-2 2 +fe=(97) +-3 1 + +fl=(377) /build/glibc-t7JzpG/glibc-2.30/nptl/alloca_cutoff.c +fn=(4378) __libc_alloca_cutoff +27 258 ++1 2322 ++7 258 + +fl=(231) +fn=(1832) +59 6651 ++7 6651 ++1 6651 ++3 6017 ++1 6017 ++1 6017 ++1 6017 ++1 6017 ++2 6017 ++1 6017 ++2 1 ++2 1 ++1 1 ++1 1 ++1 1 ++3 1 ++1 1 ++2 1 ++1 1 ++2 1 ++1 1 ++2 1 ++1 1 ++2 1 ++1 1 ++1 1 ++2 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++1 1 ++13 6016 ++1 6016 ++1 6016 ++1 6016 ++1 6016 ++1 6016 ++1 6016 ++1 6016 ++1 6016 ++5 276 ++10 276 ++1 276 ++1 276 ++2 276 ++1 276 ++14 163 ++1 163 ++1 163 ++1 163 ++1 163 ++1 163 ++1 163 ++1 163 ++1 163 ++1 163 ++1 129 ++1 129 ++1 129 ++4 34 ++5 23 ++1 23 ++1 23 ++1 23 ++1 23 ++1 23 ++1 23 ++1 23 ++2 23 ++1 23 ++4 37 ++1 37 ++1 37 ++1 37 ++16 634 ++1 634 ++1 597 ++1 597 ++1 597 ++1 574 ++1 574 ++2 411 ++1 411 ++2 321 ++1 321 ++1 321 ++1 321 ++1 321 ++1 321 ++2 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 132 ++1 126 ++5 90 ++1 90 ++1 90 ++1 90 ++1 90 ++3 13 ++1 13 ++1 13 ++1 13 ++1 13 ++1 13 ++1 13 ++1 9 + +fl=(224) +fn=(1798) +30 2 ++1 6 ++2 4 ++3 4 ++1 2 ++28 6 ++1 6 ++2 6 ++4 6 ++1 2 + +fl=(59) +fn=(210) +29 4 +fi=(60) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-memmove.h ++16 12 +-1 8 ++5 8 +-1 8 ++12 8 ++2 20 +fe=(59) + +fl=(182) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/open64_nocancel.c +fn=(1066) __open_nocancel +34 2 ++3 1 +-3 6 ++3 6 ++8 7 ++2 5 + +fl=(333) +fn=(3984) +26 4 ++1 6 +cfi=(186) /build/glibc-t7JzpG/glibc-2.30/stdlib/../stdlib/strtol.c +cfn=(3986) strtol +calls=2 +78 +* 210 ++1 4 + +fl=(268) /build/glibc-t7JzpG/glibc-2.30/setjmp/../sysdeps/x86_64/bsd-_setjmp.S +fn=(2416) _setjmp +28 1 ++2 1 ++2 1 +cfi=(269) /build/glibc-t7JzpG/glibc-2.30/setjmp/../sysdeps/x86_64/setjmp.S +cfn=(2418) __sigsetjmp +calls=1 -2 +* 31 + +fl=(68) +fn=(228) +25 10 ++1 5 +-1 15 ++1 5 ++4 10 ++18 25 + +fl=(316) /build/glibc-t7JzpG/glibc-2.30/stdlib/mul.c +fn=(3718) __mpn_mul +48 221 ++6 26 ++12 26 ++76 143 +-71 13 ++1 26 ++9 13 +cfi=(317) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/x86_64/mul_1.S +cfn=(3720) __mpn_mul_1 +calls=13 -50 +* 417 ++2 39 ++1 13 ++4 26 + +fl=(159) /build/glibc-t7JzpG/glibc-2.30/misc/sbrk.c +fn=(532) sbrk +32 831 ++8 277 +-8 554 ++8 1659 ++4 554 ++4 1656 ++5 215 ++7 1080 +-19 2 +cfi=(160) /build/glibc-t7JzpG/glibc-2.30/misc/../sysdeps/unix/sysv/linux/x86_64/brk.c +cfn=(534) brk +calls=1 -13 +* 11 +* 4 ++15 552 +cfi=(160) +cfn=(534) +calls=276 -28 +* 3466 +* 552 ++4 305 + +fl=(62) +fn=(216) +31 1 +fi=(446) ++1 4 +fe=(62) +-1 1 + +fl=(139) +fn=(430) +42 1 ++1 1 ++1 1 ++2 1 ++1 1 ++3 1 ++1 1 ++1 1 ++2 1 ++1 1 ++1 1 ++1 1 ++1 1 ++1 1 ++2 1 ++1 1 ++12 1 ++1 1 ++3 1 ++1 1 ++1 1 ++1 1 ++35 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++32 3 ++1 3 ++2 1 ++1 1 ++1 1 ++1 1 ++6 1 ++1 1 ++1 1 ++1 1 ++5 2 ++1 2 ++1 2 ++3 2 ++1 2 ++1 2 + +fl=(129) /build/glibc-t7JzpG/glibc-2.30/nptl/register-atfork.c +fn=(398) __register_atfork +39 6 ++1 3 +fi=(130) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/x86/lowlevellock.h ++7 2 +fe=(129) +-5 2 +fi=(131) /build/glibc-t7JzpG/glibc-2.30/nptl/../malloc/dynarray-skeleton.c +195 1 +fe=(129) +45 1 +fi=(131) +197 2 +fe=(129) +45 1 +fi=(131) +195 1 +319 1 ++1 1 +-1 1 +-1 1 ++2 1 +fe=(129) +49 2 ++2 1 ++2 1 ++1 1 +-3 2 ++7 4 ++2 2 ++1 1 +-1 1 ++1 2 + +fl=(142) +fn=(436) +488 8 ++14 6 +758 2 ++2 1 ++1 1 ++2 1 +-3 1 ++5 1 +-5 1 ++4 3 ++4 2 ++3 2 ++2 1 ++1 1 ++2 1 +-3 1 ++5 1 +-5 1 ++4 3 ++9 1 ++2 8 +-2 1 ++3 8 +500 1 ++4 1 +-4 1 ++4 1 +cfn=(438) handle_intel.constprop.0 +calls=1 259 +* 446 ++2 1 +-2 1 ++2 1 +cfn=(438) +calls=1 259 +* 487 ++5 1 +-5 1 ++5 1 +cfn=(438) +calls=1 259 +* 512 +* 1 ++8 2 +-9 1 ++20 1 ++5 3 ++4 2 ++8 6 ++3 4 ++6 2 +-6 9 ++6 6 ++3 26 ++14 2 ++4 1 ++3 1 ++1 1 +-4 1 ++3 1 +-3 1 ++3 1 ++6 4 +-39 6 +691 4 ++1 5 ++4 2 ++59 2 +564 2 ++4 1 ++1 1 +-1 2 ++1 1 ++23 2 ++8 2 ++2 1 +-2 6 ++2 4 +-2 1 ++4 1 ++23 2 +-25 2 ++2 6 ++2 6 ++3 2 ++1 8 ++2 4 ++3 2 ++5 1 ++2 2 ++1 1 ++1 1 +-2 2 ++1 1 ++1 1 ++27 2 ++1 2 ++2 1 +-1 1 ++1 1 +-24 2 ++3 1 ++1 2 ++3 1 ++2 4 ++1 1 ++5 2 + +fn=(440) intel_check_word.isra.0 +132 12 +-4 36 ++10 24 +-10 6 ++10 18 ++2 60 ++2 15 ++2 30 ++8 30 ++51 24 ++22 12 +fi=(143) /build/glibc-t7JzpG/glibc-2.30/string/../bits/stdlib-bsearch.h +28 12 +-1 12 ++4 24 ++1 12 +fe=(142) ++87 24 +fi=(143) +-88 18 ++1 9 +fe=(142) ++87 18 ++3 81 +fi=(143) +-93 192 ++2 120 ++1 60 +fe=(142) ++87 120 ++15 3 +255 36 +fi=(143) +37 15 +-8 36 +fe=(142) +164 9 ++3 9 +-6 13 ++3 4 ++9 4 ++23 5 +-32 15 ++3 15 ++4 14 ++2 28 ++2 14 ++2 10 ++4 3 ++2 6 ++2 3 ++2 3 +-1 3 +-1 3 ++2 6 +-2 3 ++3 9 +-2 9 ++2 6 +-10 6 ++1 2 +-15 1 ++7 2 ++2 4 + +fn=(438) +259 21 ++2 3 +-2 9 ++5 6 ++8 6 ++3 6 +-2 3 ++2 3 +-5 6 ++11 15 ++5 6 ++2 3 ++1 3 +-1 3 ++5 18 +cfn=(440) +calls=3 132 +* 960 ++2 6 ++3 21 +cfn=(440) +calls=3 132 +* 308 ++2 6 ++19 33 + +fl=(187) /build/glibc-t7JzpG/glibc-2.30/stdlib/../stdlib/strtol_l.c +fn=(1076) ____strtoul_l_internal +226 18 ++54 6 +-54 18 ++19 6 +-19 24 ++26 12 ++31 24 ++9 36 ++2 12 ++5 12 +-1 6 ++6 12 ++4 12 ++10 10 ++10 20 +-82 5 +373 15 ++1 15 ++60 26 ++16 6 ++10 18 +-10 6 ++10 6 ++12 12 +-5 4 ++5 4 ++1 12 +-41 8 ++2 8 ++2 18 ++7 4 ++17 6 ++1 4 ++3 18 ++3 8 ++11 12 ++5 12 ++1 4 ++12 8 ++11 20 ++18 48 +325 10 +-15 2 ++15 2 +514 4 ++2 8 ++5 4 ++3 4 +328 2 ++46 1 +-1 1 +246 1 +378 1 +-4 1 ++60 1 + +fn=(3988) ____strtol_l_internal +226 6 ++54 2 +-54 6 ++19 2 +-19 8 ++26 4 ++31 8 ++9 12 ++2 4 ++5 4 +-1 2 ++6 4 ++4 4 ++10 4 ++10 8 +-82 4 +434 10 ++16 2 ++10 6 +-10 2 ++10 2 ++12 4 +-5 2 ++5 2 ++1 6 +-41 4 ++2 8 ++2 6 ++28 6 ++3 4 ++11 4 ++5 6 ++6 4 +325 4 +492 6 +-2 4 ++17 10 ++18 16 + +fl=(70) +fn=(232) +31 2 +fi=(445) ++1 6 +-2 10 +fe=(70) ++1 2 + +fl=(158) /build/glibc-t7JzpG/glibc-2.30/malloc/morecore.c +fn=(530) __default_morecore +46 554 ++1 277 +cfi=(159) +cfn=(532) +calls=277 -15 +* 11718 ++2 831 ++3 554 + +fl=(86) +fn=(268) +31 2 +fi=(87) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/../sysdeps/x86_64/multiarch/ifunc-wmemset.h ++1 4 +-2 2 ++2 6 +-2 4 ++5 2 +-1 2 ++1 2 +-1 6 +fe=(86) +-3 4 + +fl=(160) +fn=(534) +28 277 ++3 1662 ++2 554 ++6 62 ++1 62 +-5 430 ++1 430 + +fl=(340) +fn=(4090) +162 1 ++8 2 ++2 1 ++1 2 ++7 2 +-4 1 ++4 2 ++1 2 ++5 1 ++1 7 ++5 8 ++2 1 +-1 2 ++1 2 ++2 2 ++1 2 +-10 2 ++5 232 ++2 29 +-1 58 ++1 58 ++2 58 ++1 58 +-10 58 ++13 1 ++1 1 +-1 2 ++3 1 +362 930 ++9 310 +-1 310 ++2 310 ++3 620 ++3 310 ++1 930 ++8 600 ++3 1200 +203 600 +390 40 +203 20 ++7 22 + +fl=(128) /build/glibc-t7JzpG/glibc-2.30/nptl/libc_pthread_init.c +fn=(396) __libc_pthread_init +43 2 ++5 1 +-5 1 ++5 1 +-3 1 ++3 3 +cfi=(129) +cfn=(398) +calls=1 -9 +* 41 ++19 3 ++3 3 ++1 1 +-4 3 ++3 153 ++1 51 +-4 153 ++12 2 +-6 1 ++6 1 + +fl=(65) +fn=(222) +43 4 +fi=(66) ++2 2 +-2 2 ++1 2 ++4 6 ++14 8 +-17 6 ++3 18 ++14 24 +-17 18 ++22 2 +fi=(67) +-37 4 ++1 2 +fe=(65) ++12 4 +fi=(67) +-12 8 +fe=(65) ++12 2 +cfi=(68) +cfn=(228) +calls=2 -18 +* 28 +* 10 + +fn=(5454) +28 5 ++2 10 ++1 5 + +fl=(83) +fn=(260) +29 2 +fi=(447) ++7 6 +-2 2 ++2 2 +-2 4 +fe=(83) +-5 2 + +fl=(63) +fn=(218) +29 2 +fi=(447) ++7 6 +-2 2 ++2 2 +-2 4 +fe=(63) +-5 2 + +fl=(290) +fn=(2722) +40 348 ++3 348 ++1 348 ++2 348 ++2 348 ++9 348 ++3 348 ++1 348 ++1 348 ++3 301 ++1 301 ++1 301 ++3 301 ++2 135 ++1 135 ++6 7 ++1 7 ++1 7 ++4 7 ++2 7 ++1 7 ++2 5 ++4 47 ++1 47 ++1 47 ++1 47 ++2 47 ++1 47 ++1 47 ++1 3 ++3 3 ++1 3 ++2 3 ++1 3 ++1 3 ++1 3 ++8 44 ++1 44 ++3 44 ++1 44 ++3 8 ++3 8 ++1 8 ++6 9 ++1 9 ++1 9 ++1 9 ++2 3 ++1 3 ++1 3 ++1 3 ++55 6 ++1 6 ++2 1 ++1 1 ++1 1 ++1 1 ++26 5 ++1 5 ++1 5 ++1 5 ++2 5 ++1 2 ++1 2 ++12 169 ++2 169 ++1 169 ++1 138 ++1 138 ++1 138 ++37 197 ++2 197 ++1 197 ++5 7 ++1 7 ++1 7 ++1 7 ++4 3 ++1 3 ++1 3 ++1 3 ++1 3 + +fn=(4506) +40 7 ++6 7 ++2 7 ++9 7 ++3 7 ++1 7 ++1 7 ++3 7 ++1 7 ++1 7 ++8 7 ++4 2 ++1 2 ++1 2 ++9 2 ++47 2 ++1 2 ++1 2 ++1 2 +302 7 ++1 7 ++1 7 ++1 7 + +fl=(98) +fn=(292) +33 1 +fi=(447) ++3 3 +-2 1 ++2 1 +-2 2 +fe=(98) +-1 1 + +fl=(386) /build/glibc-t7JzpG/glibc-2.30/stdio-common/vfscanf-internal.c +fn=(4508) __vfscanf_internal +278 112 ++10 21 ++1 7 +fi=(309) +78 7 +fe=(386) +289 7 +fi=(309) +77 14 +fe=(386) +339 7 +fi=(309) +77 7 +fe=(386) +339 28 ++6 21 ++3 35 ++4 7 ++20 7 +-20 7 ++20 7 +-13 14 ++6 7 ++2 28 ++5 28 ++9 7 +-4 7 ++4 21 +569 7 +284 7 +-1 7 ++49 7 +-39 7 +569 28 +2428 14 +282 7 +2428 21 +328 14 +-1 21 +-1 7 +-1 7 +-12 7 +418 102 ++23 102 ++1 102 ++3 220 ++7 264 ++8 33 +-8 33 ++8 66 ++8 66 +-27 66 +-60 204 +3020 35 +372 49 +cob=(5) +cfi=(281) /build/glibc-t7JzpG/glibc-2.30/nptl/cleanup_defer_compat.c +cfn=(2566) _pthread_cleanup_push_defer +calls=7 25 +* 119 +* 14 +222 14 ++1 7 +487 7 +223 7 +-1 14 +487 14 +222 7 +487 14 +fi=(373) +78 7 +-2 14 ++2 35 ++10 14 +-1 14 ++1 14 +-1 14 ++1 42 ++3 56 +-13 70 ++1 84 ++2 28 +-3 7 +fe=(386) +490 28 +-12 14 ++18 7 ++32 14 ++3 7 +-3 21 ++3 21 ++80 28 ++5 21 ++4 7 ++1 7 +-1 7 ++1 70 ++6 84 ++3 28 +-3 28 ++3 42 +-3 28 ++3 49 ++1 14 ++1 63 +cfi=(279) +cfn=(4512) _IO_sputbackc +calls=7 +3 +* 133 ++4 63 +345 14 ++96 11 ++6 22 +3030 77 +cob=(5) +cfi=(281) +cfn=(2570) _pthread_cleanup_pop_restore +calls=7 62 +* 70 +fi=(309) +85 21 +fe=(386) +3034 14 ++17 14 ++6 84 +531 35 +-69 28 +632 7 +2468 49 ++5 7 ++6 7 +-6 7 ++12 14 +fi=(309) +131 28 +fe=(386) +2485 21 +fi=(309) +131 7 +cfi=(308) +cfn=(3536) +calls=7 30 +* 126 +fe=(386) +2506 14 ++6 294 ++2 7 ++1 14 +-1 7 ++1 28 ++9 14 ++11 1932 +-11 3269 ++1 1337 ++1 21 ++4 7 ++1 28 +-1 14 ++1 14 +-1 49 +-59 28 ++70 28 +2772 56 +2892 21 +2772 7 +2892 14 ++10 84 ++39 1019 +-49 369 ++49 123 +-49 246 ++49 123 +-42 260 ++3 130 +-1 260 ++1 260 +-1 260 ++40 21 +cfi=(279) +cfn=(4514) __uflow +calls=7 299 +* 518 +* 70 ++3 14 ++4 21 ++40 21 ++2 14 ++8 21 +-10 7 ++8 14 +2471 98 + +fl=(288) +fn=(2710) +32 8 ++3 40 ++7 8 + +fl=(172) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/wordsize-64/fxstat.c +fn=(836) _fxstat +33 16 ++1 8 ++1 16 ++4 4 + +fl=(384) +fn=(4500) +24 91 +fi=(385) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../libio/strfile.h ++69 28 +fe=(384) +-69 21 +fi=(385) ++69 14 +-1 7 ++1 7 +cfi=(279) +cfn=(2558) +calls=7 563 +* 308 ++1 7 ++1 28 +-1 7 ++1 7 +cfi=(304) +cfn=(3520) +calls=7 -59 +* 576 +fe=(384) +-64 21 +-1 7 ++1 7 +-1 35 ++1 7 +cfi=(386) +cfn=(4508) +calls=7 278 +* 15128 ++4 56 + +fl=(225) +fn=(1804) +31 1024 ++9 384 ++5 384 ++37 1024 + +fl=(230) +fn=(1828) +27 70 ++7 10 +-7 30 ++3 10 +cob=(2) +cfi=(18) +cfn=(742) +calls=10 -30 +* 196 ++3 10 +-3 10 ++3 10 ++1 10 ++7 48 ++1 96 +-8 48 ++2 96 +cob=(2) +cfi=(18) +cfn=(742) +calls=48 -36 +* 920 +* 20 +cob=(2) +cfi=(18) +cfn=(742) +calls=10 -36 +* 180 +* 58 ++2 312 +cob=(2) +cfi=(18) +cfn=(1830) +calls=49 -38 +* 1205 +* 98 ++8 10 ++1 10 ++1 80 + +fl=(374) +fn=(4370) +1266 258 ++1 258 +-1 516 ++1 774 +cfn=(4372) __printf_fp_l +calls=258 208 +* 443924 + +fn=(4372) +208 4386 ++50 258 +-9 258 ++16 258 +-7 258 ++10 258 +-10 1032 ++10 774 +fi=(375) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../include/../locale/localeinfo.h ++41 774 +fe=(374) +-38 516 ++18 516 ++8 258 +-71 258 +-1 258 +378 774 ++5 516 ++4 1806 +1260 3096 +387 1548 +cfi=(376) +cfn=(4376) +calls=258 33 +* 5226 +* 1290 ++36 258 ++5 258 +-5 1548 ++1 258 ++1 516 ++3 3354 ++1 516 +-1 258 ++1 516 +-1 258 ++1 516 +-1 258 ++1 2322 ++1 258 +-1 516 ++1 3354 ++6 258 +-6 516 ++7 516 +822 516 ++10 516 +-10 258 ++10 1548 ++2 516 ++10 516 ++20 1548 ++1 1032 ++1 248 ++12 248 ++1 124 +-1 124 ++8 496 ++3 744 ++3 248 +-6 536 ++3 804 ++3 268 ++15 258 +-1 1032 ++7 258 +fi=(378) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../sysdeps/pthread/allocalim.h +27 516 +cfi=(377) +cfn=(4378) +calls=258 * +* 2838 ++2 774 +fe=(374) +923 4386 ++4 258 +-3 258 ++3 764 ++3 670 +-6 670 ++9 402 +cfn=(4382) hack_digit +calls=134 162 +* 6164 +* 134 +-3 804 ++7 804 ++2 268 +-4 134 ++4 134 ++14 134 +-2 402 ++1 536 ++1 660 +-2 372 ++1 496 ++1 544 ++1 14476 ++3 3490 +-1 3490 ++2 3490 +-1 3490 +cfn=(4382) +calls=3490 162 +* 174116 +* 3490 ++3 7252 +-7 17390 +428 516 +954 774 ++15 774 ++1 1032 +cfn=(4382) +calls=258 162 +* 12860 ++2 2064 ++2 774 ++3 516 ++5 2838 +fi=(379) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../sysdeps/generic/get-rounding-mode.h +94 258 ++1 1806 +fi=(380) /build/glibc-t7JzpG/glibc-2.30/stdio-common/../include/rounding-mode.h +-43 516 +fe=(374) +1088 516 ++3 2974 +-1 2974 +-2 12144 ++7 1320 ++1 268 ++2 774 ++13 774 ++46 516 ++2 774 +-2 1032 ++2 1290 ++2 516 ++10 516 ++9 258 ++7 258 +-7 516 ++7 516 ++5 774 +cob=(2) +cfi=(18) +cfn=(742) +calls=258 0 +* 4644 ++2 516 +-2 258 ++2 516 ++5 774 ++2 258 +-2 258 ++2 258 ++11 4386 ++7 3096 ++3 1548 ++3 1548 +-6 2322 ++1 2694 ++1 248 +-2 124 ++2 124 +cob=(2) +cfi=(18) +cfn=(4488) +calls=124 0 +* 2480 +* 124 +-2 248 ++10 1548 ++17 1290 ++3 516 ++7 1548 +963 12 +-1 12 ++1 24 +640 516 +816 536 +cfi=(312) +cfn=(3688) +calls=134 28 +* 2144 +* 134 ++1 670 ++1 268 ++13 516 +1166 774 +865 268 ++13 134 ++1 134 +-1 134 ++1 536 +656 372 ++5 124 +-5 124 +cfi=(312) +cfn=(3688) +calls=124 28 +* 1984 ++5 124 +-18 124 ++10 124 ++3 124 ++1 124 ++24 124 +-20 124 +-4 496 ++3 124 ++1 248 ++23 36 ++1 24 ++3 24 ++1 24 +-1 12 ++2 12 +-2 12 ++2 12 +-2 12 ++2 12 +-2 12 ++2 24 ++7 48 ++22 24 ++61 1488 +-2 1488 ++2 5704 +666 1488 ++2 2976 ++7 24 ++1 12 +-1 36 ++2 12 +-2 24 ++6 48 +cfi=(316) +cfn=(3718) +calls=12 48 +* 900 +* 12 ++5 36 ++42 24 +-1 12 ++1 24 ++5 36 +-6 12 ++6 12 ++3 192 ++1 24 +-38 8 ++4 8 +-2 4 ++2 16 ++16 12 ++2 8 +1246 13604 +-78 516 +874 516 +252 516 +938 670 ++9 248 +-1 248 +-1 124 ++2 124 +826 248 +634 124 +782 248 ++4 560 +cfi=(317) +cfn=(3720) +calls=112 31 +* 3696 ++4 224 ++1 112 +-4 224 ++3 112 ++1 448 ++9 112 ++1 112 +-1 112 ++4 630 +1195 516 +744 12 ++14 36 +-14 12 ++14 48 ++13 12 +-1 72 +cfi=(405) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/x86_64/rshift.S +cfn=(5490) __mpn_rshift +calls=12 28 +* 216 ++3 60 ++26 224 +cfi=(405) +cfn=(5490) +calls=112 28 +* 2016 +* 112 + +fn=(4382) +162 15528 ++3 15390 ++2 19350 ++2 3870 ++1 11610 +-1 3870 ++1 3870 +cfi=(317) +cfn=(3720) +calls=3870 31 +* 81270 +* 7740 ++32 19350 +-37 11232 ++37 60 + +fl=(186) +fn=(1074) strtoul +105 6 ++1 24 +cfi=(187) +cfn=(1076) +calls=6 226 +* 577 + +fn=(3986) +105 2 ++1 8 +cfi=(187) +cfn=(3988) +calls=2 226 +* 200 + +fl=(317) +fn=(3720) +31 3995 ++1 3995 ++3 3995 ++1 3995 ++1 3995 ++1 3995 ++1 3995 ++2 3995 ++1 3995 ++2 3995 ++1 3995 ++1 3995 ++1 3995 ++1 3871 ++2 3871 ++1 3871 ++1 3871 ++1 3871 ++26 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++26 124 ++1 124 ++1 124 ++2 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++2 124 ++3 124 +-5 3871 ++2 3871 ++3 3871 + +fl=(181) /build/glibc-t7JzpG/glibc-2.30/dirent/../sysdeps/posix/opendir.c +fn=(1064) opendir +88 9 +-49 2 ++53 2 +cfi=(182) +cfn=(1066) +calls=1 -58 +* 27 +* 1 +-40 2 ++7 4 +cfi=(172) +cfn=(836) +calls=1 -26 +* 11 +* 2 ++2 4 ++53 6 ++4 2 +cob=(2) +cfi=(18) +cfn=(552) +calls=1 0 +* 191 +* 1 ++1 2 ++18 1 ++2 1 ++2 1 ++1 1 ++1 1 ++1 1 ++1 1 +-52 10 + +fl=(193) +fn=(1130) +35 7 + +fl=(279) +fn=(2564) _IO_link_in +87 48 ++1 18 ++4 3 +-2 9 ++2 6 ++1 18 +fi=(282) /build/glibc-t7JzpG/glibc-2.30/libio/../sysdeps/unix/sysv/linux/x86/lowlevellock.h +-46 6 +fe=(279) ++46 6 ++2 3 +-1 3 +-1 6 ++2 21 +fi=(282) +-48 3 +fe=(279) ++48 6 +fi=(282) +-48 3 +fe=(279) ++48 6 ++2 3 +-2 6 ++3 3 +-1 3 ++3 42 ++1 3 ++1 24 ++1 24 +cob=(5) +cfi=(281) +cfn=(2570) +calls=3 -41 +* 30 ++3 48 +-14 21 +cob=(5) +cfi=(281) +cfn=(2566) +calls=3 -67 +* 51 +* 3 + +fn=(3426) _IO_unsave_markers +960 4 ++2 2 +-2 2 ++2 2 ++5 6 ++2 4 + +fn=(2558) +563 4050 ++1 405 +cfn=(2560) _IO_old_init +calls=405 -33 +* 8511 ++1 405 ++1 810 ++2 3 ++4 3 ++7 3 ++2 3 +-9 15 ++15 3 ++1 18 +-1 402 ++1 2412 +-2 804 + +fn=(4512) +635 35 ++3 21 ++1 14 ++9 7 ++3 28 +-10 14 ++1 7 ++5 7 + +fn=(3430) +329 2424 ++1 808 +-1 808 ++1 808 ++5 404 +-3 404 ++3 1616 +-3 808 ++2 404 ++4 1616 + +fn=(4516) _IO_default_uflow +361 14 +fi=(300) /build/glibc-t7JzpG/glibc-2.30/libio/libioP.h +941 14 +fe=(279) +361 7 +fi=(300) +941 7 +fe=(279) +361 14 ++1 7 +fi=(300) +943 14 ++1 14 +fe=(279) +362 14 +cfi=(304) +cfn=(4518) +calls=7 142 +* 105 ++1 14 ++3 28 + +fn=(3530) +371 927 ++3 1854 +-3 1904 +fi=(300) +941 272 +fe=(279) +371 272 +fi=(300) +941 272 +fe=(279) +371 272 +fi=(300) +941 272 +fe=(279) +371 544 ++18 542 ++8 272 ++2 544 +-20 1088 ++2 272 ++1 544 ++2 544 ++2 3 +cob=(2) +cfi=(18) +cfn=(4488) +calls=1 0 +* 15 ++1 1 +-1 1 ++1 2 ++17 272 +-11 272 ++11 1904 +-11 1897 ++2 1739 ++9 655 +-11 542 ++1 542 +-1 813 ++1 932 +-1 1669 + +fn=(4514) +299 35 ++1 21 ++5 35 ++3 14 ++2 14 ++6 14 ++7 7 +fi=(300) +941 21 ++2 14 ++1 14 +fe=(279) +323 7 ++1 7 +-1 7 ++1 14 +-1 7 +cfn=(4516) +calls=7 +38 +* 252 +-2 21 +-21 14 + +fn=(2560) +531 405 ++3 405 +-2 405 ++1 405 +-1 405 ++2 810 ++16 405 +-11 405 ++5 405 ++6 405 ++5 405 +-16 2430 ++16 810 ++1 6 ++2 405 + +fn=(3418) __GI__IO_un_link.part.0 +52 10 ++6 2 +-6 6 ++6 18 +cob=(5) +cfi=(281) +cfn=(2566) +calls=2 -33 +* 34 ++1 12 +fi=(282) +-12 4 +fe=(279) ++12 4 ++2 2 +-1 2 +-1 2 ++2 2 +-2 2 ++2 14 +fi=(282) +-14 2 +fe=(279) ++14 4 +fi=(282) +-14 2 +fe=(279) ++14 4 ++2 4 +-2 6 ++2 4 ++2 6 ++1 2 ++8 4 ++2 28 ++1 2 ++1 16 ++1 16 +cob=(5) +cfi=(281) +cfn=(2570) +calls=2 -17 +* 20 ++3 16 + +fn=(3436) _IO_default_finish +601 6 ++2 6 ++6 6 ++3 6 +54 4 +624 4 + +fn=(3416) _IO_un_link +53 4 ++1 10 +cfn=(3418) +calls=2 -2 +* 250 ++28 2 + +fl=(75) +fn=(244) +54 2 +-13 6 +-2 2 ++2 2 +-2 4 ++15 2 + +fl=(308) +fn=(3536) +30 402 ++4 402 +-4 402 ++1 402 ++3 402 +-3 402 +-1 402 ++5 402 +-5 804 ++5 402 ++11 402 +-1 804 ++18 1608 + +fl=(311) +fn=(3690) round_and_return +216 304 +fi=(313) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/generic/get-rounding-mode.h +94 19 ++1 152 +fe=(311) +219 38 +fi=(314) /build/glibc-t7JzpG/glibc-2.30/stdlib/../include/rounding-mode.h +46 6 ++6 57 +fe=(311) +314 133 ++4 57 ++2 164 +fi=(314) +46 90 ++3 19 +fe=(311) +351 74 ++5 57 +cfi=(315) /build/glibc-t7JzpG/glibc-2.30/stdlib/../sysdeps/ieee754/dbl-64/mpn2dbl.c +cfn=(3696) __mpn_construct_double +calls=19 29 +* 304 ++1 209 +-4 2 ++1 1 + +fn=(3684) +509 57 ++45 19 +-45 209 ++53 19 ++26 19 +-24 38 ++32 57 ++1 38 +cob=(2) +cfi=(18) +cfn=(742) +calls=19 0 +* 342 ++1 57 +-1 19 ++1 19 ++4 19 ++10 19 +-4 38 ++3 76 ++1 38 ++3 38 +-12 19 ++17 38 ++13 114 ++1 38 ++8 57 +1771 209 +690 57 ++19 38 +515 38 +776 114 ++1 38 ++12 38 ++16 38 ++42 76 ++9 80 ++1 56 ++18 36 ++6 54 ++1 36 ++5 1 ++1 2 +734 57 ++46 38 ++22 38 +-26 19 ++87 2 ++1 1 ++1 12 ++4 2 ++3 3 +-7 4 ++10 2 ++6 2 ++2 40 ++13 18 +1014 38 ++2 4 ++2 1 ++1 2 +-3 2 ++5 3 +-3 1 ++6 133 ++19 36 ++1 6 ++2 6 ++3 38 ++33 38 ++92 19 ++2 110 ++1 18 ++1 18 ++3 36 +-3 18 ++3 36 +-4 1 ++1 1 ++3 2 +-3 1 ++3 2 ++12 38 ++3 38 +1358 5 ++18 2 ++3 7 ++13 1 +-13 1 ++3 1 ++10 4 ++5 3 +604 6 +1400 9 ++3 3 ++8 1 ++4 1 ++16 1 +-75 1 ++55 1 ++3 1 ++17 1 +-20 2 +-57 1 ++77 1 +-20 1 +-57 1 ++77 6 +-6 1 ++1 6 +cob=(2) +cfi=(18) +cfn=(558) +calls=1 0 +* 15 ++15 3 ++1 3 ++2 6 +-26 8 ++7 2 +-4 2 ++2 4 ++8 1 ++1 1 +-1 6 +cfi=(316) +cfn=(3718) +calls=1 48 +* 63 ++4 2 ++1 2 ++1 2 ++1 1 ++3 1 +-4 1 ++5 1 ++2 4 ++2 6 ++4 9 +cfn=(3686) str_to_mpn.isra.0 +calls=1 366 +* 51 ++17 3 ++2 2 +-2 1 ++2 3 ++17 2 ++2 2 +1043 2 +891 2 ++5 3 ++5 2 ++36 3 ++2 1 +-49 1 ++74 17 ++5 4 ++30 2 ++3 2 +-2 2 ++2 2 ++2 6 +-35 4 +655 4 +1024 4 ++3 5 ++3 4 +1175 2 ++1 3 +734 38 +515 38 +1006 6 +1199 234 +cfn=(3686) +calls=18 366 +* 918 ++6 36 +-6 18 ++6 72 ++44 18 ++1 18 +-1 18 ++1 18 +-1 18 ++1 36 ++4 36 ++6 36 ++32 36 +1495 1 ++1 1 ++1 11 ++4 1 ++38 3 +-38 4 ++38 2 +-38 4 ++38 21 +cfi=(312) +cfn=(3688) +calls=1 28 +* 16 +* 7 ++6 1 +-1 1 +-1 2 ++2 1 +-1 1 +-1 6 +cfn=(3690) +calls=1 216 +* 84 +* 1 +-4 10 ++2 2 +-40 2 +-28 5 +cfi=(312) +cfn=(3688) +calls=1 28 +* 16 ++1 5 +cfi=(312) +cfn=(3688) +calls=1 28 +* 16 ++1 2 +-28 4 +cob=(2) +cfi=(18) +cfn=(558) +calls=1 0 +* 15 +* 1 +1295 234 ++2 36 ++10 90 +cfi=(312) +cfn=(3688) +calls=18 28 +* 288 ++4 90 ++15 126 +cfn=(3690) +calls=18 216 +* 1602 +* 18 + +fn=(3686) +366 133 ++13 19 +-13 38 ++14 133 +-4 19 +-1 38 ++39 76 ++13 38 ++1 19 +-1 19 ++3 38 ++2 76 ++7 57 ++2 57 ++2 19 ++1 19 ++15 171 + +fn=(3682) +1783 6 ++1 6 +cfn=(3684) +calls=3 509 +* 1600 + +fl=(194) /build/glibc-t7JzpG/glibc-2.30/posix/../posix/sched_cpucount.c +fn=(1132) popcount_cpucount +23 1 ++3 1 +-2 1 ++2 1 ++2 3 ++2 1 ++3 3 +-5 2 ++24 2 + +fl=(96) +fn=(288) +29 1 +fi=(444) ++1 5 +fe=(96) +-1 1 + +fl=(285) +fn=(3526) +44 790 ++1 790 ++2 790 ++1 790 ++1 790 ++2 790 ++1 790 ++1 790 ++4 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++11 779 ++1 779 ++1 779 ++1 779 ++1 779 ++1 779 ++1 779 ++2 779 ++1 779 ++1 779 ++2 779 ++1 779 ++2 779 ++7 779 ++1 779 ++87 11 ++2 11 ++7 11 ++1 11 + +fn=(2582) +44 2467 ++1 2467 ++2 2467 ++1 2467 ++1 2467 ++2 2467 ++1 2467 ++1 2467 ++4 2465 ++1 2465 ++1 2465 ++1 2465 ++1 2465 ++1 2465 ++1 2465 ++11 2 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++2 2 ++1 2 ++1 2 ++2 2 ++1 2 ++4 2 ++1 2 ++1 2 ++1 2 ++2 2 ++1 2 ++87 2465 ++4 2465 ++1 2465 ++1 2465 ++1 2465 ++2 2465 ++1 2465 + +fl=(94) +fn=(284) +29 2 +fi=(443) ++3 6 +-2 10 +fe=(94) +-1 2 + +fl=(177) /build/glibc-t7JzpG/glibc-2.30/posix/../sysdeps/unix/sysv/linux/x86/sysconf.c +fn=(1056) sysconf +32 10 ++1 3 +fi=(178) /build/glibc-t7JzpG/glibc-2.30/posix/../sysdeps/unix/sysv/linux/x86/../sysconf.c ++11 3 +fe=(177) +-7 9 +fi=(178) ++7 4 +fi=(179) /build/glibc-t7JzpG/glibc-2.30/posix/../sysdeps/posix/sysconf.c ++10 6 +628 1 +cfi=(180) /build/glibc-t7JzpG/glibc-2.30/misc/../sysdeps/unix/sysv/linux/getsysstats.c +cfn=(1062) get_nprocs_conf +calls=1 237 +* 2276 +* 2 +fe=(177) + +fl=(270) /build/glibc-t7JzpG/glibc-2.30/setjmp/sigjmp.c +fn=(2420) __sigjmp_save +28 3 ++2 2 +-1 1 ++5 3 + +fl=(189) /build/glibc-t7JzpG/glibc-2.30/io/../sysdeps/unix/sysv/linux/close_nocancel.c +fn=(1086) __close_nocancel +25 3 ++1 12 ++1 3 + +fl=(64) +fn=(220) +28 1 +fi=(443) ++4 3 +-2 5 +fe=(64) +-2 1 + +fl=(138) /build/glibc-t7JzpG/glibc-2.30/misc/init-misc.c +fn=(426) __init_misc +30 1 ++1 2 +-1 4 ++1 3 ++2 3 +cob=(2) +cfi=(18) +cfn=(428) +calls=1 -33 +* 74 ++4 5 ++1 3 ++2 4 + +fl=(180) +fn=(1062) +237 2 ++5 1 +-5 1 ++8 1 +-8 6 ++16 1 +-11 1 +cfi=(181) +cfn=(1064) +calls=1 88 +* 283 +* 1 ++1 3 ++5 2 +cfi=(183) /build/glibc-t7JzpG/glibc-2.30/dirent/../sysdeps/posix/readdir.c +cfn=(1068) readdir +calls=1 39 +* 60 +* 36 +cfi=(183) +cfn=(1068) +calls=18 39 +* 749 +* 38 ++2 84 ++3 30 +cfi=(186) +cfn=(1074) +calls=6 105 +* 607 ++1 30 ++1 4 +-7 4 ++7 4 +-7 4 +cfi=(183) +cfn=(1068) +calls=4 39 +* 164 +* 8 ++10 2 +cfi=(188) /build/glibc-t7JzpG/glibc-2.30/dirent/../sysdeps/posix/closedir.c +cfn=(1078) closedir +calls=1 31 +* 140 ++24 10 + +fl=(101) +fn=(298) +31 1 +fi=(443) ++1 3 +-2 5 +fe=(101) ++1 1 + +fl=(141) +fn=(434) +83 1 ++1 4 ++1 3 ++1 3 ++2 1 + +fl=(169) +fn=(740) +34 280 ++5 280 ++3 105 ++49 315 +-56 35 +cob=(2) +cfi=(18) +cfn=(742) +calls=35 -35 +* 726 ++38 35 +-6 35 +-32 35 ++37 35 ++3 7770 ++9 3850 + +fl=(152) /build/glibc-t7JzpG/glibc-2.30/malloc/arena.c +fn=(500) ptmalloc_init.part.0 +288 5 ++13 1 +-8 1 ++8 1 ++6 4 +fi=(150) +1795 3 ++3 4 +-3 2 ++3 504 +-3 252 ++11 1 +fe=(152) +312 2 +fi=(150) +1807 1 ++2 1 +fe=(152) +312 3 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 1599 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 21 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 21 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++2 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++1 4 +cob=(2) +cfi=(18) +cfn=(516) +calls=1 0 +* 22 ++71 2 ++1 2 ++3 1 ++1 6 +-97 5 +cfi=(153) +cfn=(502) +calls=1 127 +* 68738 +* 2 ++1 4 + +fl=(92) +fn=(280) +29 1 +fi=(443) ++3 3 +-2 5 +fe=(92) +-1 1 + +fl=(102) +fn=(300) +31 1 +fi=(446) ++1 4 +fe=(102) +-1 1 + +fl=(196) /build/glibc-t7JzpG/glibc-2.30/misc/../sysdeps/unix/sysv/linux/getpagesize.c +fn=(1200) getpagesize +27 1 ++1 4 ++2 1 + +fl=(218) /build/glibc-t7JzpG/glibc-2.30/csu/../csu/libc-start.c +fn=(1642) (below main) +137 10 ++4 1 +-4 3 ++4 3 ++96 2 ++1 3 +cfi=(200) +cfn=(1320) +calls=1 69 +* 72 ++22 4 ++3 2 ++1 5 +cob=(30) +cfi=(217) +cfn=(1644) __libc_csu_init +calls=1 0 +* 203001 ++4 4 ++15 2 ++12 2 +cfi=(268) +cfn=(2416) +calls=1 28 +* 34 +* 1 ++1 2 ++5 2 ++1 2 ++3 2 ++3 6 +cob=(30) +cfi=(219) /home/joscha/Desktop/dune/dune-faultnetworks/src/geofaultnetworks/rockfaultnetwork.cc +cfn=(2422) main +calls=1 65 +* 22489834803 + +fl=(84) +fn=(262) +29 3 +fi=(60) ++16 9 +-1 6 ++5 6 +-1 6 ++12 6 ++2 15 +fe=(84) + +fl=(72) +fn=(236) +33 1 +fi=(60) ++12 3 +-1 2 ++5 2 +-1 2 ++12 2 ++2 5 +fe=(72) + +fl=(170) +fn=(744) +42 1421 ++13 1421 ++1 1421 ++1 1421 ++3 1421 ++1 1421 ++1 1421 ++3 1193 ++1 1193 ++1 1193 ++8 1193 ++4 2 ++1 2 ++1 2 ++9 2 ++4 228 ++1 228 ++1 228 ++1 228 ++2 228 ++1 228 ++1 228 ++1 80 ++6 80 ++1 80 ++1 80 ++4 80 ++1 80 ++16 148 ++10 148 ++1 148 ++1 148 ++1 148 +-3 2 ++1 2 ++1 2 ++1 2 +335 1341 ++1 1341 ++1 1341 ++4 1341 ++1 1341 + +fl=(437) /build/glibc-t7JzpG/glibc-2.30/misc/../sysdeps/unix/sysv/linux/mmap64.c +fn=(9100) mmap +48 215 ++3 430 +-3 860 ++6 430 ++5 1290 ++2 645 +-7 430 + +fl=(61) +fn=(214) +29 2 +fi=(447) ++7 6 +-2 2 ++2 2 +-2 4 +fe=(61) +-5 2 + +fl=(80) +fn=(254) +31 2 +fi=(443) ++1 6 +-2 10 +fe=(80) ++1 2 + +fl=(310) +fn=(3540) +165 268 ++3 536 ++2 268 ++9 4188 ++9 268 + +fl=(93) +fn=(282) +31 1 +fi=(446) ++1 4 +fe=(93) +-1 1 + +fl=(315) +fn=(3696) +29 19 ++10 19 +-6 19 ++7 190 ++6 38 ++1 19 + +fl=(69) +fn=(230) +31 1 +fi=(443) ++1 3 +-2 5 +fe=(69) ++1 1 + +fl=(148) /build/glibc-t7JzpG/glibc-2.30/stdio-common/reg-type.c +fn=(484) register_printf_type +36 3 ++2 3 +fi=(149) ++9 2 +fe=(148) +-7 3 ++8 3 ++4 2 ++1 2 ++4 4 ++3 3 +-17 3 +cob=(2) +cfi=(18) +cfn=(488) +calls=1 -43 +* 73735 +-1 1 ++2 2 + +fl=(372) +fn=(4486) +103 2 +-24 2 ++24 2 +-24 1 ++24 1 +-24 1 ++24 7 +-24 1 +-2 1 ++2 2 +cfi=(279) +cfn=(2558) +calls=1 563 +* 44 ++12 3 +-1 1 ++1 1 +-1 1 ++1 1 +cfi=(304) +cfn=(3520) +calls=1 -55 +* 66 ++4 5 +cfi=(305) +cfn=(3522) +calls=1 1289 +* 928 ++2 2 ++8 9 + +fn=(4354) +72 1167 ++7 389 +-7 1167 ++7 389 +-7 778 ++7 389 +-7 1556 ++7 389 +-7 1556 ++7 389 +-2 389 ++2 778 +cfi=(279) +cfn=(2558) +calls=389 563 +* 17116 ++8 389 ++4 778 +-4 778 ++4 389 +-4 778 ++4 2334 +cfi=(304) +cfn=(3520) +calls=389 -55 +* 25674 ++4 1945 +cfi=(305) +cfn=(3522) +calls=389 1289 +* 778498 ++2 778 ++2 4279 + +fl=(151) /build/glibc-t7JzpG/glibc-2.30/malloc/hooks.c +fn=(496) malloc_hook_ini +29 2 +fi=(152) +290 1 +fe=(151) +29 3 ++1 2 +fi=(152) +290 3 +cfn=(500) +calls=1 -2 +* 71402 +* 1 +fi=(150) +3032 2 +1208 2 ++2 4 +3044 4 ++12 3 ++2 3 +cfn=(526) _int_malloc +calls=1 1208 +* 145 +* 1 ++1 7 +fe=(151) +33 5 +fi=(150) +1210 4 +2978 4 +cfn=(522) tcache_init.part.0 +calls=1 +3 +* 476 ++69 2 +fe=(151) + +fl=(76) +fn=(246) +53 3 +-12 9 +-2 3 ++2 3 +-2 6 ++14 3 + +fl=(135) +fn=(420) +52 9 ++3 3 ++14 1 +-2 1 +fi=(136) /build/glibc-t7JzpG/glibc-2.30/csu/../sysdeps/generic/dl-hash.h +-22 1 +-1 1 +fe=(135) ++24 1 ++1 1 +fi=(136) +-26 1 ++5 3 ++14 4 +-17 3 ++3 9 ++14 12 +-17 9 ++22 1 +fi=(448) /build/glibc-t7JzpG/glibc-2.30/csu/../sysdeps/unix/sysv/linux/dl-vdso.h +-37 2 +fi=(137) /build/glibc-t7JzpG/glibc-2.30/csu/../sysdeps/unix/sysv/linux/x86_64/init-first.c ++7 1 +fi=(448) +-6 1 +fi=(137) ++6 1 +fi=(448) +-6 2 +fi=(137) ++6 1 +fi=(448) +-6 2 +fi=(137) ++6 1 +cfi=(68) +cfn=(228) +calls=1 -12 +* 14 ++2 1 ++4 2 +-4 2 ++1 2 ++1 1 ++2 1 +cfi=(68) +cfn=(228) +calls=1 -18 +* 14 +fe=(135) ++38 3 +fi=(137) +-37 2 ++1 1 +fe=(135) ++36 1 +cfi=(138) +cfn=(426) +calls=1 -51 +* 99 ++3 1 +cfi=(140) +cfn=(432) +calls=1 -55 +* 17 ++5 6 +-27 1 +-7 1 ++7 4 + +fl=(161) +fn=(538) +147 16 ++1 16 ++1 16 ++1 16 ++1 430488 ++1 16 ++1 16 ++14 2369113 ++1 7107339 ++5 2369113 ++1 2369113 ++1 2368716 ++1 2368716 ++2 6272 ++1 6272 ++1 6272 ++1 6272 ++3 2362444 ++1 2362444 ++3 2362428 ++1 2362428 ++1 2362249 ++1 2362249 ++1 2362249 ++1 2362249 ++2 2362249 ++1 2362249 +-1 83 ++1 83 ++3 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++1 179 ++2 175 ++1 175 ++1 175 ++1 175 ++1 175 ++1 175 ++1 175 ++1 96 ++1 96 ++11 397 ++1 397 ++2 397 ++1 397 ++1 397 ++1 396 ++1 396 ++1 1 ++1 1 ++1 1 ++3 1 ++1 1 ++19 1 ++1 1 ++1 1 ++1 1 ++3 395 ++1 395 ++1 395 ++1 395 + +fl=(163) +fn=(556) +25 1 ++1 2 +cob=(2) +cfi=(18) +cfn=(558) +calls=1 -26 +* 17 + +fl=(226) +fn=(1810) +33 512 ++5 256 +-5 1792 ++5 1536 ++5 512 ++4 384 +fi=(227) /build/glibc-t7JzpG/glibc-2.30/wcsmbs/./wcsmbsload.h ++23 384 +fe=(226) +-22 128 ++2 128 +-2 128 ++2 128 ++5 512 ++3 256 +cfi=(228) /build/glibc-t7JzpG/glibc-2.30/elf/dl-profstub.c +cfn=(1814) _dl_mcount_wrapper_check +calls=128 -21 +* 768 +* 384 +cfi=(229) +cfn=(1816) +calls=128 -8 +* 768 ++41 2304 +fi=(227) +-27 128 ++1 128 +-1 256 +fe=(226) + +fl=(356) +fn=(4290) +50 434 ++6 434 ++2 434 ++5 434 ++2 434 ++1 434 ++1 434 ++2 416 ++1 416 ++2 416 ++1 416 ++1 416 ++14 416 ++1 416 ++2 6 ++1 6 ++7 6 ++1 6 +301 18 ++1 18 ++1 18 ++1 18 ++10 18 ++1 18 ++31 410 ++2 410 ++2 410 ++1 410 +-3 18 ++2 18 ++1 18 +-1 6 ++1 6 ++1 434 ++1 434 ++1 425 ++1 425 ++1 413 ++1 413 ++1 147 ++1 147 ++1 134 ++1 134 ++1 134 ++24 6 ++1 6 ++1 6 ++1 6 ++1 6 +546 134 ++1 134 ++9 134 ++1 134 ++20 13 ++1 13 ++9 13 ++1 13 ++4 266 ++1 266 ++1 266 ++1 266 ++10 266 ++1 266 ++4 12 ++1 12 ++1 12 ++1 12 ++10 12 ++1 12 ++4 9 ++1 9 ++1 9 ++1 9 ++10 9 ++1 9 + +fl=(88) +fn=(272) +43 1 +-6 5 ++6 1 + +fl=(280) +fn=(2572) +214 33 ++9 6 ++2 20 +361 36 +225 3 ++23 18 ++33 12 +cfn=(2574) _IO_file_open +calls=3 -98 +* 261 +* 3 ++3 6 ++3 9 +cfi=(284) /build/glibc-t7JzpG/glibc-2.30/string/../string/strstr.c +cfn=(2578) __GI_strstr +calls=3 77 +* 182 +* 3 ++1 6 +-40 6 +-19 2 +-1 2 +-13 4 + +fn=(3424) _IO_file_close_it@@GLIBC_2.2.5 +129 8 ++2 6 ++4 4 ++3 2 +-3 2 +-1 4 ++6 2 ++3 2 +-3 2 +cfi=(279) +cfn=(3426) +calls=2 960 +* 20 ++3 6 +fi=(300) +941 6 ++2 4 ++1 4 +fe=(280) +143 4 +cfn=(3428) _IO_file_close +calls=2 1169 +* 18 +* 2 ++3 6 ++8 10 +cfi=(279) +cfn=(3430) +calls=2 329 +* 50 ++1 2 ++3 2 +-3 6 ++3 2 +cfi=(279) +cfn=(3416) +calls=2 53 +* 8 ++5 2 +-4 2 ++1 2 ++3 2 +-2 2 ++3 10 + +fn=(3428) +1169 2 ++3 4 +cfi=(189) +cfn=(1086) +calls=2 25 +* 12 + +fn=(2562) +107 3 ++5 3 +-5 6 ++4 3 ++3 3 +cfi=(279) +cfn=(2564) +calls=3 -27 +* 369 ++1 3 ++1 6 + +fn=(3434) _IO_file_finish@@GLIBC_2.2.5 +169 10 ++1 4 ++7 2 +-1 4 ++1 4 +-1 2 +cfi=(279) +cfn=(3436) +calls=2 601 +* 32 + +fn=(2574) +183 6 ++3 3 +-3 21 ++2 6 ++4 3 +cfi=(283) +cfn=(2576) +calls=3 37 +* 105 +* 3 ++1 6 ++3 6 ++3 3 +-4 3 ++1 12 ++3 6 ++10 6 +cfi=(279) +cfn=(2564) +calls=3 87 +* 57 ++1 3 ++1 12 + +fl=(85) +fn=(266) +49 1 +-9 3 +-2 1 ++2 1 +-2 2 ++11 1 + +fl=(232) +fn=(2082) +79 666 ++13 666 ++1 666 ++2 666 ++1 666 ++1 666 ++1 666 ++1 666 ++2 623 ++1 623 ++1 623 ++1 623 ++1 623 ++1 623 ++1 623 ++1 623 ++18 623 ++1 623 ++1 623 ++2 623 ++1 623 +636 22 ++2 22 ++1 22 ++1 22 ++1 22 ++9 22 ++1 22 ++3 22 ++1 22 ++3 2 ++4 2 ++1 2 ++39 41 ++1 41 ++4 41 ++11 41 ++1 41 ++1 41 ++2 41 ++1 41 ++10 43 ++1 43 ++2 26 ++1 26 ++1 26 ++1 26 ++1 26 ++1 26 ++1 26 ++15 17 ++1 17 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++2 1 ++2 1 ++13 1 ++1 1 +-1 14 ++1 14 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++1 15 ++2 15 ++1 15 ++1 15 ++2 2 ++1 2 ++10 2 ++1 2 ++31 2 ++1 2 ++2 2 ++1 2 + +fl=(405) +fn=(5490) +28 124 ++1 124 ++1 124 ++1 124 ++13 124 ++1 124 ++16 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++1 124 ++5 124 ++1 124 ++1 124 ++1 124 ++1 124 + +fl=(90) +fn=(276) +49 2 +-9 6 +-2 2 ++2 2 +-2 4 ++11 2 + +fl=(171) /build/glibc-t7JzpG/glibc-2.30/locale/newlocale.c +fn=(784) newlocale +44 28 ++12 5 ++4 2 ++4 4 ++3 6 ++6 4 ++3 2 +-2 6 +279 24 +57 2 ++17 2 + +fl=(299) +fn=(3414) +34 10 ++14 6 +fi=(300) +884 4 ++1 6 +fe=(299) +57 2 +fi=(300) +941 6 ++2 4 ++1 4 +fe=(299) +57 6 +cfi=(280) +cfn=(3434) +calls=2 169 +* 58 ++1 6 +fi=(300) +856 8 ++1 8 ++6 4 +cob=(2) +cfi=(18) +cfn=(1080) +calls=2 0 +* 168 +fe=(299) +76 10 +-27 2 +cfi=(279) +cfn=(3416) +calls=2 +4 +* 258 ++2 20 +fi=(282) +-4 4 +fe=(299) ++4 8 ++1 8 ++1 4 +cfi=(280) +cfn=(3424) +calls=2 +76 +* 202 +* 8 +fi=(300) +885 12 +fe=(299) +71 4 + +fl=(173) +fn=(854) +40 25 ++1 5 +cob=(2) +cfi=(18) +cfn=(742) +calls=5 -41 +* 98 +* 5 ++1 10 +cob=(2) +cfi=(18) +cfn=(552) +calls=5 -42 +* 640 ++2 10 ++4 5 +-1 15 ++1 10 +-1 5 +cob=(2) +cfi=(18) +cfn=(558) +calls=5 -47 +* 79 + +fl=(183) +fn=(1068) +39 138 ++2 23 +-2 23 ++2 23 ++3 92 +fi=(184) /build/glibc-t7JzpG/glibc-2.30/dirent/../sysdeps/unix/sysv/linux/x86/lowlevellock.h ++3 46 ++4 46 +fe=(183) ++14 46 ++21 22 ++3 22 ++13 22 ++3 22 ++6 22 +-9 22 ++3 22 ++6 22 +-60 69 ++14 8 +cfi=(185) +cfn=(1072) +calls=2 -38 +* 18 ++1 4 ++14 4 +-9 1 ++5 1 ++1 2 ++37 92 ++4 161 + +fl=(188) +fn=(1078) +31 1 ++3 2 +-3 1 ++13 1 ++6 1 +cob=(2) +cfi=(18) +cfn=(1080) +calls=1 -50 +* 125 ++2 1 ++1 1 +-1 1 +cfi=(189) +cfn=(1086) +calls=1 -27 +* 6 + +fl=(284) +fn=(2578) +77 24 ++5 3 +-5 9 ++5 6 ++2 12 +cob=(2) +cfi=(18) +cfn=(2580) +calls=3 -84 +* 80 +* 3 ++1 6 ++44 3 ++32 36 + +fl=(73) +fn=(240) +29 3 +fi=(74) /build/glibc-t7JzpG/glibc-2.30/string/../sysdeps/x86_64/multiarch/ifunc-memcmp.h ++3 3 ++1 9 +-1 6 ++2 9 ++1 6 +fe=(73) +-6 3 + +fl=(228) +fn=(1814) +37 128 ++1 128 +-1 128 ++1 256 ++2 128 + +fl=(269) +fn=(2418) +30 1 ++2 1 ++9 1 ++1 2 ++1 1 ++4 1 ++1 1 ++1 1 ++1 1 ++1 1 ++2 2 ++2 1 ++1 1 ++1 1 ++2 2 ++2 1 ++5 1 ++1 1 ++17 1 +cfi=(270) +cfn=(2420) +calls=1 -56 +* 9 + +fl=(335) +fn=(4022) +26 16 ++1 32 +cfi=(336) +cfn=(4024) +calls=16 +55 +* 6336 + +fl=(119) +fn=(346) +44 7 + +fl=(303) /build/glibc-t7JzpG/glibc-2.30/libio/vsnprintf.c +fn=(3516) vsnprintf +123 5 ++1 10 +cfn=(3518) __vsnprintf_internal +calls=5 -29 +* 4996 + +fn=(3518) +95 70 ++4 5 ++5 25 ++6 40 +cfi=(279) +cfn=(2558) +calls=5 563 +* 220 ++3 15 +-2 5 ++2 5 +-2 5 ++1 5 ++1 5 +cfi=(304) +cfn=(3520) +calls=5 -77 +* 330 ++1 25 +cfi=(305) +cfn=(3522) +calls=5 1289 +* 4161 ++2 15 ++1 10 ++2 55 + +fl=(307) +fn=(3534) +64 2765 ++5 395 +-5 395 ++8 395 ++1 395 +-4 395 ++11 395 ++5 2765 ++25 4023 ++38 1290 ++2 790 ++1 258 ++3 258 ++1 258 ++1 774 +-2 137 ++1 137 ++1 411 ++30 790 +66 395 +186 790 ++9 395 ++2 395 ++1 790 ++50 395 +-6 395 ++6 790 ++3 4345 ++57 790 ++2 395 +-1 395 +-1 395 ++2 395 ++11 790 ++2 2765 +122 258 ++1 258 ++77 516 ++1 774 ++28 774 +393 790 +-40 516 ++1 1290 ++31 1571 ++4 395 ++1 790 +-54 402 +fi=(373) +78 1806 ++4 258 ++6 516 +-1 258 ++1 258 +-1 258 ++1 258 ++3 774 +-13 1806 ++1 516 ++2 516 +fe=(307) +385 9 ++14 395 +fi=(373) +111 790 +cob=(2) +cfi=(18) +cfn=(3524) +calls=395 0 +* 9863 +fe=(307) +403 395 ++5 2765 +-43 3 ++1 3 +249 1185 ++63 1580 ++4 1290 +cob=(7) +cfi=(147) +cfn=(4358) 0x0000000000026c50 +calls=258 0 +* 1548 +* 1290 +-83 516 ++1 516 +338 268 ++3 670 + +fl=(71) +fn=(234) +30 1 +fi=(445) ++2 3 +-2 6 +fe=(71) + +fl=(150) +fn=(494) +3366 30 ++10 15 +-10 60 ++10 120 ++8 30 ++1 30 ++9 42 ++2 42 ++10 14 ++1 42 ++21 42 +cfn=(526) +calls=14 1208 +* 1927 +* 14 ++2 70 ++3 42 ++14 28 ++6 56 ++52 98 +-44 14 ++3 28 ++11 14 ++2 28 ++2 28 +-49 70 ++20 14 ++14 70 +-77 3 +cfi=(151) +cfn=(496) +calls=1 29 +* 72076 ++4 2 +-4 1 ++1 2 +3505 5 +-49 1 +cob=(2) +cfi=(18) +cfn=(536) +calls=1 0 +* 128 ++24 42 +cob=(2) +cfi=(18) +cfn=(536) +calls=14 0 +* 4833 +* 28 + +fn=(554) +3023 2383539 ++8 2383539 +-8 9534156 ++8 2383539 ++1 4767078 +1208 4767078 ++2 9534156 +3044 9534156 ++3 4767078 ++9 7106901 ++2 7106901 +cfn=(526) +calls=2368967 1208 +* 334111741 +* 2368967 ++1 16582769 ++23 11917695 +1210 9529800 +3048 2383508 ++1 7150524 +2936 14572 ++2 14572 +-2 14572 ++1 29144 ++1 14572 ++1 14572 +3051 14572 + +fn=(3770) unlink_chunk.isra.0 +1451 185 ++2 925 ++3 185 ++1 185 ++2 740 ++3 185 ++1 185 ++1 580 ++2 50 ++1 75 ++3 50 ++14 25 ++1 50 ++3 370 + +fn=(526) +1208 4737966 +3513 2368983 +1210 2368983 +3513 18951864 +1210 4737966 +3553 56 ++24 56 ++61 2368945 ++2 2368945 +-2 2368945 ++2 4737890 ++2 20 ++1 40 ++6 20 +-4 20 ++1 20 ++1 20 ++2 40 ++7 80 +-1 40 ++1 60 ++5 480 ++1 248 ++4 120 ++1 120 ++1 240 +2926 120 +3670 120 +2920 120 ++8 120 +3671 120 +2924 120 ++2 120 +-6 120 ++9 120 +-1 120 ++1 120 +1210 4737910 +3553 4737910 +1637 4737910 +3577 4737910 ++58 8432 ++62 1303 ++1 111 ++1 2 +cfn=(3768) malloc_consolidate +calls=1 4441 +* 572 +* 1 +3577 56 +1210 56 +3582 56 ++2 56 +-2 4729478 ++2 4729478 +-4 1 ++6 4 ++1 1 ++5 2 ++1 2 ++7 4 +-1 2 ++1 2 ++5 5 ++4 7 +2924 7 +-4 14 ++6 28 +-6 7 ++8 28 +3605 21 ++1 21 ++2 28 +-19 7106835 +1868 21 +3678 21 +1868 42 +4147 33152914 +3637 7106775 ++3 26058175 ++77 2368925 ++1 2368925 +-1 4737850 +-1 4737850 ++2 4737850 +-1 37 ++1 37 +-1 74 +-1 74 ++2 74 +-2 7106883 ++6 4737922 ++73 7106883 +-67 7106883 +-6 2 ++73 3 +-67 135 +3892 679 +-91 679 ++91 1358 +-91 679 +-74 679 ++74 1358 +-42 4074 +-28 1358 ++1 679 ++2 1358 +-3 300 ++1 150 ++2 300 ++1 2487 ++2 829 ++1 3316 ++2 3316 +-10 829 ++12 1658 ++1 1658 ++2 1658 ++11 3282 ++31 250 ++1 250 ++4 500 ++29 492 ++2 442 ++1 663 ++1 221 +-1 221 ++57 221 ++2 442 +-2 442 ++2 221 ++7 221 +-9 663 ++9 221 +-7 221 ++1 221 ++1 221 ++6 442 +-10 25 ++2 50 +-2 50 ++2 25 ++7 25 +-9 75 ++9 25 +-7 25 ++1 25 ++1 25 ++6 50 +3728 4 +1868 6 +3794 4 ++1 4 +-1 4 ++1 8 ++5 12 ++1 14 ++28 295 ++1 75 ++1 25 +-1 25 ++4 50 ++66 738 +3728 738 +3917 4736846 ++2 105 ++3 35 +-3 35 ++3 70 ++68 4736846 ++1 2368423 ++1 2368423 +-1 2368423 ++1 2368423 ++1 4736846 ++1 7105269 ++5 4737140 ++16 351 ++2 702 +-4 936 ++8 117 ++3 234 ++2 49 ++1 49 ++1 49 +-2 196 +-27 49 +2926 2 ++2 2 +-4 2 ++2 4 +3805 2 +2927 2 ++1 2 +3805 2 +3697 28 +3878 125 +3757 1328 ++1 1226 ++5 1737 +-1 579 ++1 1158 ++1 1158 +-1 579 ++2 579 ++1 1737 ++1 1158 ++2 1002 ++4 501 ++6 501 +-6 3507 ++2 1503 ++1 501 +1868 1503 +3773 78 ++6 78 +-6 546 ++2 234 ++1 78 +1868 234 +4003 7105122 ++3 9473412 +-3 7105044 ++3 9473356 +-3 4736668 ++3 7104951 ++97 2368355 ++1 4736710 ++2 4736710 ++3 7105385 ++17 960 ++2 88 +cfn=(3768) +calls=44 4441 +* 5456 ++3 44 +-1 88 ++1 44 +-1 44 +-97 204 ++3 136 ++2 68 ++3 136 +-3 68 ++3 136 +cfn=(3770) +calls=68 1451 +* 1471 ++3 272 ++15 45 +-5 45 ++6 90 ++3 180 ++1 45 ++1 45 ++3 90 ++1 36 ++1 90 ++2 38 ++3 152 ++2 57 ++1 19 +1868 19 +4081 19 +1868 38 +4075 208 ++2 78 ++1 26 +1868 26 +4081 26 +1868 75 +4081 23 +1868 46 +4006 10 ++2 40 ++1 20 +-1 36 ++1 18 ++38 23 +-1 23 ++1 46 +-41 18 +4114 2368035 +-3 2368035 ++1 4736070 ++2 2368035 +-1 2368035 ++1 2368035 ++2 2368035 ++3 2368035 +-5 11840175 ++2 2368035 +1868 7104107 +2936 6 ++1 4 ++1 2 ++1 2 +3908 2 +4141 1104 +cfn=(528) sysmalloc +calls=276 2255 +* 67034 +* 276 ++1 552 +1868 828 + +fn=(1082) +3087 29304 ++5 29304 ++1 29304 ++6 29304 ++5 14652 +-2 14652 ++2 29304 ++18 43956 ++2 43956 ++1 14652 ++1 14652 +-1 14652 +cfn=(1084) _int_free +calls=14652 4155 +* 911770 + +fn=(1084) +4155 162668 ++10 44364 ++6 73940 ++1 29576 ++4 59152 ++8 73940 +-1 29576 ++1 29576 ++3 14768 ++6 29536 ++13 73840 ++14 650 ++11 1220 ++2 915 +1875 915 +4254 305 ++1 305 ++4 915 ++2 915 ++4 610 ++2 305 ++1 305 ++18 1124 +4428 162668 +4295 40 ++3 20 ++3 60 ++7 20 +-4 20 ++4 40 ++3 40 ++5 60 ++3 40 ++1 40 ++1 40 +1875 60 +4327 40 ++1 8 ++2 8 +-1 8 ++2 32 ++2 16 +cfn=(3770) +calls=8 1451 +* 228 ++3 40 ++5 38 ++4 18 ++9 18 +-1 18 ++2 36 +-1 1 +-1 1 ++2 2 ++2 76 ++2 38 ++5 19 ++1 19 ++2 57 ++1 19 ++30 40 ++20 60 +2924 28926 ++4 14463 +-2 28926 ++1 14463 ++1 14463 +4209 14463 +4361 57 ++38 6 ++3 6 +-23 1 ++1 3 ++1 2 +-39 1 ++1 1 +-1 1 +cfn=(3770) +calls=1 1451 +* 21 ++1 1 +-30 60 +-2 40 ++89 2 +cfn=(3768) +calls=1 +41 +* 11533 +* 1 ++4 10 + +fn=(3768) +4441 46 ++17 46 +-17 138 ++28 46 +-28 184 ++15 46 ++2 46 ++13 92 ++1 92 +-1 828 ++1 828 ++58 1380 ++1 368 +-31 594 ++4 243 ++2 243 ++1 243 ++1 243 ++2 486 +-4 54 ++1 54 ++1 54 ++2 108 ++1 86 ++4 43 ++2 43 +-2 43 ++2 43 +-2 43 ++2 43 ++1 43 ++9 86 +-12 254 ++2 254 +-2 254 ++2 254 +-2 254 ++2 254 ++1 254 ++9 757 +-52 747 ++1 996 +-1 144 ++1 192 ++8 297 +-3 297 ++3 297 ++1 297 ++1 594 ++2 594 ++1 54 ++2 54 +-1 54 ++2 216 ++2 162 +cfn=(3770) +calls=54 1451 +* 972 +* 54 ++3 594 ++5 54 +-1 108 ++1 54 +cfn=(3770) +calls=54 1451 +* 1098 +* 162 + +fn=(522) +2981 1 +-9 1 ++9 6 +fi=(157) /build/glibc-t7JzpG/glibc-2.30/malloc/../sysdeps/unix/sysv/linux/x86/lowlevellock.h +47 2 +fe=(150) +2982 3 +cfn=(526) +calls=1 1208 +* 362 +* 1 ++1 2 ++8 4 ++7 2 ++2 1 ++1 2 +-1 1 ++1 86 ++3 2 + +fn=(528) +2255 2208 ++20 552 ++11 552 ++1 1380 +fi=(152) +534 828 +fe=(150) +2302 1104 ++66 276 ++1 828 ++1 276 ++9 2479 ++6 828 ++3 828 +2705 552 ++1 276 ++5 552 ++3 552 ++2 552 ++1 276 +-1 276 ++2 828 ++1 276 ++1 276 ++2 276 +-3 552 ++1 276 ++8 2484 +2449 2484 ++11 62 ++8 186 ++2 1380 +cfi=(158) +cfn=(530) +calls=276 46 +* 13907 +* 276 ++1 276 ++3 1104 ++3 122 ++1 122 ++46 426 ++2 60 ++6 120 +-6 1 ++6 122 ++1 300 +-65 642 ++29 645 ++4 838 +-8 430 ++1 6 ++31 2 +-22 1935 +cfi=(437) +cfn=(9100) +calls=215 48 +* 4300 ++2 645 +-2 215 ++2 215 ++12 215 +-8 215 ++13 430 ++2 860 ++2 215 ++36 215 ++70 430 ++29 216 +-1 216 ++1 648 ++1 216 ++11 432 ++7 430 ++1 645 ++8 215 ++2 215 ++4 430 ++2 544 +cfn=(1084) +calls=136 4155 +* 9088 +* 136 +2535 4 ++40 3 ++22 1 ++1 1 +-1 1 ++1 5 ++2 2 ++1 2 +cfi=(158) +cfn=(530) +calls=1 46 +* 27 ++12 2 ++8 2 ++1 9 + +ob=(7) +fl=(147) +fn=(4358) +0 1548 + +fn=(4362) +0 5160 + +fn=(476) +0 4 +cob=(2) +cfi=(18) +cfn=(478) +calls=1 0 +0 75367 +0 5 +cob=(2) +cfi=(18) +cfn=(544) +calls=1 0 +0 2254 +0 7 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 6112 +0 4 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 +0 4 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 +0 4 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 +0 4 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 +0 4 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 +0 4 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 +0 5 +cob=(2) +cfi=(18) +cfn=(566) +calls=1 0 +0 32 + +fn=(470) +0 12 + +ob=(14) +fl=(199) +fn=(1312) +0 10 + +fn=(1352) +0 9 +cob=(2) +cfi=(18) +cfn=(1354) +calls=1 0 +0 1714 +0 8 + +fn=(1362) +0 74 + +fn=(1412) +0 34 + +fn=(1456) +0 50 + +fn=(1670) +0 900 +cfn=(1672) 0x00000000000befa0 +calls=100 0 +0 101555 +0 1200 + +fn=(1844) std::__cxx11::numpunct<wchar_t>::_M_initialize_numpunct(__locale_struct*) +0 350 + +fn=(1850) std::__cxx11::moneypunct<wchar_t, false>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 109 + +fn=(1912) std::moneypunct<char, true>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 113 + +fn=(1966) std::moneypunct<wchar_t, false>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 109 + +fn=(2464) +0 1322 +cob=(2) +cfi=(18) +cfn=(2466) +calls=32 0 +0 2448 +0 162 +cob=(2) +cfi=(18) +cfn=(2466) +calls=81 0 +0 8982 + +fn=(2910) +0 607 +cob=(2) +cfi=(18) +cfn=(2486) +calls=57 0 +0 848 +0 72 + +fn=(3044) +0 667 +cob=(2) +cfi=(18) +cfn=(2486) +calls=9 0 +0 138 +0 30 +cob=(2) +cfi=(18) +cfn=(2614) +calls=3 0 +0 368 +0 96 + +fn=(3328) +0 88242 + +fn=(3392) +0 60 + +fn=(3398) +0 18 +cob=(2) +cfi=(18) +cfn=(3400) +calls=2 0 +0 276 +0 22 + +fn=(3460) +0 221 + +fn=(3610) +0 120 +cfn=(3612) 0x00000000001293c0 +calls=5 0 +0 150 +0 784 +cfn=(3618) std::__cxx11::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >::underflow() +calls=1 0 +0 12 +0 110 +cfn=(3618) +calls=4 0 +0 48 +0 24 + +fn=(3644) +0 45 +cob=(2) +cfi=(18) +cfn=(2684) +calls=3 0 +0 150 +0 54 +cfn=(3646) std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > >::do_get(std::istreambuf_iterator<char, std::char_traits<char> >, std::istreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, std::_Ios_Iostate&, double&) const +calls=3 0 +0 16181 +0 57 +cob=(2) +cfi=(18) +cfn=(2594) +calls=3 0 +0 27 +0 3 + +fn=(3646) +0 87 +cob=(2) +cfi=(18) +cfn=(3648) +calls=3 0 +0 4650 +0 27 +cob=(2) +cfi=(18) +cfn=(3666) +calls=3 0 +0 4583 +0 45 +cob=(2) +cfi=(18) +cfn=(1706) +calls=3 0 +0 63 +0 21 +cob=(2) +cfi=(18) +cfn=(3672) +calls=3 0 +0 4894 +0 129 +cob=(2) +cfi=(18) +cfn=(3698) +calls=3 0 +0 1676 +0 6 + +fn=(3652) +0 60 +cob=(2) +cfi=(18) +cfn=(3654) +calls=3 0 +0 3208 +0 36 + +fn=(3808) +0 56 + +fn=(3848) +0 30 +cob=(2) +cfi=(18) +cfn=(2638) +calls=3 0 +0 78 +0 12 +cob=(2) +cfi=(18) +cfn=(3850) +calls=3 0 +0 4197 +0 15 + +fn=(3968) +0 60 + +fn=(3974) +0 92 + +fn=(4036) +0 5 +cob=(2) +cfi=(18) +cfn=(3382) +calls=1 0 +0 696 +0 4 + +fn=(4456) std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, long) const +0 3 +cob=(2) +cfi=(18) +cfn=(4458) +calls=1 0 +0 2264 + +fn=(5048) +0 6528 +cfn=(5050) std::_Rb_tree_increment(std::_Rb_tree_node_base*) +calls=3264 0 +0 54699 + +fn=(1394) +0 34 + +fn=(1712) 0x00000000000bcd70 +0 5 +cob=(2) +cfi=(18) +cfn=(1714) +calls=1 0 +0 3261 + +fn=(1856) std::__cxx11::moneypunct<wchar_t, true>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 109 + +fn=(2032) +0 1534 +cob=(2) +cfi=(18) +cfn=(1666) +calls=26 0 +0 1118 + +fn=(2088) +0 280 +cob=(2) +cfi=(18) +cfn=(1734) +calls=56 0 +0 448 +0 616 +cob=(2) +cfi=(18) +cfn=(2070) +calls=56 0 +0 8064 +0 224 + +fn=(2138) +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=4 0 +0 32 +0 44 +cob=(2) +cfi=(18) +cfn=(2070) +calls=4 0 +0 368 +0 16 + +fn=(2444) +0 72 + +fn=(2526) +0 15 +cob=(2) +cfi=(18) +cfn=(1734) +calls=3 0 +0 24 +0 33 +cob=(2) +cfi=(18) +cfn=(2070) +calls=3 0 +0 276 +0 12 + +fn=(2544) +0 21 +cfn=(2546) 0x00000000000cccc0 +calls=3 0 +0 27 +0 18 +cob=(2) +cfi=(18) +cfn=(2534) +calls=3 0 +0 18 +0 15 +cob=(2) +cfi=(18) +cfn=(2552) +calls=3 0 +0 3956 +0 27 + +fn=(2612) +0 75 +cob=(2) +cfi=(18) +cfn=(2614) +calls=3 0 +0 2259 +0 66 + +fn=(2692) std::codecvt<char, char, __mbstate_t>::do_always_noconv() const +0 33 + +fn=(2728) +0 960 +cob=(2) +cfi=(18) +cfn=(2614) +calls=3 0 +0 225 +0 128 +cob=(2) +cfi=(18) +cfn=(2614) +calls=32 0 +0 2809 +0 182 +cob=(2) +cfi=(18) +cfn=(2486) +calls=6 0 +0 87 +0 356 +cob=(2) +cfi=(18) +cfn=(2486) +calls=35 0 +0 500 +0 209 +cob=(2) +cfi=(18) +cfn=(2486) +calls=13 0 +0 197 +0 86 +cob=(2) +cfi=(18) +cfn=(2758) +calls=3 0 +0 264 +0 554 + +fn=(2734) +0 630 +cob=(2) +cfi=(18) +cfn=(2638) +calls=70 0 +0 1260 +0 560 +cob=(2) +cfi=(18) +cfn=(2736) +calls=70 0 +0 5553 + +fn=(2740) +0 1352 +cob=(2) +cfi=(18) +cfn=(2718) +calls=77 0 +0 1572 +0 644 + +fn=(2808) +0 48 + +fn=(3166) +0 42 +cob=(2) +cfi=(18) +cfn=(2718) +calls=3 0 +0 63 +0 27 + +fn=(3594) +0 108 +cob=(2) +cfi=(18) +cfn=(3584) +calls=9 0 +0 81 +0 27 +cob=(2) +cfi=(18) +cfn=(2046) +calls=9 0 +0 198 +0 27 +cob=(2) +cfi=(18) +cfn=(3450) +calls=9 0 +0 117 +0 63 + +fn=(3622) +0 117 +cob=(2) +cfi=(18) +cfn=(2684) +calls=9 0 +0 297 +0 90 + +fn=(3702) +0 6 +cob=(2) +cfi=(18) +cfn=(2758) +calls=3 0 +0 264 + +fn=(3764) +0 15 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 13 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 8 +cob=(2) +cfi=(18) +cfn=(2504) +calls=1 0 +0 355 +0 3 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 5 +cob=(2) +cfi=(18) +cfn=(2528) +calls=1 0 +0 1389 +0 7 +cob=(2) +cfi=(18) +cfn=(2594) +calls=1 0 +0 9 +0 8 + +fn=(3786) +0 10 +cfn=(4082) std::basic_ostream<char, std::char_traits<char> >& std::flush<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&) +calls=1 0 +0 194 +cfn=(3788) std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&) +calls=4 0 +0 11069 + +fn=(3822) +0 100 +cfn=(2692) +calls=5 0 +0 15 +0 30 +cob=(2) +cfi=(18) +cfn=(3824) +calls=5 0 +0 3280 +0 65 + +fn=(3828) +0 80 +cob=(2) +cfi=(18) +cfn=(3834) +calls=5 0 +0 1519 +0 80 +cob=(2) +cfi=(18) +cfn=(2700) +calls=5 0 +0 70 +0 35 + +fn=(4448) +0 11 +cob=(2) +cfi=(18) +cfn=(4450) +calls=1 0 +0 3793 + +fn=(5608) +0 121 + +fn=(1664) +0 467 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 100956 +0 16 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 43 +0 14 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 43 +0 6 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 1483 +0 15 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 22219 +0 3 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 16 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 3 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 3 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 16 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 43 +0 16 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 43 +0 14 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 43 +0 6 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 15 +cob=(2) +cfi=(18) +cfn=(2116) +calls=1 0 +0 14881 +0 3 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 16 +cob=(2) +cfi=(18) +cfn=(2116) +calls=1 0 +0 899 +0 3 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2116) +calls=1 0 +0 899 +0 3 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2116) +calls=1 0 +0 899 +0 14 + +fn=(1686) 0x00000000000bef60 +0 5 +cob=(2) +cfi=(18) +cfn=(1688) +calls=1 0 +0 98001 +0 7 + +fn=(1704) std::ctype<char>::ctype(unsigned short const*, bool, unsigned long) +0 15 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 4835 +0 101 + +fn=(2120) +0 28 +cob=(2) +cfi=(18) +cfn=(2040) +calls=4 0 +0 412 +0 12 +cob=(2) +cfi=(18) +cfn=(2122) +calls=4 0 +0 15347 +0 52 + +fn=(2296) +0 444 + +fn=(2472) +0 216 + +fn=(2476) +0 216 + +fn=(2514) +0 12 + +fn=(2588) +0 27 +cob=(2) +cfi=(18) +cfn=(2590) +calls=3 0 +0 1193 +0 12 + +fn=(2598) +0 252 + +fn=(2744) +0 2896 +cob=(2) +cfi=(18) +cfn=(2746) +calls=181 0 +0 31696 +0 543 + +fn=(3126) +0 7672 +cob=(2) +cfi=(18) +cfn=(2674) +calls=548 0 +0 14330 +0 4443 + +fn=(3760) +0 30 + +fn=(3774) +0 3 + +fn=(3954) +0 3 +cob=(2) +cfi=(18) +cfn=(2534) +calls=1 0 +0 6 + +fn=(4066) +0 2 +cob=(2) +cfi=(18) +cfn=(4068) +calls=1 0 +0 3905 + +fn=(4474) +0 20 +cob=(2) +cfi=(18) +cfn=(2800) +calls=1 0 +0 65 +0 5 + +fn=(1388) +0 52 + +fn=(1672) +0 770 +cob=(2) +cfi=(18) +cfn=(1676) +calls=110 0 +0 100435 +0 550 + +fn=(1882) std::numpunct<char>::_M_initialize_numpunct(__locale_struct*) +0 414 + +fn=(1936) std::messages<char>::messages(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 2 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 5 +0 5 + +fn=(2076) __cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const +0 3885 +cob=(2) +cfi=(18) +cfn=(2078) +calls=111 0 +0 4054 +0 3441 + +fn=(2108) +0 275 +cob=(2) +cfi=(18) +cfn=(1734) +calls=55 0 +0 440 +0 660 +cob=(2) +cfi=(18) +cfn=(2070) +calls=55 0 +0 5060 +0 275 + +fn=(2380) +0 103698 +cob=(2) +cfi=(18) +cfn=(1354) +calls=14814 0 +0 730995 +0 59256 + +fn=(2480) +0 933 + +fn=(2492) +0 1555 + +fn=(2520) +0 15 +cob=(2) +cfi=(18) +cfn=(1734) +calls=3 0 +0 24 +0 36 +cob=(2) +cfi=(18) +cfn=(2070) +calls=3 0 +0 276 +0 15 + +fn=(2592) +0 96 +cob=(2) +cfi=(18) +cfn=(2466) +calls=48 0 +0 7569 + +fn=(2620) +0 18 +cob=(2) +cfi=(18) +cfn=(2622) +calls=3 0 +0 1877 + +fn=(2682) +0 1140 +cob=(2) +cfi=(18) +cfn=(2684) +calls=60 0 +0 3177 +0 144 +cob=(2) +cfi=(18) +cfn=(2594) +calls=4 0 +0 36 +0 30 +cob=(2) +cfi=(18) +cfn=(2594) +calls=6 0 +0 54 +0 1822 +cob=(2) +cfi=(18) +cfn=(2718) +calls=42 0 +0 2553 +0 546 +cob=(2) +cfi=(18) +cfn=(2622) +calls=42 0 +0 6184 +0 1472 +cfn=(3618) +calls=4 0 +0 56 +0 456 +cfn=(3618) +calls=1 0 +0 14 +cfn=(2690) std::basic_filebuf<char, std::char_traits<char> >::underflow() +calls=3 0 +0 6103 +0 4 + +fn=(2690) +0 126 +cfn=(2692) +calls=3 0 +0 9 +0 28 +cob=(2) +cfi=(18) +cfn=(2694) +calls=3 0 +0 5903 +0 37 + +fn=(2752) +0 2191 +cob=(2) +cfi=(18) +cfn=(2486) +calls=37 0 +0 565 +0 330 + +fn=(3032) +0 149312 + +fn=(3038) +0 68 +cob=(2) +cfi=(18) +cfn=(3040) +calls=17 0 +0 3106 +0 51 + +fn=(3174) +0 77 +cob=(2) +cfi=(18) +cfn=(2638) +calls=7 0 +0 142 +0 54 +cob=(2) +cfi=(18) +cfn=(2674) +calls=4 0 +0 44 +0 71 + +fn=(3402) +0 16 +cob=(2) +cfi=(18) +cfn=(2758) +calls=8 0 +0 796 + +fn=(3588) +0 189 + +fn=(3630) +0 180 +cob=(2) +cfi=(18) +cfn=(2052) +calls=9 0 +0 90 +0 81 +cob=(2) +cfi=(18) +cfn=(3444) +calls=9 0 +0 513 + +fn=(3782) +0 6 +cob=(2) +cfi=(18) +cfn=(2594) +calls=1 0 +0 9 +0 3 + +fn=(3788) +0 60 +cob=(2) +cfi=(18) +cfn=(3790) +calls=4 0 +0 4255 +0 20 +cob=(2) +cfi=(18) +cfn=(3810) +calls=4 0 +0 6734 + +fn=(3814) +0 50 +cfn=(3816) std::basic_filebuf<char, std::char_traits<char> >::sync() +calls=5 0 +0 5545 +0 25 + +fn=(4074) std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > >::do_get(std::istreambuf_iterator<char, std::char_traits<char> >, std::istreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, std::_Ios_Iostate&, unsigned int&) const +0 2 +cob=(2) +cfi=(18) +cfn=(4076) +calls=1 0 +0 2405 + +fn=(4444) +0 13 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 7 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 19 +cob=(2) +cfi=(18) +cfn=(1666) +calls=1 0 +0 43 +0 11 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 8 + +fn=(4470) std::__cxx11::basic_stringbuf<char, std::char_traits<char>, std::allocator<char> >::overflow(int) +0 44 +cob=(2) +cfi=(18) +cfn=(3964) +calls=1 0 +0 12 +0 19 + +fn=(1336) std::future_category() +0 7 +cob=(2) +cfi=(18) +cfn=(1338) +calls=1 0 +0 1356 +0 4 +cob=(2) +cfi=(18) +cfn=(1344) +calls=1 0 +0 1391 +0 4 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 +0 3 + +fn=(1390) +0 6 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 +0 5 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 + +fn=(1482) +0 6 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 +0 4 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 +0 5 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 + +fn=(1710) +0 119 +cob=(2) +cfi=(18) +cfn=(1676) +calls=3 0 +0 24 +cob=(2) +cfi=(18) +cfn=(1677) +calls=14 0 +0 3437 +0 68 + +fn=(1718) std::locale::facet::_S_create_c_locale(__locale_struct*&, char const*, __locale_struct*) +0 5 +cob=(2) +cfi=(18) +cfn=(1720) +calls=1 0 +0 1560 +0 5 + +fn=(1786) std::ctype<wchar_t>::ctype(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 7 +cob=(2) +cfi=(18) +cfn=(1788) +calls=1 0 +0 30378 + +fn=(1876) 0x00000000000d75c0 +0 21 +cob=(2) +cfi=(18) +cfn=(1878) +calls=1 0 +0 2057 +0 8 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 8 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 8 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 12 +cob=(2) +cfi=(18) +cfn=(1896) +calls=1 0 +0 1965 +0 7 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 12 +cob=(2) +cfi=(18) +cfn=(1908) +calls=1 0 +0 1868 +0 7 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 14 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 14 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 14 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 6 +cob=(2) +cfi=(18) +cfn=(1932) +calls=1 0 +0 1429 +0 7 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 16 +cob=(2) +cfi=(18) +cfn=(1944) +calls=1 0 +0 2061 +0 7 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 8 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 8 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 13 +cob=(2) +cfi=(18) +cfn=(1962) +calls=1 0 +0 1880 +0 7 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 12 +cob=(2) +cfi=(18) +cfn=(1974) +calls=1 0 +0 1946 +0 7 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 14 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 14 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 14 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 6 +cob=(2) +cfi=(18) +cfn=(1998) +calls=1 0 +0 1445 +0 6 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 16 +0 5 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 5 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 5 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 9 + +fn=(1948) std::numpunct<wchar_t>::_M_initialize_numpunct(__locale_struct*) +0 350 + +fn=(2002) std::messages<wchar_t>::messages(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 2 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 5 +0 5 + +fn=(2044) +0 700 +cob=(2) +cfi=(18) +cfn=(1666) +calls=50 0 +0 2150 +0 150 +cob=(2) +cfi=(18) +cfn=(2046) +calls=50 0 +0 2525 +0 100 +cob=(2) +cfi=(18) +cfn=(2052) +calls=50 0 +0 1866 +0 350 + +fn=(2050) +0 1360 + +fn=(2062) +0 440 +cob=(2) +cfi=(18) +cfn=(2064) +calls=55 0 +0 14001 +0 220 +cob=(2) +cfi=(18) +cfn=(2084) +calls=55 0 +0 11066 +0 165 +cob=(2) +cfi=(18) +cfn=(2090) +calls=55 0 +0 8667 +0 220 +cob=(2) +cfi=(18) +cfn=(2098) +calls=55 0 +0 8672 +0 165 +cob=(2) +cfi=(18) +cfn=(2104) +calls=55 0 +0 8742 +0 220 +cob=(2) +cfi=(18) +cfn=(2110) +calls=55 0 +0 8770 +0 275 + +fn=(2094) +0 275 +cob=(2) +cfi=(18) +cfn=(1734) +calls=55 0 +0 440 +0 660 +cob=(2) +cfi=(18) +cfn=(2070) +calls=55 0 +0 5060 +0 275 + +fn=(2114) +0 275 +cob=(2) +cfi=(18) +cfn=(1734) +calls=55 0 +0 440 +0 605 +cob=(2) +cfi=(18) +cfn=(2070) +calls=55 0 +0 5060 +0 220 + +fn=(2602) +0 40 + +fn=(2608) +0 135 + +fn=(2626) +0 1744 +cob=(2) +cfi=(18) +cfn=(2486) +calls=37 0 +0 583 +0 869 +cob=(2) +cfi=(18) +cfn=(2724) +calls=22 0 +0 5907 +0 374 + +fn=(2646) +0 1088 + +fn=(2688) +0 1683 +cob=(2) +cfi=(18) +cfn=(2594) +calls=13 0 +0 117 +0 603 + +fn=(2704) +0 24 +cob=(2) +cfi=(18) +cfn=(2706) +calls=8 0 +0 1530 + +fn=(2792) +0 1178 +cob=(2) +cfi=(18) +cfn=(2718) +calls=95 0 +0 1971 +0 627 + +fn=(3386) +0 36 +cob=(2) +cfi=(18) +cfn=(2534) +calls=3 0 +0 18 +0 12 +cob=(2) +cfi=(18) +cfn=(3388) +calls=2 0 +0 1744 +0 10 +cob=(2) +cfi=(18) +cfn=(3394) +calls=2 0 +0 2072 +0 30 +cob=(2) +cfi=(18) +cfn=(3404) +calls=2 0 +0 3816 +0 36 + +fn=(3442) +0 4 +cob=(2) +cfi=(18) +cfn=(3404) +calls=2 0 +0 34 + +fn=(3448) +0 136 +cob=(2) +cfi=(18) +cfn=(3450) +calls=17 0 +0 1780 +0 34 +cob=(2) +cfi=(18) +cfn=(3456) +calls=17 0 +0 1742 +0 119 +cob=(2) +cfi=(18) +cfn=(2052) +calls=17 0 +0 170 + +fn=(3486) +0 15 + +fn=(3510) +0 21 +cob=(2) +cfi=(18) +cfn=(2486) +calls=3 0 +0 42 + +fn=(3740) std::ctype<char>::do_tolower(char) const +0 5 + +fn=(3794) +0 56 +cob=(2) +cfi=(18) +cfn=(3796) +calls=4 0 +0 1432 +0 44 +cob=(2) +cfi=(18) +cfn=(3804) +calls=3 0 +0 27 +0 2 +cob=(2) +cfi=(18) +cfn=(3804) +calls=1 0 +0 1297 +0 39 +cfn=(3802) std::basic_filebuf<char, std::char_traits<char> >::overflow(int) +calls=1 0 +0 47 +0 2 + +fn=(3856) std::basic_filebuf<char, std::char_traits<char> >::xsputn(char const*, long) +0 60 +cfn=(2692) +calls=3 0 +0 9 +0 75 +cob=(2) +cfi=(18) +cfn=(3858) +calls=3 0 +0 1873 + +fn=(1298) +0 12 + +fn=(1330) +0 3 +cob=(2) +cfi=(18) +cfn=(1332) +calls=1 0 +0 4239 +0 4 + +fn=(1342) +0 165 + +fn=(1348) +0 80 + +fn=(1698) +0 21 + +fn=(1756) std::__cxx11::moneypunct<char, false>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 113 + +fn=(1762) std::__cxx11::moneypunct<char, true>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 113 + +fn=(1768) std::__timepunct<char>::__timepunct(std::__timepunct_cache<char>*, unsigned long) +0 15 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 5 +0 4 +cob=(2) +cfi=(18) +cfn=(1770) +calls=1 0 +0 1810 +0 4 + +fn=(2068) +0 275 +cob=(2) +cfi=(18) +cfn=(1734) +calls=55 0 +0 440 +0 660 +cob=(2) +cfi=(18) +cfn=(2070) +calls=55 0 +0 10753 +0 275 + +fn=(2144) +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=4 0 +0 32 +0 48 +cob=(2) +cfi=(18) +cfn=(2070) +calls=4 0 +0 368 +0 20 + +fn=(2484) +0 1405 +cob=(2) +cfi=(18) +cfn=(2486) +calls=187 0 +0 4499 +0 72 + +fn=(2502) +0 15 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 8 +cob=(2) +cfi=(18) +cfn=(2504) +calls=1 0 +0 6810 +0 3 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 5 +cob=(2) +cfi=(18) +cfn=(2528) +calls=1 0 +0 9185 +0 7 +cob=(2) +cfi=(18) +cfn=(2594) +calls=1 0 +0 1649 +0 8 + +fn=(2538) +0 68 + +fn=(2662) +0 210 + +fn=(2756) +0 2086 +cob=(2) +cfi=(18) +cfn=(2758) +calls=103 0 +0 12004 +0 273 + +fn=(3454) +0 286 + +fn=(3568) +0 430 +cob=(2) +cfi=(18) +cfn=(3964) +calls=5 0 +0 1810 +0 28 + +fn=(3604) std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > >::do_get(std::istreambuf_iterator<char, std::char_traits<char> >, std::istreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, std::_Ios_Iostate&, long&) const +0 10 +cob=(2) +cfi=(18) +cfn=(3606) +calls=5 0 +0 3394 + +fn=(3638) +0 6 +cob=(2) +cfi=(18) +cfn=(3640) +calls=3 0 +0 17973 + +fn=(3676) +0 42 +cob=(2) +cfi=(18) +cfn=(3678) +calls=3 0 +0 3074 +0 60 + +fn=(3708) +0 96 + +fn=(3950) +0 15 +cob=(2) +cfi=(18) +cfn=(2028) +calls=1 0 +0 104 +0 14 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 8 +cob=(2) +cfi=(18) +cfn=(2504) +calls=1 0 +0 355 +0 3 +cob=(2) +cfi=(18) +cfn=(2034) +calls=1 0 +0 1003 +0 5 +cob=(2) +cfi=(18) +cfn=(2528) +calls=1 0 +0 1719 +0 7 +cob=(2) +cfi=(18) +cfn=(2594) +calls=1 0 +0 9 +0 8 + +fn=(3962) +0 70 +cob=(2) +cfi=(18) +cfn=(2028) +calls=5 0 +0 520 +0 75 +cob=(2) +cfi=(18) +cfn=(2034) +calls=5 0 +0 5015 +0 35 +cob=(2) +cfi=(18) +cfn=(2034) +calls=5 0 +0 5015 +0 100 +cob=(2) +cfi=(18) +cfn=(1666) +calls=5 0 +0 215 +0 55 +cob=(2) +cfi=(18) +cfn=(2746) +calls=5 0 +0 645 +0 40 +cob=(2) +cfi=(18) +cfn=(3564) +calls=5 0 +0 1990 +0 15 +cob=(2) +cfi=(18) +cfn=(2034) +calls=5 0 +0 5015 +0 40 + +fn=(4082) +0 2 +cob=(2) +cfi=(18) +cfn=(3810) +calls=1 0 +0 192 + +fn=(4454) std::ostream& std::ostream::_M_insert<long>(long) +0 17 +cob=(2) +cfi=(18) +cfn=(3796) +calls=1 0 +0 24 +0 19 +cfn=(4456) +calls=1 0 +0 2267 +0 4 +cob=(2) +cfi=(18) +cfn=(3804) +calls=1 0 +0 9 +0 25 + +fn=(4462) std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, long) const +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 39 +cfn=(4464) 0x0000000000128060 +calls=1 0 +0 24 +0 28 +cfn=(3862) +calls=1 0 +0 113 +0 17 + +fn=(5798) +0 21952 + +fn=(1304) +0 6 +cob=(2) +cfi=(18) +cfn=(1306) +calls=1 0 +0 1375 +0 7 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 1586 +0 3 +cob=(2) +cfi=(18) +cfn=(1306) +calls=1 0 +0 7 +0 7 +cob=(2) +cfi=(18) +cfn=(1316) +calls=1 0 +0 74 + +fn=(1692) std::locale::_Impl::_Impl(unsigned long) +0 463 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 1574 +0 7 +cob=(2) +cfi=(18) +cfn=(1700) +calls=1 0 +0 6290 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 3435 +0 3 +cob=(2) +cfi=(18) +cfn=(1740) +calls=1 0 +0 1527 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 23 +cob=(2) +cfi=(18) +cfn=(1746) +calls=1 0 +0 2145 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 5 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 5 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 28 +cob=(2) +cfi=(18) +cfn=(1752) +calls=1 0 +0 1924 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 28 +cob=(2) +cfi=(18) +cfn=(1758) +calls=1 0 +0 1932 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 56 +cob=(2) +cfi=(18) +cfn=(1764) +calls=1 0 +0 3445 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 3 +cob=(2) +cfi=(18) +cfn=(1776) +calls=1 0 +0 1447 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 3 +cob=(2) +cfi=(18) +cfn=(1782) +calls=1 0 +0 31734 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 3 +cob=(2) +cfi=(18) +cfn=(1834) +calls=1 0 +0 1519 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 22 +cob=(2) +cfi=(18) +cfn=(1840) +calls=1 0 +0 2057 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 5 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 5 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 27 +cob=(2) +cfi=(18) +cfn=(1846) +calls=1 0 +0 1981 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 27 +cob=(2) +cfi=(18) +cfn=(1852) +calls=1 0 +0 1956 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 56 +cob=(2) +cfi=(18) +cfn=(1858) +calls=1 0 +0 3475 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 3 +cob=(2) +cfi=(18) +cfn=(1870) +calls=1 0 +0 1485 +0 4 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 8 +cob=(2) +cfi=(18) +cfn=(1728) +calls=1 0 +0 396 +0 10 +cfn=(1876) +calls=1 0 +0 15303 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 5 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 5 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 4 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 5 +cob=(2) +cfi=(18) +cfn=(1734) +calls=1 0 +0 8 +0 13 + +fn=(1774) std::__timepunct<char>::_M_initialize_timepunct(__locale_struct*) +0 11 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 95 + +fn=(1822) +0 96 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 671 +0 48 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 423 +0 8 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 547 +0 10 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 214 +0 4 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 272 +0 4 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 1562 +0 4 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 613 +0 4 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 206 +0 4 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 357 +0 4 +cob=(2) +cfi=(18) +cfn=(1824) +calls=1 0 +0 156 +0 5 + +fn=(1838) std::codecvt<wchar_t, char, __mbstate_t>::codecvt(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 5 + +fn=(1874) std::__cxx11::messages<wchar_t>::messages(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 2 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 5 +0 5 + +fn=(2038) +0 322 +cob=(2) +cfi=(18) +cfn=(2040) +calls=46 0 +0 8890 +0 138 +cob=(2) +cfi=(18) +cfn=(2058) +calls=46 0 +0 55562 +0 598 + +fn=(2126) +0 32 +cob=(2) +cfi=(18) +cfn=(2128) +calls=4 0 +0 1968 +0 16 +cob=(2) +cfi=(18) +cfn=(2134) +calls=4 0 +0 1984 +0 12 +cob=(2) +cfi=(18) +cfn=(2140) +calls=4 0 +0 2336 +0 16 +cob=(2) +cfi=(18) +cfn=(2146) +calls=4 0 +0 2429 +0 12 +cob=(2) +cfi=(18) +cfn=(2152) +calls=4 0 +0 2344 +0 16 +cob=(2) +cfi=(18) +cfn=(2158) +calls=4 0 +0 2421 +0 20 + +fn=(2150) +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=4 0 +0 32 +0 44 +cob=(2) +cfi=(18) +cfn=(2070) +calls=4 0 +0 368 +0 16 + +fn=(2156) +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=4 0 +0 32 +0 48 +cob=(2) +cfi=(18) +cfn=(2070) +calls=4 0 +0 368 +0 20 + +fn=(2498) +0 81 + +fn=(2636) +0 208 +cob=(2) +cfi=(18) +cfn=(2638) +calls=26 0 +0 1974 +0 286 +cob=(2) +cfi=(18) +cfn=(2622) +calls=26 0 +0 1691 + +fn=(2774) +0 1179 +cob=(2) +cfi=(18) +cfn=(2638) +calls=131 0 +0 2358 +0 1048 +cob=(2) +cfi=(18) +cfn=(2776) +calls=131 0 +0 11231 + +fn=(2786) +0 342 +cob=(2) +cfi=(18) +cfn=(2638) +calls=38 0 +0 684 +0 304 +cob=(2) +cfi=(18) +cfn=(2788) +calls=38 0 +0 5660 + +fn=(2804) +0 644 +cob=(2) +cfi=(18) +cfn=(3348) +calls=1 0 +0 1502 +0 41 +cob=(2) +cfi=(18) +cfn=(2486) +calls=4 0 +0 64 +0 308 +cob=(2) +cfi=(18) +cfn=(2724) +calls=13 0 +0 2456 +0 63 + +fn=(3408) +0 16 +cob=(2) +cfi=(18) +cfn=(2534) +calls=4 0 +0 24 +0 16 +cob=(2) +cfi=(18) +cfn=(3410) +calls=2 0 +0 2290 +0 18 + +fn=(3596) std::basic_streambuf<char, std::char_traits<char> >::imbue(std::locale const&) +0 18 + +fn=(3816) +0 40 +cfn=(3802) +calls=5 0 +0 5475 +0 30 + +fn=(4072) std::istream& std::istream::_M_extract<unsigned int>(unsigned int&) +0 15 +cob=(2) +cfi=(18) +cfn=(2684) +calls=1 0 +0 50 +0 18 +cfn=(4074) +calls=1 0 +0 2407 +0 19 +cob=(2) +cfi=(18) +cfn=(2594) +calls=1 0 +0 9 +0 1 + +fn=(5050) +0 54699 + +fn=(1750) std::__cxx11::numpunct<char>::_M_initialize_numpunct(__locale_struct*) +0 414 + +fn=(1792) std::ctype<wchar_t>::_M_initialize_ctype() +0 9 +cob=(2) +cfi=(18) +cfn=(1794) +calls=1 0 +0 1579 +0 771 +cob=(2) +cfi=(18) +cfn=(1800) +calls=128 0 +0 4555 +0 260 +cob=(2) +cfi=(18) +cfn=(1806) +calls=1 0 +0 1428 +0 510 +cob=(2) +cfi=(18) +cfn=(1806) +calls=255 0 +0 11875 +0 1067 +cob=(2) +cfi=(18) +cfn=(1818) +calls=8 0 +0 4807 +0 95 +cob=(2) +cfi=(18) +cfn=(1818) +calls=4 0 +0 1910 +0 14 +cob=(2) +cfi=(18) +cfn=(1794) +calls=1 0 +0 24 +0 8 + +fn=(1900) std::moneypunct<char, false>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 113 + +fn=(1978) std::moneypunct<wchar_t, true>::_M_initialize_moneypunct(__locale_struct*, char const*) +0 109 + +fn=(2074) +0 11913 +cfn=(2096) __cxxabiv1::__si_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const +calls=250 0 +0 9250 +cfn=(2076) +calls=111 0 +0 11380 +0 7220 + +fn=(2096) +0 9250 + +fn=(2102) +0 275 +cob=(2) +cfi=(18) +cfn=(1734) +calls=55 0 +0 440 +0 605 +cob=(2) +cfi=(18) +cfn=(2070) +calls=55 0 +0 5060 +0 220 + +fn=(2132) +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=4 0 +0 32 +0 48 +cob=(2) +cfi=(18) +cfn=(2070) +calls=4 0 +0 368 +0 20 + +fn=(2162) +0 20 +cob=(2) +cfi=(18) +cfn=(1734) +calls=4 0 +0 32 +0 44 +cob=(2) +cfi=(18) +cfn=(2070) +calls=4 0 +0 368 +0 16 + +fn=(2440) +0 72 + +fn=(2546) +0 27 + +fn=(2630) +0 104 +cob=(2) +cfi=(18) +cfn=(2622) +calls=26 0 +0 1562 + +fn=(2666) +0 733 +cob=(2) +cfi=(18) +cfn=(2678) +calls=36 0 +0 9169 +0 6 +cob=(2) +cfi=(18) +cfn=(2678) +calls=1 0 +0 13056 +0 2 +cob=(2) +cfi=(18) +cfn=(2668) +calls=1 0 +0 4089 +0 5 + +fn=(2770) +0 220 + +fn=(2798) +0 144 +cob=(2) +cfi=(18) +cfn=(2800) +calls=16 0 +0 6620 + +fn=(3178) +0 24 +cob=(2) +cfi=(18) +cfn=(2638) +calls=3 0 +0 54 +0 33 +cob=(2) +cfi=(18) +cfn=(2622) +calls=3 0 +0 99 + +fn=(3552) +0 27 +cob=(2) +cfi=(18) +cfn=(2638) +calls=3 0 +0 62 +0 36 +cob=(2) +cfi=(18) +cfn=(2800) +calls=3 0 +0 259 + +fn=(3572) +0 30 +cfn=(1672) +calls=10 0 +0 200 +0 40 +cob=(2) +cfi=(18) +cfn=(3574) +calls=10 0 +0 1419 +0 30 + +fn=(3582) +0 153 +cob=(2) +cfi=(18) +cfn=(3584) +calls=9 0 +0 1394 +0 36 +cob=(2) +cfi=(18) +cfn=(3590) +calls=9 0 +0 2109 +0 18 +cob=(2) +cfi=(18) +cfn=(2052) +calls=9 0 +0 90 +0 27 +cob=(2) +cfi=(18) +cfn=(2058) +calls=9 0 +0 7875 +0 63 +cob=(2) +cfi=(18) +cfn=(3584) +calls=9 0 +0 81 +0 36 +cfn=(3596) +calls=9 0 +0 18 +0 27 +cob=(2) +cfi=(18) +cfn=(2046) +calls=9 0 +0 198 +0 18 +cob=(2) +cfi=(18) +cfn=(2052) +calls=9 0 +0 90 +0 108 + +fn=(3618) +0 178 + +fn=(3626) +0 36 + +fn=(3658) +0 33 +cob=(2) +cfi=(18) +cfn=(3660) +calls=3 0 +0 1643 +0 45 + +fn=(3670) +0 63 +cfn=(3612) +calls=3 0 +0 90 +0 446 +cob=(2) +cfi=(18) +cfn=(3704) +calls=1 0 +0 1465 +0 10 +cfn=(3710) 0x0000000000129720 +calls=1 0 +0 33 +0 15 +cob=(2) +cfi=(18) +cfn=(3704) +calls=1 0 +0 34 +0 95 +cfn=(3618) +calls=3 0 +0 36 +0 105 +cob=(2) +cfi=(18) +cfn=(3704) +calls=1 0 +0 34 +0 23 + +fn=(3710) +0 33 + +fn=(3862) +0 92 +cob=(2) +cfi=(18) +cfn=(2486) +calls=3 0 +0 40 +0 44 +cfn=(4470) +calls=1 0 +0 75 +0 7 + +fn=(3978) +0 132 +cob=(2) +cfi=(18) +cfn=(2052) +calls=6 0 +0 60 +0 66 +cob=(2) +cfi=(18) +cfn=(3444) +calls=6 0 +0 342 + +fn=(4080) std::istreambuf_iterator<char, std::char_traits<char> > std::num_get<char, std::istreambuf_iterator<char, std::char_traits<char> > >::_M_extract_int<unsigned int>(std::istreambuf_iterator<char, std::char_traits<char> >, std::istreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, std::_Ios_Iostate&, unsigned int&) const +0 24 +cfn=(3612) +calls=1 0 +0 30 +0 172 +cfn=(3618) +calls=1 0 +0 12 +0 5 + +fn=(1430) +0 50 + +fn=(1732) +0 448 +cob=(2) +cfi=(18) +cfn=(1734) +calls=32 0 +0 1902 +0 11648 + +fn=(1738) +0 2982 + +fn=(1744) std::codecvt<char, char, __mbstate_t>::codecvt(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 5 + +fn=(1780) std::__cxx11::messages<char>::messages(unsigned long) +0 13 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 2 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 5 +0 5 + +fn=(1862) std::__timepunct<wchar_t>::__timepunct(std::__timepunct_cache<wchar_t>*, unsigned long) +0 15 +cob=(2) +cfi=(18) +cfn=(1694) +calls=1 0 +0 5 +0 4 +cob=(2) +cfi=(18) +cfn=(1864) +calls=1 0 +0 1832 +0 4 + +fn=(1868) std::__timepunct<wchar_t>::_M_initialize_timepunct(__locale_struct*) +0 10 +cob=(2) +cfi=(18) +cfn=(1706) +calls=1 0 +0 21 +0 94 + +fn=(2056) +0 888 + +fn=(2434) +0 48 + +fn=(2508) +0 60 +cob=(2) +cfi=(18) +cfn=(1666) +calls=3 0 +0 129 +0 30 +cob=(2) +cfi=(18) +cfn=(2510) +calls=3 0 +0 1600 +0 51 +cob=(2) +cfi=(18) +cfn=(2516) +calls=3 0 +0 1988 +0 12 +cob=(2) +cfi=(18) +cfn=(2522) +calls=3 0 +0 2035 +0 21 + +fn=(2532) +0 45 +cob=(2) +cfi=(18) +cfn=(2534) +calls=3 0 +0 1573 +0 21 +cob=(2) +cfi=(18) +cfn=(2540) +calls=3 0 +0 5731 +0 6 +cob=(2) +cfi=(18) +cfn=(2534) +calls=3 0 +0 18 +0 12 +cob=(2) +cfi=(18) +cfn=(2584) +calls=3 0 +0 3025 +0 78 + +fn=(2672) std::ctype<char>::_M_widen_init() const +0 1077 +cob=(2) +cfi=(18) +cfn=(2674) +calls=1 0 +0 1523 +0 10 + +fn=(2698) +0 36 +cob=(2) +cfi=(18) +cfn=(2700) +calls=3 0 +0 2938 +0 12 +cob=(2) +cfi=(18) +cfn=(2712) +calls=3 0 +0 1448 +0 30 + +fn=(2762) +0 29274 +cob=(2) +cfi=(18) +cfn=(2764) +calls=14637 0 +0 1249008 + +fn=(2780) +0 4061 +cob=(2) +cfi=(18) +cfn=(2718) +calls=131 0 +0 2898 +0 525 +cob=(2) +cfi=(18) +cfn=(2674) +calls=33 0 +0 363 +0 1442 + +fn=(2892) +0 736 +cob=(2) +cfi=(18) +cfn=(2894) +calls=92 0 +0 14258 + +fn=(3380) +0 26 +cob=(2) +cfi=(18) +cfn=(3382) +calls=2 0 +0 8676 +0 4 +cob=(2) +cfi=(18) +cfn=(3438) +calls=2 0 +0 1456 +0 10 +cob=(2) +cfi=(18) +cfn=(2052) +calls=2 0 +0 20 +0 18 +cob=(2) +cfi=(18) +cfn=(3444) +calls=2 0 +0 4473 + +fn=(3464) +0 48 + +fn=(3482) +0 16 + +fn=(3562) +0 126 +cob=(2) +cfi=(18) +cfn=(2028) +calls=9 0 +0 936 +0 135 +cob=(2) +cfi=(18) +cfn=(2034) +calls=9 0 +0 9027 +0 189 +cob=(2) +cfi=(18) +cfn=(1666) +calls=9 0 +0 387 +0 99 +cob=(2) +cfi=(18) +cfn=(2746) +calls=9 0 +0 1044 +0 81 +cob=(2) +cfi=(18) +cfn=(3564) +calls=9 0 +0 2071 +0 27 +cob=(2) +cfi=(18) +cfn=(2034) +calls=9 0 +0 9027 +0 72 + +fn=(3578) +0 30 + +fn=(3602) +0 75 +cob=(2) +cfi=(18) +cfn=(2684) +calls=5 0 +0 250 +0 95 +cfn=(3604) +calls=5 0 +0 3404 +0 120 +cob=(2) +cfi=(18) +cfn=(2594) +calls=5 0 +0 45 +0 15 + +fn=(3612) +0 81 +cob=(2) +cfi=(18) +cfn=(1734) +calls=9 0 +0 72 +0 117 + +fn=(3664) +0 45 +cob=(2) +cfi=(18) +cfn=(2466) +calls=3 0 +0 171 +0 21 + +fn=(3778) +0 3 + +fn=(3800) +0 176 + +fn=(3802) +0 127 +cob=(2) +cfi=(18) +cfn=(3818) +calls=5 0 +0 5220 +0 175 + +fn=(3854) +0 54 +cob=(2) +cfi=(18) +cfn=(3796) +calls=3 0 +0 72 +0 36 +cob=(2) +cfi=(18) +cfn=(3804) +calls=3 0 +0 27 +0 51 +cfn=(3856) +calls=3 0 +0 2017 +0 15 + +fn=(4464) +0 24 + +fn=(5056) +0 192364 + +ob=(15) +fl=(202) +fn=(1492) +0 12 + +ob=(24) +fl=(211) +fn=(1582) +0 11 + +ob=(8) +fl=(166) +fn=(596) 0x00000000000036c0 +0 104 + +fn=(594) +0 45 +cfn=(596) +calls=1 0 +0 104 +0 17 + +fn=(634) +0 9 + +ob=(19) +fl=(206) +fn=(1532) +0 10 + +ob=(8) +fl=(166) +fn=(634) +0 3 + +ob=(19) +fl=(206) +fn=(1532) +0 1 + +ob=(30) +fl=(251) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/../quadraturerules/simplexquadrature.hh +fn=(2250) Dune::SimplexQuadraturePoints<2>::init() +79 5 ++2 1 ++1 5 ++10 1 ++1 11 +cfi=(252) /home/joscha/software/dune/dune-common/dune/common/fvector.hh +cfn=(2252) Dune::FieldVector<double, 2>::operator[](unsigned long) +calls=1 +99 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +98 +* 37 +* 2 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +84 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +83 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +82 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +81 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +80 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +79 +* 37 +* 2 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +63 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +62 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +61 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +60 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +59 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +58 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +57 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +56 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +38 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +37 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +36 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +35 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +34 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +33 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +32 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +31 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +30 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +29 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +28 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +27 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +7 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 +6 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +5 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +4 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +3 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +2 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 +1 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 * +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -1 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -2 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -3 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -4 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -5 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -6 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 -27 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 -28 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -29 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -30 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -31 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -32 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -33 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -34 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -35 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -36 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -37 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -38 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -39 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -40 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -41 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -42 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -43 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -44 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -45 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -46 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -47 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -48 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -49 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -50 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++10 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 -75 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 -76 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -77 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -78 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -79 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -80 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -81 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -82 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -83 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -84 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -85 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -86 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -87 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -88 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -89 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -90 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -91 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -92 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -93 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -94 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -95 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -96 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -97 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 -98 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++10 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++2 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2252) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++1 3 + +fn=(2246) Dune::SimplexQuadraturePoints<2>::SimplexQuadraturePoints() +74 5 ++1 5 +cob=(2) +cfi=(18) +cfn=(2248) +calls=1 -75 +* 17971 ++1 3 +cfn=(2250) +calls=1 +3 +* 18820 ++1 3 + +fn=(2258) Dune::SimplexQuadraturePoints<3>::SimplexQuadraturePoints() +837 5 ++1 727 ++1 3 +cfn=(2260) Dune::SimplexQuadraturePoints<3>::init() +calls=1 +3 +* 5255 ++1 3 + +fn=(2260) +842 5 ++2 1 ++1 5 ++10 1 ++1 8 +cfi=(252) +cfn=(2262) Dune::FieldVector<double, 3>::operator[](unsigned long) +calls=1 192 +* 37 +* 2 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 11 ++1 5 ++11 1 ++3 9 +cfi=(254) /home/joscha/software/dune/dune-common/dune/common/densevector.hh +cfn=(2268) Dune::DenseVector<Dune::FieldVector<double, 3> >::operator=(double const&) +calls=1 267 +* 320 ++1 10 +cfi=(254) +cfn=(2268) +calls=1 267 +* 320 ++1 10 +cfi=(254) +cfn=(2268) +calls=1 267 +* 320 ++1 10 +cfi=(254) +cfn=(2268) +calls=1 267 +* 320 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 5 ++11 1 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++23 1 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 8 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 9 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 5 ++2 3 + +fl=(261) /home/joscha/software/dune/dune-common/dune/common/stdstreams.cc +fn=(2336) _GLOBAL__sub_I_stdstreams.cc +44 6 +cfn=(2338) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 8220 +* 2 + +fn=(2338) +44 10 +fi=(220) /usr/include/c++/9/iostream ++30 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(261) +-51 5 +cfi=(262) /home/joscha/software/dune/dune-common/dune/common/debugstream.hh +cfn=(2340) Dune::DebugStream<1u, 4u, 1u, Dune::greater_or_equal>::DebugStream(std::ostream&) +calls=1 197 +* 1213 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -23 +* 74 ++4 5 +cfi=(262) +cfn=(2402) Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>::DebugStream(std::ostream&) +calls=1 197 +* 1213 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -27 +* 387 ++4 5 +cfi=(262) +cfn=(2404) Dune::DebugStream<3u, 4u, 1u, Dune::greater_or_equal>::DebugStream(std::ostream&) +calls=1 197 +* 1213 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -31 +* 74 ++3 5 +cfi=(262) +cfn=(2406) Dune::DebugStream<4u, 4u, 1u, Dune::greater_or_equal>::DebugStream(std::ostream&) +calls=1 197 +* 1213 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -34 +* 74 ++3 5 +cfi=(262) +cfn=(2408) Dune::DebugStream<5u, 4u, 1u, Dune::greater_or_equal>::DebugStream(std::ostream&) +calls=1 197 +* 1213 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -37 +* 74 ++5 5 +cfi=(262) +cfn=(2410) Dune::DebugStream<1u, 1u, 1u, Dune::greater_or_equal>::DebugStream(std::ostream&) +calls=1 197 +* 1213 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -42 +* 74 ++2 3 + +fl=(277) /usr/include/c++/9/bits/stl_iterator_base_types.h +fn=(2904) std::iterator_traits<char*>::iterator_category std::__iterator_category<char*>(char* const&) +205 388 ++1 194 + +fn=(3500) std::iterator_traits<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::iterator_category std::__iterator_category<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +205 12 ++1 6 + +fn=(8974) std::iterator_traits<UG::D2::node**>::iterator_category std::__iterator_category<UG::D2::node**>(UG::D2::node** const&) +205 112665600 ++1 56332800 + +fn=(4876) std::iterator_traits<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > >::iterator_category std::__iterator_category<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&) +205 8192 ++1 4096 + +fn=(2458) std::iterator_traits<char const*>::iterator_category std::__iterator_category<char const*>(char const* const&) +205 844 ++1 422 + +fl=(291) /usr/include/c++/9/bits/stl_iterator.h +fn=(5394) __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >::difference_type __gnu_cxx::operator-<void**, std::vector<void*, std::allocator<void*> > >(__gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > > const&, __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > > const&) +989 21 ++3 9 +cfn=(5396) __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >::base() const +calls=3 871 +* 21 +* 12 +cfn=(5396) +calls=3 871 +* 21 +* 24 + +fn=(2874) __gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::base() const +871 272 ++1 204 + +fn=(3210) __gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::operator-(long) const +867 27 ++1 36 +cfn=(2850) __gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::__normal_iterator(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >* const&) +calls=3 -62 +* 36 +* 18 + +fn=(3212) __gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::operator*() const +819 12 ++1 12 + +fn=(3506) __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::base() const +871 40 ++1 30 + +fn=(5374) __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >::__normal_iterator(void** const&) +806 70 ++1 98 + +fn=(6092) __gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >::operator-(long) const +867 45 ++1 60 +cfn=(6040) __gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >::__normal_iterator(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >* const&) +calls=5 -62 +* 60 +* 30 + +fn=(6342) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const* std::__make_move_if_noexcept_iterator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*) +1242 96 ++1 72 + +fn=(8376) __gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >::operator*() const +819 60 ++1 60 + +fn=(3504) __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::difference_type __gnu_cxx::operator-<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +989 21 ++3 9 +cfn=(3506) +calls=3 871 +* 21 +* 12 +cfn=(3506) +calls=3 871 +* 21 +* 21 + +fn=(4626) __gnu_cxx::__normal_iterator<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > >::base() const +871 192 ++1 144 + +fn=(4744) __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::__normal_iterator(unsigned char* const&) +806 20600 ++1 28840 + +fn=(4792) __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::operator-(long) const +867 18432 ++1 22528 +cfn=(4744) +calls=2048 -62 +* 24576 +* 12288 + +fn=(5428) __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >::operator*() const +819 24 ++1 24 + +fn=(6058) __gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >::difference_type __gnu_cxx::operator-<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >(__gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > > const&, __gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > > const&) +989 28 ++3 12 +cfn=(6060) __gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >::base() const +calls=4 871 +* 28 +* 16 +cfn=(6060) +calls=4 871 +* 28 +* 32 + +fn=(6094) __gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >::operator*() const +819 20 ++1 20 + +fn=(2872) __gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::difference_type __gnu_cxx::operator-<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >(__gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&, __gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&) +989 119 ++3 51 +cfn=(2874) +calls=17 871 +* 119 +* 68 +cfn=(2874) +calls=17 871 +* 119 +* 136 + +fn=(3730) __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::operator*() const +819 8 ++1 8 + +fn=(3742) __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::operator++() +827 8 ++2 10 ++1 2 ++1 4 + +fn=(4764) __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::base() const +871 192 ++1 144 + +fn=(4814) __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >::difference_type __gnu_cxx::operator-<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&) +989 182 ++3 78 +cfn=(4816) __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >::base() const +calls=26 871 +* 182 +* 104 +cfn=(4816) +calls=26 871 +* 182 +* 208 + +fn=(4864) __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >::operator--() +839 32768 ++2 40960 ++1 8192 ++1 16384 + +fn=(5944) __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >::operator++() +827 12 ++2 15 ++1 3 ++1 6 + +fn=(6040) +806 90 ++1 126 + +fn=(3728) bool __gnu_cxx::operator!=<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +907 14 ++3 6 +cfn=(3506) +calls=2 -39 +* 14 +* 8 +cfn=(3506) +calls=2 -39 +* 14 +* 14 + +fn=(4816) +871 82336 ++1 61752 + +fn=(5426) __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >::operator-(long) const +867 27 ++1 36 +cfn=(5374) +calls=3 -62 +* 36 +* 18 + +fn=(7020) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const* std::__make_move_if_noexcept_iterator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*) +1242 32 ++1 24 + +fn=(8326) __gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >::__normal_iterator(Dune::GeometryType* const&) +806 330 ++1 462 + +fn=(8346) __gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >::base() const +871 288 ++1 216 + +fn=(8374) __gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >::operator-(long) const +867 135 ++1 180 +cfn=(8326) +calls=15 -62 +* 180 +* 90 + +fn=(4802) __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >::__normal_iterator(unsigned int* const&) +806 20740 ++1 29036 + +fn=(4860) bool __gnu_cxx::operator==<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&) +893 50176 ++3 21504 +cfn=(4816) +calls=7168 -25 +* 50176 +* 28672 +cfn=(4816) +calls=7168 -25 +* 50176 +* 50176 + +fn=(4862) __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >::operator++() +827 12288 ++2 15360 ++1 3072 ++1 6144 + +fn=(4868) __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >::operator*() const +819 40960 ++1 40960 + +fn=(6060) +871 64 ++1 48 + +fn=(7626) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const* std::__make_move_if_noexcept_iterator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*) +1242 8 ++1 6 + +fn=(8344) __gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >::difference_type __gnu_cxx::operator-<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >(__gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > > const&, __gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > > const&) +989 126 ++3 54 +cfn=(8346) +calls=18 871 +* 126 +* 72 +cfn=(8346) +calls=18 871 +* 126 +* 144 + +fn=(4606) __gnu_cxx::__normal_iterator<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > >::__normal_iterator(Dune::FieldVector<double, 2>* const&) +806 120 ++1 168 + +fn=(5942) bool __gnu_cxx::operator!=<void**, std::vector<void*, std::allocator<void*> > >(__gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > > const&, __gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > > const&) +907 28 ++3 12 +cfn=(5396) +calls=4 -39 +* 28 +* 16 +cfn=(5396) +calls=4 -39 +* 28 +* 28 + +fn=(2850) +806 200 ++1 280 + +fn=(4624) __gnu_cxx::__normal_iterator<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > >::difference_type __gnu_cxx::operator-<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > >(__gnu_cxx::__normal_iterator<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > > const&, __gnu_cxx::__normal_iterator<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > > const&) +989 84 ++3 36 +cfn=(4626) +calls=12 871 +* 84 +* 48 +cfn=(4626) +calls=12 871 +* 84 +* 96 + +fn=(4762) __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::difference_type __gnu_cxx::operator-<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > > const&, __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > > const&) +989 84 ++3 36 +cfn=(4764) +calls=12 871 +* 84 +* 48 +cfn=(4764) +calls=12 871 +* 84 +* 84 + +fn=(4794) __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::operator*() const +819 8192 ++1 8192 + +fn=(4880) bool __gnu_cxx::operator< <unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > const&) +922 21504 ++3 9216 +cfn=(4816) +calls=3072 -54 +* 21504 +* 12288 +cfn=(4816) +calls=3072 -54 +* 21504 +* 21504 + +fn=(5396) +871 80 ++1 60 + +fl=(370) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/rm.cc +fn=(8874) UG::D2::GetRefinementMarkType(UG::D2::element*) +2784 1392640 ++4 1044480 +cfn=(8876) UG::D2::GetRefinementMark(UG::D2::element*, int*, void*) +calls=174080 -82 +* 19322880 +* 696320 ++2 1740800 ++6 348160 ++8 870400 + +fn=(4344) UG::D2::InitRuleManager() +3231 4 ++4 1 +cfn=(4346) InitRuleManager2D() +calls=1 3135 +* 34 +* 5 ++5 1 ++1 2 + +fn=(8826) UG::D2::ELEMENT_TO_MARK(UG::D2::element*) +2674 1392640 ++1 5918720 ++5 5918720 ++6 348160 ++1 696320 + +fn=(8892) UG::D2::Patterns2Rules(UG::D2::element*, int) +2461 5406720 ++2 14417920 ++11 1802240 +2657 1802240 + +fn=(4428) UG::D3::InitRuleManager() +3231 4 ++4 1 +cfn=(4430) InitRuleManager3D() +calls=1 2975 +* 3377 +* 5 ++5 1 ++1 2 + +fn=(8824) UG::D2::MarkForRefinement(UG::D2::element*, UG::D2::RefinementRule, int) +2071 1218560 ++1 348160 ++5 2959360 ++2 348160 ++1 522240 +cfn=(8826) +calls=174080 2674 +* 7137280 +* 174080 ++13 1044480 ++3 1218560 ++19 5048320 ++1 5048320 ++1 174080 ++37 174080 ++44 174080 +2421 174080 ++1 348160 + +fn=(4430) +2975 4 ++5 2 ++1 2 ++1 2 ++3 3 ++1 2 ++1 3 ++13 1 ++3 3 ++1 2 ++1 2 ++1 2 ++1 3 ++8 1 ++3 3 ++1 2 ++1 2 ++1 2 ++1 3 ++8 1 ++3 3 ++1 2 ++1 2 ++1 2 ++1 3 ++10 2 +cfi=(353) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/ugenv.cc +cfn=(4276) UG::ChangeEnvDir(char const*) +calls=1 120 +* 200 +* 4 ++5 1 +cfi=(353) +cfn=(4284) UG::GetNewEnvDirID() +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) UG::MakeEnvItem(char const*, int, int) +calls=1 244 +* 364 +* 4 ++5 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 1205 +* 4 ++3 1 +cfi=(353) +cfn=(4292) UG::GetNewEnvVarID() +calls=1 649 +* 9 +* 1 ++2 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 354 +* 1 ++1 2 ++2 3 ++2 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 359 +* 1 ++1 2 ++2 3 ++2 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 366 +* 1 ++1 2 ++2 3 ++2 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 363 +* 1 ++1 2 ++2 3 ++20 3 ++2 2 +cfi=(358) /home/joscha/software/dune/dune-uggrid/dune/uggrid/ugdevices.cc +cfn=(4432) UG::UserWrite(char const*) +calls=1 226 +* 14 ++2 1 ++1 2 + +fn=(8820) UG::D2::EstimateHere(UG::D2::element const*) +2439 1613824 ++4 7262208 ++1 806912 + +fn=(4346) +3135 3 ++19 3 ++5 2 ++1 2 ++1 2 ++1 2 ++1 3 ++45 3 ++4 2 ++1 2 ++1 2 ++1 2 ++1 3 ++2 1 ++1 2 + +fn=(8876) +2706 1218560 ++1 348160 ++3 2959360 ++1 2611200 +-1 348160 ++5 2959360 ++1 2611200 +-1 348160 ++8 4526080 ++15 348160 ++1 174080 ++18 348160 ++1 174080 ++1 348160 + +fl=(276) /usr/include/c++/9/bits/stl_iterator_base_funcs.h +fn=(3498) std::iterator_traits<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::difference_type std::distance<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >) +138 18 ++4 9 +cfi=(277) +cfn=(3500) +calls=3 +63 +* 18 +-1 15 +cfn=(3502) std::iterator_traits<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::difference_type std::__distance<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::random_access_iterator_tag) +calls=3 -43 +* 144 ++2 6 + +fn=(2456) std::iterator_traits<char const*>::difference_type std::distance<char const*>(char const*, char const*) +138 1266 ++4 633 +cfi=(277) +cfn=(2458) +calls=211 +63 +* 1266 +-1 1055 +cfn=(2460) std::iterator_traits<char const*>::difference_type std::__distance<char const*>(char const*, char const*, std::random_access_iterator_tag) +calls=211 -43 +* 1899 ++2 422 + +fn=(8978) void std::advance<UG::D2::node**, long>(UG::D2::node**&, long) +202 112665600 ++3 37555200 ++1 56332800 +cfi=(277) +cfn=(8974) +calls=18777600 -1 +* 112665600 +* 93888000 +cfn=(8980) void std::__advance<UG::D2::node**, long>(UG::D2::node**&, long, std::random_access_iterator_tag) +calls=18777600 -32 +* 281664000 ++1 56332800 + +fn=(3502) +98 18 ++6 15 +cfi=(291) +cfn=(3504) +calls=3 989 +* 105 ++1 6 + +fn=(8972) std::iterator_traits<UG::D2::node**>::difference_type std::distance<UG::D2::node**>(UG::D2::node**, UG::D2::node**) +138 56332800 ++4 28166400 +cfi=(277) +cfn=(8974) +calls=9388800 +63 +* 56332800 +-1 46944000 +cfn=(8976) std::iterator_traits<UG::D2::node**>::difference_type std::__distance<UG::D2::node**>(UG::D2::node**, UG::D2::node**, std::random_access_iterator_tag) +calls=9388800 -43 +* 93888000 ++2 18777600 + +fn=(2460) +98 1055 ++6 422 ++1 422 + +fn=(8976) +98 46944000 ++6 28166400 ++1 18777600 + +fn=(2902) std::iterator_traits<char*>::difference_type std::distance<char*>(char*, char*) +138 582 ++4 291 +cfi=(277) +cfn=(2904) +calls=97 +63 +* 582 +-1 485 +cfn=(2906) std::iterator_traits<char*>::difference_type std::__distance<char*>(char*, char*, std::random_access_iterator_tag) +calls=97 -43 +* 873 ++2 194 + +fn=(2906) +98 485 ++6 194 ++1 194 + +fn=(8980) +174 93888000 ++11 131443200 ++1 56332800 + +fl=(366) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/ugio.cc +fn=(4334) UG::D2::InitUgio() +3670 3 ++2 1 ++1 3 +cfi=(354) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/fileopen.cc +cfn=(4336) UG::ReadSearchingPaths(char const*, char const*) +calls=1 570 +* 35 +* 4 ++3 1 +cfi=(368) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/mgio.cc +cfn=(4340) UG::D2::MGIO_Init() +calls=1 1676 +* 50 +* 4 ++2 1 ++1 2 + +fn=(4422) UG::D3::InitUgio() +3670 3 ++2 1 ++1 3 +cfi=(354) +cfn=(4336) +calls=1 570 +* 35 +* 4 ++3 1 +cfi=(368) +cfn=(4424) UG::D3::MGIO_Init() +calls=1 1676 +* 50 +* 4 ++2 1 ++1 2 + +fl=(381) /home/joscha/software/dune/dune-uggrid/dune/uggrid/numerics/initnp.cc +fn=(4434) UG::D3::InitNumerics() +72 4 ++4 1 +cfi=(382) /home/joscha/software/dune/dune-uggrid/dune/uggrid/numerics/udm.cc +cfn=(4436) UG::D3::InitUserDataManager() +calls=1 629 +* 50 +* 5 ++4 1 +cfi=(383) /home/joscha/software/dune/dune-uggrid/dune/uggrid/numerics/formats.cc +cfn=(4438) UG::D3::InitFormats() +calls=1 1991 +* 1448 +* 5 ++5 1 ++1 2 + +fn=(4392) UG::D2::InitNumerics() +72 4 ++4 1 +cfi=(382) +cfn=(4394) UG::D2::InitUserDataManager() +calls=1 629 +* 50 +* 5 ++4 1 +cfi=(383) +cfn=(4396) UG::D2::InitFormats() +calls=1 1991 +* 1450 +* 5 ++5 1 ++1 2 + +fl=(436) /home/joscha/software/dune/dune-uggrid/dune/uggrid/parallel/ppif/ppifcontext.hh +fn=(8872) PPIF::PPIFContext::procs() const +58 16 ++1 16 + +fn=(8870) PPIF::PPIFContext::me() const +40 1392800 ++1 1392800 + +fl=(345) /home/joscha/Desktop/dune/dune-faultnetworks/dune/faultnetworks/faultfactories/oscunitcube.hh +fn=(8792) OscUnitCube<Dune::UGGrid<2>, 2>::grid() const +38 6 ++2 5 +cfi=(342) /usr/include/c++/9/bits/shared_ptr.h +cfn=(8794) std::shared_ptr<Dune::UGGrid<2> >::shared_ptr(std::shared_ptr<Dune::UGGrid<2> > const&) +calls=1 +89 +* 106 ++1 3 + +fn=(4132) OscUnitCube<Dune::UGGrid<2>, 2>::OscUnitCube(int) +18 10 ++1 3 +cfi=(342) +cfn=(4106) std::shared_ptr<Dune::UGGrid<2> >::shared_ptr() +calls=1 127 +* 34 ++1 7 +cfi=(252) +cfn=(4134) Dune::FieldVector<double, 2>::FieldVector(double const&) +calls=1 121 +* 151 ++1 7 +cfi=(252) +cfn=(4134) +calls=1 121 +* 151 ++2 3 +cfi=(253) /usr/include/c++/9/array +cfn=(4150) std::array<unsigned int, 2ul>::end() +calls=1 134 +* 28 +* 4 +cfi=(253) +cfn=(4156) std::array<unsigned int, 2ul>::begin() +calls=1 126 +* 27 +* 6 +cfi=(265) /usr/include/c++/9/bits/stl_algobase.h +cfn=(4158) void std::fill<unsigned int*, int>(unsigned int*, unsigned int*, int const&) +calls=1 742 +* 71 ++7 6 +cfi=(346) /home/joscha/software/dune/dune-grid/dune/grid/utility/structuredgridfactory.hh +cfn=(4164) Dune::StructuredGridFactory<Dune::UGGrid<2> >::createSimplexGrid(Dune::FieldVector<double, 2> const&, Dune::FieldVector<double, 2> const&, std::array<unsigned int, 2ul> const&) +calls=1 249 +* 118066355 +* 5 +cfi=(342) +cfn=(8736) std::enable_if<std::is_assignable<std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&, std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > > >::value, std::shared_ptr<Dune::UGGrid<2> >&>::type std::shared_ptr<Dune::UGGrid<2> >::operator=<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >(std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&&) +calls=1 349 +* 10052 +* 3 +cfi=(432) /usr/include/c++/9/bits/unique_ptr.h +cfn=(8700) std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::~unique_ptr() +calls=1 278 +* 68 ++1 1 ++5 8 + +fl=(402) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/heaps.cc +fn=(5436) UG::GetFreelistMemory(UG::HEAP*, int) +214 37644 ++1 25096 +cob=(2) +cfi=(18) +cfn=(4272) +calls=6274 0 +* 1190588 +* 6274 ++2 12548 ++1 37644 +cob=(2) +cfi=(18) +cfn=(2248) +calls=6274 0 +* 87960 ++2 6274 ++1 12548 + +fn=(5368) UG::GetMem(UG::HEAP*, unsigned long) +159 14173524 ++1 7086762 +cob=(2) +cfi=(18) +cfn=(4272) +calls=2362254 0 +* 451235780 ++1 4724508 + +fn=(5940) UG::ReleaseTmpMem(UG::HEAP*, int) +266 9 ++1 4 ++2 4 ++1 4 ++3 14 +cfi=(259) /usr/include/c++/9/bits/stl_vector.h +cfn=(5392) std::vector<void*, std::allocator<void*> >::begin() +calls=1 808 +* 31 +* 4 +cfi=(259) +cfn=(5372) std::vector<void*, std::allocator<void*> >::end() +calls=1 826 +* 32 +* 6 +cfi=(291) +cfn=(5942) +calls=1 907 +* 35 +* 15 +cfi=(291) +cfn=(5942) +calls=3 907 +* 105 +* 17 +cfi=(291) +cfn=(5428) +calls=3 819 +* 24 +* 6 ++1 9 +cob=(2) +cfi=(18) +cfn=(4440) +calls=3 0 +* 298 +-1 9 +cfi=(291) +cfn=(5944) +calls=3 827 +* 36 +* 3 ++2 13 +cfi=(259) +cfn=(5946) std::vector<void*, std::allocator<void*> >::resize(unsigned long) +calls=1 934 +* 131 ++2 4 ++1 21 +cfi=(259) +cfn=(5390) std::vector<void*, std::allocator<void*> >::size() const +calls=1 915 +* 13 +* 9 ++1 5 +-1 1 ++3 1 ++1 5 + +fn=(5348) UG::NewHeap(UG::HeapType, unsigned long, void*) +100 9 ++4 2 ++1 2 ++3 2 ++1 3 ++1 3 ++1 2 ++5 5 +cfi=(293) /usr/include/c++/9/new +cfn=(3882) operator new[](unsigned long, void*) +calls=1 +60 +* 8 +* 520 +cfi=(259) +cfn=(5350) std::vector<void*, std::allocator<void*> >::vector() +calls=129 484 +* 8643 +* 387 ++3 1 ++1 5 + +fn=(5362) UG::MarkTmpMem(UG::HEAP*, int*) +239 6 ++1 4 ++1 4 ++2 4 ++2 5 ++1 4 ++1 1 ++1 2 + +fn=(5366) UG::GetTmpMem(UG::HEAP*, unsigned long, int) +173 30 ++1 12 ++4 15 +cfn=(5368) +calls=3 -19 +* 463 +* 3 ++1 42 +cfi=(259) +cfn=(5370) std::vector<void*, std::allocator<void*> >::push_back(void* const&) +calls=3 1184 +* 3301 ++1 36 +cfi=(259) +cfn=(5424) std::vector<void*, std::allocator<void*> >::back() +calls=3 1140 +* 312 +* 6 ++4 15 + +fl=(234) /usr/include/c++/9/bits/stl_map.h +fn=(2184) std::map<QuadratureRuleKey, Dune::QuadratureRule<double, 1>, std::less<QuadratureRuleKey>, std::allocator<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > > >::map() +183 8 +cfi=(235) /usr/include/c++/9/bits/stl_tree.h +cfn=(2186) std::_Rb_tree<QuadratureRuleKey, std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> >, std::_Select1st<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > >, std::less<QuadratureRuleKey>, std::allocator<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > > >::_Rb_tree() +calls=1 939 +* 84 +* 3 + +fn=(3186) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::count(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +1214 369 ++1 123 +cfi=(235) +cfn=(3188) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::end() const +calls=41 1018 +* 1271 +* 246 +cfi=(235) +cfn=(3192) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::find(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=41 2567 +* 15600 +* 246 +cfi=(235) +cfn=(3200) std::operator==(std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const&, std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const&) +calls=41 394 +* 533 +* 355 + +fn=(2168) std::map<QuadratureRuleKey, Dune::QuadratureRule<double, 2>, std::less<QuadratureRuleKey>, std::allocator<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > > >::map() +183 8 +cfi=(235) +cfn=(2170) std::_Rb_tree<QuadratureRuleKey, std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> >, std::_Select1st<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > >, std::less<QuadratureRuleKey>, std::allocator<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > > >::_Rb_tree() +calls=1 939 +* 84 +* 3 + +fn=(2928) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::lower_bound(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +1257 96 ++1 80 +cfi=(235) +cfn=(2930) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::lower_bound(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 +23 +* 4806 +* 32 + +fn=(3218) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::lower_bound(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +1257 192 ++1 160 +cfi=(235) +cfn=(3220) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::lower_bound(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=32 +23 +* 12177 +* 64 + +fn=(3230) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::end() +372 160 ++1 96 +cfi=(235) +cfn=(3232) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::end() +calls=32 1014 +* 992 +* 64 + +fn=(3310) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::key_comp() const +1141 48 ++1 24 +cfi=(235) +cfn=(3312) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::key_comp() const +calls=8 1002 +* 48 +* 40 + +fn=(2322) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::map() +183 40 +cfi=(235) +cfn=(2324) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_Rb_tree() +calls=5 939 +* 420 +* 15 + +fn=(3216) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::operator[](std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +490 320 ++5 160 +cfn=(3218) +calls=32 1257 +* 12593 +* 32 ++2 96 +cfn=(3230) +calls=32 372 +* 1312 +* 192 +cfi=(235) +cfn=(3234) std::operator==(std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const&, std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const&) +calls=32 315 +* 416 +* 151 +cfn=(3298) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::key_comp() const +calls=29 1141 +* 580 +* 87 +cfi=(235) +cfn=(3294) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::operator*() const +calls=29 277 +* 1131 +* 174 +cfi=(297) /usr/include/c++/9/bits/stl_function.h +cfn=(3120) std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::operator()(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=29 385 +* 2464 +* 157 ++2 18 +cfi=(295) /usr/include/c++/9/tuple +cfn=(2946) std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::tuple<void, true>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=3 +89 +* 117 +* 15 +cfi=(235) +cfn=(3236) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_Rb_tree_const_iterator(std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const&) +calls=3 348 +* 36 +* 27 +cfi=(235) +cfn=(3238) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_emplace_hint_unique<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=3 2452 +* 5667 +* 3 ++6 9 +cfi=(235) +cfn=(3294) +calls=3 277 +* 117 +* 87 +cfi=(235) +cfn=(3294) +calls=29 277 +* 1131 +* 32 ++1 224 + +fn=(3298) +1141 174 ++1 87 +cfi=(235) +cfn=(3300) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::key_comp() const +calls=29 1002 +* 174 +* 145 + +fn=(3470) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::find(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +1193 72 ++1 60 +cfi=(235) +cfn=(2836) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::find(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=12 2567 +* 9088 +* 24 + +fn=(2830) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::count(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +1214 513 ++1 171 +cfi=(235) +cfn=(2832) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::end() const +calls=57 1018 +* 1767 +* 342 +cfi=(235) +cfn=(2836) +calls=57 2567 +* 36379 +* 342 +cfi=(235) +cfn=(2844) std::operator==(std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) +calls=57 394 +* 741 +* 489 + +fn=(2940) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::end() +372 80 ++1 48 +cfi=(235) +cfn=(2942) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::end() +calls=16 1014 +* 496 +* 32 + +fn=(2310) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::map() +183 40 +cfi=(235) +cfn=(2312) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_Rb_tree() +calls=5 939 +* 420 +* 15 + +fn=(2926) std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::operator[](std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +490 160 ++5 80 +cfn=(2928) +calls=16 1257 +* 5014 +* 16 ++2 48 +cfn=(2940) +calls=16 372 +* 656 +* 96 +cfi=(235) +cfn=(2944) std::operator==(std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) +calls=16 315 +* 208 +* 56 +cfn=(3310) +calls=8 1141 +* 160 +* 24 +cfi=(235) +cfn=(3034) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::operator*() const +calls=8 277 +* 312 +* 48 +cfi=(297) +cfn=(3120) +calls=8 385 +* 606 +* 80 ++2 96 +cfi=(295) +cfn=(2946) +calls=16 +89 +* 624 +* 80 +cfi=(235) +cfn=(2952) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree_const_iterator(std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&) +calls=16 348 +* 192 +* 144 +cfi=(235) +cfn=(2954) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_emplace_hint_unique<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=16 2452 +* 24953 +* 16 ++6 48 +cfi=(235) +cfn=(3034) +calls=16 277 +* 624 +* 16 ++1 112 + +fl=(287) /usr/include/c++/9/bits/stl_set.h +fn=(4928) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::insert(Dune::UGGridBoundarySegment<2> const&) +509 55296 ++2 30720 +cfi=(235) +cfn=(4930) std::pair<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >, bool> std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_insert_unique<Dune::UGGridBoundarySegment<2> const&>(Dune::UGGridBoundarySegment<2> const&) +calls=6144 2139 +* 39083755 +* 12288 ++2 43008 +cfi=(298) /usr/include/c++/9/bits/stl_pair.h +cfn=(4984) std::pair<std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >, bool>::pair<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >&, bool&, true>(std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >&, bool&) +calls=6144 341 +* 319488 +* 12288 ++1 30720 + +fn=(3046) std::set<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::insert(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +509 144 ++2 80 +cfi=(235) +cfn=(3048) std::pair<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, bool> std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_insert_unique<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 2139 +* 29218 +* 32 ++2 112 +cfi=(298) +cfn=(3104) std::pair<std::_Rb_tree_const_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, bool>::pair<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, bool&, true>(std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, bool&) +calls=16 341 +* 832 +* 32 ++1 80 + +fn=(3352) std::set<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::~set() +281 8 +cfi=(235) +cfn=(3354) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::~_Rb_tree() +calls=1 994 +* 6260 +* 3 + +fn=(4914) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::clear() +733 5 ++1 3 +cfi=(235) +cfn=(4916) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::clear() +calls=1 1264 +* 56 +* 3 + +fn=(5152) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::end() const +353 650 ++1 390 +cfi=(235) +cfn=(5154) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::end() const +calls=130 1018 +* 4030 +* 260 + +fn=(5160) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::size() const +419 15 ++1 9 +cfi=(235) +cfn=(5162) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::size() const +calls=3 1042 +* 24 +* 6 + +fn=(8644) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::~set() +281 8 +cfi=(235) +cfn=(8646) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::~_Rb_tree() +calls=1 994 +* 39409 +* 3 + +fn=(2650) std::set<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::set() +167 8 +cfi=(235) +cfn=(2652) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree() +calls=1 939 +* 84 +* 3 + +fn=(5076) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::empty() const +414 5 ++1 3 +cfi=(235) +cfn=(5078) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::empty() const +calls=1 1038 +* 10 +* 2 + +fn=(5146) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::begin() const +344 10 ++1 6 +cfi=(235) +cfn=(5148) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::begin() const +calls=2 1010 +* 62 +* 4 + +fn=(2810) std::set<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::count(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +748 144 ++1 48 +cfi=(235) +cfn=(2812) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::end() const +calls=16 1018 +* 496 +* 96 +cfi=(235) +cfn=(2816) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::find(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=16 2567 +* 12560 +* 96 +cfi=(235) +cfn=(2824) std::operator==(std::_Rb_tree_const_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&, std::_Rb_tree_const_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +calls=16 394 +* 208 +* 144 + +fn=(5040) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::erase[abi:cxx11](std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >) +654 27072 ++1 15040 +cfi=(235) +cfn=(5042) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::erase[abi:cxx11](std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >) +calls=3008 1203 +* 1274951 +* 18048 +cfi=(235) +cfn=(4988) std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >::_Rb_tree_const_iterator(std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> > const&) +calls=3008 348 +* 36096 +* 18048 + +fn=(4900) std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::set() +167 8 +cfi=(235) +cfn=(4902) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Rb_tree() +calls=1 939 +* 84 +* 3 + +fl=(394) /usr/include/c++/9/bits/ptr_traits.h +fn=(8744) Dune::UGGrid<2>* std::__to_address<Dune::UGGrid<2> >(Dune::UGGrid<2>*) +151 4 ++3 1 ++1 2 + +fn=(5882) std::pointer_traits<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*>::pointer_to(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>&) +141 30720 ++1 18432 +cfi=(286) /usr/include/c++/9/bits/move.h +cfn=(5884) std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>* std::addressof<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>&) +calls=6144 -4 +* 104448 +* 12288 + +fn=(5992) std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2>* std::__to_address<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >(std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2>*) +151 20 ++3 5 ++1 10 + +fn=(5728) std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>* std::__to_address<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +151 24576 ++3 6144 ++1 12288 + +fn=(5244) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>* std::__to_address<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >(std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>*) +151 8 ++3 2 ++1 4 + +fn=(5632) std::__detail::_Hash_node_base** std::__to_address<std::__detail::_Hash_node_base*>(std::__detail::_Hash_node_base**) +151 4 ++3 1 ++1 2 + +fl=(256) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/gausslobatto.cc +fn=(2280) _GLOBAL__sub_I_gausslobatto.cc +12 6 +cfn=(2282) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(2282) +12 10 +fi=(220) ++62 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(256) +-62 3 + +fl=(388) /home/joscha/software/dune/dune-grid/dune/grid/utility/multiindex.hh +fn=(4592) Dune::FactoryUtilities::MultiIndex<2ul>::cycle() const +46 10 ++2 2 ++1 14 ++1 24 +cfi=(253) +cfn=(4594) std::array<unsigned int, 2ul>::operator[](unsigned long) const +calls=4 189 +* 96 +* 20 +-1 8 ++2 2 ++1 4 + +fn=(4654) Dune::FactoryUtilities::MultiIndex<2ul>::operator++() +29 12678 ++2 6473 ++3 10890 +cfi=(253) +cfn=(4584) std::array<unsigned int, 2ul>::operator[](unsigned long) +calls=2178 185 +* 52272 +* 6534 ++3 10890 +cfi=(253) +cfn=(4584) +calls=2178 185 +* 52272 +* 15246 +cfi=(253) +cfn=(4584) +calls=2178 185 +* 52272 +* 10890 ++3 335 +cfi=(253) +cfn=(4584) +calls=67 185 +* 1608 +* 67 +-9 134 ++7 2111 ++4 2111 ++1 8444 +-1 2 ++1 8 + +fn=(4590) Dune::FactoryUtilities::MultiIndex<2ul>::MultiIndex(std::array<unsigned int, 2ul> const&) +23 28 ++2 8 +cfi=(253) +cfn=(4150) +calls=2 134 +* 56 +* 8 +cfi=(253) +cfn=(4156) +calls=2 126 +* 54 +* 12 +cfi=(265) +cfn=(4158) +calls=2 742 +* 142 ++1 16 + +fl=(341) /home/joscha/Desktop/dune/dune-faultnetworks/dune/faultnetworks/faultfactories/rockfaultfactory.hh +fn=(4092) RockFaultFactory<Dune::UGGrid<2> >::RockFaultFactory(int, unsigned long, double) +724 12 ++4 6 +-1 5 +cfi=(320) /usr/include/c++/9/cmath +cfn=(3744) __gnu_cxx::__promote_2<int, int, __gnu_cxx::__promote<int, std::__is_integer<int>::__value>::__type, __gnu_cxx::__promote<int, std::__is_integer<int>::__value>::__type>::__type std::pow<int, int>(int, int) +calls=1 415 +* 139 ++1 7 +cfi=(259) +cfn=(4094) std::vector<double, std::allocator<double> >::vector() +calls=1 484 +* 67 +* 4 +cfi=(342) +cfn=(4106) +calls=1 127 +* 34 +* 5 +cfi=(342) +cfn=(4112) std::shared_ptr<InterfaceNetwork<Dune::UGGrid<2> > >::shared_ptr(decltype(nullptr)) +calls=1 307 +* 46 +* 4 +cfi=(259) +cfn=(4118) std::vector<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > >, std::allocator<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > > > >::vector() +calls=1 484 +* 67 ++5 2 +cfi=(344) /home/joscha/software/dune/dune-grid/dune/grid/uggrid.hh +cfn=(4130) Dune::UGGrid<2>::setDefaultHeapSize(unsigned int) +calls=1 +38 +* 7 ++1 6 +cfi=(345) +cfn=(4132) +calls=1 18 +* 118077000 ++1 5 +cfi=(345) +cfn=(8792) +calls=1 38 +* 120 +* 6 +cfi=(342) +cfn=(8798) std::shared_ptr<Dune::UGGrid<2> >::operator=(std::shared_ptr<Dune::UGGrid<2> >&&) +calls=1 333 +* 233 +* 3 +cfi=(342) +cfn=(8808) std::shared_ptr<Dune::UGGrid<2> >::~shared_ptr() +calls=1 103 +* 35 ++1 4 +cfi=(343) /usr/include/c++/9/bits/shared_ptr_base.h +cfn=(8810) std::__shared_ptr_access<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2, false, false>::operator->() const +calls=1 1012 +* 28 +* 6 +cfi=(239) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggrid.cc +cfn=(8816) Dune::UGGrid<2>::globalRefine(int) +calls=1 337 +* 22371197756 + +fl=(365) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/ugm.cc +fn=(5468) UG::D2::InsertMesh(UG::D2::multigrid*, UG::D2::mesh*) +4975 10 ++7 3 ++2 2 ++1 4 ++2 4 ++1 3 ++1 517 ++1 1408 +cfn=(5470) UG::D2::InsertBoundaryNode(UG::D2::grid*, void**) +calls=128 4288 +* 1036775 +* 512 +-1 256 ++4 5 ++3 2 ++96 7 + +fn=(5486) CreateNode(UG::D2::grid*, UG::D2::vertex*, UG::D2::geom_object*, int, int) +474 4214076 ++5 351173 ++1 3160557 ++1 2107038 ++1 2107038 ++2 2458211 +cfn=(5458) UG::D2::GetMemoryForObject(UG::D2::multigrid*, int, int) +calls=351173 288 +* 87082659 +* 351173 ++1 702346 ++3 2458211 ++1 3862903 ++7 2809384 ++1 702346 ++1 702346 ++1 2107038 ++1 1053519 ++2 4916422 ++4 702346 ++1 3500840 ++2 1053519 ++1 3160557 ++1 2107038 ++1 2107038 ++1 1755865 ++1 27776 ++1 1388820 ++1 9244800 ++1 9610 ++1 19220 ++1 42284 ++5 5766 ++2 2107038 ++15 2107038 ++9 2107038 ++3 2107038 +cfi=(403) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/dlmgr.t +cfn=(5488) UG::D2::GRID_LINK_NODE(UG::D2::grid*, UG::D2::node*, int) +calls=351173 402 +* 10535190 ++2 351173 ++1 1755865 + +fn=(5646) UG::D2::CheckOrientation(int, UG::D2::vertex**) +4410 18432 ++4 30720 ++2 143360 ++1 157696 ++1 143360 ++1 157696 ++1 64512 +cfi=(406) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/evm.cc +cfn=(5648) UG::D2::vp(double, double, double, double) +calls=7168 271 +* 444416 +* 35840 ++2 2048 +-8 12288 ++11 2048 ++1 6144 + +fn=(9046) PropagateNodeClass(UG::D2::grid*, int) +6749 48 ++4 24 ++1 2785296 ++1 4177920 +cfn=(9048) MaxNodeClass(UG::D2::element const*) +calls=1392640 6533 +* 178257920 +* 5570560 ++1 31334400 ++2 31334400 ++2 16711680 +-4 4177920 +-2 4177920 +-1 1392640 ++35 8 ++1 16 + +fn=(5208) UG::D2::CreateMultiGrid(char*, char*, char const*, int, int, std::shared_ptr<PPIF::PPIFContext>) +3030 14 ++10 3 +cfi=(343) +cfn=(5210) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::operator bool() const +calls=1 1312 +* 10 +* 3 ++1 3 +cfi=(342) +cfn=(5212) std::shared_ptr<PPIF::PPIFContext> std::make_shared<PPIF::PPIFContext>() +calls=1 714 +* 900 +* 5 +cfi=(342) +cfn=(5284) std::shared_ptr<PPIF::PPIFContext>::operator=(std::shared_ptr<PPIF::PPIFContext>&&) +calls=1 333 +* 233 +* 3 +cfi=(342) +cfn=(5306) std::shared_ptr<PPIF::PPIFContext>::~shared_ptr() +calls=1 103 +* 35 ++2 3 +cfi=(363) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/enrol.cc +cfn=(4522) UG::D2::GetFormat(char const*) +calls=1 400 +* 1135 +* 1 ++1 2 ++8 5 +cfi=(342) +cfn=(5198) std::shared_ptr<PPIF::PPIFContext>::shared_ptr(std::shared_ptr<PPIF::PPIFContext> const&) +calls=1 129 +* 106 +* 5 +cfn=(5316) UG::D2::MakeMGItem(char const*, std::shared_ptr<PPIF::PPIFContext>) +calls=1 2824 +* 61208 +* 4 +cfi=(342) +cfn=(5306) +calls=1 103 +* 93 ++1 2 ++1 3 ++1 3 +cfi=(362) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/elements.cc +cfn=(5342) UG::D2::InitElementTypes(UG::D2::multigrid*) +calls=1 925 +* 444 +* 4 ++8 2 +cob=(2) +cfi=(18) +cfn=(4272) +calls=1 0 +* 262 +* 4 +cfi=(402) +cfn=(5348) +calls=1 100 +* 9592 +* 1 ++1 2 ++10 5 +cfi=(402) +cfn=(5362) +calls=1 239 +* 30 ++1 3 ++2 2 ++1 6 +cfi=(359) /home/joscha/software/dune/dune-uggrid/dune/uggrid/domain/std_domain.cc +cfn=(5364) UG::D2::BVP_Init(char const*, UG::HEAP*, UG::D2::mesh*, int) +calls=1 904 +* 207436 +* 2 ++3 2 ++5 6 +cfi=(359) +cfn=(5184) UG::D2::BVP_SetBVPDesc(void**, UG::D2::BVP_Descriptor*) +calls=1 1361 +* 80 +* 4 ++5 3 ++8 2 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++2 2 ++2 2 ++1 2 ++1 3 ++1 4 ++1 4 +cob=(2) +cfi=(18) +cfn=(5452) +calls=1 0 +* 6 +* 5 ++2 3 ++1 67 ++1 160 +-1 64 ++4 4 +cfn=(5456) UG::D2::CreateNewLevel(UG::D2::multigrid*, int) +calls=1 2700 +* 57877 +* 4 ++7 2 ++6 5 +cfn=(5468) +calls=1 4975 +* 1039508 +* 4 ++10 3 ++8 1 ++1 7 + +fn=(5664) UG::D2::GetEdge(UG::D2::node const*, UG::D2::node const*) +2111 89831865 ++4 165429047 ++1 218861712 ++1 372170414 +-2 151194364 ++5 1049536 ++1 35932746 + +fn=(9048) +6533 5570560 ++1 1392640 ++3 62668800 ++1 75202560 ++2 20889600 +-3 8355840 ++6 1392640 ++1 2785280 + +fn=(9050) UG::D2::DisposeTopLevel(UG::D2::multigrid*) +3927 40 ++8 24 ++1 16 ++1 32 ++1 48 ++3 48 ++19 16 + +fn=(9056) UG::D2::MinNodeClass(UG::D2::element const*) +6617 3670016 ++1 917504 ++3 41287680 ++1 49545216 ++2 13762560 +-3 5505024 ++6 917504 ++1 1835008 + +fn=(5206) UG::D2::GetMultigrid(char const*) +2940 10 ++1 12 +cfi=(353) +cfn=(4524) UG::SearchEnv(char const*, char const*, int, int) +calls=2 563 +* 2337 ++2 4 + +fn=(8918) UG::D2::CreateMidNode(UG::D2::grid*, UG::D2::element*, UG::D2::vertex*, int) +610 2882880 ++7 3407040 ++1 3144960 ++1 4193280 ++1 4193280 ++1 5241600 ++3 8124480 +cfn=(5664) +calls=262080 2111 +* 16350080 +* 262080 ++4 786240 ++1 524160 ++2 1329540 ++2 9640 ++1 30832 ++6 23040 +cfi=(359) +cfn=(8920) UG::D2::BNDP_CreateBndP(UG::HEAP*, void**, void**, double) +calls=1920 2823 +* 1562540 +* 1920 ++1 3840 ++2 5760 +cfn=(5472) CreateBoundaryVertex(UG::D2::grid*) +calls=1920 362 +* 737973 +* 1920 ++1 3840 ++2 9600 +cfi=(359) +cfn=(5476) UG::D2::BNDP_Global(void**, double*) +calls=1920 2593 +* 232320 +* 7680 ++2 11520 +cfi=(359) +cfn=(5484) UG::D2::BNDP_BndPDesc(void**, int*, int*) +calls=1920 2613 +* 82560 +* 7680 ++2 19200 ++1 5760 ++1 11520 ++1 5760 ++1 34560 +cob=(2) +cfi=(18) +cfn=(5650) +calls=1920 0 +* 19200 +* 3840 ++1 5760 ++7 136320 ++5 524160 ++3 780480 +cfn=(5524) CreateInnerVertex(UG::D2::grid*) +calls=260160 416 +* 98348911 +* 260160 ++1 520320 ++1 1560960 ++1 18211200 ++4 780480 ++1 2601600 ++3 1821120 +cfn=(5486) +calls=260160 474 +* 124094606 +-4 5760 ++1 19200 ++3 13440 +cfn=(5486) +calls=1920 474 +* 868067 +* 262080 ++1 524160 ++6 786240 ++17 262080 ++1 1310400 + +fn=(9066) UG::D2::MinNextNodeClass(UG::D2::element const*) +6645 917504 ++1 229376 ++3 10321920 ++1 12386304 ++2 3440640 +-3 1376256 ++6 229376 ++1 458752 + +fn=(5458) +288 16535757 ++1 16535757 +cfi=(402) +cfn=(5368) +calls=2362251 159 +* 477220111 +* 2362251 ++1 4724502 ++1 14173506 +cob=(2) +cfi=(18) +cfn=(2248) +calls=2362251 0 +* 47532375 ++7 2362251 ++1 4724502 + +fn=(5592) UG::D2::InsertElement(UG::D2::grid*, int, UG::D2::node**, UG::D2::element**, int*, int*) +4675 26624 ++14 6144 ++3 8192 +cfi=(399) /usr/include/c++/9/bits/unordered_map.h +cfn=(5594) std::unordered_map<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::element*, int>, UG::D2::multigrid::FaceHasher, std::equal_to<UG::D2::multigrid::FaceNodes>, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > > >::bucket_count() const +calls=2048 1013 +* 36864 +* 8192 ++3 8 +cfi=(399) +cfn=(5598) std::unordered_map<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::element*, int>, UG::D2::multigrid::FaceHasher, std::equal_to<UG::D2::multigrid::FaceNodes>, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > > >::rehash(unsigned long) +calls=1 1120 +* 9625 ++6 4096 ++3 2048 ++1 2048 ++32 26624 ++4 61440 +-4 12288 ++9 10240 +cfn=(5646) +calls=2048 4410 +* 698368 +* 8192 ++3 26624 ++1 18432 ++2 5120 +cfn=(5646) +calls=1024 4410 +* 520192 +* 4096 ++50 59392 ++2 18432 ++1 18432 +-3 12288 ++7 2048 ++1 59392 ++2 55296 ++1 61440 ++2 159744 ++1 110592 ++1 73728 +-4 24576 ++6 6144 ++1 61440 ++2 97548 +-2 24576 ++4 12288 ++10 1320 ++1 1848 +-1 528 ++3 264 ++2 924 +cfi=(359) +cfn=(5656) UG::D2::BNDP_CreateBndS(UG::HEAP*, void***, int) +calls=132 2708 +* 123885 +* 396 ++1 916 +-16 6012 +-14 12288 ++41 16384 +cfn=(5660) UG::D2::CreateElement(UG::D2::grid*, int, int, UG::D2::node**, UG::D2::element*, bool) +calls=2048 2450 +* 3818944 +* 2048 ++1 4096 ++6 4096 ++3 20480 +cfn=(5668) NeighborSearch_O_n(int, UG::D2::element*, UG::D2::node**, UG::D2::multigrid*, int*, UG::D2::element**) +calls=2048 4529 +* 18819339 +* 2048 ++13 10240 ++1 5670 ++1 6426 +-1 756 ++4 92160 ++2 104448 ++1 30720 ++2 6016 ++1 15040 +cfn=(5904) SideOfNbElement(UG::D2::element const*, int) +calls=3008 746 +* 2775168 +* 9024 ++1 15040 ++5 63168 +-12 12288 ++22 24576 ++1 59392 ++2 2048 ++1 10240 + +fn=(5662) CreateEdge(UG::D2::grid*, UG::D2::element*, int, bool) +2147 25141248 ++12 54472704 ++1 52377600 ++3 10475520 +cfn=(5664) +calls=2095104 -52 +* 96237312 +* 10475520 ++1 17774656 ++1 43913856 ++4 2091136 ++3 6297216 ++3 6297216 +cfn=(5458) +calls=1049536 288 +* 260320646 +* 1049536 ++1 2099072 ++3 2099072 ++1 3148608 ++1 7346752 ++1 17842112 ++4 30436544 ++2 7346752 ++2 11544896 ++20 3148608 ++1 3148608 ++1 30436544 ++1 30436544 ++3 41981440 ++1 13643968 ++1 2099072 ++2 41856000 ++1 9417600 ++2 524160 ++1 786240 ++4 1568640 ++1 1568640 ++2 14125440 ++8 1572480 ++9 1048320 ++1 25683840 ++1 1048320 +2377 6297216 ++14 4198144 ++1 3148608 ++1 4198144 ++1 3148608 ++3 5247680 ++3 1049536 ++1 10475520 + +fn=(5904) +746 27072 ++5 45120 ++1 6016 ++2 135360 ++1 144384 +-1 18048 ++3 39104 ++1 30080 ++1 192512 +-1 12032 ++3 91360 ++1 8032 ++1 80320 ++1 690752 ++1 1103392 +-1 64256 +-1 32128 ++3 30112 +-5 10048 ++9 15040 + +fn=(8902) UG::D2::SeedNextNodeClasses(UG::D2::element*) +6921 917504 ++3 10321920 ++1 21331968 +-1 1376256 ++3 229376 ++1 458752 + +fn=(9040) UG::D2::ClearNodeClasses(UG::D2::grid*) +6696 16 ++4 700188 ++1 2100504 +-1 1400336 ++3 4 ++1 8 + +fn=(4332) UG::D2::InitUGManager() +9137 4 ++4 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 361 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++3 1 ++1 23 ++1 90 +-1 20 ++3 1 ++1 2 + +fn=(5346) UG::D2::GetFreeOBJT() +206 12 ++4 24 ++1 100 +-1 12 ++2 4 ++2 8 ++2 36 ++1 8 ++4 8 + +fn=(5456) +2700 30 ++4 32 ++1 20 ++1 10 ++1 20 ++3 25 +cfn=(5458) +calls=5 288 +* 288666 +* 5 ++1 10 ++3 10 ++1 35 ++1 15 ++1 30 ++1 10 ++1 10 ++4 15 +cfi=(403) +cfn=(5460) UG::D2::GRID_INIT_ELEMENT_LIST(UG::D2::grid*) +calls=5 592 +* 75 ++1 15 +cfi=(403) +cfn=(5462) UG::D2::GRID_INIT_NODE_LIST(UG::D2::grid*) +calls=5 592 +* 75 ++1 15 +cfi=(403) +cfn=(5464) UG::D2::GRID_INIT_VERTEX_LIST(UG::D2::grid*) +calls=5 592 +* 75 ++1 15 +cfi=(403) +cfn=(5466) UG::D2::GRID_INIT_VECTOR_LIST(UG::D2::grid*) +calls=5 592 +* 75 ++1 10 ++2 32 ++1 32 ++1 12 ++2 2 ++2 2 ++1 3 ++8 15 ++1 30 ++1 10 ++3 15 ++1 15 ++3 5 ++1 10 + +fn=(5660) +2450 9777152 ++5 1396736 ++2 2777640 +-1 7638510 +cfn=(5458) +calls=694410 288 +* 172240900 +* 1388820 ++2 7916 ++2 15832 +-1 43538 +cfn=(5458) +calls=3958 288 +* 962781 +* 7916 ++5 1396736 ++3 20252672 ++1 6285312 ++1 6983680 ++1 7682048 ++6 20252672 ++1 5586944 ++3 12541952 ++1 59392 ++6 26624 ++3 24576 +-10 696320 ++1 20193280 ++6 9052160 ++3 31401984 ++1 41902080 +-1 4190208 ++4 31426560 ++1 12570624 +cfn=(5662) +calls=2095104 2147 +* 930645894 +* 8380416 +-1 4190208 ++24 4190208 ++16 4190208 ++17 4190208 +cfi=(403) +cfn=(5666) UG::D2::GRID_LINK_ELEMENT(UG::D2::grid*, UG::D2::element*, int) +calls=698368 402 +* 20951040 ++2 2793472 ++2 696320 ++5 1392640 ++2 11141120 ++1 2611200 ++1 7311360 ++5 174080 ++1 348160 +-6 21934080 ++5 522240 ++1 1566720 +-1 2048 ++1 1576960 + +fn=(8842) UG::D2::DisposeAMGLevels(UG::D2::multigrid*) +4089 20 ++13 12 +cfn=(8844) DisposeAMGLevel(UG::D2::multigrid*) +calls=4 -65 +* 56 +* 20 ++20 4 ++1 8 + +fn=(8904) UG::D2::PropagateNextNodeClasses(UG::D2::grid*) +7041 50 ++12 40 +cfn=(8906) PropagateNextNodeClass(UG::D2::grid*, int) +calls=10 -79 +* 59867276 +* 40 ++10 40 +cfn=(8906) +calls=10 -89 +* 32342156 +* 40 ++30 10 ++1 20 + +fn=(8932) UG::D2::GetMidNode(UG::D2::element const*, int) +710 4694400 ++7 18777600 +-1 21907200 +cfn=(5664) +calls=782400 2111 +* 49081120 +* 782400 ++2 1564800 ++1 2347200 ++1 1564800 ++3 2347200 ++1 4694400 ++12 782400 ++1 1564800 + +fn=(5522) UG::D2::InsertInnerNode(UG::D2::grid*, double const*) +4246 5766 ++6 2883 +cfn=(5524) +calls=961 416 +* 363582 +* 961 ++1 1922 ++5 6727 +cfn=(5486) +calls=961 474 +* 430528 +* 961 ++1 1922 ++8 29791 ++1 6727 ++2 961 ++1 1922 + +fn=(8860) UG::D2::MultiGridStatus(UG::D2::multigrid const*, int, int, int, int) +5527 56 ++16 12 +cfi=(398) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/gm.h +cfn=(8862) UG::D2::multigrid::ppifContext() const +calls=4 1612 +* 156 +* 4 ++1 12 +cfi=(436) +cfn=(8870) +calls=4 40 +* 32 +* 4 ++1 12 +cfi=(436) +cfn=(8872) +calls=4 58 +* 32 +* 4 ++2 28 ++1 16 ++2 276 ++3 396 ++1 53592 ++1 132 ++3 396 ++1 396 +-9 264 ++23 8 ++7 60 ++2 60 ++1 50 ++1 60 ++2 458802 ++3 1376256 ++2 3899392 ++2 458752 ++6 688128 +cfi=(370) +cfn=(8820) +calls=229376 2439 +* 5505024 +* 917504 ++2 522240 +cfi=(370) +cfn=(8826) +calls=174080 2674 +* 7137280 +* 174080 ++1 522240 +cfi=(370) +cfn=(8874) +calls=174080 2784 +* 25415680 +* 174080 ++2 348160 ++1 522240 +-1 348160 ++3 1740800 ++1 522240 ++1 7833600 ++2 7833600 ++1 9889920 ++2 5203200 ++1 1560960 +-6 1044480 ++9 1044480 ++4 3899392 ++13 458752 +-48 688128 +-1 229376 ++78 70 ++1 20 ++2 40 ++1 80 ++8 20 ++4 20 ++1 20 ++1 20 ++1 30 +5580 20 +5685 8 ++2 16 ++1 32 ++8 8 ++5 8 ++6 28 ++2 24 ++1 48 ++2 12 ++3 8 ++1 32 ++1 48 ++2 28 ++1 28 ++4 8 ++15 8 +5905 4 ++1 20 + +fn=(8906) +6974 120 ++4 60 ++1 917544 ++1 1376256 +cfn=(8908) UG::D2::MaxNextNodeClass(UG::D2::element const*) +calls=458752 6561 +* 58720256 +* 1835008 ++1 10321920 ++2 10321920 ++2 5505024 +-4 1376256 +-2 1376256 +-1 458752 ++35 20 ++1 40 + +fn=(5470) +4288 1152 ++6 384 +cfn=(5472) +calls=128 362 +* 49152 +* 128 ++1 256 ++6 768 +cfi=(359) +cfn=(5476) +calls=128 2593 +* 35328 +* 512 ++6 768 +cfi=(359) +cfn=(5484) +calls=128 2613 +* 4864 +* 512 ++5 1280 ++1 384 ++2 896 +cfn=(5486) +calls=128 474 +* 56704 +* 128 ++1 256 ++13 640 +cfi=(357) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/ugstruct.cc +cfn=(4348) UG::SetStringValue(char const*, double) +calls=128 914 +* 438430 ++1 640 +cfi=(357) +cfn=(4348) +calls=128 914 +* 442825 ++5 128 ++1 640 + +fn=(5524) +416 1305605 ++5 1566726 +cfn=(5458) +calls=261121 288 +* 64766763 +* 261121 ++1 522242 ++1 2350089 ++6 522242 ++3 522242 ++1 1827847 ++1 1566726 ++1 2872331 ++1 2088968 ++1 522242 ++4 1827847 ++5 6005783 ++3 1566726 +cfi=(403) +cfn=(5474) UG::D2::GRID_LINK_VERTEX(UG::D2::grid*, UG::D2::vertex*, int) +calls=261121 -47 +* 7833630 ++2 261121 ++1 522242 + +fn=(5668) +4529 28672 ++60 67584 ++2 6144 ++1 190464 ++1 282624 +cfi=(253) +cfn=(5670) std::array<UG::D2::node*, 4ul>::operator[](unsigned long) +calls=12288 185 +* 294912 +* 12288 +-1 24576 ++2 36864 ++1 73728 +cfi=(253) +cfn=(5670) +calls=12288 185 +* 294912 +* 12288 +-1 24576 ++2 18432 +cfi=(253) +cfn=(5674) std::array<UG::D2::node*, 4ul>::begin() +calls=6144 126 +* 165888 +* 86016 +cfi=(253) +cfn=(5674) +calls=6144 126 +* 165888 +* 18432 +cfi=(318) /usr/include/c++/9/bits/stl_algo.h +cfn=(5680) void std::sort<UG::D2::node**>(UG::D2::node**, UG::D2::node**) +calls=6144 4855 +* 1698816 ++3 43008 +cfi=(298) +cfn=(5702) std::pair<std::__decay_and_strip<UG::D2::element*&>::__type, std::__decay_and_strip<int&>::__type> std::make_pair<UG::D2::element*&, int&>(UG::D2::element*&, int&) +calls=6144 524 +* 503808 +* 43008 +cfi=(399) +cfn=(5710) std::pair<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>, bool> std::unordered_map<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::element*, int>, UG::D2::multigrid::FaceHasher, std::equal_to<UG::D2::multigrid::FaceNodes>, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > > >::emplace<UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int> >(UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +calls=6144 387 +* 10255987 +* 12288 ++2 24576 ++3 9024 +cfi=(401) /usr/include/c++/9/bits/hashtable_policy.h +cfn=(5892) std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>::operator->() const +calls=3008 348 +* 117312 +* 6016 ++1 9024 ++1 9024 ++1 21056 ++1 21056 ++1 18048 +cfi=(399) +cfn=(5894) std::unordered_map<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::element*, int>, UG::D2::multigrid::FaceHasher, std::equal_to<UG::D2::multigrid::FaceNodes>, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > > >::erase(UG::D2::multigrid::FaceNodes const&) +calls=3008 814 +* 4182040 +-20 24576 ++27 2048 ++2 14336 + +fn=(8844) +4037 20 ++5 12 ++1 16 ++30 8 + +fn=(8908) +6561 1835008 ++1 458752 ++3 20643840 ++1 24772608 ++2 6881280 +-3 2752512 ++6 458752 ++1 917504 + +fn=(9042) UG::D2::SeedNodeClasses(UG::D2::element*) +6673 2785280 ++3 31334400 ++1 64757760 +-1 4177920 ++3 696320 ++1 1392640 + +fn=(4420) UG::D3::InitUGManager() +9137 4 ++4 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 357 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++3 1 ++1 23 ++1 90 +-1 20 ++3 1 ++1 2 + +fn=(5472) +362 10240 ++5 12288 +cfn=(5458) +calls=2048 -79 +* 508597 +* 2048 ++1 4096 ++1 18432 ++6 4096 ++3 4096 ++1 14336 ++1 12288 ++1 22528 ++1 16384 ++1 4096 ++4 47104 ++1 12288 ++1 14336 ++7 12288 +cfi=(403) +cfn=(5474) +calls=2048 +6 +* 61440 ++2 2048 ++1 4096 + +fn=(8900) UG::D2::ClearNextNodeClasses(UG::D2::grid*) +6895 40 ++4 232774 ++1 698172 +-1 465448 ++5 10 ++1 20 + +fn=(8986) UG::D2::CreateSonElementSide(UG::D2::grid*, UG::D2::element*, int, UG::D2::element*, int) +2597 57600 ++12 49920 ++1 38400 ++2 499200 +cfn=(5664) +calls=7680 2111 +* 428400 +* 7680 ++1 130560 +-3 15360 ++6 49920 ++1 38400 ++3 261120 ++31 261120 +-34 15360 ++36 30720 +cfi=(359) +cfn=(5656) +calls=3840 +55 +* 2815674 +* 3840 ++1 7680 ++2 57600 ++2 23040 ++8 92160 +-1 107520 +cfn=(5664) +calls=3840 2111 +* 181120 +* 3840 ++3 65280 ++14 3840 ++1 34560 + +fn=(5316) +2824 9 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 1020 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(4278) +calls=1 0 +* 22 +* 5 +cob=(2) +cfi=(18) +cfn=(4278) +calls=1 0 +* 22 +* 2 ++1 6 +cfi=(353) +cfn=(4286) +calls=1 244 +* 58722 +* 1 ++1 2 ++2 4 +cfi=(293) +cfn=(2888) operator new(unsigned long, void*) +calls=1 174 +* 8 +* 2 +cfi=(398) +cfn=(5318) UG::D2::multigrid::multigrid() +calls=1 1509 +* 153 ++13 3 +cfi=(342) +cfn=(5212) +calls=1 714 +* 935 +* 6 +cfi=(342) +cfn=(5284) +calls=1 333 +* 233 +* 3 +cfi=(342) +cfn=(5306) +calls=1 103 +* 35 ++3 1 ++1 5 + +fn=(8916) UG::D2::CreateSonNode(UG::D2::grid*, UG::D2::node*) +574 528024 ++4 264012 ++2 616028 +cfn=(5486) +calls=88004 474 +* 41892394 +* 88004 ++1 176008 ++2 264012 ++6 88004 ++1 176008 + +fn=(9044) UG::D2::PropagateNodeClasses(UG::D2::grid*) +6816 20 ++14 16 +cfn=(9046) +calls=4 -81 +* 181739576 +* 16 ++12 16 +cfn=(9046) +calls=4 -93 +* 98181176 +* 16 ++34 4 ++1 8 + +fl=(417) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridleveliterator.hh +fn=(8442) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::equals(Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) const +86 2779140 ++1 3242330 +cfi=(418) /home/joscha/software/dune/dune-grid/dune/grid/common/entity.hh +cfn=(8444) Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::operator==(Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity> const&) const +calls=463190 +85 +* 22696310 ++1 926380 + +fn=(8422) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLevelIterator(Dune::UGGrid<2> const&, int) +44 165 +cfi=(418) +cfn=(8400) Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::Entity() +calls=11 183 +* 363 ++2 44 +cfi=(418) +cfn=(8406) Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::impl() +calls=11 +32 +* 77 +* 11 ++2 88 ++1 22 ++3 55 +cfi=(350) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/ugwrapper.hh +cfn=(8424) Dune::UG_NS<2>::PFirstNode(UG::D2::grid const*) +calls=11 385 +* 88 +* 66 +cfi=(419) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridentity.hh +cfn=(8408) Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const>::setToTarget(UG::D2::node*, Dune::UGGrid<2> const*) +calls=11 174 +* 352 ++14 33 +cfi=(419) +cfn=(8426) Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const>::getTarget() const +calls=11 +95 +* 88 +* 55 +cfn=(8428) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::entityOK_() +calls=11 +29 +* 385 +* 66 ++2 55 + +fn=(6174) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::equals(Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) const +86 18116970 ++1 21136465 +cfi=(418) +cfn=(6176) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::operator==(Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity> const&) const +calls=3019495 351 +* 147955255 ++1 6038990 + +fn=(6160) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::entityOK_() +95 24155576 ++2 12077788 +cfi=(418) +cfn=(6136) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::impl() +calls=3019447 254 +* 21136129 +* 6038894 +cfi=(419) +cfn=(6162) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::partitionType() const +calls=3019447 631 +* 21136129 +* 3019447 ++3 3019447 ++21 15097235 + +fn=(8300) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::increment() +71 18116682 ++2 12077788 +cfi=(418) +cfn=(6136) +calls=3019447 254 +* 21136129 +* 3019447 ++1 9058341 +cfi=(419) +cfn=(8302) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::level() const +calls=3019447 623 +* 63408387 +* 12077788 +cfi=(419) +cfn=(6158) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::getTarget() const +calls=3019447 771 +* 24155576 +* 6038894 +cfi=(350) +cfn=(8304) Dune::UG_NS<2>::myLevel(UG::D2::element const*) +calls=3019447 503 +* 30194470 +* 6038894 ++3 15097235 +cfi=(419) +cfn=(6158) +calls=3019447 771 +* 24155576 +* 6038894 +cfi=(350) +cfn=(8306) Dune::UG_NS<2>::succ(UG::D2::element const*) +calls=3019447 671 +* 24155576 +* 18116682 +cfi=(240) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridentity.cc +cfn=(6138) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::setToTarget(UG::D2::element*, Dune::UGGrid<2> const*) +calls=3019447 +74 +* 96622298 ++2 9058338 +cfi=(419) +cfn=(6158) +calls=3019446 771 +* 24155568 +* 15097086 +cfn=(6160) +calls=3019398 +16 +* 105678930 +* 18116532 ++1 15097230 + +fn=(6154) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLevelIterator(Dune::UGGrid<2> const&, int) +44 735 +cfi=(418) +cfn=(6130) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::Entity() +calls=49 362 +* 1617 ++2 196 +cfi=(418) +cfn=(6136) +calls=49 254 +* 343 +* 49 ++2 392 ++1 98 ++10 245 +cfi=(350) +cfn=(6156) Dune::UG_NS<2>::PFirstElement(UG::D2::grid const*) +calls=49 413 +* 392 +* 294 +cfi=(240) +cfn=(6138) +calls=49 +92 +* 1568 ++7 147 +cfi=(419) +cfn=(6158) +calls=49 771 +* 392 +* 245 +cfn=(6160) +calls=49 +29 +* 1715 +* 294 ++2 245 + +fn=(8398) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLevelIterator() +38 121 +cfi=(418) +cfn=(8400) +calls=11 183 +* 363 ++2 44 +cfi=(418) +cfn=(8406) +calls=11 +38 +* 77 +* 44 +cfi=(419) +cfn=(8408) +calls=11 174 +* 352 ++1 33 + +fn=(6128) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLevelIterator() +38 539 +cfi=(418) +cfn=(6130) +calls=49 362 +* 1617 ++2 196 +cfi=(418) +cfn=(6136) +calls=49 254 +* 343 +* 196 +cfi=(240) +cfn=(6138) +calls=49 151 +* 1568 ++1 147 + +fn=(8428) +95 3705432 ++2 1852716 +cfi=(418) +cfn=(8406) +calls=463179 -19 +* 3242253 +* 926358 +cfi=(419) +cfn=(8430) Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const>::partitionType() const +calls=463179 +8 +* 3242253 +* 463179 ++3 463179 ++21 2315895 + +fn=(8450) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::dereference() const +83 3705432 + +fn=(6144) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLevelIterator(Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +22 4998 +cfi=(418) +cfn=(6146) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::Entity(Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity> const&) +calls=294 366 +* 4704 +* 882 + +fn=(6182) Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::dereference() const +83 24155576 + +fn=(8414) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLevelIterator(Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +22 1122 +cfi=(418) +cfn=(8416) Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::Entity(Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity> const&) +calls=66 187 +* 1056 +* 198 + +fn=(8458) Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::increment() +71 2779074 ++2 1852716 +cfi=(418) +cfn=(8406) +calls=463179 +5 +* 3242253 +* 463179 ++1 1389537 +cfi=(419) +cfn=(8460) Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const>::level() const +calls=463179 +23 +* 9726759 +* 1852716 +cfi=(419) +cfn=(8426) +calls=463179 +87 +* 3705432 +* 926358 +cfi=(350) +cfn=(8462) Dune::UG_NS<2>::myLevel(UG::D2::node const*) +calls=463179 508 +* 4631790 +* 926358 ++3 2315895 +cfi=(419) +cfn=(8426) +calls=463179 +84 +* 3705432 +* 926358 +cfi=(350) +cfn=(8464) Dune::UG_NS<2>::succ(UG::D2::node const*) +calls=463179 676 +* 3705432 +* 2779074 +cfi=(419) +cfn=(8408) +calls=463179 +97 +* 14821728 ++2 1389537 +cfi=(419) +cfn=(8426) +calls=463179 +82 +* 3705432 +* 2315862 +cfn=(8428) +calls=463168 +16 +* 16210880 +* 2779041 ++1 2315895 + +fl=(238) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridintersections.cc +fn=(2196) __static_initialization_and_destruction_0(int, int) +722 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(238) +722 3 + +fn=(2194) _GLOBAL__sub_I_uggridintersections.cc +722 6 +cfn=(2196) +calls=1 * +* 119 +* 2 + +fl=(391) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/boundaryextractor.hh +fn=(5172) Dune::UGGridBoundarySegment<2>::numVertices() const +33 3584 ++1 896 ++1 1792 + +fn=(5000) Dune::UGGridBoundarySegment<2>::operator<(Dune::UGGridBoundarySegment<2> const&) const +38 546310 ++7 218524 +cfi=(253) +cfn=(5002) std::array<int, 2ul>::operator[](unsigned long) const +calls=54631 189 +* 1311144 +* 273155 +cfi=(253) +cfn=(5002) +calls=54631 189 +* 1311144 +* 273155 ++1 155144 ++2 63380 +cfi=(253) +cfn=(5002) +calls=15845 189 +* 380280 +* 79225 +cfi=(253) +cfn=(4924) std::array<int, 2ul>::operator[](unsigned long) +calls=15845 185 +* 380280 +* 15845 ++1 63380 +cfi=(253) +cfn=(5002) +calls=15845 189 +* 380280 +* 79225 +cfi=(253) +cfn=(4924) +calls=15845 185 +* 380280 +* 15845 ++3 63380 +cfi=(253) +cfn=(5002) +calls=15845 189 +* 380280 +* 155144 +cfi=(253) +cfn=(5002) +calls=38786 189 +* 930864 +* 273155 +cfi=(253) +cfn=(5002) +calls=54631 189 +* 1311144 +* 273155 ++1 201588 ++2 16936 +cfi=(253) +cfn=(5002) +calls=4234 189 +* 101616 +* 21170 +cfi=(253) +cfn=(4924) +calls=4234 185 +* 101616 +* 4234 ++1 16936 +cfi=(253) +cfn=(5002) +calls=4234 189 +* 101616 +* 21170 +cfi=(253) +cfn=(4924) +calls=4234 185 +* 101616 +* 4234 ++7 21170 +cfi=(253) +cfn=(5004) bool std::operator< <int, 2ul>(std::array<int, 2ul> const&, std::array<int, 2ul> const&) +calls=4234 262 +* 1756095 +* 251985 +cfi=(253) +cfn=(5004) +calls=50397 262 +* 18003197 ++2 382417 + +fl=(398) +fn=(5318) +1509 9 +cfi=(399) +cfn=(5320) std::unordered_map<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::element*, int>, UG::D2::multigrid::FaceHasher, std::equal_to<UG::D2::multigrid::FaceNodes>, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > > >::unordered_map() +calls=1 141 +* 103 +* 4 +cfi=(342) +cfn=(5192) std::shared_ptr<PPIF::PPIFContext>::shared_ptr() +calls=1 127 +* 34 +* 3 + +fn=(8890) UG::D2::grid::ppifContext() const +2974 1740980 ++1 1392784 +cfn=(8862) +calls=348196 1612 +* 13579644 ++1 696392 + +fn=(5766) UG::D2::multigrid::FaceHasher::operator()(UG::D2::multigrid::FaceNodes const&) const +1584 73216 ++1 36608 +cfi=(253) +cfn=(5768) std::array<UG::D2::node*, 4ul>::end() const +calls=9152 138 +* 256256 +* 36608 +cfi=(253) +cfn=(5772) std::array<UG::D2::node*, 4ul>::begin() const +calls=9152 130 +* 247104 +* 45760 +cfi=(410) /usr/include/c++/9/bits/stl_numeric.h +cfn=(5774) int std::accumulate<UG::D2::node* const*, int, UG::D2::multigrid::FaceHasher::operator()(UG::D2::multigrid::FaceNodes const&) const::{lambda(auto:1, auto:2)#1}>(UG::D2::node* const*, UG::D2::node* const*, int, UG::D2::multigrid::FaceHasher::operator()(UG::D2::multigrid::FaceNodes const&) const::{lambda(auto:1, auto:2)#1}) +calls=9152 158 +* 1775488 ++3 9152 ++1 45760 + +fn=(5776) _ZZNK2UG2D29multigrid10FaceHasherclERKNS1_9FaceNodesEENKUlT_T0_E_clIiPNS0_4nodeEEEDaS6_S7_ +1586 256256 ++1 549120 +cfi=(411) /usr/include/c++/9/bits/functional_hash.h +cfn=(5778) std::hash<UG::D2::node*>::operator()(UG::D2::node*) const +calls=36608 109 +* 292864 ++1 73216 + +fn=(8862) +1612 1741000 ++1 1392800 +cfi=(343) +cfn=(8864) std::__shared_ptr_access<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2, false, false>::operator*() const +calls=348200 1005 +* 9749600 +* 696400 + +fl=(430) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridleafiterator.hh +fn=(8530) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::dereference() const +86 2785280 + +fn=(8550) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLeafIterator() +71 44 +cfi=(418) +cfn=(8400) +calls=4 183 +* 132 ++2 16 +cfi=(418) +cfn=(8406) +calls=4 +5 +* 28 +* 16 +cfi=(419) +cfn=(8408) +calls=4 174 +* 128 ++1 12 + +fn=(8568) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::isInPartition() +117 704032 ++2 352016 +cfi=(418) +cfn=(8406) +calls=88004 -41 +* 616028 +* 176008 +cfi=(419) +cfn=(8430) +calls=88004 -14 +* 616028 +* 88004 ++3 88004 ++21 440020 + +fn=(8514) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::isInPartition() +117 2785280 ++2 1392640 +cfi=(418) +cfn=(6136) +calls=348160 254 +* 2437120 +* 696320 +cfi=(419) +cfn=(6162) +calls=348160 631 +* 2437120 +* 348160 ++3 348160 ++21 1740800 + +fn=(8564) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::isLeaf(UG::D2::node const*) +105 698172 ++3 465448 ++1 56716 ++2 264012 +cfi=(350) +cfn=(8566) Dune::UG_NS<2>::isLeaf(UG::D2::node const*) +calls=88004 708 +* 704032 +* 88004 ++1 232724 + +fn=(8584) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::dereference() const +86 704032 + +fn=(8500) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLeafIterator(Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +18 816 +cfi=(418) +cfn=(6146) +calls=48 366 +* 768 +* 144 + +fn=(8562) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::isLeaf() +148 581810 ++2 465448 +cfi=(418) +cfn=(8406) +calls=116362 -72 +* 814534 +* 232724 +cfi=(419) +cfn=(8426) +calls=116362 +11 +* 930896 +* 581810 +cfn=(8564) +calls=116362 -45 +* 2509108 ++1 232724 + +fn=(8536) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::increment() +77 1740830 ++3 1044498 +cfn=(8538) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::globalIncrement() +calls=348166 +74 +* 45609978 +* 331758 +cfn=(8538) +calls=110586 +74 +* 14487822 ++2 1835008 +cfi=(418) +cfn=(6136) +calls=458752 254 +* 3211264 +* 917504 +cfi=(419) +cfn=(6158) +calls=458752 771 +* 3670016 +* 2293736 +cfn=(8510) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::isLeaf() +calls=458744 +66 +* 29359616 +* 2420706 +cfn=(8514) +calls=348158 +35 +* 12185530 +* 2531316 +-3 110586 ++4 1044498 + +fn=(8560) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLeafIterator(Dune::UGGrid<2> const&) +32 68 +cfi=(418) +cfn=(8400) +calls=4 183 +* 132 ++2 12 ++5 16 +cfi=(418) +cfn=(8406) +calls=4 +39 +* 28 +* 4 ++4 52 +cfi=(350) +cfn=(8424) +calls=4 385 +* 32 +* 24 +cfi=(419) +cfn=(8408) +calls=4 174 +* 128 ++1 12 +cfi=(419) +cfn=(8426) +calls=4 161 +* 32 +* 20 ++21 12 +cfi=(419) +cfn=(8426) +calls=4 +96 +* 32 +* 20 +cfn=(8562) +calls=4 +83 +* 198 +* 15 +cfn=(8568) +calls=1 +52 +* 35 +* 18 ++1 9 +cfn=(8590) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::increment() +calls=3 +11 +* 6097669 ++1 32 + +fn=(8590) +77 440035 ++3 264021 +cfn=(8592) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::globalIncrement() +calls=88007 +74 +* 11529033 +* 85065 +cfn=(8592) +calls=28355 +74 +* 3715033 ++2 465448 +cfi=(418) +cfn=(8406) +calls=116362 -4 +* 814534 +* 232724 +cfi=(419) +cfn=(8426) +calls=116362 +79 +* 930896 +* 581798 +cfn=(8562) +calls=116358 +66 +* 6348856 +* 613083 +cfn=(8568) +calls=88003 +35 +* 3080105 +* 641450 +-3 28355 ++4 264021 + +fn=(8496) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLeafIterator() +71 88 +cfi=(418) +cfn=(6130) +calls=8 362 +* 264 ++2 32 +cfi=(418) +cfn=(6136) +calls=8 254 +* 56 +* 32 +cfi=(240) +cfn=(6138) +calls=8 +78 +* 256 ++1 24 + +fn=(8510) +148 2293760 ++2 1835008 +cfi=(418) +cfn=(6136) +calls=458752 254 +* 3211264 +* 917504 +cfi=(419) +cfn=(6158) +calls=458752 771 +* 3670016 +* 2293760 +cfn=(8512) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::isLeaf(UG::D2::element const*) +calls=458752 -53 +* 14221312 ++1 917504 + +fn=(8512) +97 2752512 ++2 1376256 +cfi=(350) +cfn=(8476) Dune::UG_NS<2>::isLeaf(UG::D2::element const*) +calls=458752 699 +* 9175040 ++1 917504 + +fn=(8508) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLeafIterator(Dune::UGGrid<2> const&) +32 112 +cfi=(418) +cfn=(6130) +calls=8 362 +* 264 ++2 24 ++5 32 +cfi=(418) +cfn=(6136) +calls=8 254 +* 56 +* 8 ++15 104 +cfi=(350) +cfn=(6156) +calls=8 413 +* 64 +* 48 +cfi=(240) +cfn=(6138) +calls=8 +97 +* 256 ++1 24 +cfi=(419) +cfn=(6158) +calls=8 771 +* 64 +* 40 ++10 24 +cfi=(419) +cfn=(6158) +calls=8 771 +* 64 +* 40 +cfn=(8510) +calls=8 +83 +* 512 +* 30 +cfn=(8514) +calls=2 +52 +* 70 +* 36 ++1 18 +cfn=(8536) +calls=6 +11 +* 25658682 ++1 40 + +fn=(8526) Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::equals(Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) const +89 2089008 ++1 2437176 +cfi=(418) +cfn=(6176) +calls=348168 351 +* 17060232 ++1 696336 + +fn=(8538) +154 4128768 ++1 1835008 +cfi=(418) +cfn=(6136) +calls=458752 +99 +* 3211264 +* 458752 ++3 1376256 +cfi=(419) +cfn=(8302) +calls=458752 623 +* 9633792 +* 458752 ++3 2293760 +cfi=(419) +cfn=(6158) +calls=458752 771 +* 3670016 +* 917504 +cfi=(350) +cfn=(8306) +calls=458752 671 +* 3670016 +* 2752512 +cfi=(240) +cfn=(6138) +calls=458752 -10 +* 14680064 ++3 1376256 +cfi=(419) +cfn=(6158) +calls=458752 771 +* 3670016 +* 917584 +cfi=(239) +cfn=(5958) Dune::UGGrid<2>::maxLevel() const +calls=20 +6 +* 460 +* 1376308 ++12 144 +cfi=(350) +cfn=(6156) +calls=12 413 +* 96 +* 72 +cfi=(240) +cfn=(6138) +calls=12 -25 +* 384 ++9 3670016 + +fn=(8554) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::UGGridLeafIterator(Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +18 408 +cfi=(418) +cfn=(8416) +calls=24 187 +* 384 +* 72 + +fn=(8592) +154 1047258 ++1 465448 +cfi=(418) +cfn=(8406) +calls=116362 -77 +* 814534 +* 116362 ++3 349086 +cfi=(419) +cfn=(8460) +calls=116362 -61 +* 2443602 +* 116362 ++3 581810 +cfi=(419) +cfn=(8426) +calls=116362 * +* 930896 +* 232724 +cfi=(350) +cfn=(8464) +calls=116362 676 +* 930896 +* 698172 +cfi=(419) +cfn=(8408) +calls=116362 +13 +* 3723584 ++3 349086 +cfi=(419) +cfn=(8426) +calls=116362 -3 +* 930896 +* 232764 +cfi=(239) +cfn=(5958) +calls=10 +6 +* 230 +* 349112 ++5 72 +cfi=(350) +cfn=(8424) +calls=6 385 +* 48 +* 36 +cfi=(419) +cfn=(8408) +calls=6 +5 +* 192 ++16 930896 + +fn=(8580) Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const>::equals(Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) const +89 528048 ++1 616056 +cfi=(418) +cfn=(8444) +calls=88008 +82 +* 4312392 ++1 176016 + +fl=(358) +fn=(4482) UG::UserWriteF(char const*, ...) +269 15 ++5 6 ++2 6 +cob=(2) +cfi=(18) +cfn=(4484) +calls=1 0 +* 1083 +* 1 ++1 2 ++2 3 ++3 3 ++19 1 ++1 5 + +fn=(4432) +226 35 ++1 21 ++2 21 ++13 21 + +fn=(4308) UG::InitDevices() +462 6 ++1 2 ++1 4 + +fl=(369) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/evalproc.cc +fn=(4426) UG::D3::InitEvalProc() +116 3 ++2 2 +cfi=(353) +cfn=(4276) +calls=1 +2 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 355 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 -12 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 373 +* 4 ++7 2 +cfi=(353) +cfn=(4276) +calls=1 -25 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 +93 +* 355 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++2 1 ++1 2 + +fn=(4342) UG::D2::InitEvalProc() +116 3 ++2 2 +cfi=(353) +cfn=(4276) +calls=1 +2 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 368 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 -12 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 361 +* 4 ++7 2 +cfi=(353) +cfn=(4276) +calls=1 -25 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 +93 +* 361 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++2 1 ++1 2 + +fl=(434) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/mgheapmgr.cc +fn=(8840) UG::D2::DisposeBottomHeapTmpMemory(UG::D2::multigrid*) +87 20 ++2 12 +cfi=(365) +cfn=(8842) +calls=4 4089 +* 120 +* 16 ++1 12 +cfi=(364) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/algebra.cc +cfn=(8846) UG::D2::DisposeConnectionsFromMultiGrid(UG::D2::multigrid*) +calls=4 1018 +* 30048598 +* 16 ++1 4 ++1 8 + +fl=(364) +fn=(5920) UG::D2::GridCreateConnection(UG::D2::grid*) +2073 128 ++9 80 ++4 32 ++9 1859664 ++2 5578752 ++25 17666048 +-27 3719168 ++60 1859664 ++2 15806464 ++1 4648960 +cfn=(5922) UG::D2::CreateConnectionsInNeighborhood(UG::D2::grid*, UG::D2::element*) +calls=929792 1960 +* 166432768 +* 3719168 +-2 2789376 +-1 929792 ++6 16 ++1 80 + +fn=(5938) UG::D2::SetSurfaceClasses(UG::D2::multigrid*) +2195 25 ++5 15 ++1 10 ++1 28 ++1 12 +cfn=(9054) UG::D2::ClearVectorClasses(UG::D2::grid*) +calls=4 3326 +* 48 ++1 1392660 ++3 2088960 +cfi=(365) +cfn=(9056) +calls=696320 6617 +* 89128960 +* 2785280 ++1 3481600 +cfn=(9058) UG::D2::SeedVectorClasses(UG::D2::grid*, UG::D2::element*) +calls=696320 3281 +* 22978560 +-3 2088960 +-1 696320 ++6 12 +cfn=(9060) UG::D2::PropagateVectorClasses(UG::D2::grid*) +calls=4 3436 +* 200 ++1 12 ++1 12 +cfn=(9064) UG::D2::ClearNextVectorClasses(UG::D2::grid*) +calls=4 3511 +* 48 ++1 16404 ++3 24576 +cfi=(365) +cfn=(9066) +calls=8192 6645 +* 1048576 +* 32768 ++1 40960 +cfn=(9068) UG::D2::SeedNextVectorClasses(UG::D2::grid*, UG::D2::element*) +calls=8192 3539 +* 270336 +-3 24576 +-1 8192 ++6 12 +cfn=(9070) UG::D2::PropagateNextVectorClasses(UG::D2::grid*) +calls=4 3669 +* 200 ++2 27 ++2 36 ++1 18 +cfn=(9054) +calls=6 3326 +* 72 ++1 18 +cfn=(9064) +calls=6 3511 +* 72 ++1 442398 ++2 663552 +cfi=(365) +cfn=(9056) +calls=221184 6617 +* 28311552 +* 884736 ++1 1105920 +cfn=(9058) +calls=221184 3281 +* 7299072 ++1 663552 +cfi=(365) +cfn=(9066) +calls=221184 6645 +* 28311552 +* 884736 ++1 1105920 +cfn=(9068) +calls=221184 3539 +* 7299072 +-4 663552 +-1 221184 ++7 18 +cfn=(9060) +calls=6 3436 +* 300 ++1 18 +cfn=(9070) +calls=6 3669 +* 300 +-13 12 ++16 15 ++1 95 ++2 90 ++1 75 +-3 30 ++14 15 ++2 5 ++1 10 + +fn=(8846) +1018 20 ++3 60 ++2 60 ++4 60 ++1 458802 ++2 1146880 +cfn=(8848) UG::D2::DisposeConnectionsInNeighborhood(UG::D2::grid*, UG::D2::element*) +calls=229376 -19 +* 26607616 +* 917504 +-1 688128 +-1 229376 ++5 60 +-12 20 ++19 4 ++1 8 + +fn=(8854) DisposeConnectionFromElementInNeighborhood(UG::D2::grid*, UG::D2::element*, int) +987 1605632 ++3 458752 ++2 458752 ++3 1146880 +cfn=(8856) UG::D2::DisposeConnectionFromElement(UG::D2::grid*, UG::D2::element*) +calls=229376 -75 +* 7569408 +* 917504 ++2 6651904 ++3 458752 ++7 229376 ++1 458752 + +fn=(8856) +920 2064384 ++5 1376256 ++20 1376256 ++9 1376256 ++10 229376 ++1 1146880 + +fn=(9058) +3281 8257536 ++5 5505024 ++12 5505024 ++5 5505024 ++5 917504 ++1 4587520 + +fn=(4414) UG::D3::InitAlgebra() +4189 4 ++4 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 365 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 363 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 3 +cfn=(4416) UG::D3::CreateAlgebraicDependency(char const*, int (*)(UG::D3::grid*, char const*)) +calls=1 3811 +* 1127 +* 4 ++1 3 +cfn=(4416) +calls=1 3811 +* 1128 +* 4 ++3 3 +cfn=(4418) UG::D3::CreateFindCutProc(char const*, UG::D3::vector* (*)(UG::D3::grid*, UG::D3::vector*, int*)) +calls=1 3783 +* 1080 +* 4 ++2 11 ++1 30 ++2 6 ++1 6 ++1 6 ++1 6 +-6 8 ++10 1 ++1 2 + +fn=(9060) +3436 50 ++14 40 +cfn=(9062) PropagateVectorClass(UG::D2::grid*, int) +calls=10 -74 +* 130 +* 40 ++11 40 +cfn=(9062) +calls=10 -85 +* 130 +* 40 ++30 10 ++1 20 + +fn=(5926) ConnectWithNeighborhood(UG::D2::element*, UG::D2::grid*, UG::D2::element*, int*, int*, int, int) +1921 9297920 ++4 1859584 ++3 1859584 ++1 9297920 +cfn=(5928) ElementElementCreateConnection(UG::D2::grid*, UG::D2::element*, UG::D2::element*, int, int*, int*) +calls=929792 1768 +* 69734400 ++1 1859584 +-1 1859584 ++5 2789376 ++6 929792 ++1 1859584 + +fn=(9054) +3326 40 ++4 50 ++3 10 ++1 20 + +fn=(5930) UG::D2::GetAllVectorsOfElement(UG::D2::grid*, UG::D2::element*, UG::D2::vector**) +1658 9297920 ++4 929792 ++1 5578752 ++6 5578752 ++6 5578752 ++15 929792 ++1 4648960 + +fn=(8848) +1011 1376256 ++2 1835008 +cob=(2) +cfi=(18) +cfn=(8850) +calls=229376 0 +* 1146880 +* 458752 ++1 1376256 +cfn=(8854) +calls=229376 -27 +* 19955712 ++1 458752 + +fn=(8880) UG::D2::PrepareAlgebraModification(UG::D2::multigrid*) +2487 16 ++6 12 ++1 46 ++2 458842 ++2 1376256 ++1 3899392 +-3 917504 ++5 90 ++2 90 +-9 20 ++17 4 ++1 8 + +fn=(9062) +3376 100 ++6 100 ++12 20 ++1 40 + +fn=(9064) +3511 40 ++4 50 ++5 10 ++1 20 + +fn=(9072) PropagateNextVectorClass(UG::D2::grid*, int) +3611 100 ++6 100 ++12 20 ++1 40 + +fn=(4328) UG::D2::CreateAlgebraicDependency(char const*, int (*)(UG::D2::grid*, char const*)) +3811 12 ++3 4 +cfi=(353) +cfn=(4276) +calls=2 120 +* 1484 +* 8 ++5 12 +cfi=(353) +cfn=(4286) +calls=2 244 +* 716 +* 2 ++1 4 ++2 6 ++2 2 ++1 4 + +fn=(4330) UG::D2::CreateFindCutProc(char const*, UG::D2::vector* (*)(UG::D2::grid*, UG::D2::vector*, int*)) +3783 6 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 696 +* 4 ++5 6 +cfi=(353) +cfn=(4286) +calls=1 244 +* 354 +* 1 ++1 2 ++2 3 ++2 1 ++1 2 + +fn=(5924) ResetUsedFlagInNeighborhood(UG::D2::element*, int, int) +1903 6508544 ++4 1859584 ++3 7438336 ++3 2789376 ++4 929792 ++1 1859584 + +fn=(5928) +1768 12087296 ++5 5578752 +cfn=(5930) +calls=929792 1658 +* 32542720 +* 929792 ++1 2789376 ++2 3719168 ++23 5578752 ++5 1859584 ++29 4648960 + +fn=(9068) +3539 2064384 ++5 1376256 ++12 1376256 ++5 1376256 ++5 229376 ++1 1146880 + +fn=(4326) UG::D2::InitAlgebra() +4189 4 ++4 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 365 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 363 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 3 +cfn=(4328) +calls=1 3811 +* 1123 +* 4 ++1 3 +cfn=(4328) +calls=1 3811 +* 1131 +* 4 ++3 3 +cfn=(4330) +calls=1 3783 +* 1077 +* 4 ++2 11 ++1 30 ++2 6 ++1 6 ++1 6 ++1 6 +-6 8 ++10 1 ++1 2 + +fn=(5916) UG::D2::CreateAlgebra(UG::D2::multigrid*) +2272 40 ++16 20 ++1 9 ++1 6 ++2 4 ++3 4 ++3 2183 ++2 4356 ++9 4356 +-11 4356 ++25 4101 ++2 59392 ++3 8192 ++8 8192 +-13 8192 +-34 2 +2409 2 ++3 3 +cfn=(5918) UG::D2::MGCreateConnection(UG::D2::multigrid*) +calls=1 +54 +* 567368 +* 4 ++5 20 +cfi=(399) +cfn=(5932) std::unordered_map<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::element*, int>, UG::D2::multigrid::FaceHasher, std::equal_to<UG::D2::multigrid::FaceNodes>, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > > >::clear() +calls=5 842 +* 85347 ++16 15 +cfn=(5918) +calls=5 +33 +* 256985998 ++13 15 +cfn=(5938) +calls=5 2195 +* 203966346 ++2 5 ++1 25 + +fn=(9070) +3669 50 ++12 40 +cfn=(9072) +calls=10 -70 +* 130 +* 40 ++10 40 +cfn=(9072) +calls=10 -80 +* 130 +* 40 ++29 10 ++1 20 + +fn=(4416) +3811 12 ++3 4 +cfi=(353) +cfn=(4276) +calls=2 120 +* 1492 +* 8 ++5 12 +cfi=(353) +cfn=(4286) +calls=2 244 +* 709 +* 2 ++1 4 ++2 6 ++2 2 ++1 4 + +fn=(4418) +3783 6 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 692 +* 4 ++5 6 +cfi=(353) +cfn=(4286) +calls=1 244 +* 361 +* 1 ++1 2 ++2 3 ++2 1 ++1 2 + +fn=(5918) +2466 30 ++5 24 ++3 94 ++2 96 ++1 1859664 ++1 26963968 +-1 3719168 ++2 48 +cfn=(5920) +calls=16 2073 +* 225010160 +* 64 +-5 32 ++8 6 ++1 12 + +fn=(5922) +1960 5578752 ++7 3719168 ++1 2789376 ++1 2789376 ++1 2789376 ++3 4648960 +cfn=(5924) +calls=929792 -70 +* 21385216 +* 3719168 ++4 10227712 +cfn=(5926) +calls=929792 -56 +* 101347328 +* 929792 ++1 1859584 +-1 1859584 ++4 929792 ++1 1859584 + +fl=(396) /usr/include/c++/9/ext/atomicity.h +fn=(5310) __gnu_cxx::__atomic_add_dispatch(int*, int) +93 15 ++2 3 +cfi=(397) /usr/include/x86_64-linux-gnu/c++/9/bits/gthr-default.h +cfn=(5312) __gthread_active_p() +calls=3 249 +* 27 +* 12 ++1 15 +cfn=(5314) __gnu_cxx::__atomic_add(int volatile*, int) +calls=3 -43 +* 30 ++6 12 + +fn=(5314) +53 30 + +fn=(5338) __gnu_cxx::__exchange_and_add_dispatch(int*, int) +79 20 ++2 4 +cfi=(397) +cfn=(5312) +calls=4 249 +* 36 +* 16 ++1 20 +cfn=(5340) __gnu_cxx::__exchange_and_add(int volatile*, int) +calls=4 -33 +* 40 +* 4 ++6 8 + +fn=(5340) +49 40 + +fl=(363) +fn=(4412) UG::D3::InitEnrol() +520 3 ++2 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 375 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++2 1 ++1 2 + +fn=(4530) UG::D2::CreateFormat(char*, int, int, int (*)(void*, char const*, char*), int (*)(void*, char const*, char*), int (*)(void*, char const*, char*), int (*)(int, void*, char const*, char*), int (*)(int, void*, char const*, char*), int, UG::D2::VectorDescriptor*, int, UG::D2::MatrixDescriptor*, short*, int (*) [4], int, int) +201 10 ++6 2 +cfi=(353) +cfn=(4276) +calls=1 -87 +* 1068 +* 4 ++4 6 +cfi=(353) +cfn=(4286) +calls=1 +33 +* 526 +* 1 ++1 2 ++3 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++1 3 ++2 3 ++1 3 ++3 11 ++2 20 +-2 8 ++4 43 ++2 100 ++1 100 +-3 40 ++5 153 ++1 450 +-1 150 ++2 3 ++3 4 ++15 11 ++1 60 +-1 8 ++2 11 ++1 44 ++2 448 ++1 272 ++1 272 +-4 32 +-1 8 ++9 4 ++52 3 ++1 3 ++3 39 ++1 2 ++1 1 ++1 11 ++1 44 ++1 176 +-1 32 +-1 8 ++8 3 ++2 3 +cfi=(353) +cfn=(4276) +calls=1 120 +* 938 +* 4 ++1 2 +cfi=(358) +cfn=(4432) +calls=1 226 +* 14 +* 3 +cfi=(358) +cfn=(4432) +calls=1 226 +* 14 +* 2 +cfi=(358) +cfn=(4432) +calls=1 226 +* 14 ++2 1 ++1 2 + +fn=(4522) +400 10 ++1 12 +cfi=(353) +cfn=(4524) +calls=2 563 +* 2235 ++1 4 + +fn=(4324) UG::D2::InitEnrol() +520 3 ++2 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 204 +* 4 ++5 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 361 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++2 1 ++1 2 + +fl=(253) +fn=(4150) +134 20 ++1 12 +cfn=(4152) std::array<unsigned int, 2ul>::data() +calls=4 +99 +* 68 +* 12 + +fn=(5676) std::array<UG::D2::node*, 4ul>::data() +234 61440 ++1 36864 +cfn=(5678) std::__array_traits<UG::D2::node*, 4ul>::_S_ptr(UG::D2::node* const (&) [4]) +calls=12288 59 +* 86016 +* 24576 + +fn=(5678) +59 194560 ++1 145920 + +fn=(6564) std::array<Dune::FieldVector<double, 2>, 2ul>::array() +94 144 + +fn=(7010) std::array<unsigned int, 3ul>::end() +134 30 ++1 18 +cfn=(7012) std::array<unsigned int, 3ul>::data() +calls=6 +99 +* 102 +* 18 + +fn=(7990) std::array<Dune::FieldVector<double, 0>, 1ul>::array() +94 28 + +fn=(8038) std::array<Dune::FieldVector<double, 1>, 2ul>::array() +94 140 + +fn=(5670) +185 147456 ++1 122880 +cfn=(5672) std::__array_traits<UG::D2::node*, 4ul>::_S_ref(UG::D2::node* const (&) [4], unsigned long) +calls=24576 55 +* 270336 +* 49152 + +fn=(5674) +126 61440 ++1 36864 +cfn=(5676) +calls=12288 234 +* 208896 +* 24576 + +fn=(5770) std::array<UG::D2::node*, 4ul>::data() const +238 181760 ++1 109056 +cfn=(5678) +calls=36352 59 +* 254464 +* 72704 + +fn=(6956) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 1>, 2ul>::array() +94 20 +cfi=(423) /home/joscha/software/dune/dune-geometry/dune/geometry/referenceelements.hh +cfn=(6958) Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 1>::ConstructibleDeprecatedReferenceElement() +calls=2 -35 +* 62 +* 12 + +fn=(4586) std::__array_traits<unsigned int, 2ul>::_S_ref(unsigned int const (&) [2], unsigned long) +55 95865 ++1 115038 + +fn=(4594) +189 13152 ++1 10960 +cfn=(4586) +calls=2192 55 +* 24112 +* 4384 + +fn=(4924) +185 314676 ++1 262230 +cfn=(4926) std::__array_traits<int, 2ul>::_S_ref(int const (&) [2], unsigned long) +calls=52446 55 +* 576906 +* 104892 + +fn=(5012) std::array<int, 2ul>::begin() const +130 546310 ++1 327786 +cfn=(5008) std::array<int, 2ul>::data() const +calls=109262 238 +* 1857454 +* 218524 + +fn=(5672) +55 122880 ++1 147456 + +fn=(5768) +138 75840 ++1 45504 +cfn=(5770) +calls=15168 +99 +* 257856 +* 45504 + +fn=(6618) std::array<Dune::FieldVector<double, 2>, 2ul>::operator[](unsigned long) +185 192 ++1 160 +cfn=(6620) std::__array_traits<Dune::FieldVector<double, 2>, 2ul>::_S_ref(Dune::FieldVector<double, 2> const (&) [2], unsigned long) +calls=32 55 +* 384 +* 64 + +fn=(6894) std::array<Dune::Geo::ReferenceElementImplementation<double, 1>, 2ul>::array() +94 21 +cfi=(424) /home/joscha/software/dune/dune-geometry/dune/geometry/referenceelementimplementation.hh +cfn=(6896) Dune::Geo::ReferenceElementImplementation<double, 1>::ReferenceElementImplementation() +calls=2 416 +* 1194 +* 13 + +fn=(7008) std::array<std::bitset<2ul>, 2ul>::array() +94 60 + +fn=(7016) std::array<unsigned int, 3ul>::begin() +126 30 ++1 18 +cfn=(7012) +calls=6 234 +* 102 +* 12 + +fn=(7622) std::array<std::bitset<1ul>, 1ul>::array() +94 9 + +fn=(7732) std::array<double, 0ul>::data() +234 20 ++1 12 +cfn=(7734) std::__array_traits<double, 0ul>::_S_ptr(std::__array_traits<double, 0ul>::_Type const&) +calls=4 75 +* 28 +* 8 + +fn=(8060) std::__array_traits<Dune::FieldVector<double, 1>, 2ul>::_S_ref(Dune::FieldVector<double, 1> const (&) [2], unsigned long) +55 280 ++1 336 + +fn=(4582) std::array<unsigned int, 2ul>::size() const +175 21 + +fn=(4138) std::array<double, 2ul>::data() +234 11550 ++1 6930 +cfn=(4140) std::__array_traits<double, 2ul>::_S_ptr(double const (&) [2]) +calls=2310 59 +* 16170 +* 4620 + +fn=(4142) std::array<double, 2ul>::begin() +126 5775 ++1 3465 +cfn=(4138) +calls=1155 234 +* 19635 +* 2310 + +fn=(5002) +189 1560540 ++1 1300450 +cfn=(4926) +calls=260090 55 +* 2860990 +* 520180 + +fn=(6774) std::array<Dune::FieldVector<double, 2>, 1ul>::array() +94 220 + +fn=(7054) std::array<std::bitset<2ul>, 2ul>::operator[](unsigned long) +185 132 ++1 110 +cfn=(7056) std::__array_traits<std::bitset<2ul>, 2ul>::_S_ref(std::bitset<2ul> const (&) [2], unsigned long) +calls=22 55 +* 242 +* 44 + +fn=(7978) std::__array_traits<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 0>, 1ul>::_S_ref(Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 0> const (&) [1], unsigned long) +55 95 ++1 114 + +fn=(8024) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 1>, 2ul>::operator[](unsigned long) +185 12 ++1 10 +cfn=(8026) std::__array_traits<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 1>, 2ul>::_S_ref(Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 1> const (&) [2], unsigned long) +calls=2 55 +* 22 +* 4 + +fn=(4598) std::array<double, 2ul>::operator[](unsigned long) const +189 40500 ++1 33750 +cfn=(2256) std::__array_traits<double, 2ul>::_S_ref(double const (&) [2], unsigned long) +calls=6750 55 +* 74250 +* 13500 + +fn=(6282) std::__array_traits<Dune::Geo::ReferenceElementImplementation<double, 2>, 4ul>::_S_ref(Dune::Geo::ReferenceElementImplementation<double, 2> const (&) [4], unsigned long) +55 40 ++1 72 + +fn=(6368) std::array<unsigned int, 4ul>::operator[](unsigned long) +185 1740 ++1 1450 +cfn=(6370) std::__array_traits<unsigned int, 4ul>::_S_ref(unsigned int const (&) [4], unsigned long) +calls=290 55 +* 3190 +* 580 + +fn=(6390) std::array<std::bitset<4ul>, 3ul>::operator[](unsigned long) +185 1104 ++1 920 +cfn=(6392) std::__array_traits<std::bitset<4ul>, 3ul>::_S_ref(std::bitset<4ul> const (&) [3], unsigned long) +calls=184 55 +* 2024 +* 368 + +fn=(6820) std::array<Dune::FieldVector<double, 2>, 1ul>::operator[](unsigned long) +185 144 ++1 120 +cfn=(6822) std::__array_traits<Dune::FieldVector<double, 2>, 1ul>::_S_ref(Dune::FieldVector<double, 2> const (&) [1], unsigned long) +calls=24 55 +* 288 +* 48 + +fn=(7056) +55 110 ++1 132 + +fn=(7570) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 0>, 1ul>::array() +94 16 +cfi=(423) +cfn=(7572) Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 0>::ConstructibleDeprecatedReferenceElement() +calls=1 -35 +* 31 +* 9 + +fn=(7984) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 0>, 1ul>::operator[](unsigned long) const +189 108 ++1 90 +cfn=(7978) +calls=18 55 +* 198 +* 36 + +fn=(8048) std::array<Dune::FieldVector<double, 2>, 1ul>::operator[](unsigned long) const +189 504 ++1 420 +cfn=(6822) +calls=84 55 +* 1008 +* 168 + +fn=(8276) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 2>, 4ul>::operator[](unsigned long) +185 24 ++1 20 +cfn=(8278) std::__array_traits<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 2>, 4ul>::_S_ref(Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 2> const (&) [4], unsigned long) +calls=4 55 +* 44 +* 8 + +fn=(5862) bool std::operator==<UG::D2::node*, 4ul>(std::array<UG::D2::node*, 4ul> const&, std::array<UG::D2::node*, 4ul> const&) +252 48128 ++1 18048 +cfn=(5772) +calls=6016 130 +* 162432 +* 24064 +cfn=(5768) +calls=6016 138 +* 168448 +* 24064 +cfn=(5772) +calls=6016 130 +* 162432 +* 24064 +cfi=(265) +cfn=(5864) bool std::equal<UG::D2::node* const*, UG::D2::node* const*>(UG::D2::node* const*, UG::D2::node* const*, UG::D2::node* const*) +calls=6016 1059 +* 673792 +* 30080 + +fn=(6334) std::array<unsigned int, 4ul>::data() +234 320 ++1 192 +cfn=(6336) std::__array_traits<unsigned int, 4ul>::_S_ptr(unsigned int const (&) [4]) +calls=64 59 +* 448 +* 128 + +fn=(6336) +59 256 ++1 192 + +fn=(6370) +55 266595010 ++1 319914012 + +fn=(6392) +55 920 ++1 1104 + +fn=(6684) std::array<Dune::FieldVector<double, 2>, 2ul>::operator[](unsigned long) const +189 192 ++1 160 +cfn=(6620) +calls=32 55 +* 384 +* 64 + +fn=(6964) std::array<Dune::Geo::ReferenceElementImplementation<double, 1>, 2ul>::operator[](unsigned long) +185 24 ++1 20 +cfn=(6966) std::__array_traits<Dune::Geo::ReferenceElementImplementation<double, 1>, 2ul>::_S_ref(Dune::Geo::ReferenceElementImplementation<double, 1> const (&) [2], unsigned long) +calls=4 55 +* 64 +* 8 + +fn=(6966) +55 20 ++1 44 + +fn=(7052) std::array<unsigned int, 3ul>::operator[](unsigned long) const +189 612 ++1 510 +cfn=(7044) std::__array_traits<unsigned int, 3ul>::_S_ref(unsigned int const (&) [3], unsigned long) +calls=102 55 +* 1122 +* 204 + +fn=(2254) std::array<double, 2ul>::operator[](unsigned long) +185 25374 ++1 21145 +cfn=(2256) +calls=4229 55 +* 46519 +* 8458 + +fn=(5004) +262 491679 ++2 163893 +cfn=(5006) std::array<int, 2ul>::end() const +calls=54631 138 +* 1529668 +* 218524 +cfn=(5012) +calls=54631 130 +* 1475037 +* 218524 +cfn=(5006) +calls=54631 138 +* 1529668 +* 218524 +cfn=(5012) +calls=54631 130 +* 1475037 +* 273155 +cfi=(265) +cfn=(5014) bool std::lexicographical_compare<int const*, int const*>(int const*, int const*, int const*, int const*) +calls=54631 1241 +* 11837797 ++2 327786 + +fn=(6332) std::array<unsigned int, 4ul>::end() +134 160 ++1 96 +cfn=(6334) +calls=32 +99 +* 544 +* 96 + +fn=(6620) +55 320 ++1 448 + +fn=(7654) std::array<std::bitset<1ul>, 1ul>::operator[](unsigned long) +185 12 ++1 10 +cfn=(7656) std::__array_traits<std::bitset<1ul>, 1ul>::_S_ref(std::bitset<1ul> const (&) [1], unsigned long) +calls=2 55 +* 22 +* 4 + +fn=(7736) std::array<double, 0ul>::begin() +126 10 ++1 6 +cfn=(7732) +calls=2 234 +* 34 +* 4 + +fn=(8058) std::array<Dune::FieldVector<double, 1>, 2ul>::operator[](unsigned long) +185 336 ++1 280 +cfn=(8060) +calls=56 55 +* 616 +* 112 + +fn=(8242) std::array<Dune::FieldVector<double, 0>, 2ul>::array() +94 98 + +fn=(8284) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 2>, 4ul>::operator[](unsigned long) const +189 53317854 ++1 44431545 +cfn=(8278) +calls=8886309 55 +* 97749399 +* 17772618 + +fn=(4584) +185 101886 ++1 84905 +cfn=(4586) +calls=16981 55 +* 186791 +* 33962 + +fn=(2256) +55 54895 ++1 65874 + +fn=(2264) std::array<double, 3ul>::operator[](unsigned long) +185 738 ++1 615 +cfn=(2266) std::__array_traits<double, 3ul>::_S_ref(double const (&) [3], unsigned long) +calls=123 55 +* 1353 +* 246 + +fn=(4156) +126 20 ++1 12 +cfn=(4152) +calls=4 234 +* 68 +* 8 + +fn=(5008) +238 1092620 ++1 655572 +cfn=(5010) std::__array_traits<int, 2ul>::_S_ptr(int const (&) [2]) +calls=218524 59 +* 1529668 +* 437048 + +fn=(5010) +59 874096 ++1 655572 + +fn=(5772) +130 105920 ++1 63552 +cfn=(5770) +calls=21184 238 +* 360128 +* 42368 + +fn=(6206) std::array<Dune::Geo::ReferenceElementImplementation<double, 2>, 4ul>::array() +94 29 +cfi=(424) +cfn=(6208) Dune::Geo::ReferenceElementImplementation<double, 2>::ReferenceElementImplementation() +calls=4 416 +* 3368 +* 19 + +fn=(6280) std::array<Dune::Geo::ReferenceElementImplementation<double, 2>, 4ul>::operator[](unsigned long) +185 48 ++1 40 +cfn=(6282) +calls=8 55 +* 112 +* 16 + +fn=(7042) std::array<unsigned int, 3ul>::operator[](unsigned long) +185 252 ++1 210 +cfn=(7044) +calls=42 55 +* 462 +* 84 + +fn=(7524) std::array<Dune::Geo::ReferenceElementImplementation<double, 0>, 1ul>::array() +94 17 +cfi=(424) +cfn=(7526) Dune::Geo::ReferenceElementImplementation<double, 0>::ReferenceElementImplementation() +calls=1 416 +* 352 +* 10 + +fn=(7656) +55 10 ++1 12 + +fn=(7730) std::array<double, 0ul>::end() +134 10 ++1 6 +cfn=(7732) +calls=2 +99 +* 34 +* 4 + +fn=(7734) +75 16 ++1 12 + +fn=(8026) +55 80 ++1 96 + +fn=(2266) +55 615 ++1 738 + +fn=(4136) std::array<double, 2ul>::end() +134 5775 ++1 3465 +cfn=(4138) +calls=1155 +99 +* 19635 +* 3465 + +fn=(4140) +59 9240 ++1 6930 + +fn=(4152) +234 40 ++1 24 +cfn=(4154) std::__array_traits<unsigned int, 2ul>::_S_ptr(unsigned int const (&) [2]) +calls=8 59 +* 56 +* 16 + +fn=(4154) +59 32 ++1 24 + +fn=(4926) +55 1562680 ++1 1875216 + +fn=(5006) +138 546310 ++1 327786 +cfn=(5008) +calls=109262 +99 +* 1857454 +* 327786 + +fn=(6272) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 2>, 4ul>::array() +94 28 +cfi=(423) +cfn=(6274) Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 2>::ConstructibleDeprecatedReferenceElement() +calls=4 -35 +* 124 +* 18 + +fn=(6330) std::array<std::bitset<4ul>, 3ul>::array() +94 352 + +fn=(6338) std::array<unsigned int, 4ul>::begin() +126 160 ++1 96 +cfn=(6334) +calls=32 234 +* 544 +* 64 + +fn=(6384) std::array<unsigned int, 4ul>::operator[](unsigned long) const +189 319912272 ++1 266593560 +cfn=(6370) +calls=53318712 55 +* 586505832 +* 106637424 + +fn=(6822) +55 540 ++1 756 + +fn=(7012) +234 60 ++1 36 +cfn=(7014) std::__array_traits<unsigned int, 3ul>::_S_ptr(unsigned int const (&) [3]) +calls=12 59 +* 84 +* 24 + +fn=(7014) +59 48 ++1 36 + +fn=(7044) +55 720 ++1 864 + +fn=(7578) std::array<Dune::Geo::ReferenceElementImplementation<double, 0>, 1ul>::operator[](unsigned long) +185 12 ++1 10 +cfn=(7580) std::__array_traits<Dune::Geo::ReferenceElementImplementation<double, 0>, 1ul>::_S_ref(Dune::Geo::ReferenceElementImplementation<double, 0> const (&) [1], unsigned long) +calls=2 55 +* 32 +* 4 + +fn=(7580) +55 10 ++1 22 + +fn=(7976) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 0>, 1ul>::operator[](unsigned long) +185 6 ++1 5 +cfn=(7978) +calls=1 55 +* 11 +* 2 + +fn=(8032) std::array<Dune::Geo::ConstructibleDeprecatedReferenceElement<double, 1>, 2ul>::operator[](unsigned long) const +189 84 ++1 70 +cfn=(8026) +calls=14 55 +* 154 +* 28 + +fn=(8278) +55 44431565 ++1 53317878 + +fl=(296) /usr/include/c++/9/ext/aligned_buffer.h +fn=(2980) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_addr() +64 160 ++1 120 + +fn=(3006) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_ptr() const +76 1470 ++1 882 +cfn=(3008) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_addr() const +calls=294 -9 +* 2058 +* 588 + +fn=(2978) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_ptr() +72 200 ++1 120 +cfn=(2980) +calls=40 -9 +* 280 +* 80 + +fn=(3090) __gnu_cxx::__aligned_membuf<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_M_ptr() +72 160 ++1 96 +cfn=(3092) __gnu_cxx::__aligned_membuf<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_M_addr() +calls=32 -9 +* 224 +* 64 + +fn=(3274) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_addr() const +68 484 ++1 363 + +fn=(5736) __gnu_cxx::__aligned_buffer<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >::_M_ptr() +114 137280 ++1 82368 +cfn=(5738) __gnu_cxx::__aligned_buffer<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >::_M_addr() +calls=27456 -13 +* 192192 +* 54912 + +fn=(3008) +68 1176 ++1 882 + +fn=(3092) +64 128 ++1 96 + +fn=(3116) __gnu_cxx::__aligned_membuf<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_M_ptr() const +76 680 ++1 408 +cfn=(3118) __gnu_cxx::__aligned_membuf<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_M_addr() const +calls=136 -9 +* 952 +* 272 + +fn=(4974) __gnu_cxx::__aligned_membuf<Dune::UGGridBoundarySegment<2> >::_M_addr() +64 25088 ++1 18816 + +fn=(4996) __gnu_cxx::__aligned_membuf<Dune::UGGridBoundarySegment<2> >::_M_addr() const +68 219548 ++1 164661 + +fn=(5738) +102 109824 ++2 27456 ++1 54912 + +fn=(4972) __gnu_cxx::__aligned_membuf<Dune::UGGridBoundarySegment<2> >::_M_ptr() +72 31360 ++1 18816 +cfn=(4974) +calls=6272 -9 +* 43904 +* 12544 + +fn=(4994) __gnu_cxx::__aligned_membuf<Dune::UGGridBoundarySegment<2> >::_M_ptr() const +76 274435 ++1 164661 +cfn=(4996) +calls=54887 -9 +* 384209 +* 109774 + +fn=(5264) __gnu_cxx::__aligned_buffer<PPIF::PPIFContext>::_M_ptr() +114 25 ++1 15 +cfn=(5266) __gnu_cxx::__aligned_buffer<PPIF::PPIFContext>::_M_addr() +calls=5 -13 +* 35 +* 10 + +fn=(3118) +68 544 ++1 408 + +fn=(3256) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_ptr() +72 320 ++1 192 +cfn=(3258) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_addr() +calls=64 -9 +* 448 +* 128 + +fn=(3272) __gnu_cxx::__aligned_membuf<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_ptr() const +76 605 ++1 363 +cfn=(3274) +calls=121 -9 +* 847 +* 242 + +fn=(6010) __gnu_cxx::__aligned_buffer<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::_M_ptr() +114 50 ++1 30 +cfn=(6012) __gnu_cxx::__aligned_buffer<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::_M_addr() +calls=10 -13 +* 70 +* 20 + +fn=(3258) +64 256 ++1 192 + +fn=(5266) +102 20 ++2 5 ++1 10 + +fn=(6012) +102 40 ++2 10 ++1 20 + +fl=(400) /usr/include/c++/9/bits/hashtable.h +fn=(5642) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_deallocate_buckets(std::__detail::_Hash_node_base**, unsigned long) +365 7 ++2 5 +cfn=(5644) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_uses_single_bucket(std::__detail::_Hash_node_base**) const +calls=1 -25 +* 14 +* 2 ++1 1 ++3 2 + +fn=(5790) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_find_node(unsigned long, UG::D2::multigrid::FaceNodes const&, unsigned long) const +652 49152 ++3 36864 +cfn=(5792) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_find_before_node(unsigned long, UG::D2::multigrid::FaceNodes const&, unsigned long) const +calls=6144 1532 +* 1422458 +* 6144 ++1 12288 ++1 9024 ++1 3136 ++1 12288 + +fn=(5614) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_allocate_buckets(unsigned long) +353 6 ++2 5 ++6 5 +cfi=(401) +cfn=(5616) std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_M_allocate_buckets(unsigned long) +calls=1 2130 +* 9240 +* 1 ++1 2 + +fn=(5640) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_deallocate_buckets() +374 5 ++1 8 +cfn=(5642) +calls=1 -10 +* 31 +* 3 + +fn=(5322) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_Hashtable() +414 8 +cfi=(401) +cfn=(5324) std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_Hashtable_alloc() +calls=1 2036 +* 40 +* 10 +cfi=(401) +cfn=(5332) std::__detail::_Hash_node_base::_Hash_node_base() +calls=1 218 +* 9 +* 7 +cfi=(401) +cfn=(5334) std::__detail::_Prime_rehash_policy::_Prime_rehash_policy(float) +calls=1 +35 +* 13 +* 5 + +fn=(5780) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_bucket_index(UG::D2::multigrid::FaceNodes const&, unsigned long) const +643 64064 ++1 64064 +cfi=(401) +cfn=(5782) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_bucket_index(UG::D2::multigrid::FaceNodes const&, unsigned long, unsigned long) const +calls=9152 1388 +* 439296 +* 18304 + +fn=(5792) +1532 73216 ++6 64064 ++1 18304 ++1 5880 ++2 18636 ++3 37272 +cfi=(401) +cfn=(5848) std::__detail::_Hashtable_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<true, false, true> >::_M_equals(UG::D2::multigrid::FaceNodes const&, unsigned long, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) const +calls=6212 1829 +* 2460060 +* 78 +cfi=(401) +cfn=(5848) +calls=13 1829 +* 4963 +* 12450 ++1 12032 ++2 1451 +cfi=(401) +cfn=(5814) std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>::_M_next() const +calls=205 269 +* 1640 +* 1025 +cfn=(5816) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_bucket_index(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) const +calls=205 639 +* 12915 +* 1233 ++2 26 +-7 39 +cfi=(401) +cfn=(5814) +calls=13 269 +* 104 +* 13 ++2 13 ++4 196 ++3 196 ++1 18304 + +fn=(5794) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*, unsigned long) +1698 40768 ++6 12544 +cfi=(401) +cfn=(5602) std::__detail::_Prime_rehash_policy::_M_state() const +calls=3136 476 +* 25088 +* 9408 ++1 28224 +cob=(2) +cfi=(18) +cfn=(5796) +calls=3136 0 +* 28224 +* 12544 ++6 9408 ++6 18816 +cfi=(401) +cfn=(5800) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_store_code(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*, unsigned long) const +calls=3136 1399 +* 37632 ++3 18816 +cfn=(5802) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +calls=3136 1560 +* 381331 ++1 15680 ++1 15680 +cfi=(401) +cfn=(5804) std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>::_Node_iterator(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +calls=3136 340 +* 78400 +* 3136 ++7 21952 + +fn=(5902) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_remove_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*, unsigned long) +1591 21014 ++5 15010 ++4 5626 ++1 33756 ++3 28130 ++1 2766 ++1 5532 ++2 2766 +-2 11346 ++2 6240 + +fn=(5610) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_rehash(unsigned long, unsigned long const&) +2061 11 ++6 5 +cfn=(5612) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_rehash_aux(unsigned long, std::integral_constant<bool, true>) +calls=1 +17 +* 9347 ++9 8 + +fn=(5718) std::pair<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>, bool> std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_emplace<UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int> >(std::integral_constant<bool, true>, UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +1632 67584 ++6 18432 +cfi=(286) +cfn=(5712) std::pair<UG::D2::element*, int>&& std::forward<std::pair<UG::D2::element*, int> >(std::remove_reference<std::pair<UG::D2::element*, int> >::type&) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5714) UG::D2::multigrid::FaceNodes& std::forward<UG::D2::multigrid::FaceNodes&>(std::remove_reference<UG::D2::multigrid::FaceNodes&>::type&) +calls=6144 74 +* 43008 +* 36864 +cfi=(401) +cfn=(5720) std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_M_allocate_node<UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int> >(UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +calls=6144 2079 +* 2575014 +* 6144 ++1 18432 +cfi=(401) +cfn=(5746) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_extract() +calls=6144 1418 +* 104448 +* 24576 +cfi=(401) +cfn=(5750) std::__detail::_Hash_node_value_base<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >::_M_v() +calls=6144 244 +* 233472 +* 18432 +cfi=(401) +cfn=(5752) decltype ((get<0>)((forward<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&>(std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&) const +calls=6144 92 +* 227328 +* 6144 ++4 30720 +cfi=(401) +cfn=(5760) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_hash_code(UG::D2::multigrid::FaceNodes const&) const +calls=6144 1380 +* 1898496 +* 6144 ++8 36864 +cfn=(5780) +calls=6144 643 +* 393216 +* 6144 ++1 36864 +cfn=(5790) +calls=6144 652 +* 1551354 +* 18432 ++3 15040 +cfi=(401) +cfn=(5874) std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +calls=3008 2100 +* 830208 ++1 18048 +cfi=(401) +cfn=(5804) +calls=3008 340 +* 75200 +* 15040 +cfi=(298) +cfn=(5808) std::pair<std::__decay_and_strip<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true> >::__type, std::__decay_and_strip<bool>::__type> std::make_pair<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>, bool>(std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>&&, bool&&) +calls=3008 524 +* 246656 +* 3008 ++5 3136 +-1 21952 +cfn=(5794) +calls=3136 +38 +* 757651 +* 18816 +cfi=(298) +cfn=(5808) +calls=3136 524 +* 257152 ++1 3136 ++1 43008 + +fn=(5934) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::clear() +2024 25 ++4 15 +cfn=(5638) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_begin() const +calls=5 383 +* 40 +* 25 +cfi=(401) +cfn=(5936) std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_M_deallocate_nodes(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +calls=5 +90 +* 40657 ++1 40 +cob=(2) +cfi=(18) +cfn=(2248) +calls=5 0 +* 44455 ++1 10 ++1 10 ++1 15 + +fn=(5638) +383 24 ++1 24 + +fn=(5716) std::pair<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>, bool> std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::emplace<UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int> >(UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +748 67584 ++1 18432 +cfi=(286) +cfn=(5712) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5714) +calls=6144 74 +* 43008 +* 36864 +cfn=(5718) +calls=6144 1632 +* 9733747 +* 43008 + +fn=(5896) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::erase(UG::D2::multigrid::FaceNodes const&) +771 27072 ++1 15040 +cfn=(5898) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_erase(std::integral_constant<bool, true>, UG::D2::multigrid::FaceNodes const&) +calls=3008 1897 +* 4085784 +* 15040 + +fn=(5644) +342 5 ++1 9 + +fn=(5816) +639 36912 ++1 43064 +cfi=(401) +cfn=(5818) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_bucket_index(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> const*, unsigned long) const +calls=6152 1393 +* 295296 +* 12304 + +fn=(5600) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::rehash(unsigned long) +2039 9 ++4 4 +cfi=(401) +cfn=(5602) +calls=1 476 +* 8 +* 3 ++2 8 +cfi=(401) +cfn=(5604) std::__detail::_Prime_rehash_policy::_M_bkt_for_elements(unsigned long) const +calls=1 462 +* 38 +* 6 +cfi=(265) +cfn=(2360) unsigned long const& std::max<unsigned long>(unsigned long const&, unsigned long const&) +calls=1 222 +* 15 +-1 2 ++3 6 +cob=(2) +cfi=(18) +cfn=(5606) +calls=1 0 +* 123 +* 1 ++2 4 ++1 6 +cfn=(5610) +calls=1 +11 +* 9371 ++4 7 + +fn=(5612) +2084 6 ++4 5 +cfn=(5614) +calls=1 353 +* 9259 +* 1 ++1 3 +cfn=(5638) +calls=1 383 +* 8 +* 1 ++1 2 ++1 1 ++1 2 ++21 3 +cfn=(5640) +calls=1 374 +* 47 ++1 3 ++1 3 ++1 3 + +fn=(5596) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::bucket_count() const +552 8192 ++1 8192 + +fn=(5802) +1560 28224 ++4 25088 ++4 1764 ++1 1568 ++15 196 +-8 11760 ++1 8820 ++1 11760 ++3 17634 +cfi=(401) +cfn=(5814) +calls=2939 269 +* 23512 +* 14695 +cfn=(5816) +calls=2939 639 +* 185157 +* 8817 ++1 23512 ++2 17634 +-2 8 ++2 1182 + +fn=(5898) +1897 18048 ++5 15040 +cfi=(401) +cfn=(5760) +calls=3008 1380 +* 929472 +* 3008 ++1 18048 +cfn=(5780) +calls=3008 643 +* 192512 +* 3008 ++3 18048 +cfn=(5792) +calls=3008 1532 +* 1321652 +* 3008 ++1 6016 ++4 9024 ++1 18048 +cfn=(5900) std::_Hashtable<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::allocator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, false, true> >::_M_erase(unsigned long, std::__detail::_Hash_node_base*, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +calls=3008 -43 +* 1521828 ++1 3008 ++1 6016 + +fn=(5900) +1869 36096 ++5 24064 ++2 6004 +-1 6004 ++1 9006 +cfi=(401) +cfn=(5814) +calls=3002 269 +* 24016 +* 15010 +cfn=(5816) +calls=3002 639 +* 189126 +* 6004 +-1 9006 +cfi=(401) +cfn=(5814) +calls=3002 269 +* 24016 +* 18012 +cfn=(5902) +calls=3002 1591 +* 132186 +* 3002 ++2 24 ++2 18 +cfi=(401) +cfn=(5814) +calls=6 269 +* 48 +* 30 +cfn=(5816) +calls=6 639 +* 378 +* 6 ++1 18 ++1 42 ++3 24 ++1 18 +cfi=(401) +cfn=(5814) +calls=6 269 +* 48 +-1 12008 ++1 9006 +cfi=(401) +cfn=(5814) +calls=3002 269 +* 24016 +* 15040 +cfi=(401) +cfn=(5804) +calls=3008 340 +* 75200 ++1 15040 +cfi=(401) +cfn=(5874) +calls=3008 2100 +* 830208 ++1 15040 ++2 3008 ++1 21056 + +fl=(343) +fn=(4110) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count() +616 126 ++1 63 + +fn=(4116) std::__shared_ptr<InterfaceNetwork<Dune::UGGrid<2> >, (__gnu_cxx::_Lock_policy)2>::__shared_ptr() +1118 5 ++1 6 +cfn=(4110) +calls=1 616 +* 9 ++1 3 + +fn=(5262) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_M_ptr() +594 45 +cfi=(296) +cfn=(5264) +calls=5 114 +* 85 +* 10 + +fn=(5288) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::operator=(std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>&&) +1263 18 ++2 6 +cfi=(286) +cfn=(5290) std::remove_reference<std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>&>::type&& std::move<std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>&>(std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>&) +calls=2 99 +* 14 +* 10 +cfn=(5292) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::__shared_ptr(std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>&&) +calls=2 -89 +* 106 +* 10 +cfn=(5296) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::swap(std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>&) +calls=2 +59 +* 184 +* 6 +cfn=(5302) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::~__shared_ptr() +calls=2 -96 +* 48 ++1 2 ++1 10 + +fn=(5296) +1324 12 ++2 10 +cfi=(286) +cfn=(5298) std::enable_if<std::__and_<std::__not_<std::__is_tuple_like<PPIF::PPIFContext*> >, std::is_move_constructible<PPIF::PPIFContext*>, std::is_move_assignable<PPIF::PPIFContext*> >::value, void>::type std::swap<PPIF::PPIFContext*>(PPIF::PPIFContext*&, PPIF::PPIFContext*&) +calls=2 182 +* 106 ++1 14 +cfn=(5294) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::_M_swap(std::__shared_count<(__gnu_cxx::_Lock_policy)2>&) +calls=2 756 +* 36 ++1 6 + +fn=(5496) std::_Sp_ebo_helper<0, std::allocator<PPIF::PPIFContext>, true>::_S_get(std::_Sp_ebo_helper<0, std::allocator<PPIF::PPIFContext>, true>&) +418 14 + +fn=(6000) std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2>::_Impl::_Impl(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >) +531 55 +cfn=(6002) std::_Sp_ebo_helper<0, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, true>::_Sp_ebo_helper(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > const&) +calls=5 414 +* 180 +* 15 + +fn=(6104) std::__shared_ptr_access<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2, false, false>::_M_get() const +1020 55 ++1 33 +cfn=(6106) std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::get() const +calls=11 1309 +* 88 +* 22 + +fn=(8774) std::_Sp_ebo_helper<1, std::allocator<void>, true>::_Sp_ebo_helper(std::allocator<void> const&) +414 8 + +fn=(8812) std::__shared_ptr_access<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2, false, false>::_M_get() const +1020 5 ++1 3 +cfn=(8814) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::get() const +calls=1 1309 +* 8 +* 2 + +fn=(5194) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::__shared_ptr() +1118 10 ++1 12 +cfn=(4110) +calls=2 616 +* 18 ++1 6 + +fn=(6028) std::enable_if<!std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::__has_esft_base<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, void>::value, void>::type std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::_M_enable_shared_from_this_with<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >(Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>*) +1388 25 ++1 15 + +fn=(6074) std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr(std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>&&) +1176 72 ++1 96 +cfn=(4110) +calls=12 616 +* 108 ++2 84 +cfn=(5294) +calls=12 756 +* 216 ++1 24 ++1 36 + +fn=(8806) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr(std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&&) +1176 6 ++1 8 +cfn=(4110) +calls=1 616 +* 9 ++2 7 +cfn=(5294) +calls=1 756 +* 18 ++1 2 ++1 3 + +fn=(8866) std::__shared_ptr_access<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2, false, false>::_M_get() const +1020 1741000 ++1 1044600 +cfn=(8868) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::get() const +calls=348200 1309 +* 2785600 +* 696400 + +fn=(5292) +1176 12 ++1 16 +cfn=(4110) +calls=2 616 +* 18 ++2 14 +cfn=(5294) +calls=2 756 +* 36 ++1 4 ++1 6 + +fn=(5308) std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_add_ref_copy() +138 15 ++1 15 +cfi=(396) +cfn=(5310) +calls=3 -46 +* 114 +* 9 + +fn=(8790) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::~__shared_ptr() +1169 27 +cfn=(5304) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::~__shared_count() +calls=3 727 +* 36 +* 9 + +fn=(5222) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::__shared_ptr<std::allocator<PPIF::PPIFContext>>(std::_Sp_alloc_shared_tag<std::allocator<PPIF::PPIFContext> >) +1343 12 ++1 18 +cfn=(5224) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>>(PPIF::PPIFContext*&, std::_Sp_alloc_shared_tag<std::allocator<PPIF::PPIFContext> >) +calls=2 672 +* 1587 ++1 12 +cfn=(5282) std::enable_if<!std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::__has_esft_base<PPIF::PPIFContext, void>::value, void>::type std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::_M_enable_shared_from_this_with<PPIF::PPIFContext, PPIF::PPIFContext>(PPIF::PPIFContext*) +calls=2 +43 +* 16 +* 6 + +fn=(5252) std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_Sp_counted_base() +117 32 ++1 80 + +fn=(5336) std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release() +148 15 ++4 15 +cfi=(396) +cfn=(5338) +calls=3 -73 +* 111 +* 12 ++3 7 +cfn=(5492) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_M_dispose() +calls=1 555 +* 100 ++12 5 +cfi=(396) +cfn=(5338) +calls=1 -88 +* 37 ++1 2 +-1 2 ++4 7 +cfn=(5504) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_M_destroy() +calls=1 562 +* 322 ++3 9 + +fn=(5494) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_Impl::_M_alloc() +533 16 +cfn=(5496) +calls=2 418 +* 14 +* 4 + +fn=(6008) std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2>::_M_ptr() +594 90 +cfi=(296) +cfn=(6010) +calls=10 114 +* 170 +* 20 + +fn=(8740) std::enable_if<std::__and_<std::__sp_compatible_with<Dune::UGGrid<2>*, Dune::UGGrid<2>*>, std::is_convertible<std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::pointer, Dune::UGGrid<2>*> >::value, std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&>::type std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::operator=<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >(std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&&) +1279 9 ++2 3 +cfi=(286) +cfn=(8738) std::remove_reference<std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&>::type&& std::move<std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&>(std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&) +calls=1 99 +* 7 +* 5 +cfn=(8742) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> >, void>(std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&&) +calls=1 -78 +* 9872 +* 5 +cfn=(8784) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::swap(std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&) +calls=1 +43 +* 92 +* 3 +cfn=(8790) +calls=1 1169 +* 24 ++1 1 ++1 5 + +fn=(8746) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >(std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&&) +699 12 ++4 3 +cfi=(432) +cfn=(8672) std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::get() const +calls=1 352 +* 58 +* 4 ++11 3 +cfi=(236) /usr/include/c++/9/bits/allocator.h +cfn=(8748) std::allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::allocator() +calls=1 138 +* 18 ++1 4 +cfi=(266) /usr/include/c++/9/bits/alloc_traits.h +cfn=(8752) std::allocator_traits<std::allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> > >::allocate(std::allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >&, unsigned long) +calls=1 443 +* 8984 +* 1 ++1 3 +cfi=(432) +cfn=(8656) std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::get_deleter() +calls=1 357 +* 57 +* 4 +cfi=(432) +cfn=(8670) std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::release() +calls=1 373 +* 121 +* 7 +cfi=(266) +cfn=(8758) void std::allocator_traits<std::allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> > >::construct<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >&>(std::allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >&, std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>*, Dune::UGGrid<2>*&&, std::default_delete<Dune::UGGrid<2> >&) +calls=1 482 +* 210 ++2 3 +-4 3 +cfi=(236) +cfn=(8776) std::allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::~allocator() +calls=1 153 +* 18 +* 1 ++5 7 + +fn=(8802) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::operator=(std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&&) +1263 9 ++2 3 +cfi=(286) +cfn=(8804) std::remove_reference<std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&>::type&& std::move<std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&>(std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>&) +calls=1 99 +* 7 +* 5 +cfn=(8806) +calls=1 -89 +* 53 +* 5 +cfn=(8784) +calls=1 +59 +* 92 +* 3 +cfn=(8790) +calls=1 -96 +* 24 ++1 1 ++1 5 + +fn=(8810) +1012 5 ++3 3 +cfn=(8812) +calls=1 +5 +* 18 ++1 2 + +fn=(5200) std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2>::__shared_ptr(std::__shared_ptr<PPIF::PPIFContext, (__gnu_cxx::_Lock_policy)2> const&) +1167 51 +cfn=(5202) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count(std::__shared_count<(__gnu_cxx::_Lock_policy)2> const&) +calls=3 733 +* 106 +* 9 + +fn=(5202) +733 24 ++1 16 ++2 16 ++1 8 +cfn=(5308) +calls=2 138 +* 102 ++1 12 + +fn=(5504) +562 8 ++2 4 +cfn=(5494) +calls=1 -31 +* 17 +* 5 +cfi=(236) +cfn=(5226) std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::allocator<PPIF::PPIFContext>(std::allocator<PPIF::PPIFContext> const&) +calls=1 151 +* 19 ++1 6 +cfi=(393) /usr/include/c++/9/bits/allocated_ptr.h +cfn=(5238) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >::__allocated_ptr(std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >&, std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>*) +calls=1 52 +* 25 ++1 3 +cfn=(5506) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr_inplace() +calls=1 -14 +* 69 +-1 3 +cfi=(393) +cfn=(5276) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >::~__allocated_ptr() +calls=1 70 +* 136 +-1 3 +cfi=(236) +cfn=(5278) std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::~allocator() +calls=1 153 +* 18 ++3 6 + +fn=(5508) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_Impl::~_Impl() +526 8 +cfn=(5510) std::_Sp_ebo_helper<0, std::allocator<PPIF::PPIFContext>, true>::~_Sp_ebo_helper() +calls=1 412 +* 29 +* 3 + +fn=(5512) std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::~_Sp_counted_base() +121 4 ++1 6 + +fn=(5998) std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2>::_Sp_counted_ptr_inplace<>(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >) +543 50 ++1 15 +cfn=(5252) +calls=5 117 +* 70 +* 55 +cfi=(236) +cfn=(5994) std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::allocator(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > const&) +calls=5 141 +* 110 +* 20 +cfn=(6000) +calls=5 -13 +* 250 +* 15 +cfi=(236) +cfn=(6004) std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::~allocator() +calls=5 153 +* 90 ++4 15 +cfn=(6008) +calls=5 +46 +* 140 +* 25 +cfi=(266) +cfn=(6014) void std::allocator_traits<std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::construct<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>>(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&, Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>*) +calls=5 -66 +* 1480 ++2 40 + +fn=(6002) +414 55 +cfi=(236) +cfn=(5994) +calls=5 141 +* 110 +* 15 + +fn=(6102) std::__shared_ptr_access<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2, false, false>::operator->() const +1012 55 ++3 33 +cfn=(6104) +calls=11 +5 +* 198 ++1 22 + +fn=(8766) std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>::_Sp_counted_deleter(Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >) +460 10 ++1 3 +cfn=(5252) +calls=1 117 +* 14 +* 7 +cfi=(286) +cfn=(8768) std::remove_reference<std::default_delete<Dune::UGGrid<2> >&>::type&& std::move<std::default_delete<Dune::UGGrid<2> >&>(std::default_delete<Dune::UGGrid<2> >&) +calls=1 99 +* 7 +* 5 +cfn=(8770) std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>::_Impl::_Impl(Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void> const&) +calls=1 -15 +* 59 +* 8 + +fn=(8784) +1324 12 ++2 10 +cfi=(286) +cfn=(8786) std::enable_if<std::__and_<std::__not_<std::__is_tuple_like<Dune::UGGrid<2>*> >, std::is_move_constructible<Dune::UGGrid<2>*>, std::is_move_assignable<Dune::UGGrid<2>*> >::value, void>::type std::swap<Dune::UGGrid<2>*>(Dune::UGGrid<2>*&, Dune::UGGrid<2>*&) +calls=2 182 +* 106 ++1 14 +cfn=(5294) +calls=2 756 +* 36 ++1 6 + +fn=(8864) +1005 1741000 ++3 1044600 +cfn=(8866) +calls=348200 +12 +* 6267600 ++1 696400 + +fn=(5282) +1388 10 ++1 6 + +fn=(5510) +412 8 +cfi=(236) +cfn=(5258) std::allocator<PPIF::PPIFContext>::~allocator() +calls=1 153 +* 18 +* 3 + +fn=(5972) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >>(Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>*&, std::_Sp_alloc_shared_tag<std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >) +672 65 ++4 25 +cfi=(236) +cfn=(5974) std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > const&) +calls=5 151 +* 95 ++1 25 +cfi=(393) +cfn=(5978) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > > std::__allocate_guarded<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >(std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >&) +calls=5 95 +* 1669 ++1 15 +cfi=(393) +cfn=(5990) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >::get() +calls=5 85 +* 90 +* 5 ++1 25 +cfi=(236) +cfn=(5994) +calls=5 141 +* 110 +* 25 +cfi=(293) +cfn=(2888) +calls=5 174 +* 40 +* 20 +cfn=(5998) +calls=5 543 +* 2375 +* 20 +cfi=(236) +cfn=(6004) +calls=5 153 +* 90 ++2 20 +cfi=(393) +cfn=(6020) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >::operator=(decltype(nullptr)) +calls=5 78 +* 50 ++1 15 ++1 15 +cfn=(6008) +calls=5 -89 +* 140 +* 10 +-6 15 +cfi=(393) +cfn=(6022) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >::~__allocated_ptr() +calls=5 70 +* 60 +-1 15 +cfi=(236) +cfn=(6024) std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >::~allocator() +calls=5 153 +* 90 ++8 50 + +fn=(6106) +1309 44 ++1 44 + +fn=(8770) +446 7 ++1 2 +cfi=(286) +cfn=(8768) +calls=1 99 +* 7 +* 5 +cfn=(8772) std::_Sp_ebo_helper<0, std::default_delete<Dune::UGGrid<2> >, true>::_Sp_ebo_helper(std::default_delete<Dune::UGGrid<2> >&&) +calls=1 -32 +* 19 +* 5 +cfn=(8774) +calls=1 -33 +* 8 +* 3 ++1 3 + +fn=(5256) std::_Sp_ebo_helper<0, std::allocator<PPIF::PPIFContext>, true>::_Sp_ebo_helper(std::allocator<PPIF::PPIFContext> const&) +414 22 +cfi=(236) +cfn=(5246) std::allocator<PPIF::PPIFContext>::allocator(std::allocator<PPIF::PPIFContext> const&) +calls=2 141 +* 44 +* 6 + +fn=(5492) +555 6 ++2 3 +cfn=(5262) +calls=1 +37 +* 28 +* 5 +cfn=(5494) +calls=1 -24 +* 17 +* 3 +cfi=(266) +cfn=(5498) void std::allocator_traits<std::allocator<PPIF::PPIFContext> >::destroy<PPIF::PPIFContext>(std::allocator<PPIF::PPIFContext>&, PPIF::PPIFContext*) +calls=1 -62 +* 33 ++1 5 + +fn=(6098) std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::~__shared_ptr() +1169 108 +cfn=(5304) +calls=12 727 +* 144 +* 36 + +fn=(8814) +1309 4 ++1 4 + +fn=(4108) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr() +1118 10 ++1 12 +cfn=(4110) +calls=2 616 +* 18 ++1 6 + +fn=(5294) +756 95 ++2 57 ++1 76 ++1 57 ++1 57 + +fn=(5302) +1169 72 +cfn=(5304) +calls=8 727 +* 694 +* 24 + +fn=(5970) std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr<std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >>(std::_Sp_alloc_shared_tag<std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >) +1343 30 ++1 45 +cfn=(5972) +calls=5 672 +* 5174 ++1 30 +cfn=(6028) +calls=5 +43 +* 40 +* 15 + +fn=(8742) +1203 10 ++1 3 +cfi=(432) +cfn=(8672) +calls=1 352 +* 58 +* 6 +cfn=(4110) +calls=1 616 +* 9 ++2 3 +cfi=(432) +cfn=(8672) +calls=1 352 +* 58 +* 2 +cfi=(394) +cfn=(8744) +calls=1 151 +* 7 +* 1 ++1 3 +cfi=(286) +cfn=(8738) +calls=1 99 +* 7 +* 5 +cfn=(8746) +calls=1 699 +* 9521 +* 6 +cfn=(8780) std::__shared_count<(__gnu_cxx::_Lock_policy)2>::operator=(std::__shared_count<(__gnu_cxx::_Lock_policy)2> const&) +calls=1 741 +* 79 +* 3 +cfn=(5304) +calls=1 727 +* 70 ++1 5 +cfn=(8782) std::enable_if<!std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::__has_esft_base<Dune::UGGrid<2>, void>::value, void>::type std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::_M_enable_shared_from_this_with<Dune::UGGrid<2>, Dune::UGGrid<2> >(Dune::UGGrid<2>*) +calls=1 1388 +* 8 ++1 8 + +fn=(8772) +415 9 +cfi=(286) +cfn=(8768) +calls=1 99 +* 7 +* 3 + +fn=(8780) +741 6 ++2 3 ++1 4 ++2 2 ++1 3 +cfn=(5308) +calls=1 138 +* 51 ++1 4 ++2 3 ++2 1 ++1 2 + +fn=(8868) +1309 1392800 ++1 1392800 + +fn=(5210) +1312 4 ++1 6 + +fn=(5224) +672 26 ++4 10 +cfi=(236) +cfn=(5226) +calls=2 151 +* 38 ++1 10 +cfi=(393) +cfn=(5230) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > > std::__allocate_guarded<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >(std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >&) +calls=2 95 +* 661 ++1 6 +cfi=(393) +cfn=(5242) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >::get() +calls=2 85 +* 36 +* 2 ++1 10 +cfi=(236) +cfn=(5246) +calls=2 141 +* 44 +* 10 +cfi=(293) +cfn=(2888) +calls=2 174 +* 16 +* 8 +cfn=(5250) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_Sp_counted_ptr_inplace<>(std::allocator<PPIF::PPIFContext>) +calls=2 543 +* 474 +* 8 +cfi=(236) +cfn=(5258) +calls=2 153 +* 36 ++2 8 +cfi=(393) +cfn=(5274) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >::operator=(decltype(nullptr)) +calls=2 78 +* 20 ++1 6 ++1 6 +cfn=(5262) +calls=2 -89 +* 56 +* 4 +-6 6 +cfi=(393) +cfn=(5276) +calls=2 70 +* 24 +-1 6 +cfi=(236) +cfn=(5278) +calls=2 153 +* 36 ++8 20 + +fn=(5250) +543 20 ++1 6 +cfn=(5252) +calls=2 117 +* 28 +* 22 +cfi=(236) +cfn=(5246) +calls=2 141 +* 44 +* 8 +cfn=(5254) std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>::_Impl::_Impl(std::allocator<PPIF::PPIFContext>) +calls=2 -13 +* 100 +* 6 +cfi=(236) +cfn=(5258) +calls=2 153 +* 36 ++4 6 +cfn=(5262) +calls=2 +46 +* 56 +* 10 +cfi=(266) +cfn=(5268) void std::allocator_traits<std::allocator<PPIF::PPIFContext> >::construct<PPIF::PPIFContext>(std::allocator<PPIF::PPIFContext>&, PPIF::PPIFContext*) +calls=2 -66 +* 116 ++2 16 + +fn=(5254) +531 22 +cfn=(5256) +calls=2 414 +* 72 +* 6 + +fn=(5304) +727 120 ++2 96 ++1 12 +cfn=(5336) +calls=3 148 +* 644 ++1 72 + +fn=(5506) +552 13 +cfn=(5508) +calls=1 -26 +* 40 +* 3 +cfn=(5512) +calls=1 121 +* 10 +* 3 + +fn=(8782) +1388 5 ++1 3 + +fn=(8796) std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2>::__shared_ptr(std::__shared_ptr<Dune::UGGrid<2>, (__gnu_cxx::_Lock_policy)2> const&) +1167 17 +cfn=(5202) +calls=1 733 +* 72 +* 3 + +fn=(9086) std::__shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, (__gnu_cxx::_Lock_policy)2>::operator bool() const +1312 40 ++1 60 + +fl=(351) /home/joscha/software/dune/dune-uggrid/dune/uggrid/initug.cc +fn=(4400) UG::D3::InitUg(int*, char***) +116 6 ++19 1 +cfi=(352) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/initlow.cc +cfn=(4268) UG::InitLow() +calls=1 -49 +* 1961 +* 5 ++11 2 +cfi=(357) +cfn=(4298) UG::MakeStruct(char const*) +calls=1 608 +* 804 +* 4 ++4 1 +cfi=(358) +cfn=(4308) +calls=1 462 +* 6 +* 5 ++37 1 +cfi=(359) +cfn=(4402) UG::D3::InitDom() +calls=1 3226 +* 1020 +* 5 ++11 1 +cfi=(360) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/initgm.cc +cfn=(4404) UG::D3::InitGm() +calls=1 87 +* 253453 +* 5 ++11 1 +cfi=(381) +cfn=(4434) +calls=1 72 +* 1517 +* 5 ++10 1 ++1 2 + +fn=(4266) UG::D2::InitUg(int*, char***) +116 6 ++19 1 +cfi=(352) +cfn=(4268) +calls=1 -49 +* 2195 +* 5 ++11 2 +cfi=(357) +cfn=(4298) +calls=1 608 +* 804 +* 4 ++4 1 +cfi=(358) +cfn=(4308) +calls=1 462 +* 6 +* 5 ++37 1 +cfi=(359) +cfn=(4310) UG::D2::InitDom() +calls=1 3226 +* 1031 +* 5 ++11 1 +cfi=(360) +cfn=(4312) UG::D2::InitGm() +calls=1 87 +* 74368 +* 5 ++11 1 +cfi=(381) +cfn=(4392) +calls=1 72 +* 1519 +* 5 ++10 1 ++1 2 + +fl=(266) +fn=(4618) std::allocator_traits<std::allocator<Dune::FieldVector<double, 2> > >::max_size(std::allocator<Dune::FieldVector<double, 2> > const&) +505 500 ++1 300 +cfi=(237) /usr/include/c++/9/ext/new_allocator.h +cfn=(4620) __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::max_size() const +calls=100 132 +* 700 +* 200 + +fn=(4668) void std::allocator_traits<std::allocator<Dune::FieldVector<double, 2> > >::destroy<Dune::FieldVector<double, 2> >(std::allocator<Dune::FieldVector<double, 2> >&, Dune::FieldVector<double, 2>*) +495 12282 ++2 10235 +cfi=(237) +cfn=(4670) void __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::destroy<Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2>*) +calls=2047 151 +* 16376 +* 6141 + +fn=(4962) std::allocator_traits<std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > > >::allocate(std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >&, unsigned long) +443 18816 ++1 18816 +cfi=(237) +cfn=(4964) __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::allocate(unsigned long, void const*) +calls=3136 102 +* 298183 +* 6272 + +fn=(5548) std::allocator_traits<std::allocator<UG::D2::node*> >::max_size(std::allocator<UG::D2::node*> const&) +505 10245 ++1 6147 +cfi=(237) +cfn=(5550) __gnu_cxx::new_allocator<UG::D2::node*>::max_size() const +calls=2049 132 +* 14343 +* 4098 + +fn=(5722) std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::allocate(std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >&, unsigned long) +443 36864 ++1 36864 +cfi=(237) +cfn=(5724) __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::allocate(unsigned long, void const*) +calls=6144 102 +* 541350 +* 12288 + +fn=(6014) +482 30 ++2 25 +cfi=(237) +cfn=(6016) void __gnu_cxx::new_allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::construct<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>>(Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>*) +calls=5 144 +* 1410 +* 15 + +fn=(6544) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 2, 2> > >::allocate(std::allocator<Dune::FieldMatrix<double, 2, 2> >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(6546) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> >::allocate(unsigned long, void const*) +calls=4 102 +* 947 +* 8 + +fn=(6654) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 2, 2> > >::allocate(std::allocator<Dune::AffineGeometry<double, 2, 2> >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(6656) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 2, 2> >::allocate(unsigned long, void const*) +calls=4 102 +* 959 +* 8 + +fn=(6688) void std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 2, 2> > >::construct<Dune::AffineGeometry<double, 2, 2>, Dune::AffineGeometry<double, 2, 2> const&>(std::allocator<Dune::AffineGeometry<double, 2, 2> >&, Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2> const&) +482 28 ++2 12 +cfi=(286) +cfn=(6690) Dune::AffineGeometry<double, 2, 2> const& std::forward<Dune::AffineGeometry<double, 2, 2> const&>(std::remove_reference<Dune::AffineGeometry<double, 2, 2> const&>::type&) +calls=4 74 +* 28 +* 24 +cfi=(237) +cfn=(6692) void __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 2, 2> >::construct<Dune::AffineGeometry<double, 2, 2>, Dune::AffineGeometry<double, 2, 2> const&>(Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2> const&) +calls=4 144 +* 240 +* 12 + +fn=(6754) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 1, 2> > >::allocate(std::allocator<Dune::FieldMatrix<double, 1, 2> >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(6756) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> >::allocate(unsigned long, void const*) +calls=4 102 +* 653 +* 8 + +fn=(6858) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 1, 2> > >::max_size(std::allocator<Dune::AffineGeometry<double, 1, 2> > const&) +505 20 ++1 12 +cfi=(237) +cfn=(6860) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 2> >::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(6982) std::allocator_traits<std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::max_size(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> const&) +505 80 ++1 48 +cfi=(237) +cfn=(6984) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>::max_size() const +calls=16 132 +* 112 +* 32 + +fn=(7604) std::allocator_traits<std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::allocate(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>&, unsigned long) +443 6 ++1 6 +cfi=(237) +cfn=(7606) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>::allocate(unsigned long, void const*) +calls=1 102 +* 249 +* 2 + +fn=(7784) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 0> > >::max_size(std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +505 5 ++1 3 +cfi=(237) +cfn=(7786) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> >::max_size() const +calls=1 132 +* 7 +* 2 + +fn=(7952) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 0> > >::deallocate(std::allocator<Dune::FieldMatrix<double, 0, 0> >&, Dune::FieldMatrix<double, 0, 0>*, unsigned long) +469 7 ++1 6 +cfi=(237) +cfn=(7954) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> >::deallocate(Dune::FieldMatrix<double, 0, 0>*, unsigned long) +calls=1 119 +* 100 +* 3 + +fn=(8124) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 2> > >::allocate(std::allocator<Dune::FieldMatrix<double, 0, 2> >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(8126) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> >::allocate(unsigned long, void const*) +calls=4 102 +* 320 +* 8 + +fn=(8338) std::allocator_traits<std::allocator<Dune::GeometryType> >::max_size(std::allocator<Dune::GeometryType> const&) +505 180 ++1 108 +cfi=(237) +cfn=(8340) __gnu_cxx::new_allocator<Dune::GeometryType>::max_size() const +calls=36 132 +* 252 +* 72 + +fn=(2862) std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::max_size(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +505 170 ++1 102 +cfi=(237) +cfn=(2864) __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::max_size() const +calls=34 132 +* 238 +* 68 + +fn=(3136) void std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +482 147 ++2 63 +cfi=(286) +cfn=(3138) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&& std::forward<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::remove_reference<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::type&) +calls=21 74 +* 147 +* 126 +cfi=(237) +cfn=(3140) void __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=21 144 +* 1197 +* 63 + +fn=(3368) std::allocator_traits<std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::deallocate(std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*, unsigned long) +469 112 ++1 96 +cfi=(237) +cfn=(3370) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::deallocate(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*, unsigned long) +calls=16 119 +* 1778 +* 48 + +fn=(4820) void std::allocator_traits<std::allocator<unsigned int> >::construct<unsigned int, unsigned int const&>(std::allocator<unsigned int>&, unsigned int*, unsigned int const&) +482 50631 ++2 21699 +cfi=(286) +cfn=(4818) unsigned int const& std::forward<unsigned int const&>(std::remove_reference<unsigned int const&>::type&) +calls=7233 74 +* 50631 +* 43398 +cfi=(237) +cfn=(4822) void __gnu_cxx::new_allocator<unsigned int>::construct<unsigned int, unsigned int const&>(unsigned int*, unsigned int const&) +calls=7233 144 +* 267621 +* 21699 + +fn=(5106) std::allocator_traits<std::allocator<int> >::max_size(std::allocator<int> const&) +505 20 ++1 12 +cfi=(237) +cfn=(5108) __gnu_cxx::new_allocator<int>::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(5268) +482 12 ++2 10 +cfi=(237) +cfn=(5270) void __gnu_cxx::new_allocator<PPIF::PPIFContext>::construct<PPIF::PPIFContext>(PPIF::PPIFContext*) +calls=2 144 +* 88 +* 6 + +fn=(7894) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 0> > >::allocate(std::allocator<Dune::AffineGeometry<double, 0, 0> >&, unsigned long) +443 6 ++1 6 +cfi=(237) +cfn=(7896) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 0> >::allocate(unsigned long, void const*) +calls=1 102 +* 252 +* 2 + +fn=(8218) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 2> > >::allocate(std::allocator<Dune::AffineGeometry<double, 0, 2> >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(8220) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 2> >::allocate(unsigned long, void const*) +calls=4 102 +* 947 +* 8 + +fn=(8350) std::allocator_traits<std::allocator<Dune::GeometryType> >::allocate(std::allocator<Dune::GeometryType>&, unsigned long) +443 108 ++1 108 +cfi=(237) +cfn=(8352) __gnu_cxx::new_allocator<Dune::GeometryType>::allocate(unsigned long, void const*) +calls=18 102 +* 2395 +* 36 + +fn=(8758) +482 9 ++2 3 +cfi=(286) +cfn=(8760) std::default_delete<Dune::UGGrid<2> >& std::forward<std::default_delete<Dune::UGGrid<2> >&>(std::remove_reference<std::default_delete<Dune::UGGrid<2> >&>::type&) +calls=1 74 +* 7 +* 4 +cfi=(286) +cfn=(8762) Dune::UGGrid<2>*&& std::forward<Dune::UGGrid<2>*>(std::remove_reference<Dune::UGGrid<2>*>::type&) +calls=1 74 +* 7 +* 6 +cfi=(237) +cfn=(8764) void __gnu_cxx::new_allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::construct<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >&>(std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2>*, Dune::UGGrid<2>*&&, std::default_delete<Dune::UGGrid<2> >&) +calls=1 144 +* 169 +* 5 + +fn=(7094) std::allocator_traits<std::allocator<Dune::FieldVector<double, 1> > >::allocate(std::allocator<Dune::FieldVector<double, 1> >&, unsigned long) +443 60 ++1 60 +cfi=(237) +cfn=(7096) __gnu_cxx::new_allocator<Dune::FieldVector<double, 1> >::allocate(unsigned long, void const*) +calls=10 102 +* 1281 +* 20 + +fn=(4630) std::allocator_traits<std::allocator<Dune::FieldVector<double, 2> > >::allocate(std::allocator<Dune::FieldVector<double, 2> >&, unsigned long) +443 240 ++1 240 +cfi=(237) +cfn=(4632) __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::allocate(unsigned long, void const*) +calls=40 102 +* 6565 +* 80 + +fn=(4662) void std::allocator_traits<std::allocator<Dune::FieldVector<double, 2> > >::construct<Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2> >(std::allocator<Dune::FieldVector<double, 2> >&, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>&&) +482 14329 ++2 6141 +cfi=(286) +cfn=(4664) Dune::FieldVector<double, 2>&& std::forward<Dune::FieldVector<double, 2> >(std::remove_reference<Dune::FieldVector<double, 2> >::type&) +calls=2047 74 +* 14329 +* 12282 +cfi=(237) +cfn=(4666) void __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::construct<Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>&&) +calls=2047 144 +* 83927 +* 6141 + +fn=(4756) std::allocator_traits<std::allocator<unsigned char> >::max_size(std::allocator<unsigned char> const&) +505 120 ++1 72 +cfi=(237) +cfn=(4758) __gnu_cxx::new_allocator<unsigned char>::max_size() const +calls=24 132 +* 168 +* 48 + +fn=(4768) std::allocator_traits<std::allocator<unsigned char> >::allocate(std::allocator<unsigned char>&, unsigned long) +443 72 ++1 72 +cfi=(237) +cfn=(4770) __gnu_cxx::new_allocator<unsigned char>::allocate(unsigned long, void const*) +calls=12 102 +* 1380 +* 24 + +fn=(4976) void std::allocator_traits<std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > > >::construct<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2> const&>(std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >&, Dune::UGGridBoundarySegment<2>*, Dune::UGGridBoundarySegment<2> const&) +482 21952 ++2 9408 +cfi=(286) +cfn=(4950) Dune::UGGridBoundarySegment<2> const& std::forward<Dune::UGGridBoundarySegment<2> const&>(std::remove_reference<Dune::UGGridBoundarySegment<2> const&>::type&) +calls=3136 74 +* 21952 +* 18816 +cfi=(237) +cfn=(4978) void __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::construct<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2> const&>(Dune::UGGridBoundarySegment<2>*, Dune::UGGridBoundarySegment<2> const&) +calls=3136 144 +* 119168 +* 9408 + +fn=(5406) void std::allocator_traits<std::allocator<void*> >::construct<void*, void* const&>(std::allocator<void*>&, void**, void* const&) +482 21 ++2 9 +cfi=(286) +cfn=(5404) void* const& std::forward<void* const&>(std::remove_reference<void* const&>::type&) +calls=3 74 +* 21 +* 18 +cfi=(237) +cfn=(5408) void __gnu_cxx::new_allocator<void*>::construct<void*, void* const&>(void**, void* const&) +calls=3 144 +* 111 +* 9 + +fn=(5566) std::allocator_traits<std::allocator<UG::D2::node*> >::allocate(std::allocator<UG::D2::node*>&, unsigned long) +443 12294 ++1 12294 +cfi=(237) +cfn=(5568) __gnu_cxx::new_allocator<UG::D2::node*>::allocate(unsigned long, void const*) +calls=2049 102 +* 174308 +* 4098 + +fn=(6868) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 1, 2> > >::allocate(std::allocator<Dune::AffineGeometry<double, 1, 2> >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(6870) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 2> >::allocate(unsigned long, void const*) +calls=4 102 +* 643 +* 8 + +fn=(7386) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 1> > >::max_size(std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +505 10 ++1 6 +cfi=(237) +cfn=(7388) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> >::max_size() const +calls=2 132 +* 14 +* 4 + +fn=(7802) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 0> > >::allocate(std::allocator<Dune::FieldMatrix<double, 0, 0> >&, unsigned long) +443 6 ++1 6 +cfi=(237) +cfn=(7804) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> >::allocate(unsigned long, void const*) +calls=1 102 +* 241 +* 2 + +fn=(7934) void std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 0> > >::construct<Dune::AffineGeometry<double, 0, 0>, Dune::AffineGeometry<double, 0, 0> const&>(std::allocator<Dune::AffineGeometry<double, 0, 0> >&, Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0> const&) +482 7 ++2 3 +cfi=(286) +cfn=(7936) Dune::AffineGeometry<double, 0, 0> const& std::forward<Dune::AffineGeometry<double, 0, 0> const&>(std::remove_reference<Dune::AffineGeometry<double, 0, 0> const&>::type&) +calls=1 74 +* 7 +* 6 +cfi=(237) +cfn=(7938) void __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 0> >::construct<Dune::AffineGeometry<double, 0, 0>, Dune::AffineGeometry<double, 0, 0> const&>(Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0> const&) +calls=1 144 +* 43 +* 3 + +fn=(7968) std::allocator_traits<std::allocator<Dune::FieldVector<double, 0> > >::deallocate(std::allocator<Dune::FieldVector<double, 0> >&, Dune::FieldVector<double, 0>*, unsigned long) +469 7 ++1 6 +cfi=(237) +cfn=(7970) __gnu_cxx::new_allocator<Dune::FieldVector<double, 0> >::deallocate(Dune::FieldVector<double, 0>*, unsigned long) +calls=1 119 +* 100 +* 3 + +fn=(8064) void std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 1, 2> > >::construct<Dune::AffineGeometry<double, 1, 2>, Dune::AffineGeometry<double, 1, 2> const&>(std::allocator<Dune::AffineGeometry<double, 1, 2> >&, Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2> const&) +482 98 ++2 42 +cfi=(286) +cfn=(8066) Dune::AffineGeometry<double, 1, 2> const& std::forward<Dune::AffineGeometry<double, 1, 2> const&>(std::remove_reference<Dune::AffineGeometry<double, 1, 2> const&>::type&) +calls=14 74 +* 98 +* 84 +cfi=(237) +cfn=(8068) void __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 2> >::construct<Dune::AffineGeometry<double, 1, 2>, Dune::AffineGeometry<double, 1, 2> const&>(Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2> const&) +calls=14 144 +* 728 +* 42 + +fn=(8082) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 1, 2> > >::deallocate(std::allocator<Dune::FieldMatrix<double, 1, 2> >&, Dune::FieldMatrix<double, 1, 2>*, unsigned long) +469 28 ++1 24 +cfi=(237) +cfn=(8084) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> >::deallocate(Dune::FieldMatrix<double, 1, 2>*, unsigned long) +calls=4 119 +* 400 +* 12 + +fn=(8252) void std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 2> > >::construct<Dune::AffineGeometry<double, 0, 2>, Dune::AffineGeometry<double, 0, 2> const&>(std::allocator<Dune::AffineGeometry<double, 0, 2> >&, Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2> const&) +482 98 ++2 42 +cfi=(286) +cfn=(8254) Dune::AffineGeometry<double, 0, 2> const& std::forward<Dune::AffineGeometry<double, 0, 2> const&>(std::remove_reference<Dune::AffineGeometry<double, 0, 2> const&>::type&) +calls=14 74 +* 98 +* 84 +cfi=(237) +cfn=(8256) void __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 2> >::construct<Dune::AffineGeometry<double, 0, 2>, Dune::AffineGeometry<double, 0, 2> const&>(Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2> const&) +calls=14 144 +* 644 +* 42 + +fn=(8634) std::allocator_traits<std::allocator<int> >::deallocate(std::allocator<int>&, int*, unsigned long) +469 7 ++1 6 +cfi=(237) +cfn=(8636) __gnu_cxx::new_allocator<int>::deallocate(int*, unsigned long) +calls=1 119 +* 146 +* 3 + +fn=(2390) std::allocator_traits<std::allocator<bool> >::allocate(std::allocator<bool>&, unsigned long) +443 36 ++1 36 +cfi=(237) +cfn=(2392) __gnu_cxx::new_allocator<bool>::allocate(unsigned long, void const*) +calls=6 102 +* 1338 +* 12 + +fn=(3246) std::allocator_traits<std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > > >::allocate(std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >&, unsigned long) +443 18 ++1 18 +cfi=(237) +cfn=(3248) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::allocate(unsigned long, void const*) +calls=3 102 +* 690 +* 6 + +fn=(4704) std::allocator_traits<std::allocator<unsigned int> >::allocate(std::allocator<unsigned int>&, unsigned long) +443 18588 ++1 18588 +cfi=(237) +cfn=(4706) __gnu_cxx::new_allocator<unsigned int>::allocate(unsigned long, void const*) +calls=3098 102 +* 261976 +* 6196 + +fn=(4836) std::allocator_traits<std::allocator<unsigned int> >::deallocate(std::allocator<unsigned int>&, unsigned int*, unsigned long) +469 21686 ++1 18588 +cfi=(237) +cfn=(4838) __gnu_cxx::new_allocator<unsigned int>::deallocate(unsigned int*, unsigned long) +calls=3098 119 +* 321895 +* 9294 + +fn=(5114) std::allocator_traits<std::allocator<int> >::allocate(std::allocator<int>&, unsigned long) +443 6 ++1 6 +cfi=(237) +cfn=(5116) __gnu_cxx::new_allocator<int>::allocate(unsigned long, void const*) +calls=1 102 +* 454 +* 2 + +fn=(5400) std::allocator_traits<std::allocator<void*> >::allocate(std::allocator<void*>&, unsigned long) +443 18 ++1 18 +cfi=(237) +cfn=(5402) __gnu_cxx::new_allocator<void*>::allocate(unsigned long, void const*) +calls=3 102 +* 398 +* 6 + +fn=(5440) std::allocator_traits<std::allocator<void*> >::deallocate(std::allocator<void*>&, void**, unsigned long) +469 14 ++1 12 +cfi=(237) +cfn=(5442) __gnu_cxx::new_allocator<void*>::deallocate(void**, unsigned long) +calls=2 119 +* 200 +* 6 + +fn=(5498) +495 6 ++2 5 +cfi=(237) +cfn=(5500) void __gnu_cxx::new_allocator<PPIF::PPIFContext>::destroy<PPIF::PPIFContext>(PPIF::PPIFContext*) +calls=1 151 +* 19 +* 3 + +fn=(5740) void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::construct<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int> >(std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >&, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >*, UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +482 55296 ++2 18432 +cfi=(286) +cfn=(5712) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5714) +calls=6144 74 +* 43008 +* 36864 +cfi=(237) +cfn=(5742) void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::construct<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int> >(std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >*, UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +calls=6144 144 +* 608256 +* 30720 + +fn=(5980) std::allocator_traits<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >::allocate(std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >&, unsigned long) +443 30 ++1 30 +cfi=(237) +cfn=(5982) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >::allocate(unsigned long, void const*) +calls=5 102 +* 1379 +* 10 + +fn=(6644) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 2, 2> > >::max_size(std::allocator<Dune::AffineGeometry<double, 2, 2> > const&) +505 20 ++1 12 +cfi=(237) +cfn=(6646) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 2, 2> >::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(6706) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 2, 2> > >::deallocate(std::allocator<Dune::FieldMatrix<double, 2, 2> >&, Dune::FieldMatrix<double, 2, 2>*, unsigned long) +469 28 ++1 24 +cfi=(237) +cfn=(6708) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> >::deallocate(Dune::FieldMatrix<double, 2, 2>*, unsigned long) +calls=4 119 +* 400 +* 12 + +fn=(7086) std::allocator_traits<std::allocator<Dune::FieldVector<double, 1> > >::max_size(std::allocator<Dune::FieldVector<double, 1> > const&) +505 140 ++1 84 +cfi=(237) +cfn=(7088) __gnu_cxx::new_allocator<Dune::FieldVector<double, 1> >::max_size() const +calls=28 132 +* 196 +* 56 + +fn=(7282) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 1, 1> > >::allocate(std::allocator<Dune::AffineGeometry<double, 1, 1> >&, unsigned long) +443 12 ++1 12 +cfi=(237) +cfn=(7284) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 1> >::allocate(unsigned long, void const*) +calls=2 102 +* 340 +* 4 + +fn=(7596) std::allocator_traits<std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::max_size(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> const&) +505 20 ++1 12 +cfi=(237) +cfn=(7598) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(7686) std::allocator_traits<std::allocator<Dune::FieldVector<double, 0> > >::max_size(std::allocator<Dune::FieldVector<double, 0> > const&) +505 25 ++1 15 +cfi=(237) +cfn=(7688) __gnu_cxx::new_allocator<Dune::FieldVector<double, 0> >::max_size() const +calls=5 132 +* 35 +* 10 + +fn=(9082) std::allocator_traits<std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::deallocate(std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, unsigned long) +469 21 ++1 18 +cfi=(237) +cfn=(9084) __gnu_cxx::new_allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::deallocate(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, unsigned long) +calls=3 119 +* 300 +* 9 + +fn=(3146) std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::deallocate(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, unsigned long) +469 84 ++1 72 +cfi=(237) +cfn=(3148) __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::deallocate(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, unsigned long) +calls=12 119 +* 1200 +* 36 + +fn=(4882) std::allocator_traits<std::allocator<unsigned char> >::deallocate(std::allocator<unsigned char>&, unsigned char*, unsigned long) +469 84 ++1 72 +cfi=(237) +cfn=(4884) __gnu_cxx::new_allocator<unsigned char>::deallocate(unsigned char*, unsigned long) +calls=12 119 +* 1270 +* 36 + +fn=(5068) std::allocator_traits<std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > > >::deallocate(std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >&, std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*, unsigned long) +469 21952 ++1 18816 +cfi=(237) +cfn=(5070) __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::deallocate(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*, unsigned long) +calls=3136 119 +* 316078 +* 9408 + +fn=(5232) std::allocator_traits<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >::allocate(std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >&, unsigned long) +443 12 ++1 12 +cfi=(237) +cfn=(5234) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::allocate(unsigned long, void const*) +calls=2 102 +* 545 +* 4 + +fn=(6068) void std::allocator_traits<std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::construct<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&&) +482 84 ++2 36 +cfi=(286) +cfn=(6036) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&& std::forward<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::remove_reference<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::type&) +calls=12 74 +* 84 +* 72 +cfi=(237) +cfn=(6070) void __gnu_cxx::new_allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::construct<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&&) +calls=12 144 +* 1416 +* 36 + +fn=(7362) std::allocator_traits<std::allocator<Dune::FieldVector<double, 1> > >::deallocate(std::allocator<Dune::FieldVector<double, 1> >&, Dune::FieldVector<double, 1>*, unsigned long) +469 28 ++1 24 +cfi=(237) +cfn=(7364) __gnu_cxx::new_allocator<Dune::FieldVector<double, 1> >::deallocate(Dune::FieldVector<double, 1>*, unsigned long) +calls=4 119 +* 400 +* 12 + +fn=(7404) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 1> > >::allocate(std::allocator<Dune::FieldMatrix<double, 0, 1> >&, unsigned long) +443 12 ++1 12 +cfi=(237) +cfn=(7406) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> >::allocate(unsigned long, void const*) +calls=2 102 +* 160 +* 4 + +fn=(7694) std::allocator_traits<std::allocator<Dune::FieldVector<double, 0> > >::allocate(std::allocator<Dune::FieldVector<double, 0> >&, unsigned long) +443 12 ++1 12 +cfi=(237) +cfn=(7696) __gnu_cxx::new_allocator<Dune::FieldVector<double, 0> >::allocate(unsigned long, void const*) +calls=2 102 +* 482 +* 4 + +fn=(7884) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 0> > >::max_size(std::allocator<Dune::AffineGeometry<double, 0, 0> > const&) +505 5 ++1 3 +cfi=(237) +cfn=(7886) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 0> >::max_size() const +calls=1 132 +* 7 +* 2 + +fn=(8208) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 2> > >::max_size(std::allocator<Dune::AffineGeometry<double, 0, 2> > const&) +505 20 ++1 12 +cfi=(237) +cfn=(8210) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 2> >::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(8384) void std::allocator_traits<std::allocator<Dune::GeometryType> >::construct<Dune::GeometryType, Dune::GeometryType const&>(std::allocator<Dune::GeometryType>&, Dune::GeometryType*, Dune::GeometryType const&) +482 210 ++2 90 +cfi=(286) +cfn=(8382) Dune::GeometryType const& std::forward<Dune::GeometryType const&>(std::remove_reference<Dune::GeometryType const&>::type&) +calls=30 74 +* 210 +* 180 +cfi=(237) +cfn=(8386) void __gnu_cxx::new_allocator<Dune::GeometryType>::construct<Dune::GeometryType, Dune::GeometryType const&>(Dune::GeometryType*, Dune::GeometryType const&) +calls=30 144 +* 1140 +* 90 + +fn=(2372) std::allocator_traits<std::allocator<bool*> >::allocate(std::allocator<bool*>&, unsigned long) +443 36 ++1 36 +cfi=(237) +cfn=(2374) __gnu_cxx::new_allocator<bool*>::allocate(unsigned long, void const*) +calls=6 102 +* 1392 +* 12 + +fn=(3094) void std::allocator_traits<std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +482 112 ++2 48 +cfi=(286) +cfn=(2882) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const& std::forward<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::remove_reference<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::type&) +calls=16 74 +* 112 +* 96 +cfi=(237) +cfn=(3096) void __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 144 +* 4280 +* 48 + +fn=(3142) void std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +495 108 ++2 90 +cfi=(237) +cfn=(3144) void __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +calls=18 151 +* 360 +* 54 + +fn=(5386) std::allocator_traits<std::allocator<void*> >::max_size(std::allocator<void*> const&) +505 30 ++1 18 +cfi=(237) +cfn=(5388) __gnu_cxx::new_allocator<void*>::max_size() const +calls=6 132 +* 42 +* 12 + +fn=(5514) std::allocator_traits<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >::deallocate(std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >&, std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>*, unsigned long) +469 7 ++1 6 +cfi=(237) +cfn=(5516) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::deallocate(std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2>*, unsigned long) +calls=1 119 +* 100 +* 3 + +fn=(5626) std::allocator_traits<std::allocator<std::__detail::_Hash_node_base*> >::allocate(std::allocator<std::__detail::_Hash_node_base*>&, unsigned long) +443 6 ++1 6 +cfi=(237) +cfn=(5628) __gnu_cxx::new_allocator<std::__detail::_Hash_node_base*>::allocate(unsigned long, void const*) +calls=1 102 +* 228 +* 2 + +fn=(5842) std::allocator_traits<std::allocator<UG::D2::node*> >::deallocate(std::allocator<UG::D2::node*>&, UG::D2::node**, unsigned long) +469 14343 ++1 12294 +cfi=(237) +cfn=(5844) __gnu_cxx::new_allocator<UG::D2::node*>::deallocate(UG::D2::node**, unsigned long) +calls=2049 119 +* 204946 +* 6147 + +fn=(6052) std::allocator_traits<std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::max_size(std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > const&) +505 40 ++1 24 +cfi=(237) +cfn=(6054) __gnu_cxx::new_allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::max_size() const +calls=8 132 +* 56 +* 16 + +fn=(6310) std::allocator_traits<std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::allocate(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>&, unsigned long) +443 72 ++1 72 +cfi=(237) +cfn=(6312) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>::allocate(unsigned long, void const*) +calls=12 102 +* 2193 +* 24 + +fn=(7488) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 1> > >::max_size(std::allocator<Dune::AffineGeometry<double, 0, 1> > const&) +505 10 ++1 6 +cfi=(237) +cfn=(7490) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 1> >::max_size() const +calls=2 132 +* 14 +* 4 + +fn=(8000) void std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 1> > >::construct<Dune::AffineGeometry<double, 0, 1>, Dune::AffineGeometry<double, 0, 1> const&>(std::allocator<Dune::AffineGeometry<double, 0, 1> >&, Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1> const&) +482 28 ++2 12 +cfi=(286) +cfn=(8002) Dune::AffineGeometry<double, 0, 1> const& std::forward<Dune::AffineGeometry<double, 0, 1> const&>(std::remove_reference<Dune::AffineGeometry<double, 0, 1> const&>::type&) +calls=4 74 +* 28 +* 24 +cfi=(237) +cfn=(8004) void __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 1> >::construct<Dune::AffineGeometry<double, 0, 1>, Dune::AffineGeometry<double, 0, 1> const&>(Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1> const&) +calls=4 144 +* 180 +* 12 + +fn=(3080) std::allocator_traits<std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::allocate(std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, unsigned long) +443 96 ++1 96 +cfi=(237) +cfn=(3082) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::allocate(unsigned long, void const*) +calls=16 102 +* 3124 +* 32 + +fn=(3362) void std::allocator_traits<std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +495 96 ++2 80 +cfi=(237) +cfn=(3364) void __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +calls=16 151 +* 1535 +* 48 + +fn=(4636) void std::allocator_traits<std::allocator<Dune::FieldVector<double, 2> > >::construct<Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2> const&>(std::allocator<Dune::FieldVector<double, 2> >&, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2> const&) +482 7623 ++2 3267 +cfi=(286) +cfn=(4634) Dune::FieldVector<double, 2> const& std::forward<Dune::FieldVector<double, 2> const&>(std::remove_reference<Dune::FieldVector<double, 2> const&>::type&) +calls=1089 74 +* 7623 +* 6534 +cfi=(237) +cfn=(4638) void __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::construct<Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2> const&>(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2> const&) +calls=1089 144 +* 44649 +* 3267 + +fn=(4688) std::allocator_traits<std::allocator<unsigned int> >::max_size(std::allocator<unsigned int> const&) +505 15620 ++1 9372 +cfi=(237) +cfn=(4690) __gnu_cxx::new_allocator<unsigned int>::max_size() const +calls=3124 132 +* 21868 +* 6248 + +fn=(4772) void std::allocator_traits<std::allocator<unsigned char> >::construct<unsigned char, unsigned char>(std::allocator<unsigned char>&, unsigned char*, unsigned char&&) +482 14336 ++2 6144 +cfi=(286) +cfn=(4740) unsigned char&& std::forward<unsigned char>(std::remove_reference<unsigned char>::type&) +calls=2048 74 +* 14336 +* 12288 +cfi=(237) +cfn=(4774) void __gnu_cxx::new_allocator<unsigned char>::construct<unsigned char, unsigned char>(unsigned char*, unsigned char&&) +calls=2048 144 +* 75776 +* 6144 + +fn=(6990) std::allocator_traits<std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::allocate(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(6992) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>::allocate(unsigned long, void const*) +calls=4 102 +* 1010 +* 8 + +fn=(7272) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 1, 1> > >::max_size(std::allocator<Dune::AffineGeometry<double, 1, 1> > const&) +505 10 ++1 6 +cfi=(237) +cfn=(7274) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 1> >::max_size() const +calls=2 132 +* 14 +* 4 + +fn=(8018) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 1> > >::deallocate(std::allocator<Dune::FieldMatrix<double, 0, 1> >&, Dune::FieldMatrix<double, 0, 1>*, unsigned long) +469 14 ++1 12 +cfi=(237) +cfn=(8020) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> >::deallocate(Dune::FieldMatrix<double, 0, 1>*, unsigned long) +calls=2 119 +* 200 +* 6 + +fn=(9078) void std::allocator_traits<std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::destroy<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*) +495 42 ++2 35 +cfi=(237) +cfn=(9080) void __gnu_cxx::new_allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::destroy<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*) +calls=7 151 +* 329 +* 21 + +fn=(2884) void std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +482 238 ++2 102 +cfi=(286) +cfn=(2882) +calls=34 74 +* 238 +* 204 +cfi=(237) +cfn=(2886) void __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::construct<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=34 144 +* 7396 +* 102 + +fn=(2968) std::allocator_traits<std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > >::allocate(std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >&, unsigned long) +443 96 ++1 96 +cfi=(237) +cfn=(2970) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::allocate(unsigned long, void const*) +calls=16 102 +* 3760 +* 32 + +fn=(3260) void std::allocator_traits<std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > > >::construct<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >&, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>*, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +482 33 ++2 9 +cfi=(286) +cfn=(2956) std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2958) std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&& std::forward<std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&> >(std::remove_reference<std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&> >::type&) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2960) std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) +calls=3 74 +* 21 +* 21 +cfi=(237) +cfn=(3262) void __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::construct<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>*, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=3 144 +* 2192 +* 18 + +fn=(5876) void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::destroy<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >(std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >&, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >*) +495 36864 ++2 30720 +cfi=(237) +cfn=(5878) void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::destroy<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >(std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >*) +calls=6144 151 +* 49152 +* 18432 + +fn=(6526) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 2, 2> > >::max_size(std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +505 20 ++1 12 +cfi=(237) +cfn=(6528) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> >::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(6736) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 1, 2> > >::max_size(std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +505 20 ++1 12 +cfi=(237) +cfn=(6738) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> >::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(7328) void std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 1, 1> > >::construct<Dune::AffineGeometry<double, 1, 1>, Dune::AffineGeometry<double, 1, 1> const&>(std::allocator<Dune::AffineGeometry<double, 1, 1> >&, Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1> const&) +482 14 ++2 6 +cfi=(286) +cfn=(7330) Dune::AffineGeometry<double, 1, 1> const& std::forward<Dune::AffineGeometry<double, 1, 1> const&>(std::remove_reference<Dune::AffineGeometry<double, 1, 1> const&>::type&) +calls=2 74 +* 14 +* 12 +cfi=(237) +cfn=(7332) void __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 1> >::construct<Dune::AffineGeometry<double, 1, 1>, Dune::AffineGeometry<double, 1, 1> const&>(Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1> const&) +calls=2 144 +* 92 +* 6 + +fn=(7346) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 1, 1> > >::deallocate(std::allocator<Dune::FieldMatrix<double, 1, 1> >&, Dune::FieldMatrix<double, 1, 1>*, unsigned long) +469 14 ++1 12 +cfi=(237) +cfn=(7348) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> >::deallocate(Dune::FieldMatrix<double, 1, 1>*, unsigned long) +calls=2 119 +* 200 +* 6 + +fn=(7498) std::allocator_traits<std::allocator<Dune::AffineGeometry<double, 0, 1> > >::allocate(std::allocator<Dune::AffineGeometry<double, 0, 1> >&, unsigned long) +443 12 ++1 12 +cfi=(237) +cfn=(7500) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 1> >::allocate(unsigned long, void const*) +calls=2 102 +* 170 +* 4 + +fn=(8106) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 2> > >::max_size(std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +505 20 ++1 12 +cfi=(237) +cfn=(8108) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> >::max_size() const +calls=4 132 +* 28 +* 8 + +fn=(8270) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 0, 2> > >::deallocate(std::allocator<Dune::FieldMatrix<double, 0, 2> >&, Dune::FieldMatrix<double, 0, 2>*, unsigned long) +469 28 ++1 24 +cfi=(237) +cfn=(8272) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> >::deallocate(Dune::FieldMatrix<double, 0, 2>*, unsigned long) +calls=4 119 +* 400 +* 12 + +fn=(8354) void std::allocator_traits<std::allocator<Dune::GeometryType> >::construct<Dune::GeometryType, Dune::GeometryType>(std::allocator<Dune::GeometryType>&, Dune::GeometryType*, Dune::GeometryType&&) +482 105 ++2 45 +cfi=(286) +cfn=(8322) Dune::GeometryType&& std::forward<Dune::GeometryType>(std::remove_reference<Dune::GeometryType>::type&) +calls=15 74 +* 105 +* 90 +cfi=(237) +cfn=(8356) void __gnu_cxx::new_allocator<Dune::GeometryType>::construct<Dune::GeometryType, Dune::GeometryType>(Dune::GeometryType*, Dune::GeometryType&&) +calls=15 144 +* 570 +* 45 + +fn=(8752) +443 6 ++1 6 +cfi=(237) +cfn=(8754) __gnu_cxx::new_allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::allocate(unsigned long, void const*) +calls=1 102 +* 8970 +* 2 + +fn=(2878) std::allocator_traits<std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::allocate(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, unsigned long) +443 102 ++1 102 +cfi=(237) +cfn=(2880) __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::allocate(unsigned long, void const*) +calls=17 102 +* 3037 +* 34 + +fn=(2982) void std::allocator_traits<std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > >::construct<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >&, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +482 176 ++2 48 +cfi=(286) +cfn=(2956) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2958) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2960) +calls=16 74 +* 112 +* 112 +cfi=(237) +cfn=(2984) void __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::construct<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=16 144 +* 6169 +* 96 + +fn=(4672) std::allocator_traits<std::allocator<Dune::FieldVector<double, 2> > >::deallocate(std::allocator<Dune::FieldVector<double, 2> >&, Dune::FieldVector<double, 2>*, unsigned long) +469 168 ++1 144 +cfi=(237) +cfn=(4674) __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::deallocate(Dune::FieldVector<double, 2>*, unsigned long) +calls=24 119 +* 2750 +* 72 + +fn=(5062) void std::allocator_traits<std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > > >::destroy<Dune::UGGridBoundarySegment<2> >(std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >&, Dune::UGGridBoundarySegment<2>*) +495 18816 ++2 15680 +cfi=(237) +cfn=(5064) void __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::destroy<Dune::UGGridBoundarySegment<2> >(Dune::UGGridBoundarySegment<2>*) +calls=3136 151 +* 25088 +* 9408 + +fn=(5888) std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::deallocate(std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >&, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*, unsigned long) +469 43008 ++1 36864 +cfi=(237) +cfn=(5890) __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::deallocate(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*, unsigned long) +calls=6144 119 +* 616858 +* 18432 + +fn=(6064) std::allocator_traits<std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::allocate(std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&, unsigned long) +443 24 ++1 24 +cfi=(237) +cfn=(6066) __gnu_cxx::new_allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::allocate(unsigned long, void const*) +calls=4 102 +* 776 +* 8 + +fn=(6302) std::allocator_traits<std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::max_size(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> const&) +505 240 ++1 144 +cfi=(237) +cfn=(6304) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>::max_size() const +calls=48 132 +* 336 +* 96 + +fn=(7212) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 1, 1> > >::max_size(std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +505 10 ++1 6 +cfi=(237) +cfn=(3880) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> >::max_size() const +calls=2 132 +* 14 +* 4 + +fn=(7228) std::allocator_traits<std::allocator<Dune::FieldMatrix<double, 1, 1> > >::allocate(std::allocator<Dune::FieldMatrix<double, 1, 1> >&, unsigned long) +443 12 ++1 12 +cfi=(237) +cfn=(3878) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> >::allocate(unsigned long, void const*) +calls=2 102 +* 323 +* 4 + +fl=(329) /home/joscha/software/dune/dune-common/dune/common/densematrix.hh +fn=(6580) Dune::FieldMatrix<double, 2, 2>& Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::operator=<double, void>(double const&) +306 24 ++2 12 +cfn=(6582) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::asImp() +calls=4 168 +* 28 +* 20 +cfn=(6584) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 2, 2>, double, void>::apply(Dune::FieldMatrix<double, 2, 2>&, double const&) +calls=4 97 +* 4352 ++1 12 +cfn=(6582) +calls=4 168 +* 28 ++1 8 + +fn=(6596) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::begin() +243 24 ++2 24 +cfi=(254) +cfn=(6594) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::DenseIterator(Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >&, unsigned long) +calls=4 -93 +* 60 ++1 12 + +fn=(7838) Dune::FieldMatrix<double, 0, 0>& Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >::operator=<double, void>(double const&) +306 6 ++2 3 +cfn=(7840) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >::asImp() +calls=1 168 +* 7 +* 5 +cfn=(7842) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 0, 0>, double, void>::apply(Dune::FieldMatrix<double, 0, 0>&, double const&) +calls=1 97 +* 318 ++1 3 +cfn=(7840) +calls=1 168 +* 7 ++1 2 + +fn=(7854) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >::begin() +243 6 ++2 6 +cfi=(254) +cfn=(7852) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>::DenseIterator(Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >&, unsigned long) +calls=1 -93 +* 15 ++1 3 + +fn=(8154) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >::asImp() +168 84 + +fn=(8156) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 0, 2>, double, void>::apply(Dune::FieldMatrix<double, 0, 2>&, double const&) +97 54 ++3 48 +cfn=(8158) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >::end() +calls=6 249 +* 354 +* 30 +cfn=(8168) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >::begin() +calls=6 243 +* 180 +* 36 +cfi=(265) +cfn=(8170) void std::fill<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double const&) +calls=6 742 +* 1170 ++1 36 + +fn=(8158) +249 36 ++2 18 +cfn=(8160) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >::rows() const +calls=6 736 +* 156 +* 36 +cfi=(254) +cfn=(8166) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::DenseIterator(Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >&, unsigned long) +calls=6 -99 +* 90 ++1 18 + +fn=(3916) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::begin() +243 132 ++2 132 +cfi=(254) +cfn=(3914) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::DenseIterator(Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >&, unsigned long) +calls=22 -93 +* 330 ++1 66 + +fn=(4026) Dune::FieldMatrix<double, 1, 1>& Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::operator=<double, void>(double const&) +306 108 ++2 54 +cfn=(3902) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::asImp() +calls=18 168 +* 126 +* 90 +cfn=(4028) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 1, 1>, double, void>::apply(Dune::FieldMatrix<double, 1, 1>&, double const&) +calls=18 97 +* 8190 ++1 54 +cfn=(3902) +calls=18 168 +* 126 ++1 36 + +fn=(6614) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::operator[](unsigned long) +216 192 ++2 96 +cfn=(6582) +calls=32 -50 +* 224 +* 160 +cfi=(328) /home/joscha/software/dune/dune-common/dune/common/fmatrix.hh +cfn=(6616) Dune::FieldMatrix<double, 2, 2>::mat_access(unsigned long) +calls=32 +52 +* 1216 ++1 64 + +fn=(3900) Dune::FieldMatrix<double, 1, 1>& Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::operator=<int, void>(int const&) +306 24 ++2 12 +cfn=(3902) +calls=4 168 +* 28 +* 20 +cfn=(3904) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 1, 1>, int, void>::apply(Dune::FieldMatrix<double, 1, 1>&, int const&) +calls=4 97 +* 1824 ++1 12 +cfn=(3902) +calls=4 168 +* 28 ++1 8 + +fn=(6582) +168 280 + +fn=(6584) +97 36 ++3 32 +cfn=(6586) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::end() +calls=4 249 +* 236 +* 20 +cfn=(6596) +calls=4 243 +* 120 +* 24 +cfi=(265) +cfn=(6598) void std::fill<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double const&) +calls=4 742 +* 3860 ++1 24 + +fn=(6586) +249 24 ++2 12 +cfn=(6588) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::rows() const +calls=4 736 +* 104 +* 24 +cfi=(254) +cfn=(6594) +calls=4 -99 +* 60 ++1 12 + +fn=(6782) Dune::FieldMatrix<double, 1, 2>& Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::operator=<double, void>(double const&) +306 48 ++2 24 +cfn=(6784) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::asImp() +calls=8 168 +* 56 +* 40 +cfn=(6786) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 1, 2>, double, void>::apply(Dune::FieldMatrix<double, 1, 2>&, double const&) +calls=8 97 +* 5624 ++1 24 +cfn=(6784) +calls=8 168 +* 56 ++1 16 + +fn=(6798) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::begin() +243 48 ++2 48 +cfi=(254) +cfn=(6796) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::DenseIterator(Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >&, unsigned long) +calls=8 -93 +* 120 ++1 24 + +fn=(7310) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::operator[](unsigned long) const +221 504 ++2 252 +cfn=(3910) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::asImp() const +calls=84 -54 +* 588 +* 420 +cfi=(328) +cfn=(7312) Dune::FieldMatrix<double, 1, 1>::mat_access(unsigned long) const +calls=84 473 +* 672 ++1 168 + +fn=(7432) Dune::FieldMatrix<double, 0, 1>& Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >::operator=<double, void>(double const&) +306 12 ++2 6 +cfn=(7434) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >::asImp() +calls=2 168 +* 14 +* 10 +cfn=(7436) Dune::Impl::DenseMatrixAssigner<Dune::FieldMatrix<double, 0, 1>, double, void>::apply(Dune::FieldMatrix<double, 0, 1>&, double const&) +calls=2 97 +* 636 ++1 6 +cfn=(7434) +calls=2 168 +* 14 ++1 4 + +fn=(7448) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >::begin() +243 12 ++2 12 +cfi=(254) +cfn=(7446) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::DenseIterator(Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >&, unsigned long) +calls=2 -93 +* 30 ++1 6 + +fn=(7840) +168 14 + +fn=(7842) +97 9 ++3 8 +cfn=(7844) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >::end() +calls=1 249 +* 59 +* 5 +cfn=(7854) +calls=1 243 +* 30 +* 6 +cfi=(265) +cfn=(7856) void std::fill<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, double const&) +calls=1 742 +* 195 ++1 6 + +fn=(7844) +249 6 ++2 3 +cfn=(7846) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >::rows() const +calls=1 736 +* 26 +* 6 +cfi=(254) +cfn=(7852) +calls=1 -99 +* 15 ++1 3 + +fn=(8162) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >::asImp() const +169 42 + +fn=(3904) +97 36 ++3 36 +cfn=(3906) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::end() +calls=4 249 +* 236 +* 20 +cfn=(3916) +calls=4 243 +* 120 +* 24 +cfi=(265) +cfn=(3918) void std::fill<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double const&) +calls=4 742 +* 1328 ++1 24 + +fn=(3906) +249 132 ++2 66 +cfn=(3908) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::rows() const +calls=22 736 +* 572 +* 132 +cfi=(254) +cfn=(3914) +calls=22 -99 +* 330 ++1 66 + +fn=(6816) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::operator[](unsigned long) +216 144 ++2 72 +cfn=(6784) +calls=24 -50 +* 168 +* 120 +cfi=(328) +cfn=(6818) Dune::FieldMatrix<double, 1, 2>::mat_access(unsigned long) +calls=24 +52 +* 912 ++1 48 + +fn=(8160) +736 30 ++2 18 +cfn=(8162) +calls=6 169 +* 42 +* 12 +cfi=(328) +cfn=(8164) Dune::FieldMatrix<double, 0, 2>::mat_rows() const +calls=6 267 +* 42 ++1 12 + +fn=(3902) +168 1064 + +fn=(6590) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::asImp() const +169 252 + +fn=(6784) +168 280 + +fn=(6786) +97 72 ++3 64 +cfn=(6788) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::end() +calls=8 249 +* 472 +* 40 +cfn=(6798) +calls=8 243 +* 240 +* 48 +cfi=(265) +cfn=(6800) void std::fill<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double const&) +calls=8 742 +* 4640 ++1 48 + +fn=(6788) +249 48 ++2 24 +cfn=(6790) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::rows() const +calls=8 736 +* 208 +* 48 +cfi=(254) +cfn=(6796) +calls=8 -99 +* 120 ++1 24 + +fn=(7434) +168 28 + +fn=(7436) +97 18 ++3 16 +cfn=(7438) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >::end() +calls=2 249 +* 118 +* 10 +cfn=(7448) +calls=2 243 +* 60 +* 12 +cfi=(265) +cfn=(7450) void std::fill<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double const&) +calls=2 742 +* 390 ++1 12 + +fn=(7438) +249 12 ++2 6 +cfn=(7440) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >::rows() const +calls=2 736 +* 52 +* 12 +cfi=(254) +cfn=(7446) +calls=2 -99 +* 30 ++1 6 + +fn=(7848) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >::asImp() const +169 7 + +fn=(8044) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::operator[](unsigned long) const +221 504 ++2 252 +cfn=(6792) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >::asImp() const +calls=84 -54 +* 588 +* 420 +cfi=(328) +cfn=(8046) Dune::FieldMatrix<double, 1, 2>::mat_access(unsigned long) const +calls=84 +53 +* 3192 ++1 168 + +fn=(3910) +169 742 + +fn=(4028) +97 162 ++3 144 +cfn=(3906) +calls=18 249 +* 1062 +* 90 +cfn=(3916) +calls=18 243 +* 540 +* 108 +cfi=(265) +cfn=(3918) +calls=18 742 +* 5976 ++1 108 + +fn=(6588) +736 20 ++2 12 +cfn=(6590) +calls=4 169 +* 28 +* 8 +cfi=(328) +cfn=(6592) Dune::FieldMatrix<double, 2, 2>::mat_rows() const +calls=4 267 +* 28 ++1 8 + +fn=(6680) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >::operator[](unsigned long) const +221 192 ++2 96 +cfn=(6590) +calls=32 -54 +* 224 +* 160 +cfi=(328) +cfn=(6682) Dune::FieldMatrix<double, 2, 2>::mat_access(unsigned long) const +calls=32 +53 +* 1216 ++1 64 + +fn=(7846) +736 5 ++2 3 +cfn=(7848) +calls=1 169 +* 7 +* 2 +cfi=(328) +cfn=(7850) Dune::FieldMatrix<double, 0, 0>::mat_rows() const +calls=1 267 +* 7 ++1 2 + +fn=(3908) +736 110 ++2 66 +cfn=(3910) +calls=22 169 +* 154 +* 44 +cfi=(328) +cfn=(3912) Dune::FieldMatrix<double, 1, 1>::mat_rows() const +calls=22 463 +* 154 ++1 44 + +fn=(3934) Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >::operator[](unsigned long) +216 648 ++2 324 +cfn=(3902) +calls=108 -50 +* 756 +* 540 +cfi=(328) +cfn=(3936) Dune::FieldMatrix<double, 1, 1>::mat_access(unsigned long) +calls=108 466 +* 864 ++1 216 + +fn=(6792) +169 644 + +fn=(7442) Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >::asImp() const +169 14 + +fn=(8054) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 1> >::asImp() +168 392 + +fn=(6790) +736 40 ++2 24 +cfn=(6792) +calls=8 169 +* 56 +* 16 +cfi=(328) +cfn=(6794) Dune::FieldMatrix<double, 1, 2>::mat_rows() const +calls=8 267 +* 56 ++1 16 + +fn=(7440) +736 10 ++2 6 +cfn=(7442) +calls=2 169 +* 14 +* 4 +cfi=(328) +cfn=(7444) Dune::FieldMatrix<double, 0, 1>::mat_rows() const +calls=2 267 +* 14 ++1 4 + +fn=(8052) Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 1> >::operator[](unsigned long) +216 336 ++2 168 +cfn=(8054) +calls=56 -50 +* 392 +* 280 +cfi=(328) +cfn=(8056) Dune::FieldMatrix<double, 2, 1>::mat_access(unsigned long) +calls=56 +52 +* 2072 ++1 112 + +fn=(8152) Dune::FieldMatrix<double, 0, 2>& Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >::operator=<double, void>(double const&) +306 36 ++2 18 +cfn=(8154) +calls=6 168 +* 42 +* 30 +cfn=(8156) +calls=6 97 +* 1908 ++1 18 +cfn=(8154) +calls=6 168 +* 42 ++1 12 + +fn=(8168) +243 36 ++2 36 +cfi=(254) +cfn=(8166) +calls=6 -93 +* 90 ++1 18 + +fl=(241) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridindexsets.cc +fn=(8466) Dune::UGGridLeafIndexSet<Dune::UGGrid<2> const>::update(std::vector<unsigned int, std::allocator<unsigned int> >*) +153 55 ++7 20 +cfi=(239) +cfn=(5958) +calls=5 +10 +* 115 +* 45 ++2 105 +cfi=(413) /home/joscha/software/dune/dune-grid/dune/grid/common/grid.hh +cfn=(6110) Dune::GridDefaultImplementation<2, 2, double, Dune::UGGridFamily<2> >::levelGridView(int) const +calls=15 867 +* 990 +* 75 +cfi=(416) /home/joscha/software/dune/dune-grid/dune/grid/common/rangegenerators.hh +cfn=(6118) decltype (entities({parm#1}, (Dune::Codim<0>)())) Dune::elements<Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > >(Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > const&) +calls=15 833 +* 10890 +* 105 +cfi=(422) /home/joscha/software/dune/dune-common/dune/common/iteratorrange.hh +cfn=(6168) Dune::IteratorRange<Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::begin() const +calls=15 44 +* 960 +* 75 +cfi=(422) +cfn=(6170) Dune::IteratorRange<Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::end() const +calls=15 50 +* 975 +* 4638795 +cfi=(421) /home/joscha/software/dune/dune-grid/dune/grid/common/entityiterator.hh +cfn=(6172) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator!=(Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) const +calls=927759 -31 +* 72365202 +* 4638750 +cfi=(421) +cfn=(6180) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator*() const +calls=927744 -53 +* 16699392 +* 927744 ++3 2783232 +cfi=(418) +cfn=(6184) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::impl() const +calls=927744 +91 +* 6494208 +* 1855488 ++3 4638720 +cfi=(418) +cfn=(6186) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::subEntities(unsigned int) const +calls=927744 335 +* 53809152 +* 11132928 +cfi=(418) +cfn=(6186) +calls=2783232 335 +* 161427456 +* 14843904 ++2 8349696 +cfi=(418) +cfn=(6192) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::type() const +calls=2783232 343 +* 136378368 +* 2783232 ++1 8349696 +cfi=(423) +cfn=(6198) auto Dune::referenceElement<double, 2>(Dune::GeometryType const&, Dune::Dim<2>) +calls=2783232 313 +* 295022592 +* 2783232 ++1 19482624 +cfi=(425) /home/joscha/software/dune/dune-geometry/dune/geometry/referenceelement.hh +cfn=(8286) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 2> >::subEntity(int, int, int, int) const +calls=2783232 -38 +* 715290624 +* 2783232 ++1 19482624 +cfi=(425) +cfn=(8286) +calls=2783232 -39 +* 715290624 +* 2783232 ++1 13916160 +cfi=(429) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridrenumberer.hh +cfn=(8288) Dune::UGGridRenumberer<2>::verticesDUNEtoUG(int, Dune::GeometryType const&) +calls=2783232 53 +* 128028672 +* 13916160 +cfi=(350) +cfn=(8292) Dune::UG_NS<2>::Corner(UG::D2::element const*, int) +calls=2783232 939 +* 58447872 +* 16699392 +cfi=(429) +cfn=(8288) +calls=2783232 53 +* 128028672 +* 13916160 +cfi=(350) +cfn=(8292) +calls=2783232 939 +* 58447872 +* 8349696 +cfi=(350) +cfn=(8294) Dune::UG_NS<2>::GetEdge(UG::D2::node*, UG::D2::node*) +calls=2783232 957 +* 192701832 +* 5566464 +cfi=(350) +cfn=(8468) Dune::UG_NS<2>::leafIndex(UG::D2::edge*) +calls=2783232 800 +* 22265856 +* 2783232 ++4 5566464 +-10 5566464 ++23 4638720 +cfi=(418) +cfn=(6186) +calls=927744 335 +* 48242688 +* 11132928 +cfi=(418) +cfn=(6186) +calls=2783232 335 +* 144728064 +* 14843904 ++3 13916160 +cfi=(350) +cfn=(8292) +calls=2783232 939 +* 58447872 +* 2783232 +-3 5566464 +-29 2783232 +cfi=(421) +cfn=(8298) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator++() +calls=927744 -95 +* 187403673 +* 927744 +-2 30 ++40 10 ++1 10 ++1 10 ++3 20 +cfi=(239) +cfn=(5958) +calls=5 -35 +* 115 +* 35 ++4 11 ++3 22 ++2 77 +cfi=(413) +cfn=(6110) +calls=11 867 +* 726 +* 55 +cfi=(416) +cfn=(6118) +calls=11 833 +* 7986 +* 77 +cfi=(422) +cfn=(6168) +calls=11 44 +* 704 +* 55 +cfi=(422) +cfn=(6170) +calls=11 50 +* 715 +* 1252805 +cfi=(421) +cfn=(6172) +calls=250561 -83 +* 19543758 +* 1252775 +cfi=(421) +cfn=(6180) +calls=250551 109 +* 4509918 +* 250551 ++3 751653 +cfi=(418) +cfn=(8472) Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::isLeaf() const +calls=250551 438 +* 10272591 +* 751653 ++3 195255 ++3 585765 +cfi=(418) +cfn=(6184) +calls=195255 +33 +* 1366785 +* 390510 ++3 976275 +cfi=(418) +cfn=(6186) +calls=195255 335 +* 11324790 +* 2343060 +cfi=(418) +cfn=(6186) +calls=585765 335 +* 33974370 +* 3124080 ++2 1757295 +cfi=(418) +cfn=(6192) +calls=585765 343 +* 28702485 +* 585765 ++1 1757295 +cfi=(423) +cfn=(6198) +calls=585765 +84 +* 62091090 +* 585765 ++1 4100355 +cfi=(425) +cfn=(8286) +calls=585765 -96 +* 150541605 +* 585765 ++1 4100355 +cfi=(425) +cfn=(8286) +calls=585765 -97 +* 150541605 +* 585765 ++1 2928825 +cfi=(429) +cfn=(8288) +calls=585765 53 +* 26945190 +* 2928825 +cfi=(350) +cfn=(8292) +calls=585765 939 +* 12301065 +* 3514590 +cfi=(429) +cfn=(8288) +calls=585765 53 +* 26945190 +* 2928825 +cfi=(350) +cfn=(8292) +calls=585765 939 +* 12301065 +* 1757295 +cfi=(350) +cfn=(8294) +calls=585765 957 +* 40402205 +* 1171530 +cfi=(350) +cfn=(8468) +calls=585765 800 +* 4686120 +* 585765 ++4 2343060 ++3 2060884 ++2 883236 +cfi=(350) +cfn=(8478) Dune::UG_NS<2>::EFather(UG::D2::element const*) +calls=294412 987 +* 5299416 +* 294412 ++1 588824 ++2 873828 +cfi=(350) +cfn=(9088) Dune::UG_NS<2>::hasCopy(UG::D2::element const*) +calls=291276 523 +* 6699348 +* 1165104 +-18 1171530 ++58 976275 +cfi=(418) +cfn=(6186) +calls=195255 +51 +* 10153260 +* 2343060 +cfi=(418) +cfn=(6186) +calls=585765 +51 +* 30459780 +* 3124080 ++3 2928825 +cfi=(350) +cfn=(8292) +calls=585765 939 +* 12301065 +* 585765 ++1 1171530 +-4 1171530 +-66 55296 +-4 165888 +cfi=(421) +cfn=(8298) +calls=55296 67 +* 11169546 +* 585765 +cfi=(421) +cfn=(8298) +calls=195255 67 +* 39441275 +* 250550 ++78 20 ++1 12 +-88 20 ++93 20 +cfi=(259) +cfn=(8312) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::resize(unsigned long) +calls=4 934 +* 442 ++1 24 +cfi=(259) +cfn=(8378) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::push_back(Dune::GeometryType const&) +calls=4 1184 +* 1373 ++15 8 ++1 8 ++1 8 ++1 8 ++2 24 +cfi=(413) +cfn=(8480) Dune::GridDefaultImplementation<2, 2, double, Dune::UGGridFamily<2> >::leafGridView() const +calls=4 875 +* 232 +* 20 +cfi=(416) +cfn=(8486) decltype (entities({parm#1}, (Dune::Codim<0>)())) Dune::elements<Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > >(Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > const&) +calls=4 833 +* 12832266 +* 28 +cfi=(422) +cfn=(8520) Dune::IteratorRange<Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::begin() const +calls=4 44 +* 256 +* 20 +cfi=(422) +cfn=(8522) Dune::IteratorRange<Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::end() const +calls=4 50 +* 260 +* 870420 +cfi=(421) +cfn=(8524) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator!=(Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) const +calls=174084 131 +* 13578552 +* 870408 +cfi=(421) +cfn=(8528) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator*() const +calls=174080 109 +* 3133440 +* 174080 ++2 522240 +cfi=(418) +cfn=(6192) +calls=174080 +22 +* 8529920 +* 174080 ++2 522240 +cfi=(389) /home/joscha/software/dune/dune-geometry/dune/geometry/type.hh +cfn=(8308) Dune::GeometryType::isSimplex() const +calls=174080 629 +* 3133440 +* 348160 ++1 1392640 +cfi=(418) +cfn=(6184) +calls=174080 -68 +* 1218560 +* 522240 +cfi=(350) +cfn=(8532) Dune::UG_NS<2>::leafIndex(UG::D2::element*) +calls=174080 780 +* 1392640 +* 348160 +-5 522240 +cfi=(421) +cfn=(8534) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator++() +calls=174080 67 +* 50482872 +* 174080 ++19 20 +cfi=(259) +cfn=(8312) +calls=4 934 +* 442 ++1 16 ++1 16 +cfi=(389) +cfn=(4726) Dune::GeometryTypes::simplex(unsigned int) +calls=4 767 +* 164 +* 20 +cfi=(259) +cfn=(8316) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::push_back(Dune::GeometryType&&) +calls=4 1200 +* 1946 ++1 16 ++2 16 ++2 16 ++8 8 ++2 12 +cfi=(239) +cfn=(5958) +calls=1 170 +* 23 +* 15 ++2 6 +cfi=(413) +cfn=(8480) +calls=1 875 +* 58 +* 5 +cfi=(416) +cfn=(8540) decltype (entities({parm#1}, (Dune::Dim<0>)())) Dune::vertices<Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > >(Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > const&) +calls=1 875 +* 778 +* 7 +cfi=(422) +cfn=(8574) Dune::IteratorRange<Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::begin() const +calls=1 44 +* 64 +* 5 +cfi=(422) +cfn=(8576) Dune::IteratorRange<Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::end() const +calls=1 50 +* 65 +* 5450 +cfi=(421) +cfn=(8578) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator!=(Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) const +calls=1090 131 +* 85020 +* 5447 +cfi=(421) +cfn=(8582) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator*() const +calls=1089 109 +* 19602 +* 1089 ++1 10890 +cfi=(259) +cfn=(4724) std::vector<unsigned int, std::allocator<unsigned int> >::operator[](unsigned long) +calls=1089 1040 +* 13068 +* 5445 +cfi=(418) +cfn=(8452) Dune::Entity<2, 2, Dune::UGGrid<2> const, Dune::UGGridEntity>::impl() const +calls=1089 84 +* 7623 +* 3267 +cfi=(350) +cfn=(8586) Dune::UG_NS<2>::leafIndex(UG::D2::node*) +calls=1089 810 +* 9801 +* 1089 +-1 3267 +cfi=(421) +cfn=(8588) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator++() +calls=1089 67 +* 308112 +* 1089 ++5 18 +cfi=(413) +cfn=(8480) +calls=3 875 +* 174 +* 15 +cfi=(416) +cfn=(8540) +calls=3 875 +* 6099862 +* 21 +cfi=(422) +cfn=(8574) +calls=3 44 +* 192 +* 15 +cfi=(422) +cfn=(8576) +calls=3 50 +* 195 +* 434590 +cfi=(421) +cfn=(8578) +calls=86918 131 +* 6779604 +* 434581 +cfi=(421) +cfn=(8582) +calls=86915 109 +* 1564470 +* 86915 ++1 695320 +cfi=(418) +cfn=(8452) +calls=86915 84 +* 608405 +* 260745 +cfi=(350) +cfn=(8586) +calls=86915 810 +* 782235 +* 86915 +-1 260745 +cfi=(421) +cfn=(8588) +calls=86915 67 +* 24596720 +* 86915 ++4 24 +cfi=(259) +cfn=(8312) +calls=4 934 +* 442 ++1 28 +cfi=(259) +cfn=(8378) +calls=4 1184 +* 1373 ++2 36 + +fn=(6108) Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>::update(Dune::UGGrid<2> const&, int, std::vector<unsigned int, std::allocator<unsigned int> >*) +11 132 ++3 33 ++1 33 ++6 77 +cfi=(413) +cfn=(6110) +calls=11 867 +* 726 +* 55 +cfi=(416) +cfn=(6118) +calls=11 833 +* 7986 +* 77 +cfi=(422) +cfn=(6168) +calls=11 +23 +* 704 +* 55 +cfi=(422) +cfn=(6170) +calls=11 +29 +* 715 +* 4597815 +cfi=(421) +cfn=(6172) +calls=919563 131 +* 71725914 +* 4597782 +cfi=(421) +cfn=(6180) +calls=919552 +88 +* 16551936 +* 919552 ++1 2758656 +cfi=(418) +cfn=(6184) +calls=919552 256 +* 6436864 +* 1839104 ++2 4597760 +cfi=(418) +cfn=(6186) +calls=919552 335 +* 53334016 +* 11034624 +cfi=(418) +cfn=(6186) +calls=2758656 335 +* 160002048 +* 14712832 ++2 8275968 +cfi=(418) +cfn=(6192) +calls=2758656 343 +* 135174144 +* 2758656 ++1 8275968 +cfi=(423) +cfn=(6198) +calls=2758656 313 +* 292897742 +* 2758656 ++1 19310592 +cfi=(425) +cfn=(8286) +calls=2758656 134 +* 708974592 +* 2758656 ++1 19310592 +cfi=(425) +cfn=(8286) +calls=2758656 134 +* 708974592 +* 2758656 ++1 13793280 +cfi=(429) +cfn=(8288) +calls=2758656 +23 +* 126898176 +* 13793280 +cfi=(350) +cfn=(8292) +calls=2758656 939 +* 57931776 +* 16551936 +cfi=(429) +cfn=(8288) +calls=2758656 +23 +* 126898176 +* 13793280 +cfi=(350) +cfn=(8292) +calls=2758656 939 +* 57931776 +* 8275968 +cfi=(350) +cfn=(8294) +calls=2758656 957 +* 191045256 +* 5517312 +cfi=(350) +cfn=(8296) Dune::UG_NS<2>::levelIndex(UG::D2::edge*) +calls=2758656 756 +* 22069248 +* 2758656 ++4 5517312 +-10 5517312 +-3 2758656 +cfi=(421) +cfn=(8298) +calls=919552 +46 +* 185749053 +* 919552 ++25 22 ++1 22 ++1 22 ++1 22 ++1 22 ++1 22 ++1 22 ++2 77 +cfi=(413) +cfn=(6110) +calls=11 867 +* 726 +* 55 +cfi=(416) +cfn=(6118) +calls=11 833 +* 7986 +* 77 +cfi=(422) +cfn=(6168) +calls=11 -10 +* 704 +* 55 +cfi=(422) +cfn=(6170) +calls=11 -4 +* 715 +* 4597815 +cfi=(421) +cfn=(6172) +calls=919563 +77 +* 71725914 +* 4597782 +cfi=(421) +cfn=(6180) +calls=919552 +55 +* 16551936 +* 919552 ++2 2758656 +cfi=(418) +cfn=(6184) +calls=919552 256 +* 6436864 +* 1839104 ++3 2758656 +cfi=(418) +cfn=(6192) +calls=919552 343 +* 45058048 +* 919552 ++1 2758656 +cfi=(389) +cfn=(8308) +calls=919552 629 +* 16551936 +* 1839104 ++1 7356416 +cfi=(350) +cfn=(8310) Dune::UG_NS<2>::levelIndex(UG::D2::element*) +calls=919552 730 +* 7356416 +* 1839104 ++13 4597760 +cfi=(418) +cfn=(6186) +calls=919552 335 +* 53334016 +* 11034624 +cfi=(418) +cfn=(6186) +calls=2758656 335 +* 160002048 +* 14712832 ++2 8275968 +cfi=(423) +cfn=(6198) +calls=2758656 313 +* 292417536 +* 2758656 ++1 19310592 +cfi=(425) +cfn=(8286) +calls=2758656 +57 +* 708974592 +* 2758656 ++1 19310592 +cfi=(425) +cfn=(8286) +calls=2758656 +56 +* 708974592 +* 2758656 ++1 13793280 +cfi=(429) +cfn=(8288) +calls=2758656 -26 +* 126898176 +* 13793280 +cfi=(350) +cfn=(8292) +calls=2758656 939 +* 57931776 +* 16551936 +cfi=(429) +cfn=(8288) +calls=2758656 -26 +* 126898176 +* 13793280 +cfi=(350) +cfn=(8292) +calls=2758656 939 +* 57931776 +* 8275968 +cfi=(350) +cfn=(8294) +calls=2758656 957 +* 191045256 +* 5517312 +cfi=(350) +cfn=(8296) +calls=2758656 756 +* 22069248 +* 2758656 ++4 11034624 ++1 9679040 +-10 5517312 +-20 2758656 +cfi=(421) +cfn=(8298) +calls=919552 +13 +* 185749053 +* 919552 ++53 55 +cfi=(259) +cfn=(8312) +calls=11 934 +* 1031 ++1 44 ++1 44 +cfi=(389) +cfn=(4726) +calls=11 767 +* 451 +* 55 +cfi=(259) +cfn=(8316) +calls=11 1200 +* 6895 ++1 44 ++2 44 ++2 44 ++3 55 +cfi=(259) +cfn=(8312) +calls=11 934 +* 1031 ++1 66 +cfi=(259) +cfn=(8378) +calls=11 1184 +* 5678 ++14 22 ++2 24 ++2 7 +cfi=(413) +cfn=(6110) +calls=1 867 +* 66 +* 5 +cfi=(416) +cfn=(8388) decltype (entities({parm#1}, (Dune::Dim<0>)())) Dune::vertices<Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > >(Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > const&) +calls=1 875 +* 746 +* 7 +cfi=(422) +cfn=(8436) Dune::IteratorRange<Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::begin() const +calls=1 -92 +* 64 +* 5 +cfi=(422) +cfn=(8438) Dune::IteratorRange<Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::end() const +calls=1 -86 +* 65 +* 5450 +cfi=(421) +cfn=(8440) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator!=(Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) const +calls=1090 -5 +* 85020 +* 5447 +cfi=(421) +cfn=(8448) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator*() const +calls=1089 -27 +* 19602 +* 1089 ++1 10890 +cfi=(259) +cfn=(4724) +calls=1089 1040 +* 13068 +* 5445 +cfi=(418) +cfn=(8452) +calls=1089 -53 +* 7623 +* 3267 +cfi=(350) +cfn=(8454) Dune::UG_NS<2>::levelIndex(UG::D2::node*) +calls=1089 766 +* 8712 +* 1089 +-1 3267 +cfi=(421) +cfn=(8456) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::operator++() +calls=1089 -69 +* 219937 +* 1089 ++5 70 +cfi=(413) +cfn=(6110) +calls=10 867 +* 660 +* 50 +cfi=(416) +cfn=(8388) +calls=10 875 +* 7460 +* 70 +cfi=(422) +cfn=(8436) +calls=10 -97 +* 640 +* 50 +cfi=(422) +cfn=(8438) +calls=10 -91 +* 650 +* 2310500 +cfi=(421) +cfn=(8440) +calls=462100 -10 +* 36043800 +* 2310470 +cfi=(421) +cfn=(8448) +calls=462090 -32 +* 8317620 +* 462090 ++1 3696720 +cfi=(418) +cfn=(8452) +calls=462090 -58 +* 3234630 +* 1386270 +cfi=(350) +cfn=(8454) +calls=462090 766 +* 3696720 +* 462090 +-1 1386270 +cfi=(421) +cfn=(8456) +calls=462090 -74 +* 93341770 +* 462090 +-4 1 ++11 6 +cfi=(259) +cfn=(8312) +calls=1 934 +* 49 +* 60 +cfi=(259) +cfn=(8312) +calls=10 934 +* 982 ++1 77 +cfi=(259) +cfn=(8378) +calls=11 1184 +* 5461 ++1 88 + +fn=(2208) __static_initialization_and_destruction_0(int, int) +379 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(241) +379 3 + +fn=(2206) _GLOBAL__sub_I_uggridindexsets.cc +379 6 +cfn=(2208) +calls=1 * +* 119 +* 2 + +fl=(275) /usr/include/c++/9/ext/type_traits.h +fn=(2454) bool __gnu_cxx::__is_null_pointer<char const>(char const*) +152 844 ++1 844 + +fn=(3496) bool __gnu_cxx::__is_null_pointer<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >) +157 12 ++1 9 + +fn=(2900) bool __gnu_cxx::__is_null_pointer<char>(char*) +152 388 ++1 388 + +fl=(414) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridviews.hh +fn=(8482) Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::UGGridLeafGridView(Dune::UGGrid<2> const&) +315 60 ++1 36 ++1 36 + +fn=(8548) Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::Codim<2>::Iterator Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::end<2>() const +360 36 ++2 12 +cfi=(430) +cfn=(8550) +calls=4 71 +* 376 +* 20 +cfi=(421) +cfn=(8552) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +calls=4 146 +* 200 ++1 24 + +fn=(8494) Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::Codim<0>::Iterator Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::end<0>() const +360 72 ++2 24 +cfi=(430) +cfn=(8496) +calls=8 71 +* 752 +* 40 +cfi=(421) +cfn=(8498) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +calls=8 146 +* 400 ++1 48 + +fn=(6152) Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::grid() const +109 900 ++2 720 ++1 360 ++1 360 + +fn=(6126) Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::Codim<0>::Iterator Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::end<0>() const +161 441 ++2 147 +cfi=(417) +cfn=(6128) +calls=49 38 +* 4606 +* 245 +cfi=(421) +cfn=(6142) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +calls=49 -17 +* 2450 ++1 294 + +fn=(8504) Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::Codim<0>::Iterator Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::begin<0>() const +346 72 ++2 24 +cfn=(8506) Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::grid() const +calls=8 -28 +* 104 +* 40 +cfi=(430) +cfn=(8508) +calls=8 32 +* 25660612 +* 40 +cfi=(421) +cfn=(8498) +calls=8 146 +* 400 ++1 48 + +fn=(6114) Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::UGGridLevelGridView(Dune::UGGrid<2> const&, int) +103 360 ++2 360 ++1 180 + +fn=(6150) Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::Codim<0>::Iterator Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::begin<0>() const +135 490 ++2 147 +cfn=(6152) +calls=49 -28 +* 637 +* 245 ++3 147 +cfn=(6152) +calls=49 -31 +* 637 +* 490 ++3 245 +cfn=(6152) +calls=49 -34 +* 637 +* 294 +cfi=(417) +cfn=(6154) +calls=49 -99 +* 8967 +* 245 +cfi=(421) +cfn=(6142) +calls=49 +3 +* 2450 ++1 392 + +fn=(8396) Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::Codim<2>::Iterator Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::end<2>() const +161 99 ++2 33 +cfi=(417) +cfn=(8398) +calls=11 38 +* 1034 +* 55 +cfi=(421) +cfn=(8412) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> const&) +calls=11 -17 +* 550 ++1 66 + +fn=(8420) Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::Codim<2>::Iterator Dune::UGGridLevelGridView<Dune::UGGrid<2> const>::begin<2>() const +135 110 ++2 33 +cfn=(6152) +calls=11 -28 +* 143 +* 55 ++3 33 +cfn=(6152) +calls=11 -31 +* 143 +* 110 ++3 55 +cfn=(6152) +calls=11 -34 +* 143 +* 66 +cfi=(417) +cfn=(8422) +calls=11 -99 +* 2013 +* 55 +cfi=(421) +cfn=(8412) +calls=11 +3 +* 550 ++1 88 + +fn=(8506) +320 60 ++2 48 ++1 24 ++1 24 + +fn=(8558) Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::Codim<2>::Iterator Dune::UGGridLeafGridView<Dune::UGGrid<2> const>::begin<2>() const +346 36 ++2 12 +cfn=(8506) +calls=4 -28 +* 52 +* 20 +cfi=(430) +cfn=(8560) +calls=4 32 +* 6098600 +* 20 +cfi=(421) +cfn=(8552) +calls=4 146 +* 200 ++1 24 + +fl=(243) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridgeometry.cc +fn=(2216) __static_initialization_and_destruction_0(int, int) +184 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(243) +184 3 + +fn=(2214) _GLOBAL__sub_I_uggridgeometry.cc +184 6 +cfn=(2216) +calls=1 * +* 119 +* 2 + +fl=(403) +fn=(5488) +402 2107038 ++3 1053519 ++1 702346 ++1 702346 ++2 10 ++1 15 ++1 20 ++4 1053504 ++1 1053504 ++1 1053504 ++4 1755840 ++2 1053504 +-2 25 ++2 15 + +fn=(5474) +402 1579014 ++3 789507 ++1 526338 ++1 526338 ++2 10 ++1 15 ++1 20 ++4 789492 ++1 789492 ++1 789492 ++4 1315820 ++2 789492 +-2 25 ++2 15 + +fn=(5466) +592 20 ++1 30 ++1 10 ++1 15 + +fn=(5464) +592 20 ++1 30 ++1 10 ++1 15 + +fn=(5666) +402 4190208 ++3 2095104 ++1 1396736 ++1 1396736 ++2 10 ++1 15 ++1 20 ++4 2095089 ++1 2095089 ++1 2095089 ++4 3491815 ++2 2095089 +-2 25 ++2 15 + +fn=(5462) +592 20 ++1 30 ++1 10 ++1 15 + +fn=(5460) +592 20 ++1 30 ++1 10 ++1 15 + +fl=(390) /usr/include/c++/9/bits/predefined_ops.h +fn=(5028) bool __gnu_cxx::__ops::_Iter_less_iter::operator()<int const*, int const*>(int const*, int const*) const +42 675396 ++1 900528 + +fn=(9014) __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> __gnu_cxx::__ops::__val_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>(__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>) +225 1494704 ++1 560514 +cfi=(286) +cfn=(9016) std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>&>(__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>&) +calls=186838 99 +* 1307866 +* 934190 +cfn=(9018) __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>&&) +calls=186838 -19 +* 4110436 +* 1121028 + +fn=(8958) __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>&&) +207 30453114 ++1 15226557 +cfi=(286) +cfn=(8938) std::remove_reference<bool (*&)(UG::D2::node const*, UG::D2::node const*)>::type&& std::move<bool (*&)(UG::D2::node const*, UG::D2::node const*)>(bool (*&)(UG::D2::node const*, UG::D2::node const*)) +calls=5075519 99 +* 35528633 +* 15226557 ++1 15226557 + +fn=(8968) __gnu_cxx::__ops::_Iter_comp_val<bool (*)(UG::D2::node const*, UG::D2::node const*)>::_Iter_comp_val(bool (*)(UG::D2::node const*, UG::D2::node const*)) +158 56332800 ++1 28166400 +cfi=(286) +cfn=(8938) +calls=9388800 -60 +* 65721600 +* 28166400 ++1 28166400 + +fn=(4856) __gnu_cxx::__ops::__iter_less_iter() +49 314115 + +fn=(8996) __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> __gnu_cxx::__ops::__iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>(bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)) +149 4162560 ++1 1560960 +cfi=(286) +cfn=(8998) std::remove_reference<bool (*&)(UG::D2::compare_record const*, UG::D2::compare_record const*)>::type&& std::move<bool (*&)(UG::D2::compare_record const*, UG::D2::compare_record const*)>(bool (*&)(UG::D2::compare_record const*, UG::D2::compare_record const*)) +calls=520320 -51 +* 3642240 +* 2601600 +cfn=(9000) __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>::_Iter_comp_iter(bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)) +calls=520320 -15 +* 11447040 +* 3121920 + +fn=(5694) __gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_less_iter) +99 15360 + +fn=(9000) +135 3121920 ++1 1560960 +cfi=(286) +cfn=(8998) +calls=520320 -37 +* 3642240 +* 1560960 ++1 1560960 + +fn=(9024) bool __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>::operator()<UG::D2::compare_record*, UG::D2::compare_record**>(UG::D2::compare_record*&, UG::D2::compare_record**) +214 1307866 ++1 1681542 +cfi=(433) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/refine.cc +cfn=(9012) compare_nodes(UG::D2::compare_record const*, UG::D2::compare_record const*) +calls=186838 3959 +* 13451582 +* 373676 + +fn=(8936) __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> __gnu_cxx::__ops::__iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>(bool (*)(UG::D2::node const*, UG::D2::node const*)) +149 6259200 ++1 2347200 +cfi=(286) +cfn=(8938) +calls=782400 -51 +* 5476800 +* 3912000 +cfn=(8940) __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>::_Iter_comp_iter(bool (*)(UG::D2::node const*, UG::D2::node const*)) +calls=782400 -15 +* 17212800 +* 4694400 + +fn=(8940) +135 4694400 ++1 2347200 +cfi=(286) +cfn=(8938) +calls=782400 -37 +* 5476800 +* 2347200 ++1 2347200 + +fn=(8966) __gnu_cxx::__ops::_Iter_comp_val<bool (*)(UG::D2::node const*, UG::D2::node const*)> __gnu_cxx::__ops::__iter_comp_val<bool (*)(UG::D2::node const*, UG::D2::node const*)>(bool (*)(UG::D2::node const*, UG::D2::node const*)) +182 75110400 ++1 28166400 +cfi=(286) +cfn=(8938) +calls=9388800 -84 +* 65721600 +* 46944000 +cfn=(8968) +calls=9388800 -25 +* 206553600 +* 56332800 + +fn=(8950) bool __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>::operator()<UG::D2::node**, UG::D2::node**>(UG::D2::node**, UG::D2::node**) +142 43814400 ++1 56332800 +cfi=(433) +cfn=(8952) compare_node(UG::D2::node const*, UG::D2::node const*) +calls=6259200 3545 +* 62592000 +* 12518400 + +fn=(4866) bool __gnu_cxx::__ops::_Iter_less_iter::operator()<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >) const +42 24576 ++1 9216 +cfi=(291) +cfn=(4868) +calls=3072 819 +* 24576 +* 12288 +cfi=(291) +cfn=(4868) +calls=3072 819 +* 24576 +* 21504 + +fn=(8954) __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> __gnu_cxx::__ops::__val_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>(__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +225 40604152 ++1 15226557 +cfi=(286) +cfn=(8956) std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>&>(__gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>&) +calls=5075519 99 +* 35528633 +* 25377595 +cfn=(8958) +calls=5075519 -19 +* 111661418 +* 30453114 + +fn=(8962) bool __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>::operator()<UG::D2::node*, UG::D2::node**>(UG::D2::node*&, UG::D2::node**) +214 35529151 ++1 45680337 +cfi=(433) +cfn=(8952) +calls=5075593 3545 +* 50755930 +* 10151186 + +fn=(5692) bool __gnu_cxx::__ops::_Iter_less_iter::operator()<UG::D2::node**, UG::D2::node**>(UG::D2::node**, UG::D2::node**) const +42 36864 ++1 49152 + +fn=(9018) +207 1121028 ++1 560514 +cfi=(286) +cfn=(8998) +calls=186838 99 +* 1307866 +* 560514 ++1 560514 + +fn=(8982) bool __gnu_cxx::__ops::_Iter_comp_val<bool (*)(UG::D2::node const*, UG::D2::node const*)>::operator()<UG::D2::node**, UG::D2::node* const>(UG::D2::node**, UG::D2::node* const&) +176 131443200 ++1 168998400 +cfi=(433) +cfn=(8952) +calls=18777600 3545 +* 187776000 +* 37555200 + +fn=(5700) bool __gnu_cxx::__ops::_Val_less_iter::operator()<UG::D2::node*, UG::D2::node**>(UG::D2::node*&, UG::D2::node**) const +89 18432 ++1 24576 + +fn=(9010) bool __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>::operator()<UG::D2::compare_record**, UG::D2::compare_record**>(UG::D2::compare_record**, UG::D2::compare_record**) +142 3642240 ++1 4682880 +cfi=(433) +cfn=(9012) +calls=520320 3959 +* 33459168 +* 1040640 + +fl=(419) +fn=(6132) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::UGGridEntity() +612 570 ++2 342 +cfi=(420) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridgeometry.hh +cfn=(6134) Dune::UGGridGeometry<2, 2, Dune::UGGrid<2> const>::UGGridGeometry() +calls=114 39 +* 798 +* 456 ++1 342 + +fn=(8474) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::isLeaf() const +714 1252755 ++1 1002204 +cfi=(350) +cfn=(8476) +calls=250551 -16 +* 5011020 ++1 501102 + +fn=(8302) +623 17390995 ++1 13912796 +cfi=(350) +cfn=(8304) +calls=3478199 503 +* 34781990 ++1 6956398 + +fn=(6158) +771 70514956 ++2 35257478 ++1 35257478 + +fn=(6188) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::subEntities(unsigned int) const +652 163404080 ++17 103771288 ++4 47393648 +cfi=(350) +cfn=(6190) Dune::UG_NS<2>::Edges_Of_Elem(UG::D2::element const*) +calls=11848412 -89 +* 177726180 +* 11848412 ++2 17967984 +cfi=(350) +cfn=(8470) Dune::UG_NS<2>::Corners_Of_Elem(UG::D2::element const*) +calls=4491996 -84 +* 67379940 +* 4491996 ++9 114382856 + +fn=(6162) +631 13470428 ++2 3367607 ++9 6735214 + +fn=(8402) Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const>::UGGridEntity() +81 150 ++2 90 +cfi=(420) +cfn=(8404) Dune::UGGridGeometry<0, 2, Dune::UGGrid<2> const>::UGGridGeometry() +calls=30 -44 +* 210 +* 120 ++1 90 + +fn=(8426) +161 11829600 ++2 5914800 ++1 5914800 + +fn=(8446) Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const>::equals(Dune::UGGridEntity<2, 2, Dune::UGGrid<2> const> const&) const +167 3858386 ++2 1653594 +cfn=(8426) +calls=551198 -8 +* 4409584 +* 2204792 +cfn=(8426) +calls=551198 -8 +* 4409584 +* 1102396 ++1 2204792 + +fn=(8408) +174 4057039 ++1 1738731 ++1 2897885 +cfi=(420) +cfn=(8410) Dune::UGGridGeometry<0, 2, Dune::UGGrid<2> const>::setToTarget(UG::D2::node*) +calls=579577 -65 +* 6375347 ++1 1738731 ++1 1738731 + +fn=(8430) +105 2204732 ++3 551183 ++20 1102366 + +fn=(8460) +97 2897705 ++1 2318164 +cfi=(350) +cfn=(8462) +calls=579541 508 +* 5795410 ++1 1159082 + +fn=(6178) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::equals(Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const> const&) const +777 23573641 ++2 10102989 +cfn=(6158) +calls=3367663 -8 +* 26941304 +* 13470652 +cfn=(6158) +calls=3367663 -8 +* 26941304 +* 6735326 ++1 13470652 + +fl=(246) /home/joscha/software/dune/dune-geometry/dune/geometry/referenceelementimplementation.cc +fn=(6288) Dune::Geo::Impl::size(unsigned int, int, int) +20 5096 ++1 3640 +cfi=(389) +cfn=(6286) Dune::Impl::numTopologies(int) +calls=728 +79 +* 7280 +* 1456 ++1 3640 ++2 1456 ++2 2100 +cfi=(389) +cfn=(6372) Dune::Impl::baseTopologyId(unsigned int, int, int) +calls=350 167 +* 13300 +* 350 ++1 2800 +cfn=(6289) Dune::Geo::Impl::size(unsigned int, int, int)'2 +calls=350 -7 +* 19838 +* 350 ++2 2100 +cfi=(389) +cfn=(6374) Dune::Impl::isPrism(unsigned int, int, int) +calls=350 134 +* 14700 +* 700 ++2 1208 +cfn=(6289) +calls=50 -11 +* 9050 +* 522 ++1 1180 +-1 50 ++1 250 ++4 384 +cfi=(389) +cfn=(6376) Dune::Impl::isPyramid(unsigned int, int, int) +calls=64 +80 +* 2624 +* 128 ++1 472 +cfn=(6289) +calls=40 -17 +* 7240 +* 88 ++1 96 +-1 40 ++1 160 ++4 378 ++1 1456 + +fn=(6289) +20 4088 ++1 2920 +cfi=(389) +cfn=(6286) +calls=584 +79 +* 5840 +* 1168 ++1 2920 ++2 1168 ++2 864 +cfi=(389) +cfn=(6372) +calls=144 167 +* 5472 +* 144 ++1 1152 +cfn=(6289) +calls=144 -7 +* 4896 +* 144 ++2 864 +cfi=(389) +cfn=(6374) +calls=144 134 +* 6048 +* 288 ++2 720 ++1 720 ++10 440 ++1 1168 + +fn=(6388) Dune::Geo::Impl::subTopologyNumbering(unsigned int, int, int, unsigned int, int, unsigned int*, unsigned int*) +90 756 ++1 567 ++1 378 +cfn=(6288) +calls=63 -72 +* 17090 +* 126 ++1 819 +cfn=(6364) Dune::Geo::Impl::subTopologyId(unsigned int, int, int, unsigned int) +calls=63 -42 +* 44620 +* 378 +cfn=(6288) +calls=63 -73 +* 7202 +* 189 ++2 126 ++2 353 ++1 234 +-1 78 ++3 92 ++2 160 ++1 96 ++64 32 +-60 84 +cfi=(389) +cfn=(6372) +calls=14 +60 +* 532 +* 14 ++2 112 +cfn=(6288) +calls=14 -89 +* 476 +* 14 ++2 140 +cfn=(6288) +calls=14 -91 +* 2534 +* 14 ++1 98 ++2 84 +cfi=(389) +cfn=(6374) +calls=14 +20 +* 588 +* 28 ++2 56 +cfn=(6288) +calls=8 -96 +* 1448 +* 8 ++1 24 ++2 28 +cfn=(6364) +calls=4 -68 +* 1700 +* 4 ++2 8 ++1 20 ++6 36 +cfn=(6288) +calls=4 20 +* 136 +* 4 ++1 72 +cfn=(6389) Dune::Geo::Impl::subTopologyNumbering(unsigned int, int, int, unsigned int, int, unsigned int*, unsigned int*)'2 +calls=4 -39 +* 2840 +* 4 ++1 28 ++2 48 ++1 56 +-3 8 ++8 28 ++1 84 +cfn=(6389) +calls=4 -49 +* 1468 +* 4 ++1 44 ++1 80 +-1 16 ++6 36 +cfi=(389) +cfn=(6376) +calls=6 -30 +* 246 +* 12 ++2 18 ++1 32 +cfn=(6389) +calls=2 -59 +* 734 +* 2 ++18 2 +-15 36 +cfn=(6364) +calls=4 51 +* 1700 +* 4 ++1 36 +cfn=(6288) +calls=4 20 +* 136 +* 4 ++2 80 +cfn=(6389) +calls=4 -65 +* 2840 +* 4 ++1 20 ++7 24 ++4 378 + +fn=(6389) +90 168 ++1 126 ++1 84 +cfn=(6288) +calls=14 -72 +* 1652 +* 28 ++1 182 +cfn=(6364) +calls=14 -42 +* 3748 +* 84 +cfn=(6288) +calls=14 -73 +* 1358 +* 42 ++2 28 ++2 114 ++1 72 +-1 24 ++3 16 ++2 40 ++1 24 ++64 92 + +fn=(2226) _GLOBAL__sub_I_referenceelementimplementation.cc +191 6 +cfn=(2228) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(6364) +51 992 ++1 744 +cfn=(6288) +calls=124 -32 +* 31486 +* 248 ++1 372 ++2 248 ++2 564 +cfi=(389) +cfn=(6372) +calls=94 167 +* 3572 +* 94 ++1 752 +cfn=(6288) +calls=94 -38 +* 7312 +* 94 ++2 564 +cfi=(389) +cfn=(6374) +calls=94 +74 +* 3948 +* 188 ++2 360 +cfn=(6288) +calls=24 -42 +* 4344 +* 104 ++1 120 +-1 24 ++1 72 ++1 84 +cfn=(6365) Dune::Geo::Impl::subTopologyId(unsigned int, int, int, unsigned int)'2 +calls=12 -13 +* 5100 +* 96 ++2 650 +cfn=(6365) +calls=26 -15 +* 4444 +* 182 +cfn=(6365) +calls=26 -15 +* 4444 +* 52 ++4 180 +cfi=(389) +cfn=(6376) +calls=30 +46 +* 1230 +* 60 ++1 90 ++1 140 +cfn=(6365) +calls=14 -21 +* 3748 +* 14 ++1 48 ++1 108 +cfn=(6365) +calls=12 -23 +* 5100 +* 12 ++2 8 ++4 30 ++1 248 + +fn=(6365) +51 1104 ++1 828 +cfn=(6288) +calls=138 -32 +* 11748 +* 276 ++1 414 ++2 276 ++2 288 +cfi=(389) +cfn=(6372) +calls=48 167 +* 1824 +* 48 ++1 384 +cfn=(6288) +calls=48 -38 +* 1632 +* 48 ++2 288 +cfi=(389) +cfn=(6374) +calls=48 +74 +* 2016 +* 96 ++2 240 ++1 144 ++3 600 +cfn=(6365) +calls=24 -15 +* 1392 +* 168 +cfn=(6365) +calls=24 -15 +* 1392 +* 48 ++14 90 ++1 276 + +fn=(6468) Dune::Geo::Impl::referenceVolumeInverse(unsigned int, int) +175 49 ++1 35 +cfi=(389) +cfn=(6286) +calls=7 -76 +* 70 +* 14 ++2 14 ++2 48 +cfi=(389) +cfn=(6372) +calls=6 -13 +* 228 +* 18 +cfn=(6469) Dune::Geo::Impl::referenceVolumeInverse(unsigned int, int)'2 +calls=6 -5 +* 714 +* 6 ++1 36 +cfi=(389) +cfn=(6374) +calls=6 -47 +* 252 +* 30 ++3 1 ++1 28 + +fn=(6469) +175 70 ++1 50 +cfi=(389) +cfn=(6286) +calls=10 -76 +* 100 +* 20 ++2 20 ++2 32 +cfi=(389) +cfn=(6372) +calls=4 -13 +* 152 +* 12 +cfn=(6469) +calls=4 -5 +* 124 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -47 +* 168 +* 16 ++3 6 ++1 40 + +fn=(2228) +191 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(246) +191 3 + +fl=(250) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/quadraturerules.cc +fn=(2244) __static_initialization_and_destruction_0(int, int) +22 10 +fi=(220) ++52 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(250) +-65 3 +cfi=(251) +cfn=(2246) +calls=1 +65 +* 36807 ++3 3 +cfi=(251) +cfn=(2258) +calls=1 837 +* 5993 ++3 3 +cfi=(255) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/../quadraturerules.hh +cfn=(2278) Dune::PrismQuadraturePoints<3>::PrismQuadraturePoints() +calls=1 553 +* 2121 ++7 3 + +fn=(2242) _GLOBAL__sub_I_quadraturerules.cc +22 6 +cfn=(2244) +calls=1 * +* 45049 +* 2 + +fl=(301) /home/joscha/software/dune/dune-common/dune/common/parametertree.hh +fn=(3724) Dune::ParameterTree::Parser<bool>::parse(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +291 10 ++1 5 +cob=(2) +cfi=(18) +cfn=(2890) +calls=1 0 +* 122 ++2 3 +cob=(2) +cfi=(18) +cfn=(3484) +calls=1 0 +* 5 +* 4 +cob=(2) +cfi=(18) +cfn=(3480) +calls=1 0 +* 6 +* 4 +cob=(2) +cfi=(18) +cfn=(3484) +calls=1 0 +* 5 +* 4 +cfi=(318) +cfn=(3726) __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > std::transform<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, Dune::ParameterTree::Parser<bool>::ToLower>(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, Dune::ParameterTree::Parser<bool>::ToLower) +calls=1 4324 +* 423 ++2 4 +cfi=(272) /usr/include/c++/9/bits/basic_string.h +cfn=(3170) bool std::operator==<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, char const*) +calls=1 6175 +* 78 +* 6 +cfi=(272) +cfn=(3170) +calls=1 6175 +* 78 +* 5 ++3 4 +cfi=(272) +cfn=(3170) +calls=1 6175 +* 78 +* 6 +cfi=(272) +cfn=(3170) +calls=1 6175 +* 78 +* 5 ++3 3 +cfn=(3558) Dune::ParameterTree::Parser<int>::parse(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=1 -51 +* 4109 +* 2 +-10 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 1 ++11 8 + +fn=(4062) Dune::ParameterTree::Parser<unsigned int>::parse(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +251 9 ++2 6 +cob=(2) +cfi=(18) +cfn=(3560) +calls=1 0 +* 2382 ++2 1 +cob=(2) +cfi=(18) +cfn=(3570) +calls=1 0 +* 37 +* 7 +cob=(2) +cfi=(18) +cfn=(3580) +calls=1 0 +* 1064 +* 3 +cob=(2) +cfi=(18) +cfn=(3598) +calls=1 0 +* 10 ++1 5 +cob=(2) +cfi=(18) +cfn=(4064) +calls=1 0 +* 3909 ++1 4 +cob=(2) +cfi=(18) +cfn=(2600) +calls=1 0 +* 6 +* 2 ++3 5 +cob=(2) +cfi=(18) +cfn=(3620) +calls=1 0 +* 58 ++2 4 +cob=(2) +cfi=(18) +cfn=(3624) +calls=1 0 +* 6 +* 7 +cob=(2) +cfi=(18) +cfn=(2660) +calls=1 0 +* 7 +* 6 ++2 1 +-11 3 +cob=(2) +cfi=(18) +cfn=(3628) +calls=1 0 +* 98 ++11 1 ++1 7 + +fn=(3474) Dune::ParameterTree::Parser<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::parse(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +274 30 ++1 15 +cfi=(258) /home/joscha/software/dune/dune-common/dune/common/parametertree.cc +cfn=(3476) Dune::ParameterTree::rtrim(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=3 -66 +* 1002 +* 15 +cfi=(258) +cfn=(3478) Dune::ParameterTree::ltrim(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=3 -75 +* 987 +* 9 +cob=(2) +cfi=(18) +cfn=(2754) +calls=3 0 +* 202 ++2 9 +cob=(2) +cfi=(18) +cfn=(2432) +calls=3 0 +* 12 +* 9 +cob=(2) +cfi=(18) +cfn=(3480) +calls=3 0 +* 18 +* 12 +cob=(2) +cfi=(18) +cfn=(3484) +calls=3 0 +* 15 +* 21 +cfi=(272) +cfn=(3488) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, void>(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<char> const&) +calls=3 625 +* 914 +* 9 +cob=(2) +cfi=(18) +cfn=(3462) +calls=3 0 +* 12 +-2 9 +cob=(2) +cfi=(18) +cfn=(2754) +calls=3 0 +* 202 ++2 3 ++1 24 + +fn=(3722) bool Dune::ParameterTree::get<bool>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +172 10 ++1 5 +cfi=(258) +cfn=(2828) Dune::ParameterTree::hasKey(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=1 47 +* 1449 +* 3 ++4 5 +cfi=(258) +cfn=(3468) Dune::ParameterTree::operator[](std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=1 -11 +* 2618 +* 2 +cfn=(3724) +calls=1 291 +* 5067 ++8 7 + +fn=(3556) int Dune::ParameterTree::get<int>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +172 40 ++1 20 +cfi=(258) +cfn=(2828) +calls=4 47 +* 5143 +* 12 ++4 20 +cfi=(258) +cfn=(3468) +calls=4 -11 +* 9166 +* 8 +cfn=(3558) +calls=4 +74 +* 24517 ++8 28 + +fn=(3634) Dune::ParameterTree::Parser<double>::parse(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +251 27 ++2 18 +cob=(2) +cfi=(18) +cfn=(3560) +calls=3 0 +* 7182 ++2 3 +cob=(2) +cfi=(18) +cfn=(3570) +calls=3 0 +* 111 +* 21 +cob=(2) +cfi=(18) +cfn=(3580) +calls=3 0 +* 3192 +* 9 +cob=(2) +cfi=(18) +cfn=(3598) +calls=3 0 +* 30 ++1 15 +cob=(2) +cfi=(18) +cfn=(3636) +calls=3 0 +* 17985 ++1 12 +cob=(2) +cfi=(18) +cfn=(2600) +calls=3 0 +* 18 +* 6 ++3 15 +cob=(2) +cfi=(18) +cfn=(3620) +calls=3 0 +* 174 ++2 12 +cob=(2) +cfi=(18) +cfn=(3624) +calls=3 0 +* 18 +* 21 +cob=(2) +cfi=(18) +cfn=(2660) +calls=3 0 +* 21 +* 18 ++2 6 +-11 9 +cob=(2) +cfi=(18) +cfn=(3628) +calls=3 0 +* 294 ++11 3 ++1 21 + +fn=(3466) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > Dune::ParameterTree::get<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +172 33 ++1 15 +cfi=(258) +cfn=(2828) +calls=3 47 +* 4159 +* 9 ++4 15 +cfi=(258) +cfn=(3468) +calls=3 -11 +* 6681 +* 15 +cfn=(3474) +calls=3 +97 +* 3529 +* 3 ++8 24 + +fn=(3632) double Dune::ParameterTree::get<double>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +172 30 ++1 15 +cfi=(258) +cfn=(2828) +calls=3 47 +* 3824 +* 9 ++4 15 +cfi=(258) +cfn=(3468) +calls=3 -11 +* 6808 +* 6 +cfn=(3634) +calls=3 +74 +* 29241 ++8 21 + +fn=(3558) +251 45 ++2 30 +cob=(2) +cfi=(18) +cfn=(3560) +calls=5 0 +* 13675 ++2 5 +cob=(2) +cfi=(18) +cfn=(3570) +calls=5 0 +* 1554 +* 35 +cob=(2) +cfi=(18) +cfn=(3580) +calls=5 0 +* 8103 +* 15 +cob=(2) +cfi=(18) +cfn=(3598) +calls=5 0 +* 50 ++1 25 +cob=(2) +cfi=(18) +cfn=(3600) +calls=5 0 +* 4014 ++1 20 +cob=(2) +cfi=(18) +cfn=(2600) +calls=5 0 +* 30 +* 10 ++3 25 +cob=(2) +cfi=(18) +cfn=(3620) +calls=5 0 +* 290 ++2 20 +cob=(2) +cfi=(18) +cfn=(3624) +calls=5 0 +* 30 +* 35 +cob=(2) +cfi=(18) +cfn=(2660) +calls=5 0 +* 35 +* 30 ++2 5 +-11 15 +cob=(2) +cfi=(18) +cfn=(3628) +calls=5 0 +* 490 ++11 5 ++1 35 + +fn=(3732) Dune::ParameterTree::Parser<bool>::ToLower::operator()(char) +284 7 ++2 1 +cob=(2) +cfi=(18) +cfn=(3570) +calls=1 0 +* 37 +* 5 +cfi=(319) /usr/include/c++/9/bits/locale_facets.h +cfn=(3734) char std::tolower<char>(char, std::locale const&) +calls=1 2649 +* 214 ++1 2 + +fn=(4060) unsigned int Dune::ParameterTree::get<unsigned int>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +172 10 ++1 5 +cfi=(258) +cfn=(2828) +calls=1 47 +* 1125 +* 3 ++4 5 +cfi=(258) +cfn=(3468) +calls=1 -11 +* 1970 +* 2 +cfn=(4062) +calls=1 +74 +* 7648 ++8 7 + +fl=(219) +fn=(1656) _GLOBAL__sub_I__Z5printRKN4Dune12BitSetVectorILi1ESaIbEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE +376 6 +cfn=(1658) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 146914 +* 2 + +fn=(2422) +65 14 ++2 5 +cfi=(271) /home/joscha/software/dune/dune-common/dune/common/parallel/mpihelper.hh +cfn=(2424) Dune::FakeMPIHelper::instance(int, char**) +calls=1 +71 +* 84 ++2 1 ++24 3 +cfi=(258) +cfn=(2292) Dune::ParameterTree::ParameterTree() +calls=1 -71 +* 359 ++1 2 ++3 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 -97 +* 4 +* 5 +cfi=(272) +cfn=(2436) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string<std::allocator<char> >(char const*, std::allocator<char> const&) +calls=1 525 +* 3442 +* 6 +cfi=(260) /home/joscha/software/dune/dune-common/dune/common/parametertreeparser.cc +cfn=(2494) Dune::ParameterTreeParser::readINITree(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, Dune::ParameterTree&, bool) +calls=1 -52 +* 330069 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -97 +* 117 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 -97 +* 4 ++2 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 -99 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 237 +* 6 +cfi=(301) +cfn=(3466) +calls=1 +73 +* 4430 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -99 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 -99 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 241 +* 6 +cfi=(301) +cfn=(3466) +calls=1 +72 +* 5106 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++2 1 ++1 5 +cfi=(272) +cfn=(3512) std::__cxx11::to_string(int) +calls=1 6547 +* 1304 +* 5 +cfi=(272) +cfn=(3548) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=1 6109 +* 175 +* 5 +cfi=(258) +cfn=(3554) Dune::ParameterTree::hasSub(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=1 -28 +* 1602 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 2 ++2 5 +cfi=(272) +cfn=(3512) +calls=1 6547 +* 1304 +* 5 +cfi=(272) +cfn=(3548) +calls=1 6109 +* 175 +* 5 +cfi=(258) +cfn=(3182) Dune::ParameterTree::sub(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=1 -3 +* 3460 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 ++2 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 242 +* 6 +cfi=(301) +cfn=(3466) +calls=1 +65 +* 4947 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++2 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 342 +* 5 +cfi=(301) +cfn=(3556) +calls=1 +63 +* 15275 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 97 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 245 +* 5 +cfi=(301) +cfn=(3556) +calls=1 +62 +* 7726 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 246 +* 5 +cfi=(301) +cfn=(3556) +calls=1 +61 +* 7732 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++2 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 244 +* 5 +cfi=(301) +cfn=(3632) +calls=1 +59 +* 20834 +* 5 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++2 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 244 +* 5 +cfi=(301) +cfn=(3556) +calls=1 +57 +* 8221 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 238 +* 5 +cfi=(301) +cfn=(3632) +calls=1 +56 +* 10953 +* 5 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 246 +* 5 +cfi=(301) +cfn=(3722) +calls=1 +55 +* 9166 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++2 4 +cfi=(320) +cfn=(3744) +calls=1 415 +* 139 +* 2 ++2 5 +cfi=(272) +cfn=(3512) +calls=1 6547 +* 1311 +* 5 +cfi=(272) +cfn=(3512) +calls=1 6547 +* 1311 +* 5 +cfi=(272) +cfn=(3512) +calls=1 6547 +* 1311 +* 6 +cfi=(272) +cfn=(3214) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=1 6020 +* 566 +* 6 +cfi=(272) +cfn=(2632) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&, char const*) +calls=1 6121 +* 122 +* 6 +cfi=(272) +cfn=(3756) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=1 6097 +* 123 +* 6 +cfi=(272) +cfn=(2632) +calls=1 6121 +* 122 +* 6 +cfi=(272) +cfn=(3756) +calls=1 6097 +* 123 +* 6 +cfi=(272) +cfn=(2632) +calls=1 6121 +* 122 +* 6 +cfi=(272) +cfn=(3756) +calls=1 6097 +* 123 +* 6 +cfi=(272) +cfn=(2632) +calls=1 6121 +* 137 +* 6 +cob=(2) +cfi=(18) +cfn=(3762) +calls=1 0 +* 3924 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 97 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 ++1 2 +cob=(2) +cfi=(18) +cfn=(3772) +calls=1 0 +* 5 +* 1 ++1 3 +cob=(2) +cfi=(18) +cfn=(3776) +calls=1 0 +* 5 +* 3 +cob=(2) +cfi=(18) +cfn=(3780) +calls=1 0 +* 20 ++3 4 +cob=(2) +cfi=(18) +cfn=(3784) +calls=1 0 +* 10227 ++1 3 +cob=(2) +cfi=(18) +cfn=(3846) +calls=1 0 +* 3874 +* 5 +cob=(2) +cfi=(18) +cfn=(3784) +calls=1 0 +* 286 ++3 3 +cfi=(325) /home/joscha/software/dune/dune-istl/dune/istl/matrix.hh +cfn=(3864) Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::Matrix() +calls=1 592 +* 96 ++3 5 +cfi=(325) +cfn=(3876) Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::Matrix(unsigned long, unsigned long) +calls=1 597 +* 328 ++1 7 +cfi=(325) +cfn=(3888) Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::operator[](unsigned long) +calls=1 669 +* 127 +* 4 +cfi=(327) /home/joscha/software/dune/dune-istl/dune/istl/basearray.hh +cfn=(3898) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::operator[](unsigned long) +calls=1 -61 +* 26 +* 5 +cfi=(329) +cfn=(3900) +calls=1 306 +* 489 ++1 7 +cfi=(325) +cfn=(3888) +calls=1 669 +* 127 +* 4 +cfi=(327) +cfn=(3898) +calls=1 -62 +* 26 +* 5 +cfi=(329) +cfn=(3900) +calls=1 306 +* 489 ++1 7 +cfi=(325) +cfn=(3888) +calls=1 669 +* 127 +* 4 +cfi=(327) +cfn=(3898) +calls=1 -63 +* 26 +* 5 +cfi=(329) +cfn=(3900) +calls=1 306 +* 489 ++1 7 +cfi=(325) +cfn=(3888) +calls=1 669 +* 127 +* 4 +cfi=(327) +cfn=(3898) +calls=1 -64 +* 26 +* 5 +cfi=(329) +cfn=(3900) +calls=1 306 +* 489 ++2 6 +cfi=(272) +cfn=(3214) +calls=1 6020 +* 384 +* 5 +cfi=(331) /home/joscha/Desktop/dune/dune-faultnetworks/dune/faultnetworks/utils/matrixreader.hh +cfn=(3944) MatrixReader<Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > > >::MatrixReader(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) +calls=1 -99 +* 184 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 97 ++1 5 +cfi=(331) +cfn=(3946) MatrixReader<Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > > >::read(Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >&) +calls=1 -95 +* 60399 ++2 3 +cfi=(325) +cfn=(3890) Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::N() const +calls=1 691 +* 18 +* 1 ++1 5 +cfi=(320) +cfn=(4048) __gnu_cxx::__enable_if<std::__is_integer<int>::__value, double>::__type std::log2<int>(int) +calls=1 1582 +* 85 +* 1 +cob=(2) +cfi=(18) +cfn=(4054) +calls=1 0 +* 18 +* 8 +cfi=(265) +cfn=(4058) double const& std::max<double>(double const&, double const&) +calls=1 +79 +* 15 +* 3 ++2 3 ++3 3 +cob=(2) +cfi=(18) +cfn=(3846) +calls=1 0 +* 232 +* 5 +cob=(2) +cfi=(18) +cfn=(3784) +calls=1 0 +* 286 +* 5 +cob=(2) +cfi=(18) +cfn=(3784) +calls=1 0 +* 286 ++2 3 ++1 3 ++3 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 240 +* 5 +cfi=(258) +cfn=(3182) +calls=1 -52 +* 3267 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 241 +* 5 +cfi=(301) +cfn=(4060) +calls=1 +17 +* 10775 +* 4 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++1 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 0 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 239 +* 5 +cfi=(301) +cfn=(3632) +calls=1 +16 +* 8182 +* 5 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 0 +* 4 ++2 3 +cob=(2) +cfi=(18) +cfn=(3846) +calls=1 0 +* 232 +* 5 +cob=(2) +cfi=(18) +cfn=(3784) +calls=1 0 +* 198 ++2 3 +cob=(2) +cfi=(18) +cfn=(4084) +calls=1 0 +* 6817 ++1 9 +cfi=(341) +cfn=(4092) +calls=1 724 +* 22489275607 + +fn=(1658) +376 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 146458 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fi=(233) /home/joscha/software/dune/dune-fufem/dune/fufem/quadraturerules/quadraturerulecache.hh +219 8 +cfi=(234) +cfn=(2168) +calls=1 -36 +* 95 +* 4 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 0 +* 74 +* 8 +cfi=(234) +cfn=(2184) +calls=1 -36 +* 95 +* 4 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 0 +* 74 +fe=(219) +376 3 + +fl=(325) +fn=(3994) Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::M() const +696 4 ++1 2 ++1 2 + +fn=(3894) Dune::MatrixImp::DenseMatrixBase<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::operator[](unsigned long) +238 264 ++3 96 ++2 312 +cfi=(326) /home/joscha/software/dune/dune-istl/dune/istl/bvector.hh +cfn=(3896) Dune::Imp::BlockVectorWindow<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::BlockVectorWindow(Dune::FieldMatrix<double, 1, 1>*, unsigned long) +calls=24 720 +* 984 ++1 192 + +fn=(3864) +592 10 +cfn=(3866) Dune::MatrixImp::DenseMatrixBase<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::DenseMatrixBase(unsigned long, unsigned long) +calls=1 92 +* 81 +* 2 ++1 3 + +fn=(3876) +597 13 +cfn=(3866) +calls=1 92 +* 309 +* 3 ++1 3 + +fn=(3892) Dune::MatrixImp::DenseMatrixBase<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::N() const +536 104 ++2 52 ++1 52 + +fn=(3990) Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::setSize(unsigned long, unsigned long) +604 7 ++1 6 +cfn=(3992) Dune::MatrixImp::DenseMatrixBase<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::resize(unsigned long, unsigned long) +calls=1 150 +* 602 ++1 3 ++1 3 + +fn=(3866) +92 24 +cfi=(326) +cfn=(3868) Dune::Imp::block_vector_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::block_vector_unmanaged() +calls=2 349 +* 44 +* 8 +cfi=(236) +cfn=(3872) std::allocator<Dune::FieldMatrix<double, 1, 1> >::allocator() +calls=2 +46 +* 36 ++3 10 ++1 6 ++1 8 ++2 8 +cfi=(237) +cfn=(3878) +calls=1 +3 +* 85 +* 2 ++1 11 +cfi=(293) +cfn=(3882) +calls=1 +76 +* 8 +* 22 +cfi=(328) +cfn=(3884) Dune::FieldMatrix<double, 1, 1>::FieldMatrix() +calls=4 324 +* 84 +* 12 ++4 2 ++1 2 ++4 3 ++1 1 +-1 3 ++1 11 + +fn=(3992) +150 9 ++3 4 ++8 5 ++1 4 ++2 8 +cfi=(237) +cfn=(3878) +calls=1 -62 +* 85 +* 2 ++1 11 +cfi=(293) +cfn=(3882) +calls=1 +11 +* 8 +* 70 +cfi=(328) +cfn=(3884) +calls=16 324 +* 336 +* 48 ++9 3 ++1 3 ++1 6 + +fn=(3888) +669 264 ++4 72 +cfn=(3890) +calls=24 +18 +* 432 +* 96 ++3 144 +cfn=(3894) +calls=24 238 +* 1848 ++1 192 + +fn=(3890) +691 130 ++1 78 +cfn=(3892) +calls=26 536 +* 208 ++1 52 + +fl=(422) +fn=(6164) Dune::IteratorRange<Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::IteratorRange(Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&, Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +34 343 ++2 245 +cfi=(421) +cfn=(6166) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +calls=49 -7 +* 2450 +* 294 +cfi=(421) +cfn=(6166) +calls=49 -7 +* 2450 ++1 147 + +fn=(8576) +50 24 ++2 24 +cfi=(421) +cfn=(8572) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +calls=4 -23 +* 200 ++1 12 + +fn=(8436) +44 66 ++2 55 +cfi=(421) +cfn=(8434) Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +calls=11 -17 +* 550 ++1 33 + +fn=(6168) +44 294 ++2 245 +cfi=(421) +cfn=(6166) +calls=49 -17 +* 2450 ++1 147 + +fn=(8438) +50 66 ++2 66 +cfi=(421) +cfn=(8434) +calls=11 -23 +* 550 ++1 33 + +fn=(8516) Dune::IteratorRange<Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::IteratorRange(Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&, Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +34 56 ++2 40 +cfi=(421) +cfn=(8518) Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> >::EntityIterator(Dune::EntityIterator<0, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<0, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +calls=8 -7 +* 400 +* 48 +cfi=(421) +cfn=(8518) +calls=8 -7 +* 400 ++1 24 + +fn=(8520) +44 48 ++2 40 +cfi=(421) +cfn=(8518) +calls=8 -17 +* 400 ++1 24 + +fn=(6170) +50 294 ++2 294 +cfi=(421) +cfn=(6166) +calls=49 -23 +* 2450 ++1 147 + +fn=(8432) Dune::IteratorRange<Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::IteratorRange(Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&, Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLevelIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +34 77 ++2 55 +cfi=(421) +cfn=(8434) +calls=11 -7 +* 550 +* 66 +cfi=(421) +cfn=(8434) +calls=11 -7 +* 550 ++1 33 + +fn=(8522) +50 48 ++2 48 +cfi=(421) +cfn=(8518) +calls=8 -23 +* 400 ++1 24 + +fn=(8570) Dune::IteratorRange<Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > >::IteratorRange(Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&, Dune::EntityIterator<2, Dune::UGGrid<2> const, Dune::UGGridLeafIterator<2, (Dune::PartitionIteratorType)4, Dune::UGGrid<2> const> > const&) +34 28 ++2 20 +cfi=(421) +cfn=(8572) +calls=4 -7 +* 200 +* 24 +cfi=(421) +cfn=(8572) +calls=4 -7 +* 200 ++1 12 + +fn=(8574) +44 24 ++2 20 +cfi=(421) +cfn=(8572) +calls=4 -17 +* 200 ++1 12 + +fl=(429) +fn=(8288) +53 159953562 ++2 53317854 +cfi=(389) +cfn=(8290) Dune::GeometryType::isCube() const +calls=17772618 634 +* 462088068 +* 35545236 ++6 17772618 ++1 88863090 + +fl=(433) +fn=(9098) RestrictMarks(UG::D2::grid*) +2626 48 ++4 110622 ++3 276480 +cfn=(8988) UG::D2::GetSons(UG::D2::element const*, UG::D2::element**) +calls=55296 2353 +* 26431386 +* 221184 ++2 165888 ++5 829440 +-3 110592 ++7 829440 +-4 110592 ++5 829440 +-1 110592 ++5 829440 +-4 110592 ++12 940032 ++32 940032 ++3 2211840 ++1 2211840 ++14 55296 ++1 331776 ++3 1050624 ++2 55296 ++1 55296 ++4 221184 +-87 165888 +-1 55296 +2744 6 ++1 30 + +fn=(8928) UG::D2::Get_Sons_of_ElementSide(UG::D2::element const*, int, int*, UG::D2::element**, int*, int, int, int) +3572 10171200 ++5 1564800 ++1 782400 ++3 1564800 ++1 1300800 +cfn=(8988) +calls=260160 2353 +* 124356480 +* 1040640 ++14 782400 ++20 7041600 ++19 5476800 +cfn=(8930) UG::D2::GetSonSideNodes(UG::D2::element const*, int, int*, UG::D2::node**, int) +calls=782400 3430 +* 385513120 ++3 5476800 +cfi=(318) +cfn=(8934) void std::sort<UG::D2::node**, bool (*)(UG::D2::node const*, UG::D2::node const*)>(UG::D2::node**, UG::D2::node**, bool (*)(UG::D2::node const*, UG::D2::node const*)) +calls=782400 4885 +* 1326395905 ++14 32078400 ++2 3129600 ++2 34425600 ++1 37555200 +-1 25036800 ++8 203424000 ++2 234720000 ++1 93888000 +cfi=(318) +cfn=(8964) bool std::binary_search<UG::D2::node**, UG::D2::node*, bool (*)(UG::D2::node const*, UG::D2::node const*)>(UG::D2::node**, UG::D2::node**, UG::D2::node* const&, bool (*)(UG::D2::node const*, UG::D2::node const*)) +calls=9388800 2279 +* 3168807866 +* 18777600 ++2 15648000 ++1 3912000 +-6 18777600 ++9 6259200 ++16 6259200 ++1 6259200 ++2 7824000 ++1 10176512 ++5 2049152 ++2 3512832 ++1 292736 +-49 585472 ++48 15264768 ++1 1272064 +-49 5673728 +3781 3129600 ++7 2347200 ++1 782400 ++45 47726400 ++1 131443200 +-1 43814400 ++3 782400 ++1 3912000 + +fn=(8882) GridClosure(UG::D2::grid*) +2147 144 ++4 48 +cfn=(8884) PrepareGridClosure(UG::D2::grid*) +calls=16 744 +* 247125008 +* 64 ++3 48 +cfn=(8886) ComputePatterns(UG::D2::grid*) +calls=16 1066 +* 256136208 +* 64 ++2 48 ++2 48 ++24 96 +cfn=(8888) SetElementRules(UG::D2::grid*, UG::D2::element*, int*) +calls=16 1455 +* 270555360 +* 64 ++5 96 ++4 48 +cfn=(8894) SetAddPatterns(UG::D2::grid*) +calls=16 1739 +* 258839568 +* 64 ++3 48 +cfn=(8896) BuildGreenClosure(UG::D2::grid*) +calls=16 1793 +* 10813648 +* 64 ++6 16 ++1 112 + +fn=(8910) AdaptGrid(UG::D2::grid*, int*) +5654 90 ++1 10 ++5 30 +cfi=(398) +cfn=(8890) +calls=10 2974 +* 500 +* 20 +cfi=(436) +cfn=(8870) +calls=10 40 +* 80 +* 10 ++5 30 ++1 20 ++31 458802 ++3 688128 ++15 9109504 ++22 522240 ++10 870400 +cfn=(8912) UnrefineElement(UG::D2::grid*, UG::D2::element*) +calls=174080 3353 +* 16885760 +* 696320 ++21 1044480 +cfn=(8914) UpdateContext(UG::D2::grid*, UG::D2::element*, UG::D2::node**) +calls=174080 3034 +* 525098087 +* 696320 ++10 2959360 ++1 1044480 +cfn=(8924) RefineElement(UG::D2::grid*, UG::D2::element*, UG::D2::node**) +calls=174080 5587 +* 8706608984 +* 696320 ++5 6963200 ++1 6963200 ++1 1044480 ++8 348160 ++23 276480 ++4 165888 ++5 3899392 ++3 3899392 +5698 458752 +-1 229376 +5844 20 ++3 8 ++1 20 +cob=(2) +cfi=(18) +cfn=(5452) +calls=4 0 +* 24 +* 28 ++5 12 ++2 4 ++1 12 +-3 18 ++2 6 ++1 38 + +fn=(9012) +3959 3535790 ++1 4242948 ++2 4949812 ++1 16970616 ++1 666964 ++1 12968832 ++1 747352 +-4 1414120 ++8 1414316 + +fn=(8836) UG::D2::AdaptMultiGrid(UG::D2::multigrid*, int, int, int) +6376 44 ++8 16 ++3 12 +cfn=(8838) PreProcessAdaptMultiGrid(UG::D2::multigrid*) +calls=4 -73 +* 30048874 +* 16 ++31 16 ++5 2 ++4 3 +cfn=(8858) UG::D2::SetRefineInfo(UG::D2::multigrid*) +calls=1 420 +* 1022005 +* 9 +cfn=(8858) +calls=3 420 +* 89451783 ++2 8 ++17 12 ++1 24 ++1 16 ++2 8 ++2 4 ++1 4 ++3 12 ++1 12 +cfn=(8878) DropMarks(UG::D2::multigrid*) +calls=4 459 +* 28 +* 16 ++5 12 +cfi=(364) +cfn=(8880) +calls=4 2487 +* 6652280 ++4 12 ++7 28 ++2 36 ++2 18 ++4 42 +cfn=(8882) +calls=6 2147 +* 512271046 +* 30 ++21 48 +cfn=(9098) +calls=6 2626 +* 39260172 +* 24 +-29 12 ++41 4 ++1 46 ++2 60 ++1 82 ++5 24 ++1 20 +-1 36 ++1 1396374 ++8 30 ++3 458802 ++2 8028160 +-2 917504 ++9 30 +cfn=(8882) +calls=10 2147 +* 531199818 +* 50 ++15 30 +cfn=(8898) ComputeCopies(UG::D2::grid*) +calls=10 2818 +* 144528538 +* 10 ++2 30 ++5 30 ++2 442398 ++2 2875392 ++5 14155776 +-7 884736 ++18 30 ++7 54 ++4 20 ++2 16 +cfi=(365) +cfn=(5456) +calls=4 2700 +* 231604 +* 16 ++2 28 ++11 4 ++2 12 +-2 6 ++2 26 ++2 50 +cfn=(8910) +calls=10 5654 +* 9291628485 +* 40 ++10 30 ++2 16 ++2 20 ++5 12 +cfi=(365) +cfn=(9040) +calls=4 +61 +* 4201056 ++6 1392660 ++1 11837440 ++1 2088960 +cfi=(365) +cfn=(9042) +calls=696320 +30 +* 105144320 +-2 2785280 ++19 12 +cfi=(365) +cfn=(9044) +calls=4 6816 +* 279920848 +* 4 +-34 6 +6515 20 +6678 12 +cfi=(365) +cfn=(9050) +calls=4 3927 +* 112 ++1 28 +cfi=(365) +cfn=(9050) +calls=4 3927 +* 112 ++1 16 ++2 12 +cfn=(9052) PostProcessAdaptMultiGrid(UG::D2::multigrid*) +calls=4 6330 +* 460420966 +* 16 ++2 4 ++1 20 + +fn=(8896) +1793 80 ++9 901200 ++11 8110080 +-10 1351680 +-1 450560 +1951 16 ++1 32 + +fn=(8914) +3034 1392640 ++9 5048320 ++1 13578240 +-1 4526080 ++4 2959360 ++2 2785280 ++3 7833600 ++2 7833600 ++1 2088960 ++2 440020 +cfi=(365) +cfn=(8916) +calls=88004 574 +* 44092494 +* 176008 ++1 352016 ++6 4177920 +-12 1044480 ++17 2437120 ++1 7833600 ++2 6789120 ++1 6266880 ++2 522240 ++17 9400320 ++2 522240 ++16 1044480 ++3 4177920 ++1 7833600 ++1 7833600 ++1 2611200 +cfi=(365) +cfn=(5664) +calls=522240 2111 +* 32826320 +* 522240 ++1 1044480 ++2 4177920 ++2 4177920 ++2 3144960 +cfi=(365) +cfn=(8918) +calls=262080 610 +* 306969629 +* 262080 ++1 2096640 ++9 4177920 +-63 1044480 +3278 2263040 ++1 348160 ++2 174080 ++1 696320 ++10 4352000 ++14 348160 ++21 174080 ++1 696320 + +fn=(8926) RefineElementRed(UG::D2::grid*, UG::D2::element*, UG::D2::node**) +5388 1740800 ++1 522240 +cfi=(398) +cfn=(8890) +calls=174080 2974 +* 8704000 +* 348160 +cfi=(436) +cfn=(8870) +calls=174080 40 +* 1392640 +* 174080 ++3 2959360 ++3 37079040 ++2 4874240 ++3 4526080 ++2 696320 ++2 3481600 ++2 344044 ++2 223608 ++2 31944 ++3 139536 ++2 3832 ++1 3832 +-10 24280 ++17 48046080 ++3 41779200 +-3 4177920 ++6 2785280 ++1 13157272 +cfi=(365) +cfn=(5660) +calls=692488 2450 +* 1443157702 +-1 3832 ++1 72808 +cfi=(365) +cfn=(5660) +calls=3832 2450 +* 10615501 +* 696320 ++2 1392640 ++3 2785280 ++1 27852800 +-36 1392640 ++40 4526080 ++2 7659520 ++1 36904960 ++2 37601280 ++2 12533760 ++2 4177920 ++2 21934080 ++75 1044480 +-83 4177920 +-3 1392640 ++94 7833600 ++10 32901120 ++1 47001600 +-1 31334400 ++3 13578240 ++1 12533760 +-1 4177920 ++3 5744640 +cfn=(8928) +calls=522240 3572 +* 3959955853 +* 522240 ++1 1044480 +-1 1044480 ++3 6266880 +cfn=(8984) UG::D2::Connect_Sons_of_ElementSide(UG::D2::grid*, UG::D2::element*, int, int, UG::D2::element**, int*, int) +calls=522240 3996 +* 2774217020 +* 522240 ++1 1044480 +-1 1044480 +-19 1044480 ++27 174080 ++1 870400 + +fn=(8984) +3996 6789120 ++17 1044480 ++3 2702976 ++4 19200 ++3 38400 ++2 19200 +-1 3840 ++1 19200 +-1 26880 +cfi=(365) +cfn=(8986) +calls=3840 2597 +* 5279914 ++1 7680 +-1 7680 +-4 7680 ++16 7833600 ++2 1048320 ++10 8845440 ++8 25495680 ++3 6832704 ++1 9560064 +-1 674688 ++1 260160 ++1 2861760 ++3 2861760 +cfn=(8928) +calls=260160 3572 +* 2101059022 +* 260160 ++51 2081280 +cfn=(8990) Fill_Comp_Table(UG::D2::compare_record**, UG::D2::compare_record*, int, UG::D2::element**, int*) +calls=260160 3920 +* 151413176 ++2 2081280 +cfn=(8990) +calls=260160 3920 +* 151413064 ++35 2601600 +cfi=(318) +cfn=(8994) void std::sort<UG::D2::compare_record**, bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>(UG::D2::compare_record**, UG::D2::compare_record**, bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)) +calls=260160 4885 +* 121870026 ++1 2601600 +cfi=(318) +cfn=(8994) +calls=260160 4885 +* 121464186 ++85 520320 ++27 2601600 ++2 14048640 ++2 14048640 +-4 1040640 ++16 260160 ++1 2611200 + +fn=(8888) +1455 176 ++2 16 ++3 48 +cfi=(398) +cfn=(8890) +calls=16 2974 +* 800 +* 32 +cfi=(436) +cfn=(8870) +calls=16 40 +* 128 +* 16 ++3 32 ++1 901184 ++3 450560 ++3 79298560 +cfi=(365) +cfn=(5664) +calls=1351680 2111 +* 84923200 +* 32440320 ++3 901120 ++13 2252800 +cfi=(370) +cfn=(8892) +calls=450560 2461 +* 11714560 +* 6758400 +cfi=(370) +cfn=(8892) +calls=450560 2461 +* 11714560 +* 3153920 ++3 1351680 ++11 1351680 ++27 7659520 ++34 6307840 ++7 1351680 ++5 3153920 ++1 13066240 +1465 1351680 +-1 450560 +1577 16 ++1 112 + +fn=(8894) +1739 80 ++6 901200 ++3 7659520 ++4 20275200 ++3 44605440 ++4 32440320 +-1 37847040 +cfi=(365) +cfn=(5664) +calls=1351680 2111 +* 84923200 +* 1351680 ++5 24330240 +-11 2703360 +-6 1351680 +-1 450560 ++26 16 ++1 32 + +fn=(8898) +2818 50 ++3 10 ++6 30 +cfi=(398) +cfn=(8890) +calls=10 2974 +* 500 +* 20 +cfi=(436) +cfn=(8870) +calls=10 40 +* 80 +* 10 ++3 30 +cfi=(365) +cfn=(8900) +calls=10 6895 +* 1396464 ++12 10 ++1 458802 ++3 3899392 ++1 3440640 +-1 458752 ++4 688128 +cfi=(365) +cfn=(8902) +calls=229376 6921 +* 34635776 ++6 229376 +-12 688128 +-1 229376 ++18 30 ++23 30 +cfi=(365) +cfn=(8904) +calls=10 7041 +* 92209672 ++4 458802 ++3 229376 ++2 4587520 +-4 688128 +-1 229376 ++27 10 ++1 20 + +fn=(8878) +459 16 ++5 4 ++27 8 + +fn=(8930) +3430 7824000 ++3 10171200 ++1 10171200 ++1 1564800 ++4 16430400 ++2 42249600 +-2 14083200 ++6 7824000 ++2 56332800 ++2 12518400 ++2 3129600 ++1 28166400 ++1 7824000 +-8 3129600 ++12 5476800 ++29 21124800 +cfi=(365) +cfn=(8932) +calls=782400 710 +* 110108320 +* 782400 ++1 7824000 ++2 9388800 ++1 3912000 +-33 1564800 ++65 782400 ++1 3129600 + +fn=(8952) +3545 196062445 ++1 117637467 ++1 78424978 + +fn=(8838) +6314 20 ++1 12 +cfi=(434) +cfn=(8840) +calls=4 87 +* 30048806 +* 16 ++9 8 ++2 4 ++1 8 + +fn=(8924) +5587 1218560 ++1 2959360 ++27 1044480 +cfn=(8926) +calls=174080 5388 +* 8699993944 +* 696320 ++2 174080 ++7 174080 ++1 348160 + +fn=(8988) +2353 1577280 ++4 630912 ++2 19873728 ++1 56782080 +-1 18927360 ++3 5362752 ++2 315456 ++1 6940032 ++2 630912 ++2 5047296 ++2 20189088 ++6 9463680 ++1 2839104 +-9 946368 ++13 315450 ++4 315450 ++1 630900 +-1 6 ++1 12 + +fn=(9052) +6330 20 ++2 12 +cfi=(364) +cfn=(5916) +calls=4 2272 +* 460420838 +* 16 ++12 68 ++12 4 ++1 8 + +fn=(8858) +420 20 ++1 28 +cfi=(365) +cfn=(8860) +calls=4 5527 +* 90473712 +* 16 ++2 4 ++1 8 + +fn=(8884) +744 80 ++7 901200 ++3 2703360 ++8 20275200 ++3 32440320 +-1 37847040 +cfi=(365) +cfn=(5664) +calls=1351680 2111 +* 84923200 +* 1351680 ++4 22978560 ++1 39198720 +-7 2703360 +-10 1351680 +-1 450560 ++22 16 ++1 32 + +fn=(8886) +1066 80 ++14 901200 ++13 7659520 ++2 7208960 ++1 6307840 ++2 20275200 ++1 13516800 ++3 32440320 +-1 37847040 +cfi=(365) +cfn=(5664) +calls=1351680 2111 +* 84923200 +* 1351680 ++5 39198720 +-8 2703360 +-17 1351680 +-1 450560 ++60 16 ++1 32 + +fn=(8912) +3353 1566720 ++3 522240 +cfi=(398) +cfn=(8890) +calls=174080 2974 +* 8704000 +* 348160 +cfi=(436) +cfn=(8870) +calls=174080 40 +* 1392640 +* 174080 ++3 3307520 ++46 870400 + +fn=(8990) +3920 4682880 ++4 5203200 ++2 15609600 ++1 10406400 ++1 8325120 ++1 8325120 ++1 16650240 ++1 50991360 ++1 79088640 +-1 4162560 ++2 7284480 +cfn=(8992) Sort_Node_Ptr(int, UG::D2::node**) +calls=1040640 -73 +* 84291840 +* 4162560 +-9 2081280 ++12 520320 ++1 1040640 + +fn=(8992) +3860 5203200 ++4 1040640 ++2 2081280 ++10 10406400 ++2 4162560 ++1 15609600 ++1 15609600 +-1 2081280 ++2 6243840 ++2 3642240 ++1 6243840 ++1 3642240 +-9 4162560 ++12 1040640 ++6 1040640 ++1 2081280 + +fl=(274) +fn=(2604) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +1158 33 ++6 9 +cfi=(273) /usr/include/c++/9/bits/char_traits.h +cfn=(2446) std::char_traits<char>::length(char const*) +calls=3 329 +* 84 +* 3 ++1 9 +cob=(2) +cfi=(18) +cfn=(2294) +calls=3 0 +* 24 ++1 9 +cob=(2) +cfi=(18) +cfn=(2606) +calls=3 0 +* 15 +* 18 +cob=(2) +cfi=(18) +cfn=(2610) +calls=3 0 +* 2406 ++1 18 +cob=(2) +cfi=(18) +cfn=(2618) +calls=3 0 +* 1901 ++1 15 +cob=(2) +cfi=(18) +cfn=(2628) +calls=3 0 +* 151 ++1 3 ++1 24 + +fn=(2898) +206 1067 ++5 291 +cfi=(275) +cfn=(2900) +calls=97 -59 +* 776 +* 485 ++4 485 +cfi=(276) +cfn=(2902) +calls=97 -77 +* 3007 +* 97 ++2 291 ++2 96 +cob=(2) +cfi=(18) +cfn=(2462) +calls=16 0 +* 1283 +* 80 +cob=(2) +cfi=(18) +cfn=(2470) +calls=16 0 +* 80 ++1 80 +cob=(2) +cfi=(18) +cfn=(2474) +calls=16 0 +* 80 ++5 291 +cob=(2) +cfi=(18) +cfn=(2478) +calls=97 0 +* 485 +* 582 +cob=(2) +cfi=(18) +cfn=(2908) +calls=97 0 +* 1721 ++7 485 +cob=(2) +cfi=(18) +cfn=(2490) +calls=97 0 +* 679 ++1 776 + +fn=(2452) +206 2321 ++5 633 +cfi=(275) +cfn=(2454) +calls=211 -59 +* 1688 +* 1055 ++4 1055 +cfi=(276) +cfn=(2456) +calls=211 -77 +* 6541 +* 211 ++2 633 ++2 324 +cob=(2) +cfi=(18) +cfn=(2462) +calls=54 0 +* 7758 +* 270 +cob=(2) +cfi=(18) +cfn=(2470) +calls=54 0 +* 270 ++1 270 +cob=(2) +cfi=(18) +cfn=(2474) +calls=54 0 +* 270 ++5 633 +cob=(2) +cfi=(18) +cfn=(2478) +calls=211 0 +* 1055 +* 1266 +cob=(2) +cfi=(18) +cfn=(2482) +calls=211 0 +* 6398 ++7 1055 +cob=(2) +cfi=(18) +cfn=(2490) +calls=211 0 +* 1477 ++1 1688 + +fn=(3494) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::forward_iterator_tag) +206 33 ++5 9 +cfi=(275) +cfn=(3496) +calls=3 -54 +* 21 +* 15 ++4 15 +cfi=(276) +cfn=(3498) +calls=3 -77 +* 210 +* 3 ++2 9 ++2 12 +cob=(2) +cfi=(18) +cfn=(2462) +calls=2 0 +* 142 +* 10 +cob=(2) +cfi=(18) +cfn=(2470) +calls=2 0 +* 10 ++1 10 +cob=(2) +cfi=(18) +cfn=(2474) +calls=2 0 +* 10 ++5 9 +cob=(2) +cfi=(18) +cfn=(2478) +calls=3 0 +* 15 +* 18 +cob=(2) +cfi=(18) +cfn=(3508) +calls=3 0 +* 69 ++7 15 +cob=(2) +cfi=(18) +cfn=(2490) +calls=3 0 +* 21 ++1 24 + +fl=(411) +fn=(5778) +109 183040 ++1 109824 + +fl=(432) +fn=(8658) std::__uniq_ptr_impl<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::_M_deleter() +155 16 +cfi=(295) +cfn=(8660) std::tuple_element<1ul, std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > > >::type& std::get<1ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >(std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >&) +calls=2 1320 +* 74 +* 4 + +fn=(8700) +278 12 ++4 6 +cfn=(8614) std::__uniq_ptr_impl<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::_M_ptr() +calls=2 153 +* 94 +* 2 ++1 8 ++2 4 ++1 10 + +fn=(8670) +373 10 ++2 6 +cfn=(8672) +calls=2 -23 +* 116 +* 2 ++1 6 +cfn=(8614) +calls=2 153 +* 94 +* 2 ++1 2 ++1 4 + +fn=(8654) std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::unique_ptr(std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >&&) +249 8 ++1 4 +cfn=(8656) +calls=1 357 +* 57 +* 2 +cfi=(286) +cfn=(8668) std::default_delete<Dune::UGGrid<2> >&& std::forward<std::default_delete<Dune::UGGrid<2> > >(std::remove_reference<std::default_delete<Dune::UGGrid<2> > >::type&) +calls=1 74 +* 7 +* 4 +cfn=(8670) +calls=1 373 +* 121 +* 4 +cfn=(8684) std::__uniq_ptr_impl<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::__uniq_ptr_impl<std::default_delete<Dune::UGGrid<2> > >(Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >&&) +calls=1 150 +* 177 +* 6 + +fn=(8600) std::unique_ptr<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::unique_ptr<std::default_delete<Dune::UGGrid<2> >, void>(Dune::UGGrid<2>*) +203 6 ++1 5 +cfn=(8602) std::__uniq_ptr_impl<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::__uniq_ptr_impl(Dune::UGGrid<2>*) +calls=1 -57 +* 119 ++1 3 + +fn=(8672) +352 25 ++1 15 +cfn=(8674) std::__uniq_ptr_impl<Dune::UGGrid<2>, std::default_delete<Dune::UGGrid<2> > >::_M_ptr() const +calls=5 154 +* 240 +* 10 + +fn=(8674) +154 40 +cfi=(295) +cfn=(8676) std::tuple_element<0ul, std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > > >::type const& std::get<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >(std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > > const&) +calls=5 1326 +* 185 +* 15 + +fn=(8684) +150 8 ++1 4 +cfi=(286) +cfn=(8668) +calls=1 -77 +* 7 +* 5 +cfi=(295) +cfn=(8686) std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >::tuple<Dune::UGGrid<2>*&, std::default_delete<Dune::UGGrid<2> >, true>(Dune::UGGrid<2>*&, std::default_delete<Dune::UGGrid<2> >&&) +calls=1 968 +* 148 +* 5 + +fn=(8602) +147 10 +cfi=(295) +cfn=(8604) std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, true>() +calls=1 918 +* 52 +* 4 +cfn=(8614) +calls=1 +6 +* 47 +* 6 + +fn=(8614) +153 40 +cfi=(295) +cfn=(8616) std::tuple_element<0ul, std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > > >::type& std::get<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >(std::tuple<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >&) +calls=5 1320 +* 185 +* 10 + +fn=(8656) +357 10 ++1 6 +cfn=(8658) +calls=2 155 +* 94 +* 4 + +fl=(257) /home/joscha/software/dune/dune-common/dune/common/fmatrixev.cc +fn=(2284) _GLOBAL__sub_I_fmatrixev.cc +245 6 +cfn=(2286) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(2286) +245 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(257) +245 3 + +fl=(320) +fn=(3744) +415 12 ++3 6 +cob=(2) +cfi=(18) +cfn=(3746) +calls=2 0 +* 256 ++1 4 + +fn=(4048) +1582 5 ++1 2 +cob=(2) +cfi=(18) +cfn=(4050) +calls=1 0 +* 76 +* 2 + +fl=(327) +fn=(4016) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>::equals(Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const> const&) const +130 120 ++2 120 ++1 120 ++1 40 + +fn=(4032) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>::increment() +143 64 ++2 80 ++1 48 + +fn=(3898) +73 200 ++3 80 ++2 100 ++1 140 + +fn=(4018) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>::index() const +117 128 ++2 224 ++1 64 + +fn=(4000) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::end() const +221 32 ++2 48 +cfn=(3998) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>::RealIterator(Dune::FieldMatrix<double, 1, 1> const*, Dune::FieldMatrix<double, 1, 1>*) +calls=4 109 +* 60 +* 8 ++1 20 + +fn=(3996) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::begin() const +215 32 ++2 32 +cfn=(3998) +calls=4 109 +* 60 +* 8 ++1 20 + +fn=(3998) +109 96 ++1 24 + +fn=(3870) Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::base_array_unmanaged() +269 104 ++1 104 ++1 78 + +fl=(271) +fn=(2428) Dune::FakeMPIHelper::FakeMPIHelper() +156 7 + +fn=(2424) +138 6 ++4 7 +cob=(2) +cfi=(18) +cfn=(2426) +calls=1 0 +* 35 +* 6 +cfn=(2428) +calls=1 +14 +* 7 +* 2 +cob=(2) +cfi=(18) +cfn=(2430) +calls=1 0 +* 18 ++1 1 ++1 2 + +fl=(237) +fn=(4908) __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::new_allocator() +80 7 + +fn=(2192) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > > >::new_allocator() +80 7 + +fn=(2972) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::max_size() const +132 64 ++3 16 ++4 32 + +fn=(3144) +151 108 ++2 54 +cob=(2) +cfi=(18) +cfn=(2754) +calls=18 0 +* 144 +* 54 + +fn=(3148) +119 84 ++9 36 +cob=(2) +cfi=(18) +cfn=(3150) +calls=12 0 +* 1056 ++1 24 + +fn=(4620) +132 560 ++3 140 ++4 280 + +fn=(4674) +119 168 ++9 72 +cob=(2) +cfi=(18) +cfn=(3150) +calls=24 0 +* 2462 ++1 48 + +fn=(5624) __gnu_cxx::new_allocator<std::__detail::_Hash_node_base*>::new_allocator() +80 7 + +fn=(5878) +151 30720 ++2 18432 + +fn=(5982) +102 35 ++2 15 +cfn=(5984) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >::max_size() const +calls=5 +28 +* 35 +* 20 ++10 35 +cob=(2) +cfi=(18) +cfn=(2378) +calls=5 0 +* 1224 +* 5 ++1 10 + +fn=(5996) __gnu_cxx::new_allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::new_allocator(__gnu_cxx::new_allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > const&) +83 120 + +fn=(6026) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >::~new_allocator() +89 35 + +fn=(6312) +102 84 ++2 36 +cfn=(6304) +calls=12 +28 +* 84 +* 48 ++10 84 +cob=(2) +cfi=(18) +cfn=(2378) +calls=12 0 +* 1821 +* 12 ++1 24 + +fn=(6346) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::uninitialized_copy<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*) +115 84 +fi=(294) /usr/include/c++/9/bits/stl_uninitialized.h ++13 12 ++6 72 +cfn=(6348) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__uninitialized_copy<false>::__uninit_copy<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*) +calls=12 -58 +* 228 ++1 24 +fe=(237) + +fn=(7192) __gnu_cxx::new_allocator<Dune::FieldVector<double, 1> >::~new_allocator() +89 84 + +fn=(7208) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> > const&) +83 32 + +fn=(7284) +102 14 ++2 6 +cfn=(7274) +calls=2 +28 +* 14 +* 8 ++10 14 +cob=(2) +cfi=(18) +cfn=(2378) +calls=2 0 +* 278 +* 2 ++1 4 + +fn=(7490) +132 16 ++3 4 ++4 8 + +fn=(7786) +132 8 ++3 2 ++4 4 + +fn=(8712) __gnu_cxx::new_allocator<unsigned char>::~new_allocator() +89 7 + +fn=(8732) __gnu_cxx::new_allocator<std::array<int, 2ul> >::~new_allocator() +89 7 + +fn=(8750) __gnu_cxx::new_allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::new_allocator() +80 7 + +fn=(9084) +119 21 ++9 9 +cob=(2) +cfi=(18) +cfn=(3150) +calls=3 0 +* 264 ++1 6 + +fn=(3880) +132 24 ++3 6 ++4 12 + +fn=(2330) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::new_allocator() +80 35 + +fn=(2394) __gnu_cxx::new_allocator<bool>::max_size() const +132 24 ++3 6 ++4 12 + +fn=(4190) __gnu_cxx::new_allocator<unsigned char>::new_allocator() +80 7 + +fn=(4822) +144 57864 ++3 21699 +cfi=(286) +cfn=(4818) +calls=7233 -73 +* 50631 +* 36165 +cfi=(293) +cfn=(2888) +calls=7233 +27 +* 57864 +* 43398 + +fn=(4838) +119 21686 ++9 9294 +cob=(2) +cfi=(18) +cfn=(3150) +calls=3098 0 +* 284719 ++1 6196 + +fn=(5236) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::max_size() const +132 8 ++3 2 ++4 4 + +fn=(5330) __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::new_allocator() +80 7 + +fn=(5500) +151 6 ++2 3 +cfi=(395) /home/joscha/software/dune/dune-uggrid/dune/uggrid/parallel/ppif/ppifcontext.cc +cfn=(5502) PPIF::PPIFContext::~PPIFContext() +calls=1 22 +* 7 +* 3 + +fn=(5550) +132 16392 ++3 4098 ++4 8196 + +fn=(5724) +102 43008 ++2 18432 +cfn=(5726) __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::max_size() const +calls=6144 +28 +* 43008 +* 24576 ++10 24576 +cob=(2) +cfi=(18) +cfn=(2378) +calls=6144 0 +* 369318 +* 6144 ++1 12288 + +fn=(5726) +132 24576 ++3 6144 ++4 12288 + +fn=(5890) +119 43008 ++9 18432 +cob=(2) +cfi=(18) +cfn=(3150) +calls=6144 0 +* 543130 ++1 12288 + +fn=(6304) +132 240 ++3 60 ++4 120 + +fn=(6498) __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldVector<double, 2> > const&) +83 192 + +fn=(6992) +102 28 ++2 12 +cfn=(6984) +calls=4 +28 +* 28 +* 16 ++10 28 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 886 +* 4 ++1 8 + +fn=(7274) +132 16 ++3 4 ++4 8 + +fn=(7374) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> >::new_allocator() +80 14 + +fn=(7406) +102 14 ++2 6 +cfn=(7388) +calls=2 +28 +* 14 +* 8 ++10 6 +cob=(2) +cfi=(18) +cfn=(2378) +calls=2 0 +* 106 +* 2 ++1 4 + +fn=(7780) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> > const&) +83 16 + +fn=(7938) +144 8 ++3 3 +cfi=(286) +cfn=(7936) +calls=1 -73 +* 7 +* 5 +cfi=(293) +cfn=(2888) +calls=1 +27 +* 8 +* 12 + +fn=(8068) +144 112 ++3 42 +cfi=(286) +cfn=(8066) +calls=14 -73 +* 98 +* 70 +cfi=(293) +cfn=(2888) +calls=14 +27 +* 112 +* 294 + +fn=(8256) +144 112 ++3 42 +cfi=(286) +cfn=(8254) +calls=14 -73 +* 98 +* 70 +cfi=(293) +cfn=(2888) +calls=14 +27 +* 112 +* 210 + +fn=(8340) +132 216 ++3 54 ++4 108 + +fn=(2352) __gnu_cxx::new_allocator<bool>::new_allocator() +80 42 + +fn=(2392) +102 42 ++2 18 +cfn=(2394) +calls=6 +28 +* 42 +* 24 ++10 18 +cob=(2) +cfi=(18) +cfn=(2378) +calls=6 0 +* 1176 +* 6 ++1 12 + +fn=(2880) +102 119 ++2 51 +cfn=(2864) +calls=17 +28 +* 119 +* 68 ++10 68 +cob=(2) +cfi=(18) +cfn=(2378) +calls=17 0 +* 2561 +* 17 ++1 34 + +fn=(2886) +144 340 ++3 102 +cfi=(286) +cfn=(2882) +calls=34 -73 +* 238 +* 170 +cfi=(293) +cfn=(2888) +calls=34 +27 +* 272 +* 136 +cob=(2) +cfi=(18) +cfn=(2890) +calls=34 0 +* 5900 +* 238 + +fn=(3250) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::max_size() const +132 12 ++3 3 ++4 6 + +fn=(4202) __gnu_cxx::new_allocator<unsigned int>::new_allocator() +80 21518 + +fn=(4244) __gnu_cxx::new_allocator<Dune::GeometryType>::new_allocator() +80 126 + +fn=(5116) +102 7 ++2 3 +cfn=(5108) +calls=1 +28 +* 7 +* 4 ++10 4 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 426 +* 1 ++1 2 + +fn=(5216) __gnu_cxx::new_allocator<PPIF::PPIFContext>::new_allocator() +80 14 + +fn=(5248) __gnu_cxx::new_allocator<PPIF::PPIFContext>::new_allocator(__gnu_cxx::new_allocator<PPIF::PPIFContext> const&) +83 48 + +fn=(5280) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::~new_allocator() +89 21 + +fn=(5388) +132 36 ++3 9 ++4 18 + +fn=(5402) +102 21 ++2 9 +cfn=(5388) +calls=3 +28 +* 21 +* 12 ++10 12 +cob=(2) +cfi=(18) +cfn=(2378) +calls=3 0 +* 314 +* 3 ++1 6 + +fn=(5536) __gnu_cxx::new_allocator<UG::D2::node*>::new_allocator() +80 14343 + +fn=(5628) +102 7 ++2 3 +cfn=(5630) __gnu_cxx::new_allocator<std::__detail::_Hash_node_base*>::max_size() const +calls=1 +28 +* 7 +* 4 ++10 4 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 200 +* 1 ++1 2 + +fn=(6006) __gnu_cxx::new_allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::~new_allocator() +89 105 + +fn=(6016) +144 30 ++3 20 +cfi=(293) +cfn=(2888) +calls=5 +27 +* 40 +* 10 +cfi=(349) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridindexsets.hh +cfn=(6018) Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>::UGGridLevelIndexSet() +calls=5 34 +* 1295 +* 15 + +fn=(6268) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>::new_allocator() +80 84 + +fn=(6984) +132 80 ++3 20 ++4 40 + +fn=(7388) +132 16 ++3 4 ++4 8 + +fn=(7554) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 0> >::new_allocator() +80 7 + +fn=(7756) __gnu_cxx::new_allocator<Dune::FieldVector<double, 0> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldVector<double, 0> > const&) +83 16 + +fn=(8020) +119 14 ++9 6 +cob=(2) +cfi=(18) +cfn=(3150) +calls=2 0 +* 176 ++1 4 + +fn=(8756) __gnu_cxx::new_allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::max_size() const +132 4 ++3 1 ++4 2 + +fn=(3878) +102 28 ++2 12 +cfn=(3880) +calls=4 +28 +* 28 +* 16 ++10 16 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 381 +* 4 ++1 8 + +fn=(2370) __gnu_cxx::new_allocator<bool*>::new_allocator() +80 42 + +fn=(2376) __gnu_cxx::new_allocator<bool*>::max_size() const +132 24 ++3 6 ++4 12 + +fn=(3096) +144 160 ++3 48 +cfi=(286) +cfn=(2882) +calls=16 -73 +* 112 +* 80 +cfi=(293) +cfn=(2888) +calls=16 +27 +* 128 +* 64 +cob=(2) +cfi=(18) +cfn=(2890) +calls=16 0 +* 3576 +* 112 + +fn=(3262) +144 45 ++3 9 +cfi=(286) +cfn=(2960) +calls=3 -73 +* 21 +* 9 +cfi=(286) +cfn=(2958) +calls=3 -73 +* 21 +* 15 +cfi=(295) +cfn=(2986) std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::tuple(std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&) +calls=3 642 +* 213 +* 12 +cfi=(286) +cfn=(2956) +calls=3 -73 +* 21 +* 12 +cfi=(293) +cfn=(2888) +calls=3 +27 +* 24 +* 12 +cfi=(295) +cfn=(3264) std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::piecewise_construct_t, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<>) +calls=3 1658 +* 1748 +* 30 + +fn=(4638) +144 8712 ++3 3267 +cfi=(286) +cfn=(4634) +calls=1089 -73 +* 7623 +* 5445 +cfi=(293) +cfn=(2888) +calls=1089 +27 +* 8712 +* 10890 + +fn=(4758) +132 144 ++3 36 ++4 72 + +fn=(5408) +144 24 ++3 9 +cfi=(286) +cfn=(5404) +calls=3 -73 +* 21 +* 15 +cfi=(293) +cfn=(2888) +calls=3 +27 +* 24 +* 18 + +fn=(5984) +132 20 ++3 5 ++4 10 + +fn=(6066) +102 28 ++2 12 +cfn=(6054) +calls=4 +28 +* 28 +* 16 ++10 16 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 664 +* 4 ++1 8 + +fn=(6070) +144 96 ++3 36 +cfi=(286) +cfn=(6036) +calls=12 -73 +* 84 +* 60 +cfi=(293) +cfn=(2888) +calls=12 +27 +* 96 +* 36 +cfi=(342) +cfn=(6072) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::shared_ptr(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&&) +calls=12 254 +* 948 +* 60 + +fn=(7024) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::uninitialized_copy<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*) +115 28 +fi=(294) ++13 4 ++6 24 +cfn=(7026) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__uninitialized_copy<false>::__uninit_copy<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*) +calls=4 -58 +* 76 ++1 8 +fe=(237) + +fn=(7088) +132 152 ++3 38 ++4 76 + +fn=(7188) __gnu_cxx::new_allocator<Dune::FieldVector<double, 1> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldVector<double, 1> > const&) +83 64 + +fn=(7216) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> >::~new_allocator() +89 42 + +fn=(7348) +119 14 ++9 6 +cob=(2) +cfi=(18) +cfn=(3150) +calls=2 0 +* 176 ++1 4 + +fn=(7382) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> > const&) +83 32 + +fn=(7536) __gnu_cxx::new_allocator<Dune::FieldVector<double, 0> >::new_allocator() +80 21 + +fn=(7688) +132 28 ++3 7 ++4 14 + +fn=(7970) +119 7 ++9 3 +cob=(2) +cfi=(18) +cfn=(3150) +calls=1 0 +* 88 ++1 2 + +fn=(8272) +119 28 ++9 12 +cob=(2) +cfi=(18) +cfn=(3150) +calls=4 0 +* 352 ++1 8 + +fn=(8386) +144 240 ++3 90 +cfi=(286) +cfn=(8382) +calls=30 -73 +* 210 +* 150 +cfi=(293) +cfn=(2888) +calls=30 +27 +* 240 +* 210 + +fn=(2374) +102 42 ++2 18 +cfn=(2376) +calls=6 +28 +* 42 +* 24 ++10 24 +cob=(2) +cfi=(18) +cfn=(2378) +calls=6 0 +* 1224 +* 6 ++1 12 + +fn=(2658) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::new_allocator() +80 7 + +fn=(3084) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::max_size() const +132 64 ++3 16 ++4 32 + +fn=(3364) +151 96 ++2 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 0 +* 1343 +* 48 + +fn=(3370) +119 112 ++9 48 +cob=(2) +cfi=(18) +cfn=(3150) +calls=16 0 +* 1586 ++1 32 + +fn=(7096) +102 70 ++2 30 +cfn=(7088) +calls=10 +28 +* 70 +* 40 ++10 40 +cob=(2) +cfi=(18) +cfn=(2378) +calls=10 0 +* 1001 +* 10 ++1 20 + +fn=(4214) __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::new_allocator() +80 203 + +fn=(4632) +102 280 ++2 120 +cfn=(4620) +calls=40 +28 +* 280 +* 160 ++10 160 +cob=(2) +cfi=(18) +cfn=(2378) +calls=40 0 +* 5445 +* 40 ++1 80 + +fn=(4684) __gnu_cxx::new_allocator<unsigned int>::new_allocator(__gnu_cxx::new_allocator<unsigned int> const&) +83 49152 + +fn=(5358) __gnu_cxx::new_allocator<void*>::new_allocator() +80 903 + +fn=(5636) __gnu_cxx::new_allocator<std::__detail::_Hash_node_base*>::~new_allocator() +89 7 + +fn=(6228) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 2> >::new_allocator() +80 28 + +fn=(6532) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> >::~new_allocator() +89 84 + +fn=(6742) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> >::~new_allocator() +89 84 + +fn=(6860) +132 32 ++3 8 ++4 16 + +fn=(6952) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>::new_allocator() +80 28 + +fn=(7500) +102 14 ++2 6 +cfn=(7490) +calls=2 +28 +* 14 +* 8 ++10 8 +cob=(2) +cfi=(18) +cfn=(2378) +calls=2 0 +* 114 +* 2 ++1 4 + +fn=(7606) +102 7 ++2 3 +cfn=(7598) +calls=1 +28 +* 7 +* 4 ++10 4 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 221 +* 1 ++1 2 + +fn=(7630) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::uninitialized_copy<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*) +115 7 +fi=(294) ++13 1 ++6 6 +cfn=(7632) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__uninitialized_copy<false>::__uninit_copy<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*) +calls=1 -58 +* 19 ++1 2 +fe=(237) + +fn=(8004) +144 32 ++3 12 +cfi=(286) +cfn=(8002) +calls=4 -73 +* 28 +* 20 +cfi=(293) +cfn=(2888) +calls=4 +27 +* 32 +* 56 + +fn=(8112) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> >::~new_allocator() +89 84 + +fn=(8764) +144 12 ++3 3 +cfi=(286) +cfn=(8762) +calls=1 -73 +* 7 +* 4 +cfi=(286) +cfn=(8760) +calls=1 -73 +* 7 +* 4 +cfi=(293) +cfn=(2888) +calls=1 +27 +* 8 +* 3 +cfi=(343) +cfn=(8766) +calls=1 460 +* 113 +* 8 + +fn=(2318) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::new_allocator() +80 35 + +fn=(2384) __gnu_cxx::new_allocator<bool*>::~new_allocator() +89 42 + +fn=(2984) +144 240 ++3 48 +cfi=(286) +cfn=(2960) +calls=16 -73 +* 112 +* 48 +cfi=(286) +cfn=(2958) +calls=16 -73 +* 112 +* 80 +cfi=(295) +cfn=(2986) +calls=16 642 +* 1136 +* 64 +cfi=(286) +cfn=(2956) +calls=16 -73 +* 112 +* 64 +cfi=(293) +cfn=(2888) +calls=16 +27 +* 128 +* 64 +cfi=(295) +cfn=(2994) std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::piecewise_construct_t, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<>) +calls=16 1658 +* 3801 +* 160 + +fn=(4694) __gnu_cxx::new_allocator<unsigned int>::~new_allocator() +89 64526 + +fn=(4770) +102 84 ++2 36 +cfn=(4758) +calls=12 +28 +* 84 +* 48 ++10 36 +cob=(2) +cfi=(18) +cfn=(2378) +calls=12 0 +* 1056 +* 12 ++1 24 + +fn=(4964) +102 21952 ++2 9408 +cfn=(4966) __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::max_size() const +calls=3136 +28 +* 21952 +* 12544 ++10 21952 +cob=(2) +cfi=(18) +cfn=(2378) +calls=3136 0 +* 200967 +* 3136 ++1 6272 + +fn=(5234) +102 14 ++2 6 +cfn=(5236) +calls=2 +28 +* 14 +* 8 ++10 8 +cob=(2) +cfi=(18) +cfn=(2378) +calls=2 0 +* 489 +* 2 ++1 4 + +fn=(5270) +144 18 ++3 8 +cfi=(293) +cfn=(2888) +calls=2 +27 +* 16 +* 6 +cfi=(395) +cfn=(5272) PPIF::PPIFContext::PPIFContext() +calls=2 15 +* 26 +* 14 + +fn=(5568) +102 14343 ++2 6147 +cfn=(5550) +calls=2049 +28 +* 14343 +* 8196 ++10 8196 +cob=(2) +cfi=(18) +cfn=(2378) +calls=2049 0 +* 116936 +* 2049 ++1 4098 + +fn=(5630) +132 4 ++3 1 ++4 2 + +fn=(5964) __gnu_cxx::new_allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::new_allocator() +80 35 + +fn=(5976) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >::new_allocator() +80 35 + +fn=(6242) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 2> >::new_allocator() +80 28 + +fn=(7364) +119 28 ++9 12 +cob=(2) +cfi=(18) +cfn=(3150) +calls=4 0 +* 352 ++1 8 + +fn=(7598) +132 20 ++3 5 ++4 10 + +fn=(7954) +119 7 ++9 3 +cob=(2) +cfi=(18) +cfn=(3150) +calls=1 0 +* 88 ++1 2 + +fn=(8636) +119 7 ++9 3 +cob=(2) +cfi=(18) +cfn=(3150) +calls=1 0 +* 134 ++1 2 + +fn=(8642) __gnu_cxx::new_allocator<int>::~new_allocator() +89 7 + +fn=(8778) __gnu_cxx::new_allocator<std::_Sp_counted_deleter<Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> >, std::allocator<void>, (__gnu_cxx::_Lock_policy)2> >::~new_allocator() +89 7 + +fn=(3140) +144 168 ++3 63 +cfi=(286) +cfn=(3138) +calls=21 -73 +* 147 +* 105 +cfi=(293) +cfn=(2888) +calls=21 +27 +* 168 +* 63 +cob=(2) +cfi=(18) +cfn=(2644) +calls=21 0 +* 378 +* 105 + +fn=(3874) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 1> >::new_allocator() +80 28 + +fn=(4178) __gnu_cxx::new_allocator<std::array<int, 2ul> >::new_allocator() +80 7 + +fn=(4230) __gnu_cxx::new_allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::new_allocator() +80 7 + +fn=(4670) +151 10235 ++2 6141 + +fn=(4706) +102 21686 ++2 9294 +cfn=(4690) +calls=3098 +28 +* 21686 +* 12392 ++10 12392 +cob=(2) +cfi=(18) +cfn=(2378) +calls=3098 0 +* 175232 +* 3098 ++1 6196 + +fn=(4774) +144 16384 ++3 6144 +cfi=(286) +cfn=(4740) +calls=2048 -73 +* 14336 +* 10240 +cfi=(293) +cfn=(2888) +calls=2048 +27 +* 16384 +* 12288 + +fn=(4884) +119 84 ++9 36 +cob=(2) +cfi=(18) +cfn=(3150) +calls=12 0 +* 1126 ++1 24 + +fn=(4978) +144 25088 ++3 9408 +cfi=(286) +cfn=(4950) +calls=3136 -73 +* 21952 +* 15680 +cfi=(293) +cfn=(2888) +calls=3136 +27 +* 25088 +* 21952 + +fn=(5088) __gnu_cxx::new_allocator<int>::new_allocator() +80 7 + +fn=(5442) +119 14 ++9 6 +cob=(2) +cfi=(18) +cfn=(3150) +calls=2 0 +* 176 ++1 4 + +fn=(6256) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 2, 2> >::new_allocator() +80 28 + +fn=(6514) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> >::new_allocator() +80 28 + +fn=(6546) +102 28 ++2 12 +cfn=(6528) +calls=4 +28 +* 28 +* 16 ++10 16 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 835 +* 4 ++1 8 + +fn=(6656) +102 28 ++2 12 +cfn=(6646) +calls=4 +28 +* 28 +* 16 ++10 28 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 835 +* 4 ++1 8 + +fn=(6724) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> >::new_allocator() +80 28 + +fn=(6756) +102 28 ++2 12 +cfn=(6738) +calls=4 +28 +* 28 +* 16 ++10 16 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 541 +* 4 ++1 8 + +fn=(7332) +144 16 ++3 6 +cfi=(286) +cfn=(7330) +calls=2 -73 +* 14 +* 10 +cfi=(293) +cfn=(2888) +calls=2 +27 +* 16 +* 30 + +fn=(7696) +102 14 ++2 6 +cfn=(7688) +calls=2 +28 +* 14 +* 8 ++10 6 +cob=(2) +cfi=(18) +cfn=(2378) +calls=2 0 +* 428 +* 2 ++1 4 + +fn=(7790) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> >::~new_allocator() +89 21 + +fn=(8094) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> >::new_allocator() +80 28 + +fn=(8126) +102 28 ++2 12 +cfn=(8108) +calls=4 +28 +* 28 +* 16 ++10 12 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 212 +* 4 ++1 8 + +fn=(8356) +144 120 ++3 45 +cfi=(286) +cfn=(8322) +calls=15 -73 +* 105 +* 75 +cfi=(293) +cfn=(2888) +calls=15 +27 +* 120 +* 105 + +fn=(2176) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > > >::new_allocator() +80 7 + +fn=(2306) __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::new_allocator() +80 77 + +fn=(2864) +132 204 ++3 51 ++4 102 + +fn=(2970) +102 112 ++2 48 +cfn=(2972) +calls=16 +28 +* 112 +* 64 ++10 112 +cob=(2) +cfi=(18) +cfn=(2378) +calls=16 0 +* 3264 +* 16 ++1 32 + +fn=(3248) +102 21 ++2 9 +cfn=(3250) +calls=3 +28 +* 21 +* 12 ++10 21 +cob=(2) +cfi=(18) +cfn=(2378) +calls=3 0 +* 597 +* 3 ++1 6 + +fn=(3376) __gnu_cxx::new_allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::~new_allocator() +89 7 + +fn=(4046) __gnu_cxx::new_allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::~new_allocator() +89 7 + +fn=(4102) __gnu_cxx::new_allocator<double>::new_allocator() +80 7 + +fn=(4126) __gnu_cxx::new_allocator<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > > >::new_allocator() +80 7 + +fn=(4258) __gnu_cxx::new_allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > >::new_allocator() +80 7 + +fn=(4690) +132 24888 ++3 6222 ++4 12444 + +fn=(4966) +132 12544 ++3 3136 ++4 6272 + +fn=(5070) +119 21952 ++9 9408 +cob=(2) +cfi=(18) +cfn=(3150) +calls=3136 0 +* 278446 ++1 6272 + +fn=(5108) +132 20 ++3 5 ++4 10 + +fn=(5228) __gnu_cxx::new_allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >::new_allocator() +80 21 + +fn=(5260) __gnu_cxx::new_allocator<PPIF::PPIFContext>::~new_allocator() +89 49 + +fn=(5516) +119 7 ++9 3 +cob=(2) +cfi=(18) +cfn=(3150) +calls=1 0 +* 88 ++1 2 + +fn=(5544) __gnu_cxx::new_allocator<UG::D2::node*>::new_allocator(__gnu_cxx::new_allocator<UG::D2::node*> const&) +83 32784 + +fn=(5742) +144 61440 ++3 18432 +cfi=(286) +cfn=(5714) +calls=6144 -73 +* 43008 +* 24576 +cfi=(286) +cfn=(5712) +calls=6144 -73 +* 43008 +* 30720 +cfi=(293) +cfn=(2888) +calls=6144 +27 +* 49152 +* 24576 +cfi=(298) +cfn=(5744) std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >::pair<UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>, true>(UG::D2::multigrid::FaceNodes&, std::pair<UG::D2::element*, int>&&) +calls=6144 341 +* 276480 +* 36864 + +fn=(5844) +119 14343 ++9 6147 +cob=(2) +cfi=(18) +cfn=(3150) +calls=2049 0 +* 180358 ++1 4098 + +fn=(6054) +132 48 ++3 12 ++4 24 + +fn=(6502) __gnu_cxx::new_allocator<Dune::FieldVector<double, 2> >::~new_allocator() +89 259 + +fn=(6528) +132 32 ++3 8 ++4 16 + +fn=(6646) +132 32 ++3 8 ++4 16 + +fn=(6738) +132 32 ++3 8 ++4 16 + +fn=(6906) __gnu_cxx::new_allocator<Dune::FieldVector<double, 1> >::new_allocator() +80 70 + +fn=(6926) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 0, 1> >::new_allocator() +80 14 + +fn=(7566) __gnu_cxx::new_allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>::new_allocator() +80 7 + +fn=(7896) +102 7 ++2 3 +cfn=(7886) +calls=1 +28 +* 7 +* 4 ++10 7 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 221 +* 1 ++1 2 + +fn=(8084) +119 28 ++9 12 +cob=(2) +cfi=(18) +cfn=(3150) +calls=4 0 +* 352 ++1 8 + +fn=(8108) +132 32 ++3 8 ++4 16 + +fn=(8220) +102 28 ++2 12 +cfn=(8210) +calls=4 +28 +* 28 +* 16 ++10 28 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 823 +* 4 ++1 8 + +fn=(8652) __gnu_cxx::new_allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::~new_allocator() +89 7 + +fn=(8754) +102 7 ++2 3 +cfn=(8756) +calls=1 +28 +* 7 +* 4 ++10 7 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 8939 +* 1 ++1 2 + +fn=(9080) +151 42 ++2 21 +cfi=(342) +cfn=(6096) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::~shared_ptr() +calls=7 -50 +* 245 +* 21 + +fn=(3082) +102 112 ++2 48 +cfn=(3084) +calls=16 +28 +* 112 +* 64 ++10 64 +cob=(2) +cfi=(18) +cfn=(2378) +calls=16 0 +* 2676 +* 16 ++1 32 + +fn=(4666) +144 16376 ++3 6141 +cfi=(286) +cfn=(4664) +calls=2047 -73 +* 14329 +* 10235 +cfi=(293) +cfn=(2888) +calls=2047 +27 +* 16376 +* 20470 + +fn=(5064) +151 15680 ++2 9408 + +fn=(5554) __gnu_cxx::new_allocator<UG::D2::node*>::~new_allocator() +89 43029 + +fn=(6522) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldMatrix<double, 2, 2> > const&) +83 64 + +fn=(6692) +144 32 ++3 12 +cfi=(286) +cfn=(6690) +calls=4 -73 +* 28 +* 20 +cfi=(293) +cfn=(2888) +calls=4 +27 +* 32 +* 116 + +fn=(6708) +119 28 ++9 12 +cob=(2) +cfi=(18) +cfn=(3150) +calls=4 0 +* 352 ++1 8 + +fn=(6732) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldMatrix<double, 1, 2> > const&) +83 64 + +fn=(6870) +102 28 ++2 12 +cfn=(6860) +calls=4 +28 +* 28 +* 16 ++10 16 +cob=(2) +cfi=(18) +cfn=(2378) +calls=4 0 +* 531 +* 4 ++1 8 + +fn=(6940) __gnu_cxx::new_allocator<Dune::AffineGeometry<double, 1, 1> >::new_allocator() +80 14 + +fn=(7392) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 1> >::~new_allocator() +89 42 + +fn=(7760) __gnu_cxx::new_allocator<Dune::FieldVector<double, 0> >::~new_allocator() +89 21 + +fn=(7772) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 0> >::new_allocator() +80 7 + +fn=(7804) +102 7 ++2 3 +cfn=(7786) +calls=1 +28 +* 7 +* 4 ++10 3 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 214 +* 1 ++1 2 + +fn=(7886) +132 8 ++3 2 ++4 4 + +fn=(8102) __gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> >::new_allocator(__gnu_cxx::new_allocator<Dune::FieldMatrix<double, 0, 2> > const&) +83 64 + +fn=(8210) +132 32 ++3 8 ++4 16 + +fn=(8352) +102 126 ++2 54 +cfn=(8340) +calls=18 +28 +* 126 +* 72 ++10 72 +cob=(2) +cfi=(18) +cfn=(2378) +calls=18 0 +* 1891 +* 18 ++1 36 + +fl=(344) +fn=(4578) Dune::UGGrid<2>::comm() const +570 8 ++2 4 ++1 4 + +fn=(4130) +771 4 ++2 3 + +fl=(389) +fn=(6328) Dune::GeometryType::GeometryType() +380 156 ++1 234 ++1 117 + +fn=(6374) +134 252 ++1 210 +cfn=(6286) +calls=42 -35 +* 420 +* 84 ++1 210 ++1 504 ++1 84 +-4 3960 ++1 3300 +cfn=(6286) +calls=660 -35 +* 6600 +* 1320 ++1 3300 ++1 7920 ++1 1320 + +fn=(6366) Dune::GeometryType::GeometryType(unsigned int, unsigned int) +438 234 ++1 351 ++1 117 + +fn=(4726) +767 16504 ++1 12378 +cfn=(4728) Dune::GeometryType::GeometryType(unsigned int, unsigned int, bool) +calls=2063 429 +* 43323 +* 2063 ++1 10315 + +fn=(4840) Dune::GeometryType::isTriangle() const +599 8192 ++1 32768 ++1 4096 + +fn=(6574) Dune::GeometryType::id() const +649 35545432 ++1 17772716 ++1 17772716 + +fn=(8290) +634 71090472 ++1 355452360 ++1 35545236 + +fn=(6372) +167 312 ++1 260 +cfn=(6286) +calls=52 -68 +* 520 +* 104 ++1 260 ++1 416 ++1 104 +-4 3960 ++1 3300 +cfn=(6286) +calls=660 -68 +* 6600 +* 1320 ++1 3300 ++1 5280 ++1 1320 + +fn=(6376) +116 600 ++1 500 +cfn=(6286) +calls=100 -17 +* 1000 +* 200 ++1 500 ++1 1100 ++1 200 + +fn=(4728) +429 16504 ++1 20630 ++1 6189 + +fn=(4732) Dune::GeometryType::dim() const +644 35553556 ++1 26665167 ++1 17776778 + +fn=(6286) +100 561 ++1 935 ++1 374 +-2 8247 ++1 13745 ++1 5498 + +fn=(8308) +629 4374528 ++1 13123584 ++1 2187264 + +fl=(258) +fn=(2290) __static_initialization_and_destruction_0(int, int) +241 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(258) +-49 3 +cfn=(2292) +calls=1 -3 +* 359 +* 6 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -25 +* 74 +241 3 + +fn=(2826) Dune::ParameterTree::operator[](std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +149 160 ++1 80 +cob=(2) +cfi=(18) +cfn=(2772) +calls=16 0 +* 1928 +* 16 ++2 32 ++2 98 +cob=(2) +cfi=(18) +cfn=(2742) +calls=14 0 +* 2076 +* 70 +cfn=(3182) +calls=14 -52 +* 56316 +* 56 +cob=(2) +cfi=(18) +cfn=(2754) +calls=14 0 +* 112 ++1 98 +cob=(2) +cfi=(18) +cfn=(2742) +calls=14 0 +* 2175 +* 70 +cfn=(2827) Dune::ParameterTree::operator[](std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'2 +calls=14 -6 +* 57986 +* 56 +cob=(2) +cfi=(18) +cfn=(2754) +calls=14 0 +* 201 +* 14 ++4 10 +cfn=(2828) +calls=2 47 +* 946 +* 6 ++1 12 +cfi=(259) +cfn=(2846) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::push_back(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=2 1184 +* 4072 ++1 12 +cfi=(234) +cfn=(2926) +calls=2 490 +* 3734 +* 4 ++2 6 +-2 14 ++2 106 + +fn=(2827) +149 140 ++1 70 +cob=(2) +cfi=(18) +cfn=(2772) +calls=14 0 +* 1442 +* 14 ++2 28 ++7 70 +cfn=(2828) +calls=14 47 +* 10114 +* 42 ++1 84 +cfi=(259) +cfn=(2846) +calls=14 1184 +* 15037 ++1 84 +cfi=(234) +cfn=(2926) +calls=14 490 +* 30735 +* 28 ++2 98 + +fn=(3554) +75 10 ++1 5 +cob=(2) +cfi=(18) +cfn=(2772) +calls=1 -76 +* 108 +* 1 ++2 2 ++13 6 +cfi=(234) +cfn=(3186) +calls=1 1214 +* 716 +* 4 ++2 6 +cfi=(234) +cfn=(2830) +calls=1 1214 +* 730 +* 4 ++2 2 ++3 1 ++1 7 + +fn=(3182) +102 160 ++1 80 +cob=(2) +cfi=(18) +cfn=(2772) +calls=16 0 +* 1658 +* 16 ++2 32 ++7 96 +cfi=(234) +cfn=(2830) +calls=16 1214 +* 11194 +* 64 ++2 96 +cfi=(234) +cfn=(3186) +calls=16 1214 +* 10361 +* 64 ++1 27 +cob=(2) +cfi=(18) +cfn=(2742) +calls=3 0 +* 446 +* 12 +cfi=(259) +cfn=(3202) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::push_back(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=3 1200 +* 4470 +* 9 +cob=(2) +cfi=(18) +cfn=(2754) +calls=3 0 +* 24 ++1 96 +cfi=(272) +cfn=(3214) +calls=16 6020 +* 3270 +* 96 +cfi=(272) +cfn=(2632) +calls=16 6121 +* 1904 +* 96 +cfi=(234) +cfn=(3216) +calls=16 490 +* 16205 +* 80 +cob=(2) +cfi=(18) +cfn=(2750) +calls=16 0 +* 752 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 0 +* 128 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 0 +* 128 ++1 96 +cfi=(234) +cfn=(3216) +calls=16 490 +* 11143 +* 32 ++2 112 + +fn=(3476) +209 27 ++1 15 +cob=(2) +cfi=(18) +cfn=(2784) +calls=3 0 +* 271 +* 3 ++2 6 ++1 24 +cob=(2) +cfi=(18) +cfn=(2742) +calls=3 0 +* 635 +* 3 ++2 18 + +fn=(2292) +22 40 +cob=(2) +cfi=(18) +cfn=(2294) +calls=5 -22 +* 40 +* 20 +cfi=(259) +cfn=(2298) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::vector() +calls=5 484 +* 335 +* 20 +cfi=(259) +cfn=(2298) +calls=5 484 +* 335 +* 20 +cfi=(234) +cfn=(2310) +calls=5 183 +* 475 +* 20 +cfi=(234) +cfn=(2322) +calls=5 183 +* 475 ++1 15 + +fn=(3468) +166 120 ++1 60 +cob=(2) +cfi=(18) +cfn=(2772) +calls=12 0 +* 1291 +* 12 ++2 24 ++7 60 +cfn=(2828) +calls=12 47 +* 15700 +* 36 ++3 72 +cfi=(234) +cfn=(3470) +calls=12 1193 +* 9244 +* 48 +cfi=(235) +cfn=(3472) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::operator->() const +calls=12 360 +* 468 +* 24 ++2 84 + +fn=(3478) +200 27 ++1 15 +cob=(2) +cfi=(18) +cfn=(2732) +calls=3 0 +* 262 +* 3 ++2 6 ++1 18 +cob=(2) +cfi=(18) +cfn=(2742) +calls=3 0 +* 635 +* 3 ++2 18 + +fn=(2288) _GLOBAL__sub_I_parametertree.cc +241 6 +cfn=(2290) +calls=1 * +* 561 +* 2 + +fn=(2828) +47 400 ++1 200 +cob=(2) +cfi=(18) +cfn=(2772) +calls=40 -48 +* 4230 +* 40 ++2 80 ++13 240 +cfi=(234) +cfn=(2830) +calls=40 1214 +* 28820 +* 160 ++2 144 +cfi=(234) +cfn=(3186) +calls=24 1214 +* 7666 +* 96 ++2 48 ++3 32 ++2 48 +-2 24 ++2 232 + +fl=(404) /usr/include/c++/9/bits/std_abs.h +fn=(5482) std::abs(double) +72 2340 + +fl=(292) /usr/include/c++/9/bits/vector.tcc +fn=(4738) unsigned char& std::vector<unsigned char, std::allocator<unsigned char> >::emplace_back<unsigned char>(unsigned char&&) +109 14336 ++3 12288 ++3 6108 +cfi=(286) +cfn=(4740) +calls=2036 -41 +* 14252 +* 14252 +cfi=(266) +cfn=(4772) +calls=2036 482 +* 128268 ++2 12216 ++4 36 +cfi=(286) +cfn=(4740) +calls=12 -47 +* 84 +* 48 +cfi=(259) +cfn=(4742) std::vector<unsigned char, std::allocator<unsigned char> >::end() +calls=12 826 +* 384 +* 72 +cfn=(4746) void std::vector<unsigned char, std::allocator<unsigned char> >::_M_realloc_insert<unsigned char>(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >, unsigned char&&) +calls=12 426 +* 12813 ++2 6144 +cfi=(259) +cfn=(4790) std::vector<unsigned char, std::allocator<unsigned char> >::back() +calls=2048 1140 +* 210944 ++2 8192 + +fn=(6850) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::reserve(unsigned long) +66 24 ++3 12 +cfi=(259) +cfn=(6852) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::max_size() const +calls=4 920 +* 300 +* 16 ++2 12 +cfi=(259) +cfn=(6862) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::capacity() const +calls=4 995 +* 52 +* 16 ++2 12 +cfi=(259) +cfn=(6864) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::size() const +calls=4 915 +* 52 +* 4 ++5 20 +cfi=(259) +cfn=(6866) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_M_allocate(unsigned long) +calls=4 340 +* 763 +* 4 ++2 12 +cfi=(259) +cfn=(6872) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_M_get_Tp_allocator() +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(259) +cfn=(6874) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_S_relocate(Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, std::allocator<Dune::AffineGeometry<double, 1, 2> >&) +calls=4 462 +* 440 ++13 4 ++1 8 ++1 20 +-2 28 +cfi=(259) +cfn=(6884) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_M_deallocate(Dune::AffineGeometry<double, 1, 2>*, unsigned long) +calls=4 347 +* 48 ++3 12 ++1 28 ++1 28 ++2 12 + +fn=(8328) void std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_realloc_insert<Dune::GeometryType>(__gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >, Dune::GeometryType&&) +426 66 ++9 30 +cfi=(259) +cfn=(8330) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_check_len(unsigned long, char const*) const +calls=6 1753 +* 1656 +* 6 ++2 18 ++1 18 ++1 18 +cfi=(259) +cfn=(8342) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::begin() +calls=6 808 +* 186 +* 36 +cfi=(291) +cfn=(8344) +calls=6 989 +* 216 +* 6 ++1 30 +cfi=(259) +cfn=(8348) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_allocate(unsigned long) +calls=6 340 +* 810 +* 6 ++1 12 ++8 18 +cfi=(286) +cfn=(8322) +calls=6 74 +* 42 +* 6 ++1 12 +-1 36 +cfi=(266) +cfn=(8354) +calls=6 +33 +* 384 ++7 6 ++6 18 +cfi=(259) +cfn=(8358) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_get_Tp_allocator() +calls=6 273 +* 42 +* 6 +-1 18 +cfi=(291) +cfn=(8346) +calls=6 871 +* 42 +* 36 +cfi=(259) +cfn=(8360) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_S_relocate(Dune::GeometryType*, Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType>&) +calls=6 +1 +* 660 +* 6 ++3 6 ++3 18 +cfi=(259) +cfn=(8358) +calls=6 273 +* 42 +* 6 +-1 18 +cfi=(291) +cfn=(8346) +calls=6 871 +* 42 +* 36 +cfi=(259) +cfn=(8360) +calls=6 -4 +* 660 +* 6 ++34 6 ++1 24 +-1 24 +cfi=(259) +cfn=(8370) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_deallocate(Dune::GeometryType*, unsigned long) +calls=6 347 +* 72 ++2 18 ++1 18 ++1 36 ++1 48 + +fn=(3204) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >& std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::emplace_back<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +109 21 ++3 18 ++9 9 +cfi=(286) +cfn=(3138) +calls=3 -47 +* 21 +* 12 +cfi=(259) +cfn=(2848) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::end() +calls=3 826 +* 96 +* 18 +cfn=(3206) void std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_realloc_insert<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(__gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +calls=3 426 +* 3870 ++2 9 +cfi=(259) +cfn=(3208) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::back() +calls=3 1140 +* 312 ++2 12 + +fn=(7678) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_default_append(unsigned long) +611 7 ++3 2 ++2 3 +cfi=(259) +cfn=(7676) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::size() const +calls=1 915 +* 12 +* 1 ++1 2 ++1 4 +-1 1 ++3 3 +cfi=(259) +cfn=(7680) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::max_size() const +calls=1 920 +* 75 +* 5 +cfi=(259) +cfn=(7680) +calls=1 920 +* 75 +* 5 ++3 3 ++10 6 +cfi=(259) +cfn=(7690) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_check_len(unsigned long, char const*) const +calls=1 1753 +* 272 +* 1 ++2 5 +cfi=(259) +cfn=(7692) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_allocate(unsigned long) +calls=1 340 +* 271 +* 1 ++6 3 +cfi=(259) +cfn=(7698) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_get_Tp_allocator() +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(294) +cfn=(7700) Dune::FieldVector<double, 0>* std::__uninitialized_default_n_a<Dune::FieldVector<double, 0>*, unsigned long, Dune::FieldVector<double, 0> >(Dune::FieldVector<double, 0>*, unsigned long, std::allocator<Dune::FieldVector<double, 0> >&) +calls=1 +3 +* 87 ++9 3 +cfi=(259) +cfn=(7698) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(259) +cfn=(7712) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_S_relocate(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> >&) +calls=1 462 +* 110 ++27 1 ++1 2 ++1 4 +-2 7 +cfi=(259) +cfn=(7722) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_deallocate(Dune::FieldVector<double, 0>*, unsigned long) +calls=1 347 +* 12 ++3 3 ++1 7 ++1 5 ++3 6 + +fn=(4804) void std::vector<unsigned int, std::allocator<unsigned int> >::_M_realloc_insert<unsigned int const&>(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, unsigned int const&) +426 286 ++9 130 +cfi=(259) +cfn=(4806) std::vector<unsigned int, std::allocator<unsigned int> >::_M_check_len(unsigned long, char const*) const +calls=26 1753 +* 7152 +* 26 ++2 78 ++1 78 ++1 78 +cfi=(259) +cfn=(4812) std::vector<unsigned int, std::allocator<unsigned int> >::begin() +calls=26 808 +* 806 +* 156 +cfi=(291) +cfn=(4814) +calls=26 989 +* 936 +* 26 ++1 130 +cfi=(259) +cfn=(4702) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_M_allocate(unsigned long) +calls=26 340 +* 5732 +* 26 ++1 52 ++8 78 +cfi=(286) +cfn=(4818) +calls=26 74 +* 182 +* 26 ++1 52 +-1 156 +cfi=(266) +cfn=(4820) +calls=26 +33 +* 1638 ++7 26 ++6 78 +cfi=(259) +cfn=(4710) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_M_get_Tp_allocator() +calls=26 273 +* 182 +* 26 +-1 78 +cfi=(291) +cfn=(4816) +calls=26 871 +* 182 +* 156 +cfi=(259) +cfn=(4824) std::vector<unsigned int, std::allocator<unsigned int> >::_S_relocate(unsigned int*, unsigned int*, unsigned int*, std::allocator<unsigned int>&) +calls=26 +1 +* 29690 +* 26 ++3 26 ++3 78 +cfi=(259) +cfn=(4710) +calls=26 273 +* 182 +* 26 +-1 78 +cfi=(291) +cfn=(4816) +calls=26 871 +* 182 +* 156 +cfi=(259) +cfn=(4824) +calls=26 -4 +* 2886 +* 26 ++34 26 ++1 104 +-1 104 +cfi=(259) +cfn=(4832) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_M_deallocate(unsigned int*, unsigned long) +calls=26 347 +* 3666 ++2 78 ++1 78 ++1 156 ++1 208 + +fn=(5098) std::vector<int, std::allocator<int> >::_M_default_append(unsigned long) +611 7 ++3 2 ++2 3 +cfi=(259) +cfn=(5096) std::vector<int, std::allocator<int> >::size() const +calls=1 915 +* 13 +* 1 ++1 2 ++1 5 +-1 1 ++3 3 +cfi=(259) +cfn=(5100) std::vector<int, std::allocator<int> >::max_size() const +calls=1 920 +* 75 +* 5 +cfi=(259) +cfn=(5100) +calls=1 920 +* 75 +* 5 ++3 3 ++10 6 +cfi=(259) +cfn=(5110) std::vector<int, std::allocator<int> >::_M_check_len(unsigned long, char const*) const +calls=1 1753 +* 276 +* 1 ++2 5 +cfi=(259) +cfn=(5112) std::_Vector_base<int, std::allocator<int> >::_M_allocate(unsigned long) +calls=1 340 +* 484 +* 1 ++6 3 +cfi=(259) +cfn=(5118) std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() +calls=1 273 +* 7 +* 1 +-1 8 +cfi=(294) +cfn=(5120) int* std::__uninitialized_default_n_a<int*, unsigned long, int>(int*, unsigned long, std::allocator<int>&) +calls=1 +3 +* 8815 ++9 3 +cfi=(259) +cfn=(5118) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(259) +cfn=(5134) std::vector<int, std::allocator<int> >::_S_relocate(int*, int*, int*, std::allocator<int>&) +calls=1 462 +* 111 ++27 1 ++1 2 ++1 5 +-2 7 +cfi=(259) +cfn=(5142) std::_Vector_base<int, std::allocator<int> >::_M_deallocate(int*, unsigned long) +calls=1 347 +* 12 ++3 3 ++1 8 ++1 6 ++3 6 + +fn=(6042) void std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_M_realloc_insert<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(__gnu_cxx::__normal_iterator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > > >, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&&) +426 44 ++9 20 +cfi=(259) +cfn=(6044) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_M_check_len(unsigned long, char const*) const +calls=4 1753 +* 1101 +* 4 ++2 12 ++1 12 ++1 12 +cfi=(259) +cfn=(6056) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::begin() +calls=4 808 +* 124 +* 24 +cfi=(291) +cfn=(6058) +calls=4 989 +* 144 +* 4 ++1 20 +cfi=(259) +cfn=(6062) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_M_allocate(unsigned long) +calls=4 340 +* 896 +* 4 ++1 8 ++8 12 +cfi=(286) +cfn=(6036) +calls=4 74 +* 28 +* 4 ++1 12 +-1 24 +cfi=(266) +cfn=(6068) +calls=4 +33 +* 576 ++7 4 ++6 12 +cfi=(259) +cfn=(6076) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_M_get_Tp_allocator() +calls=4 273 +* 28 +* 4 +-1 12 +cfi=(291) +cfn=(6060) +calls=4 871 +* 28 +* 24 +cfi=(259) +cfn=(6078) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_S_relocate(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&) +calls=4 +1 +* 2393 +* 4 ++3 4 ++3 12 +cfi=(259) +cfn=(6076) +calls=4 273 +* 28 +* 4 +-1 12 +cfi=(291) +cfn=(6060) +calls=4 871 +* 28 +* 24 +cfi=(259) +cfn=(6078) +calls=4 -4 +* 440 +* 4 ++34 4 ++1 16 +-1 16 +cfi=(259) +cfn=(6088) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_M_deallocate(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, unsigned long) +calls=4 347 +* 414 ++2 12 ++1 12 ++1 28 ++1 32 + +fn=(6294) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_M_default_append(unsigned long) +611 84 ++3 24 ++2 36 +cfi=(259) +cfn=(6292) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::size() const +calls=12 915 +* 192 +* 12 ++1 24 ++1 96 +-1 12 ++3 36 +cfi=(259) +cfn=(6296) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::max_size() const +calls=12 920 +* 900 +* 60 +cfi=(259) +cfn=(6296) +calls=12 920 +* 900 +* 60 ++3 36 ++10 72 +cfi=(259) +cfn=(6306) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_M_check_len(unsigned long, char const*) const +calls=12 1753 +* 3456 +* 12 ++2 60 +cfi=(259) +cfn=(6308) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_M_allocate(unsigned long) +calls=12 340 +* 2553 +* 12 ++18 12 ++4 36 +cfi=(259) +cfn=(6314) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_M_get_Tp_allocator() +calls=12 273 +* 84 +* 12 +-1 156 +cfi=(294) +cfn=(6316) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__uninitialized_default_n_a<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>&) +calls=12 -13 +* 8732 ++2 108 ++3 36 +cfi=(259) +cfn=(6314) +calls=12 273 +* 84 +* 12 +-2 84 +cfi=(294) +cfn=(6340) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__uninitialized_move_if_noexcept_a<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>&) +calls=12 305 +* 1104 ++13 36 +cfi=(259) +cfn=(6314) +calls=12 273 +* 84 +* 12 +-1 84 +cfi=(334) /usr/include/c++/9/bits/stl_construct.h +cfn=(6352) void std::_Destroy<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>&) +calls=12 203 +* 492 ++4 12 ++1 24 ++1 96 +-2 84 +cfi=(259) +cfn=(6358) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_M_deallocate(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long) +calls=12 347 +* 144 ++3 36 ++1 144 ++1 120 ++3 72 + +fn=(7078) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_default_append(unsigned long) +611 42 ++3 12 ++2 18 +cfi=(259) +cfn=(7076) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::size() const +calls=6 915 +* 78 +* 6 ++1 12 ++1 30 +-1 6 ++3 18 +cfi=(259) +cfn=(7080) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::max_size() const +calls=6 920 +* 450 +* 30 +cfi=(259) +cfn=(7080) +calls=6 920 +* 450 +* 30 ++3 18 ++10 36 +cfi=(259) +cfn=(7090) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_check_len(unsigned long, char const*) const +calls=6 1753 +* 1656 +* 6 ++2 30 +cfi=(259) +cfn=(7092) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_allocate(unsigned long) +calls=6 340 +* 1129 +* 6 ++6 18 +cfi=(259) +cfn=(7098) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_get_Tp_allocator() +calls=6 273 +* 42 +* 6 +-1 48 +cfi=(294) +cfn=(7100) Dune::FieldVector<double, 1>* std::__uninitialized_default_n_a<Dune::FieldVector<double, 1>*, unsigned long, Dune::FieldVector<double, 1> >(Dune::FieldVector<double, 1>*, unsigned long, std::allocator<Dune::FieldVector<double, 1> >&) +calls=6 +3 +* 736 ++9 18 +cfi=(259) +cfn=(7098) +calls=6 273 +* 42 +* 6 +-1 42 +cfi=(259) +cfn=(7110) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_S_relocate(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> >&) +calls=6 462 +* 660 ++27 6 ++1 12 ++1 30 +-2 42 +cfi=(259) +cfn=(7120) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_deallocate(Dune::FieldVector<double, 1>*, unsigned long) +calls=6 347 +* 72 ++3 18 ++1 48 ++1 36 ++3 36 + +fn=(4746) +426 132 ++9 60 +cfi=(259) +cfn=(4748) std::vector<unsigned char, std::allocator<unsigned char> >::_M_check_len(unsigned long, char const*) const +calls=12 1753 +* 3253 +* 12 ++2 36 ++1 36 ++1 36 +cfi=(259) +cfn=(4760) std::vector<unsigned char, std::allocator<unsigned char> >::begin() +calls=12 808 +* 372 +* 72 +cfi=(291) +cfn=(4762) +calls=12 989 +* 420 +* 12 ++1 60 +cfi=(259) +cfn=(4766) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_M_allocate(unsigned long) +calls=12 340 +* 1740 +* 12 ++1 24 ++8 36 +cfi=(286) +cfn=(4740) +calls=12 74 +* 84 +* 96 +cfi=(266) +cfn=(4772) +calls=12 +33 +* 756 ++7 12 ++6 36 +cfi=(259) +cfn=(4776) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_M_get_Tp_allocator() +calls=12 273 +* 84 +* 12 +-1 36 +cfi=(291) +cfn=(4764) +calls=12 871 +* 84 +* 72 +cfi=(259) +cfn=(4778) std::vector<unsigned char, std::allocator<unsigned char> >::_S_relocate(unsigned char*, unsigned char*, unsigned char*, std::allocator<unsigned char>&) +calls=12 +1 +* 1750 +* 12 ++3 12 ++3 36 +cfi=(259) +cfn=(4776) +calls=12 273 +* 84 +* 12 +-1 36 +cfi=(291) +cfn=(4764) +calls=12 871 +* 84 +* 72 +cfi=(259) +cfn=(4778) +calls=12 -4 +* 1308 +* 12 ++34 12 ++1 36 +-1 48 +cfi=(259) +cfn=(4788) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_M_deallocate(unsigned char*, unsigned long) +calls=12 347 +* 1486 ++2 36 ++1 36 ++1 60 ++1 96 + +fn=(5376) void std::vector<void*, std::allocator<void*> >::_M_realloc_insert<void* const&>(__gnu_cxx::__normal_iterator<void**, std::vector<void*, std::allocator<void*> > >, void* const&) +426 33 ++9 15 +cfi=(259) +cfn=(5378) std::vector<void*, std::allocator<void*> >::_M_check_len(unsigned long, char const*) const +calls=3 1753 +* 826 +* 3 ++2 9 ++1 9 ++1 9 +cfi=(259) +cfn=(5392) +calls=3 808 +* 93 +* 18 +cfi=(291) +cfn=(5394) +calls=3 989 +* 108 +* 3 ++1 15 +cfi=(259) +cfn=(5398) std::_Vector_base<void*, std::allocator<void*> >::_M_allocate(unsigned long) +calls=3 340 +* 488 +* 3 ++1 6 ++8 9 +cfi=(286) +cfn=(5404) +calls=3 74 +* 21 +* 3 ++1 6 +-1 18 +cfi=(266) +cfn=(5406) +calls=3 +33 +* 189 ++7 3 ++6 9 +cfi=(259) +cfn=(5410) std::_Vector_base<void*, std::allocator<void*> >::_M_get_Tp_allocator() +calls=3 273 +* 21 +* 3 +-1 9 +cfi=(291) +cfn=(5396) +calls=3 871 +* 21 +* 18 +cfi=(259) +cfn=(5412) std::vector<void*, std::allocator<void*> >::_S_relocate(void**, void**, void**, std::allocator<void*>&) +calls=3 +1 +* 375 +* 3 ++3 3 ++3 9 +cfi=(259) +cfn=(5410) +calls=3 273 +* 21 +* 3 +-1 9 +cfi=(291) +cfn=(5396) +calls=3 871 +* 21 +* 18 +cfi=(259) +cfn=(5412) +calls=3 -4 +* 333 +* 3 ++34 3 ++1 12 +-1 12 +cfi=(259) +cfn=(5422) std::_Vector_base<void*, std::allocator<void*> >::_M_deallocate(void**, unsigned long) +calls=3 347 +* 280 ++2 9 ++1 9 ++1 18 ++1 24 + +fn=(6034) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >& std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::emplace_back<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&&) +109 35 ++3 30 ++3 3 +cfi=(286) +cfn=(6036) +calls=1 -41 +* 7 +* 7 +cfi=(266) +cfn=(6068) +calls=1 482 +* 144 ++2 6 ++4 12 +cfi=(286) +cfn=(6036) +calls=4 -47 +* 28 +* 16 +cfi=(259) +cfn=(6038) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::end() +calls=4 826 +* 128 +* 24 +cfn=(6042) +calls=4 426 +* 6684 ++2 15 +cfi=(259) +cfn=(6090) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::back() +calls=5 1140 +* 520 ++2 20 + +fn=(6636) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::reserve(unsigned long) +66 24 ++3 12 +cfi=(259) +cfn=(6638) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::max_size() const +calls=4 920 +* 300 +* 16 ++2 12 +cfi=(259) +cfn=(6648) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::capacity() const +calls=4 995 +* 64 +* 16 ++2 12 +cfi=(259) +cfn=(6650) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::size() const +calls=4 915 +* 64 +* 4 ++5 20 +cfi=(259) +cfn=(6652) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_M_allocate(unsigned long) +calls=4 340 +* 1079 +* 4 ++2 12 +cfi=(259) +cfn=(6658) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_M_get_Tp_allocator() +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(259) +cfn=(6660) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_S_relocate(Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, std::allocator<Dune::AffineGeometry<double, 2, 2> >&) +calls=4 462 +* 440 ++13 4 ++1 8 ++1 32 +-2 28 +cfi=(259) +cfn=(6670) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_M_deallocate(Dune::AffineGeometry<double, 2, 2>*, unsigned long) +calls=4 347 +* 48 ++3 12 ++1 40 ++1 40 ++2 12 + +fn=(6974) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_M_default_append(unsigned long) +611 28 ++3 8 ++2 12 +cfi=(259) +cfn=(6972) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::size() const +calls=4 915 +* 64 +* 4 ++1 8 ++1 32 +-1 4 ++3 12 +cfi=(259) +cfn=(6976) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::max_size() const +calls=4 920 +* 300 +* 20 +cfi=(259) +cfn=(6976) +calls=4 920 +* 300 +* 20 ++3 12 ++10 24 +cfi=(259) +cfn=(6986) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_M_check_len(unsigned long, char const*) const +calls=4 1753 +* 1152 +* 4 ++2 20 +cfi=(259) +cfn=(6988) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_M_allocate(unsigned long) +calls=4 340 +* 1130 +* 4 ++18 4 ++4 12 +cfi=(259) +cfn=(6994) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_M_get_Tp_allocator() +calls=4 273 +* 28 +* 4 +-1 52 +cfi=(294) +cfn=(6996) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__uninitialized_default_n_a<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>&) +calls=4 -13 +* 1662 ++2 36 ++3 12 +cfi=(259) +cfn=(6994) +calls=4 273 +* 28 +* 4 +-2 28 +cfi=(294) +cfn=(7018) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__uninitialized_move_if_noexcept_a<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>&) +calls=4 305 +* 368 ++13 12 +cfi=(259) +cfn=(6994) +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(334) +cfn=(7030) void std::_Destroy<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>&) +calls=4 203 +* 164 ++4 4 ++1 8 ++1 32 +-2 28 +cfi=(259) +cfn=(7036) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_M_deallocate(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long) +calls=4 347 +* 48 ++3 12 ++1 48 ++1 40 ++3 24 + +fn=(8380) void std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_realloc_insert<Dune::GeometryType const&>(__gnu_cxx::__normal_iterator<Dune::GeometryType*, std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> > >, Dune::GeometryType const&) +426 132 ++9 60 +cfi=(259) +cfn=(8330) +calls=12 1753 +* 3312 +* 12 ++2 36 ++1 36 ++1 36 +cfi=(259) +cfn=(8342) +calls=12 808 +* 372 +* 72 +cfi=(291) +cfn=(8344) +calls=12 989 +* 432 +* 12 ++1 60 +cfi=(259) +cfn=(8348) +calls=12 340 +* 2125 +* 12 ++1 24 ++8 36 +cfi=(286) +cfn=(8382) +calls=12 74 +* 84 +* 12 ++1 24 +-1 72 +cfi=(266) +cfn=(8384) +calls=12 +33 +* 768 ++7 12 ++6 36 +cfi=(259) +cfn=(8358) +calls=12 273 +* 84 +* 12 +-1 36 +cfi=(291) +cfn=(8346) +calls=12 871 +* 84 +* 72 +cfi=(259) +cfn=(8360) +calls=12 +1 +* 1320 +* 12 ++3 12 ++3 36 +cfi=(259) +cfn=(8358) +calls=12 273 +* 84 +* 12 +-1 36 +cfi=(291) +cfn=(8346) +calls=12 871 +* 84 +* 72 +cfi=(259) +cfn=(8360) +calls=12 -4 +* 1320 +* 12 ++34 12 ++1 48 +-1 48 +cfi=(259) +cfn=(8370) +calls=12 347 +* 144 ++2 36 ++1 36 ++1 72 ++1 96 + +fn=(3206) +426 33 ++9 15 +cfi=(259) +cfn=(2854) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_check_len(unsigned long, char const*) const +calls=3 1753 +* 826 +* 3 ++2 9 ++1 9 ++1 9 +cfi=(259) +cfn=(2870) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::begin() +calls=3 808 +* 93 +* 18 +cfi=(291) +cfn=(2872) +calls=3 989 +* 108 +* 3 ++1 15 +cfi=(259) +cfn=(2876) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_allocate(unsigned long) +calls=3 340 +* 634 +* 3 ++1 6 ++8 9 +cfi=(286) +cfn=(3138) +calls=3 74 +* 21 +* 3 ++1 9 +-1 18 +cfi=(266) +cfn=(3136) +calls=3 +33 +* 249 ++7 3 ++6 9 +cfi=(259) +cfn=(2912) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_get_Tp_allocator() +calls=3 273 +* 21 +* 3 +-1 9 +cfi=(291) +cfn=(2874) +calls=3 871 +* 21 +* 18 +cfi=(259) +cfn=(2914) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_relocate(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&) +calls=3 +1 +* 903 +* 3 ++3 3 ++3 9 +cfi=(259) +cfn=(2912) +calls=3 273 +* 21 +* 3 +-1 9 +cfi=(291) +cfn=(2874) +calls=3 871 +* 21 +* 18 +cfi=(259) +cfn=(2914) +calls=3 -4 +* 330 +* 3 ++34 3 ++1 12 +-1 12 +cfi=(259) +cfn=(2924) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_deallocate(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, unsigned long) +calls=3 347 +* 280 ++2 9 ++1 9 ++1 21 ++1 24 + +fn=(6418) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_default_append(unsigned long) +611 112 ++3 32 ++2 48 +cfi=(259) +cfn=(4568) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::size() const +calls=16 915 +* 208 +* 16 ++1 32 ++1 80 +-1 16 ++3 48 +cfi=(259) +cfn=(4612) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::max_size() const +calls=16 920 +* 1200 +* 80 +cfi=(259) +cfn=(4612) +calls=16 920 +* 1200 +* 80 ++3 48 ++10 96 +cfi=(259) +cfn=(4610) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_check_len(unsigned long, char const*) const +calls=16 1753 +* 4416 +* 16 ++2 80 +cfi=(259) +cfn=(4628) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_allocate(unsigned long) +calls=16 340 +* 2973 +* 16 ++6 48 +cfi=(259) +cfn=(4640) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_get_Tp_allocator() +calls=16 273 +* 112 +* 16 +-1 144 +cfi=(294) +cfn=(6420) Dune::FieldVector<double, 2>* std::__uninitialized_default_n_a<Dune::FieldVector<double, 2>*, unsigned long, Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2>*, unsigned long, std::allocator<Dune::FieldVector<double, 2> >&) +calls=16 +3 +* 2910 ++9 48 +cfi=(259) +cfn=(4640) +calls=16 273 +* 112 +* 16 +-1 112 +cfi=(259) +cfn=(4642) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_S_relocate(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> >&) +calls=16 462 +* 1760 ++27 16 ++1 32 ++1 80 +-2 112 +cfi=(259) +cfn=(4652) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_deallocate(Dune::FieldVector<double, 2>*, unsigned long) +calls=16 347 +* 192 ++3 48 ++1 144 ++1 112 ++3 96 + +fn=(7588) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_M_default_append(unsigned long) +611 7 ++3 2 ++2 3 +cfi=(259) +cfn=(7586) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::size() const +calls=1 915 +* 13 +* 1 ++1 2 ++1 5 +-1 1 ++3 3 +cfi=(259) +cfn=(7590) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::max_size() const +calls=1 920 +* 75 +* 5 +cfi=(259) +cfn=(7590) +calls=1 920 +* 75 +* 5 ++3 3 ++10 6 +cfi=(259) +cfn=(7600) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_M_check_len(unsigned long, char const*) const +calls=1 1753 +* 276 +* 1 ++2 5 +cfi=(259) +cfn=(7602) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_M_allocate(unsigned long) +calls=1 340 +* 279 +* 1 ++18 1 ++4 3 +cfi=(259) +cfn=(7608) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_M_get_Tp_allocator() +calls=1 273 +* 7 +* 1 +-1 9 +cfi=(294) +cfn=(7610) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__uninitialized_default_n_a<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>&) +calls=1 -13 +* 283 ++2 6 ++3 3 +cfi=(259) +cfn=(7608) +calls=1 273 +* 7 +* 1 +-2 7 +cfi=(294) +cfn=(7624) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__uninitialized_move_if_noexcept_a<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>&) +calls=1 305 +* 92 ++13 3 +cfi=(259) +cfn=(7608) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(7636) void std::_Destroy<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>&) +calls=1 203 +* 41 ++4 1 ++1 2 ++1 5 +-2 7 +cfi=(259) +cfn=(7642) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_M_deallocate(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long) +calls=1 347 +* 12 ++3 3 ++1 9 ++1 7 ++3 6 + +fn=(7876) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::reserve(unsigned long) +66 6 ++3 3 +cfi=(259) +cfn=(7878) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::max_size() const +calls=1 920 +* 75 +* 4 ++2 3 +cfi=(259) +cfn=(7888) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::capacity() const +calls=1 995 +* 16 +* 4 ++2 3 +cfi=(259) +cfn=(7890) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::size() const +calls=1 915 +* 16 +* 1 ++5 5 +cfi=(259) +cfn=(7892) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_M_allocate(unsigned long) +calls=1 340 +* 282 +* 1 ++2 3 +cfi=(259) +cfn=(7898) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_M_get_Tp_allocator() +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(259) +cfn=(7900) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_S_relocate(Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, std::allocator<Dune::AffineGeometry<double, 0, 0> >&) +calls=1 462 +* 110 ++13 1 ++1 2 ++1 8 +-2 7 +cfi=(259) +cfn=(7910) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_M_deallocate(Dune::AffineGeometry<double, 0, 0>*, unsigned long) +calls=1 347 +* 12 ++3 3 ++1 10 ++1 10 ++2 3 + +fn=(8200) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::reserve(unsigned long) +66 24 ++3 12 +cfi=(259) +cfn=(8202) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::max_size() const +calls=4 920 +* 300 +* 16 ++2 12 +cfi=(259) +cfn=(8212) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::capacity() const +calls=4 995 +* 64 +* 16 ++2 12 +cfi=(259) +cfn=(8214) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::size() const +calls=4 915 +* 64 +* 4 ++5 20 +cfi=(259) +cfn=(8216) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_M_allocate(unsigned long) +calls=4 340 +* 1067 +* 4 ++2 12 +cfi=(259) +cfn=(8222) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_M_get_Tp_allocator() +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(259) +cfn=(8224) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_S_relocate(Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, std::allocator<Dune::AffineGeometry<double, 0, 2> >&) +calls=4 462 +* 440 ++13 4 ++1 8 ++1 32 +-2 28 +cfi=(259) +cfn=(8234) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_M_deallocate(Dune::AffineGeometry<double, 0, 2>*, unsigned long) +calls=4 347 +* 48 ++3 12 ++1 40 ++1 40 ++2 12 + +fn=(2852) void std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_realloc_insert<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(__gnu_cxx::__normal_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +426 154 ++9 70 +cfi=(259) +cfn=(2854) +calls=14 1753 +* 3855 +* 14 ++2 42 ++1 42 ++1 42 +cfi=(259) +cfn=(2870) +calls=14 808 +* 434 +* 84 +cfi=(291) +cfn=(2872) +calls=14 989 +* 504 +* 14 ++1 70 +cfi=(259) +cfn=(2876) +calls=14 340 +* 2913 +* 14 ++1 28 ++8 42 +cfi=(286) +cfn=(2882) +calls=14 74 +* 98 +* 14 ++1 42 +-1 84 +cfi=(266) +cfn=(2884) +calls=14 +33 +* 4361 ++7 14 ++6 42 +cfi=(259) +cfn=(2912) +calls=14 273 +* 98 +* 14 +-1 42 +cfi=(291) +cfn=(2874) +calls=14 871 +* 98 +* 84 +cfi=(259) +cfn=(2914) +calls=14 +1 +* 4405 +* 14 ++3 14 ++3 42 +cfi=(259) +cfn=(2912) +calls=14 273 +* 98 +* 14 +-1 42 +cfi=(291) +cfn=(2874) +calls=14 871 +* 98 +* 84 +cfi=(259) +cfn=(2914) +calls=14 -4 +* 1540 +* 14 ++34 14 ++1 56 +-1 56 +cfi=(259) +cfn=(2924) +calls=14 347 +* 1266 ++2 42 ++1 42 ++1 98 ++1 112 + +fn=(4608) void std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_realloc_insert<Dune::FieldVector<double, 2> const&>(__gnu_cxx::__normal_iterator<Dune::FieldVector<double, 2>*, std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > > >, Dune::FieldVector<double, 2> const&) +426 132 ++9 60 +cfi=(259) +cfn=(4610) +calls=12 1753 +* 3301 +* 12 ++2 36 ++1 36 ++1 36 +cfi=(259) +cfn=(4622) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::begin() +calls=12 808 +* 372 +* 72 +cfi=(291) +cfn=(4624) +calls=12 989 +* 432 +* 12 ++1 60 +cfi=(259) +cfn=(4628) +calls=12 340 +* 2971 +* 12 ++1 24 ++8 36 +cfi=(286) +cfn=(4634) +calls=12 74 +* 84 +* 12 ++1 36 +-1 72 +cfi=(266) +cfn=(4636) +calls=12 +33 +* 804 ++7 12 ++6 36 +cfi=(259) +cfn=(4640) +calls=12 273 +* 84 +* 12 +-1 36 +cfi=(291) +cfn=(4626) +calls=12 871 +* 84 +* 72 +cfi=(259) +cfn=(4642) +calls=12 +1 +* 334981 +* 12 ++3 12 ++3 36 +cfi=(259) +cfn=(4640) +calls=12 273 +* 84 +* 12 +-1 36 +cfi=(291) +cfn=(4626) +calls=12 871 +* 84 +* 72 +cfi=(259) +cfn=(4642) +calls=12 -4 +* 1320 +* 12 ++34 12 ++1 48 +-1 48 +cfi=(259) +cfn=(4652) +calls=12 347 +* 1790 ++2 36 ++1 36 ++1 84 ++1 96 + +fn=(7480) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::reserve(unsigned long) +66 12 ++3 6 +cfi=(259) +cfn=(7482) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::max_size() const +calls=2 920 +* 150 +* 8 ++2 6 +cfi=(259) +cfn=(7492) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::capacity() const +calls=2 995 +* 26 +* 8 ++2 6 +cfi=(259) +cfn=(7494) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::size() const +calls=2 915 +* 26 +* 2 ++5 10 +cfi=(259) +cfn=(7496) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_M_allocate(unsigned long) +calls=2 340 +* 230 +* 2 ++2 6 +cfi=(259) +cfn=(7502) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_M_get_Tp_allocator() +calls=2 273 +* 14 +* 2 +-1 14 +cfi=(259) +cfn=(7504) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_S_relocate(Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, std::allocator<Dune::AffineGeometry<double, 0, 1> >&) +calls=2 462 +* 220 ++13 2 ++1 4 ++1 10 +-2 14 +cfi=(259) +cfn=(7514) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_M_deallocate(Dune::AffineGeometry<double, 0, 1>*, unsigned long) +calls=2 347 +* 24 ++3 6 ++1 14 ++1 14 ++2 6 + +fn=(7264) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::reserve(unsigned long) +66 12 ++3 6 +cfi=(259) +cfn=(7266) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::max_size() const +calls=2 920 +* 150 +* 8 ++2 6 +cfi=(259) +cfn=(7276) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::capacity() const +calls=2 995 +* 32 +* 8 ++2 6 +cfi=(259) +cfn=(7278) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::size() const +calls=2 915 +* 32 +* 2 ++5 10 +cfi=(259) +cfn=(7280) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_M_allocate(unsigned long) +calls=2 340 +* 400 +* 2 ++2 6 +cfi=(259) +cfn=(7286) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_M_get_Tp_allocator() +calls=2 273 +* 14 +* 2 +-1 14 +cfi=(259) +cfn=(7288) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_S_relocate(Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, std::allocator<Dune::AffineGeometry<double, 1, 1> >&) +calls=2 462 +* 220 ++13 2 ++1 4 ++1 16 +-2 14 +cfi=(259) +cfn=(7298) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_M_deallocate(Dune::AffineGeometry<double, 1, 1>*, unsigned long) +calls=2 347 +* 24 ++3 6 ++1 20 ++1 20 ++2 6 + +fn=(8320) Dune::GeometryType& std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::emplace_back<Dune::GeometryType>(Dune::GeometryType&&) +109 105 ++3 90 ++3 27 +cfi=(286) +cfn=(8322) +calls=9 -41 +* 63 +* 63 +cfi=(266) +cfn=(8354) +calls=9 482 +* 576 ++2 54 ++4 18 +cfi=(286) +cfn=(8322) +calls=6 -47 +* 42 +* 24 +cfi=(259) +cfn=(8324) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::end() +calls=6 826 +* 192 +* 36 +cfn=(8328) +calls=6 426 +* 5526 ++2 45 +cfi=(259) +cfn=(8372) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::back() +calls=15 1140 +* 1560 ++2 60 + +fl=(382) +fn=(4394) +629 3 ++1 1 +cfi=(353) +cfn=(4284) +calls=1 * +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4284) +calls=1 -1 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 +17 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 +16 +* 9 +* 1 ++2 1 ++1 2 + +fn=(4436) +629 3 ++1 1 +cfi=(353) +cfn=(4284) +calls=1 * +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4284) +calls=1 -1 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 +17 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 +16 +* 9 +* 1 ++2 1 ++1 2 + +fl=(415) /home/joscha/software/dune/dune-grid/dune/grid/common/gridview.hh +fn=(6148) Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::Codim<0>::Iterator Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::begin<0>() const +203 441 ++2 147 +cfn=(6124) Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::impl() const +calls=49 +79 +* 343 +* 245 +cfi=(414) +cfn=(6150) +calls=49 -70 +* 16023 ++1 294 + +fn=(8418) Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::Codim<2>::Iterator Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::begin<2>() const +203 99 ++2 33 +cfn=(6124) +calls=11 +79 +* 77 +* 55 +cfi=(414) +cfn=(8420) +calls=11 -70 +* 3597 ++1 66 + +fn=(8490) Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::Codim<0>::Iterator Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::end<0>() const +210 72 ++2 24 +cfn=(8492) Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::impl() const +calls=8 +72 +* 56 +* 40 +cfi=(414) +cfn=(8494) +calls=8 360 +* 1336 ++1 48 + +fn=(8492) +284 168 + +fn=(8502) Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::Codim<0>::Iterator Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::begin<0>() const +203 72 ++2 24 +cfn=(8492) +calls=8 +79 +* 56 +* 40 +cfi=(414) +cfn=(8504) +calls=8 346 +* 25661340 ++1 48 + +fn=(6116) Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::GridView(Dune::UGGridLevelGridView<Dune::UGGrid<2> const> const&) +142 300 ++1 360 ++1 180 + +fn=(6122) Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::Codim<0>::Iterator Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::end<0>() const +210 441 ++2 147 +cfn=(6124) +calls=49 +72 +* 343 +* 245 +cfi=(414) +cfn=(6126) +calls=49 -51 +* 8183 ++1 294 + +fn=(6124) +284 840 + +fn=(8394) Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::Codim<2>::Iterator Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::end<2>() const +210 99 ++2 33 +cfn=(6124) +calls=11 +72 +* 77 +* 55 +cfi=(414) +cfn=(8396) +calls=11 -51 +* 1837 ++1 66 + +fn=(8484) Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::GridView(Dune::UGGridLeafGridView<Dune::UGGrid<2> const> const&) +142 60 ++1 48 ++1 36 + +fn=(8556) Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::Codim<2>::Iterator Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::begin<2>() const +203 36 ++2 12 +cfn=(8492) +calls=4 +79 +* 28 +* 20 +cfi=(414) +cfn=(8558) +calls=4 346 +* 6098964 ++1 24 + +fn=(8546) Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::Codim<2>::Iterator Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::end<2>() const +210 36 ++2 12 +cfn=(8492) +calls=4 +72 +* 28 +* 20 +cfi=(414) +cfn=(8548) +calls=4 360 +* 668 ++1 24 + +fl=(254) +fn=(3914) +152 264 ++1 264 ++1 132 + +fn=(3920) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::DenseIterator(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> const&) +156 440 ++1 704 ++1 264 + +fn=(3928) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::equals(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> const&) const +165 220 ++2 462 ++1 88 + +fn=(3932) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::dereference() const +176 110 ++1 154 +cfi=(329) +cfn=(3934) +calls=22 +39 +* 682 ++1 44 + +fn=(2270) Dune::DenseVector<Dune::FieldVector<double, 3> >::size() const +337 80 ++2 48 +cfn=(2272) Dune::DenseVector<Dune::FieldVector<double, 3> >::asImp() const +calls=16 233 +* 112 +* 16 +cfi=(252) +cfn=(2274) Dune::FieldVector<double, 3>::size() +calls=16 190 +* 96 ++1 32 + +fn=(7158) Dune::DenseVector<Dune::FieldVector<double, 1> >::operator[](unsigned long) +296 36 ++2 18 +cfn=(7160) Dune::DenseVector<Dune::FieldVector<double, 1> >::asImp() +calls=6 -66 +* 42 +* 30 +cfi=(252) +cfn=(7140) Dune::FieldVector<double, 1>::operator[](unsigned long) +calls=6 +80 +* 48 ++1 12 + +fn=(6476) Dune::PromotionTraits<double, Dune::DenseVector<Dune::FieldVector<double, 2> >::field_type>::PromotedType Dune::DenseVector<Dune::FieldVector<double, 2> >::operator*<Dune::FieldVector<double, 2> >(Dune::DenseVector<Dune::FieldVector<double, 2> > const&) const +592 28 ++2 8 ++1 12 +cfn=(6452) Dune::DenseVector<Dune::FieldVector<double, 2> >::size() const +calls=4 337 +* 96 +* 16 +cfn=(6452) +calls=4 337 +* 96 +* 8 ++1 16 +cfn=(6452) +calls=4 337 +* 96 +* 24 +cfn=(6452) +calls=8 337 +* 192 +* 48 ++1 40 +cfn=(6458) Dune::DenseVector<Dune::FieldVector<double, 2> >::operator[](unsigned long) const +calls=8 301 +* 480 +* 56 +cfn=(6458) +calls=8 301 +* 480 +* 40 +-1 16 ++3 4 ++1 16 + +fn=(7148) std::enable_if<std::is_convertible<Dune::FieldVector<double, 1>, double>::value, Dune::FieldVector<double, 1> >::type& Dune::DenseVector<Dune::FieldVector<double, 1> >::operator+=<Dune::FieldVector<double, 1> >(Dune::FieldVector<double, 1> const&) +480 24 ++2 12 +cfi=(252) +cfn=(7150) Dune::FieldVector<double, 1>::operator double const&() const +calls=4 -73 +* 28 +* 4 ++1 16 +cfn=(7152) Dune::DenseVector<Dune::FieldVector<double, 1> >::size() const +calls=4 337 +* 96 +* 12 +cfn=(7152) +calls=4 337 +* 96 +* 32 ++1 20 +cfn=(7158) +calls=4 296 +* 124 +* 20 +-1 8 ++2 12 +cfn=(7160) +calls=4 232 +* 28 ++1 8 + +fn=(7152) +337 60 ++2 36 +cfn=(7154) Dune::DenseVector<Dune::FieldVector<double, 1> >::asImp() const +calls=12 233 +* 84 +* 12 +cfi=(252) +cfn=(7156) Dune::FieldVector<double, 1>::size() +calls=12 +37 +* 72 ++1 24 + +fn=(6796) +152 96 ++1 96 ++1 48 + +fn=(6802) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::DenseIterator(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> const&) +156 160 ++1 256 ++1 96 + +fn=(7446) +152 24 ++1 24 ++1 12 + +fn=(7452) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::DenseIterator(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> const&) +156 40 ++1 64 ++1 24 + +fn=(2268) +267 24 ++2 16 +cfn=(2270) +calls=4 +68 +* 96 +* 36 +cfn=(2270) +calls=12 +68 +* 288 +* 64 ++1 72 +cfn=(2276) Dune::DenseVector<Dune::FieldVector<double, 3> >::asImp() +calls=12 -38 +* 84 +* 60 +cfi=(252) +cfn=(2262) +calls=12 -78 +* 444 +* 24 +-1 24 ++2 12 +cfn=(2276) +calls=4 -39 +* 28 ++1 8 + +fn=(6454) Dune::DenseVector<Dune::FieldVector<double, 2> >::asImp() const +233 2436 + +fn=(8180) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::equals(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> const&) const +165 30 ++2 84 ++1 12 + +fn=(6464) std::enable_if<std::is_convertible<double, double>::value, Dune::FieldVector<double, 2> >::type& Dune::DenseVector<Dune::FieldVector<double, 2> >::operator*=<double>(double const&) +524 108 ++2 36 ++1 72 +cfn=(6452) +calls=18 337 +* 432 +* 108 +cfn=(6452) +calls=36 337 +* 864 +* 216 ++1 180 +cfn=(6460) Dune::DenseVector<Dune::FieldVector<double, 2> >::operator[](unsigned long) +calls=36 296 +* 2160 +* 180 +-1 72 ++2 54 +cfn=(6462) Dune::DenseVector<Dune::FieldVector<double, 2> >::asImp() +calls=18 232 +* 126 ++1 36 + +fn=(2272) +233 112 + +fn=(2276) +232 112 + +fn=(6608) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::equals(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> const&) const +165 60 ++2 112 ++1 24 + +fn=(6612) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::dereference() const +176 40 ++1 56 +cfi=(329) +cfn=(6614) +calls=8 +39 +* 488 ++1 16 + +fn=(6622) Dune::DenseVector<Dune::FieldVector<double, 2> >::operator=(double const&) +267 96 ++2 64 +cfn=(6452) +calls=16 +68 +* 384 +* 96 +cfn=(6452) +calls=32 +68 +* 768 +* 192 ++1 192 +cfn=(6462) +calls=32 -38 +* 224 +* 160 +cfi=(252) +cfn=(2252) +calls=32 -78 +* 1184 +* 64 +-1 64 ++2 48 +cfn=(6462) +calls=16 -39 +* 112 ++1 32 + +fn=(7866) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>::equals(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&> const&) const +165 5 ++2 14 ++1 2 + +fn=(3942) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::increment() +180 88 ++1 110 ++1 66 + +fn=(7154) +233 84 + +fn=(6458) +301 600 ++2 300 +cfn=(6454) +calls=100 -70 +* 700 +* 500 +cfi=(252) +cfn=(4596) Dune::FieldVector<double, 2>::operator[](unsigned long) const +calls=100 196 +* 3700 ++1 200 + +fn=(6626) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::increment() +180 32 ++1 40 ++1 24 + +fn=(6810) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::equals(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> const&) const +165 80 ++2 168 ++1 32 + +fn=(6814) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::dereference() const +176 40 ++1 56 +cfi=(329) +cfn=(6816) +calls=8 +39 +* 488 ++1 16 + +fn=(7460) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>::equals(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> const&) const +165 10 ++2 28 ++1 4 + +fn=(8166) +152 72 ++1 72 ++1 36 + +fn=(8172) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::DenseIterator(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> const&) +156 120 ++1 192 ++1 72 + +fn=(7162) std::enable_if<std::is_convertible<double, double>::value, Dune::FieldVector<double, 1> >::type& Dune::DenseVector<Dune::FieldVector<double, 1> >::operator*=<double>(double const&) +524 12 ++2 4 ++1 8 +cfn=(7152) +calls=2 337 +* 48 +* 6 +cfn=(7152) +calls=2 337 +* 48 +* 16 ++1 10 +cfn=(7158) +calls=2 296 +* 62 +* 10 +-1 4 ++2 6 +cfn=(7160) +calls=2 232 +* 14 ++1 4 + +fn=(6452) +337 1240 ++2 744 +cfn=(6454) +calls=248 233 +* 1736 +* 248 +cfi=(252) +cfn=(6456) Dune::FieldVector<double, 2>::size() +calls=248 190 +* 1488 ++1 496 + +fn=(6462) +232 1596 + +fn=(7160) +232 84 + +fn=(6450) Dune::FieldVector<double, 2>& Dune::DenseVector<Dune::FieldVector<double, 2> >::operator+=<Dune::FieldVector<double, 2> >(Dune::DenseVector<Dune::FieldVector<double, 2> > const&) +420 252 ++3 168 +cfn=(6452) +calls=42 -86 +* 1008 +* 252 +cfn=(6452) +calls=84 -86 +* 2016 +* 504 ++1 420 +cfn=(6458) +calls=84 301 +* 5040 +* 588 +cfn=(6460) +calls=84 296 +* 5040 +* 252 +-1 168 ++2 126 +cfn=(6462) +calls=42 232 +* 294 ++1 84 + +fn=(6460) +296 720 ++2 360 +cfn=(6462) +calls=120 -66 +* 840 +* 600 +cfi=(252) +cfn=(2252) +calls=120 192 +* 4440 ++1 240 + +fn=(6594) +152 48 ++1 48 ++1 24 + +fn=(6600) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::DenseIterator(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> const&) +156 80 ++1 128 ++1 48 + +fn=(6826) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>::increment() +180 32 ++1 40 ++1 24 + +fn=(7852) +152 12 ++1 12 ++1 6 + +fn=(7858) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>::DenseIterator(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&> const&) +156 20 ++1 32 ++1 12 + +fl=(259) +fn=(2858) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_get_Tp_allocator() const +277 136 ++1 102 + +fn=(3208) +1140 24 ++3 9 +cfn=(2848) +calls=3 826 +* 96 +* 15 +cfi=(291) +cfn=(3210) +calls=3 867 +* 117 +* 12 +cfi=(291) +cfn=(3212) +calls=3 819 +* 24 ++1 15 + +fn=(7112) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_S_do_relocate(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> >&, std::integral_constant<bool, true>) +450 48 ++3 36 +cfi=(294) +cfn=(7114) Dune::FieldVector<double, 1>* std::__relocate_a<Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> > >(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> >&) +calls=6 940 +* 432 ++1 12 + +fn=(4098) std::_Vector_base<double, std::allocator<double> >::_Vector_impl::_Vector_impl() +128 5 ++2 3 +cfi=(236) +cfn=(4100) std::allocator<double>::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(4104) std::_Vector_base<double, std::allocator<double> >::_Vector_impl_data::_Vector_impl_data() +calls=1 -36 +* 13 ++1 3 + +fn=(4122) std::_Vector_base<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > >, std::allocator<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > > > >::_Vector_impl::_Vector_impl() +128 5 ++2 3 +cfi=(236) +cfn=(4124) std::allocator<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > > >::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(4128) std::_Vector_base<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > >, std::allocator<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > > > >::_Vector_impl_data::_Vector_impl_data() +calls=1 -36 +* 13 ++1 3 + +fn=(4174) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::_Vector_impl::_Vector_impl() +128 5 ++2 3 +cfi=(236) +cfn=(4176) std::allocator<std::array<int, 2ul> >::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(4180) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::_Vector_impl_data::_Vector_impl_data() +calls=1 -36 +* 13 ++1 3 + +fn=(4206) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::vector() +484 136 +cfn=(4208) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_Vector_base() +calls=17 285 +* 952 +* 51 + +fn=(4226) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_Vector_impl::_Vector_impl() +128 5 ++2 3 +cfi=(236) +cfn=(4228) std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(4232) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_Vector_impl_data::_Vector_impl_data() +calls=1 -36 +* 13 ++1 3 + +fn=(4232) +94 4 ++1 6 ++1 3 + +fn=(4236) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::vector() +484 144 +cfn=(4238) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_Vector_base() +calls=18 285 +* 1008 +* 54 + +fn=(4240) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_Vector_impl::_Vector_impl() +128 90 ++2 54 +cfi=(236) +cfn=(4242) std::allocator<Dune::GeometryType>::allocator() +calls=18 +8 +* 324 +* 54 +cfn=(4246) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_Vector_impl_data::_Vector_impl_data() +calls=18 -36 +* 234 ++1 54 + +fn=(4250) std::vector<std::shared_ptr<Dune::BoundarySegment<2, 2, double> >, std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > > >::vector() +484 8 +cfn=(4252) std::_Vector_base<std::shared_ptr<Dune::BoundarySegment<2, 2, double> >, std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > > >::_Vector_base() +calls=1 285 +* 56 +* 3 + +fn=(4252) +285 8 +cfn=(4254) std::_Vector_base<std::shared_ptr<Dune::BoundarySegment<2, 2, double> >, std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > > >::_Vector_impl::_Vector_impl() +calls=1 128 +* 45 +* 3 + +fn=(4562) std::vector<unsigned int, std::allocator<unsigned int> >::resize(unsigned long) +934 18 ++2 9 +cfn=(4564) std::vector<unsigned int, std::allocator<unsigned int> >::size() const +calls=3 -21 +* 39 +* 12 ++2 9 +cfn=(4564) +calls=3 -23 +* 39 +* 12 ++1 9 +cfn=(5914) std::vector<unsigned int, std::allocator<unsigned int> >::_M_erase_at_end(unsigned int*) +calls=1 1789 +* 73 ++1 9 + +fn=(4602) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::push_back(Dune::FieldVector<double, 2> const&) +1184 6534 ++2 6534 ++3 7539 +cfi=(266) +cfn=(4636) +calls=1077 482 +* 72159 ++2 5385 ++5 1077 +-1 36 +cfn=(4604) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::end() +calls=12 826 +* 384 +* 72 +cfi=(292) +cfn=(4608) +calls=12 426 +* 347759 ++1 3267 + +fn=(4698) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_Vector_impl::_Vector_impl(std::allocator<unsigned int> const&) +133 18432 ++1 15360 +cfi=(236) +cfn=(4682) std::allocator<unsigned int>::allocator(std::allocator<unsigned int> const&) +calls=3072 +7 +* 67584 +* 9216 +cfn=(4204) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_Vector_impl_data::_Vector_impl_data() +calls=3072 -40 +* 39936 ++1 9216 + +fn=(4708) std::vector<unsigned int, std::allocator<unsigned int> >::_M_default_initialize(unsigned long) +1600 18432 ++4 9216 +cfn=(4710) +calls=3072 273 +* 21504 +* 3072 +-1 18432 +cfi=(294) +cfn=(4712) unsigned int* std::__uninitialized_default_n_a<unsigned int*, unsigned long, unsigned int>(unsigned int*, unsigned long, std::allocator<unsigned int>&) +calls=3072 643 +* 381952 +-1 6144 ++3 9216 + +fn=(4742) +826 16480 ++1 12360 +cfi=(291) +cfn=(4744) +calls=2060 -21 +* 24720 +* 12360 + +fn=(4750) std::vector<unsigned char, std::allocator<unsigned char> >::max_size() const +920 120 ++1 72 +cfn=(4752) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_M_get_Tp_allocator() const +calls=24 277 +* 168 +* 48 +cfn=(4754) std::vector<unsigned char, std::allocator<unsigned char> >::_S_max_size(std::allocator<unsigned char> const&) +calls=24 1773 +* 1344 +* 48 + +fn=(4812) +808 16592 ++1 10370 +cfi=(291) +cfn=(4802) +calls=2074 -3 +* 24888 +* 12444 + +fn=(4824) +462 572 ++4 312 +cfn=(4826) std::vector<unsigned int, std::allocator<unsigned int> >::_S_do_relocate(unsigned int*, unsigned int*, unsigned int*, std::allocator<unsigned int>&, std::integral_constant<bool, true>) +calls=52 -16 +* 31432 ++1 260 + +fn=(4826) +450 416 ++3 312 +cfi=(294) +cfn=(4828) unsigned int* std::__relocate_a<unsigned int*, unsigned int*, std::allocator<unsigned int> >(unsigned int*, unsigned int*, unsigned int*, std::allocator<unsigned int>&) +calls=52 940 +* 30600 ++1 104 + +fn=(5082) std::_Vector_base<int, std::allocator<int> >::_Vector_base() +285 8 +cfn=(5084) std::_Vector_base<int, std::allocator<int> >::_Vector_impl::_Vector_impl() +calls=1 128 +* 45 +* 3 + +fn=(5350) +484 1032 +cfn=(5352) std::_Vector_base<void*, std::allocator<void*> >::_Vector_base() +calls=129 285 +* 7224 +* 387 + +fn=(5556) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_Vector_base(unsigned long, std::allocator<UG::D2::node*> const&) +300 16392 ++1 10245 +cfn=(5558) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_Vector_impl::_Vector_impl(std::allocator<UG::D2::node*> const&) +calls=2049 133 +* 106548 ++1 10245 +cfn=(5562) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_M_create_storage(unsigned long) +calls=2049 +54 +* 291101 +* 10245 + +fn=(5590) std::vector<UG::D2::node*, std::allocator<UG::D2::node*> >::operator[](unsigned long) +1040 77125 ++3 77125 ++1 30850 + +fn=(6244) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_Vector_impl_data::_Vector_impl_data() +94 16 ++1 24 ++1 12 + +fn=(6296) +920 240 ++1 144 +cfn=(6298) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_M_get_Tp_allocator() const +calls=48 277 +* 336 +* 96 +cfn=(6300) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_S_max_size(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> const&) +calls=48 1773 +* 2688 +* 96 + +fn=(6298) +277 192 ++1 144 + +fn=(6308) +340 72 ++3 84 +cfi=(266) +cfn=(6310) +calls=12 443 +* 2361 +* 12 ++1 24 + +fn=(6506) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldVector<double, 2> > const&) +133 72 ++1 60 +cfi=(236) +cfn=(6496) std::allocator<Dune::FieldVector<double, 2> >::allocator(std::allocator<Dune::FieldVector<double, 2> > const&) +calls=12 +7 +* 264 +* 36 +cfn=(4216) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_Vector_impl_data::_Vector_impl_data() +calls=12 -40 +* 156 ++1 36 + +fn=(6508) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_create_storage(unsigned long) +356 72 ++2 60 +cfn=(4628) +calls=12 -18 +* 1821 +* 24 ++1 48 ++1 84 ++1 36 + +fn=(6534) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +300 32 ++1 20 +cfn=(6536) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +calls=4 133 +* 208 ++1 20 +cfn=(6540) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_M_create_storage(unsigned long) +calls=4 +54 +* 1175 +* 20 + +fn=(6744) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +300 32 ++1 20 +cfn=(6746) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +calls=4 133 +* 208 ++1 20 +cfn=(6750) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_M_create_storage(unsigned long) +calls=4 +54 +* 881 +* 20 + +fn=(6776) std::vector<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::operator[](unsigned long) +1040 90 ++3 90 ++1 36 + +fn=(6884) +347 28 ++3 8 ++2 12 + +fn=(6900) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_Vector_base() +285 48 +cfn=(6902) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_Vector_impl::_Vector_impl() +calls=6 128 +* 270 +* 18 + +fn=(6918) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::vector() +484 16 +cfn=(6920) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_Vector_base() +calls=2 285 +* 112 +* 6 + +fn=(6944) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::vector() +484 32 +cfn=(6946) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_Vector_base() +calls=4 285 +* 224 +* 12 + +fn=(7036) +347 28 ++3 8 ++2 12 + +fn=(7076) +915 168 ++1 378 + +fn=(7080) +920 120 ++1 72 +cfn=(7082) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_get_Tp_allocator() const +calls=24 277 +* 168 +* 48 +cfn=(7084) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_S_max_size(std::allocator<Dune::FieldVector<double, 1> > const&) +calls=24 1773 +* 1344 +* 48 + +fn=(7266) +920 10 ++1 6 +cfn=(7268) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_M_get_Tp_allocator() const +calls=2 277 +* 14 +* 4 +cfn=(7270) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_S_max_size(std::allocator<Dune::AffineGeometry<double, 1, 1> > const&) +calls=2 1773 +* 112 +* 4 + +fn=(7270) +1773 16 ++5 4 ++2 6 +cfi=(266) +cfn=(7272) +calls=2 505 +* 34 +* 2 ++1 10 +cfi=(265) +cfn=(2866) unsigned long const& std::min<unsigned long>(unsigned long const&, unsigned long const&) +calls=2 198 +* 28 +* 2 ++1 10 + +fn=(7366) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_Vector_impl::~_Vector_impl() +125 32 +cfi=(236) +cfn=(7190) std::allocator<Dune::FieldVector<double, 1> >::~allocator() +calls=4 +28 +* 72 +* 12 + +fn=(7378) std::vector<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +1764 20 ++2 10 +cfi=(236) +cfn=(7380) std::allocator<Dune::FieldMatrix<double, 0, 1> >::allocator(std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +calls=2 141 +* 44 +* 6 +cfn=(7384) std::vector<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_S_max_size(std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +calls=2 +7 +* 112 +* 10 +cfi=(236) +cfn=(7390) std::allocator<Dune::FieldMatrix<double, 0, 1> >::~allocator() +calls=2 153 +* 36 +* 4 ++3 2 ++1 14 + +fn=(7496) +340 12 ++3 14 +cfi=(266) +cfn=(7498) +calls=2 443 +* 198 +* 2 ++1 4 + +fn=(7584) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::resize(unsigned long) +934 6 ++2 3 +cfn=(7586) +calls=1 -21 +* 13 +* 4 ++1 3 +cfn=(7586) +calls=1 -22 +* 13 +* 6 +cfi=(292) +cfn=(7588) +calls=1 611 +* 1299 ++3 4 + +fn=(7586) +915 40 ++1 90 + +fn=(7594) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_S_max_size(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> const&) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(7596) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(7644) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::operator[](unsigned long) +1040 5 ++3 5 ++1 2 + +fn=(7680) +920 20 ++1 12 +cfn=(7682) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_get_Tp_allocator() const +calls=4 277 +* 28 +* 8 +cfn=(7684) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_S_max_size(std::allocator<Dune::FieldVector<double, 0> > const&) +calls=4 1773 +* 224 +* 8 + +fn=(7690) +1753 11 ++2 3 +cfn=(7680) +calls=1 920 +* 75 +* 4 +cfn=(7676) +calls=1 915 +* 12 +* 7 ++3 3 +cfn=(7676) +calls=1 915 +* 12 +* 4 +cfn=(7676) +calls=1 915 +* 12 +* 6 +cfi=(265) +cfn=(2360) +calls=1 222 +* 15 +* 3 ++1 3 +cfn=(7676) +calls=1 915 +* 12 +* 5 +cfn=(7680) +calls=1 920 +* 75 +* 3 ++1 7 + +fn=(7808) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_M_get_Tp_allocator() +273 8 ++1 6 + +fn=(7880) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_M_get_Tp_allocator() const +277 4 ++1 3 + +fn=(7932) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::push_back(Dune::AffineGeometry<double, 0, 0> const&) +1184 6 ++2 6 ++3 7 +cfi=(266) +cfn=(7934) +calls=1 482 +* 69 ++2 5 ++5 4 + +fn=(7948) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::~_Vector_base() +330 5 ++3 6 +-1 7 +cfn=(7950) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_M_deallocate(Dune::FieldMatrix<double, 0, 0>*, unsigned long) +calls=1 +15 +* 134 ++2 3 +cfn=(7956) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_Vector_impl::~_Vector_impl() +calls=1 125 +* 29 +* 3 + +fn=(7950) +347 7 ++3 2 ++1 6 +cfi=(266) +cfn=(7952) +calls=1 469 +* 116 ++1 3 + +fn=(7958) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::~vector() +675 5 ++3 3 +cfn=(7698) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(7960) void std::_Destroy<Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0> >(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> >&) +calls=1 203 +* 37 ++3 3 +cfn=(7966) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::~_Vector_base() +calls=1 330 +* 187 +* 3 + +fn=(8062) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::push_back(Dune::AffineGeometry<double, 1, 2> const&) +1184 84 ++2 84 ++3 98 +cfi=(266) +cfn=(8064) +calls=14 482 +* 1092 ++2 70 ++5 56 + +fn=(8114) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +300 32 ++1 20 +cfn=(8116) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +calls=4 133 +* 208 ++1 20 +cfn=(8120) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_M_create_storage(unsigned long) +calls=4 +54 +* 544 +* 20 + +fn=(8204) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_M_get_Tp_allocator() const +277 16 ++1 12 + +fn=(8250) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::push_back(Dune::AffineGeometry<double, 0, 2> const&) +1184 84 ++2 84 ++3 98 +cfi=(266) +cfn=(8252) +calls=14 482 +* 1008 ++2 70 ++5 56 + +fn=(8314) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::size() const +915 648 ++1 1458 + +fn=(8704) std::vector<unsigned char, std::allocator<unsigned char> >::~vector() +675 5 ++3 3 +cfn=(4776) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(5908) void std::_Destroy<unsigned char*, unsigned char>(unsigned char*, unsigned char*, std::allocator<unsigned char>&) +calls=1 203 +* 37 ++3 3 +cfn=(8706) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::~_Vector_base() +calls=1 330 +* 257 +* 3 + +fn=(4890) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::operator[](unsigned long) +1040 8230 ++3 8230 ++1 3292 + +fn=(2298) +484 88 +cfn=(2300) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Vector_base() +calls=11 285 +* 616 +* 33 + +fn=(2856) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::max_size() const +920 170 ++1 102 +cfn=(2858) +calls=34 277 +* 238 +* 68 +cfn=(2860) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_max_size(std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +calls=34 1773 +* 1904 +* 68 + +fn=(2914) +462 374 ++4 204 +cfn=(2916) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_do_relocate(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, std::integral_constant<bool, true>) +calls=34 -16 +* 6430 ++1 170 + +fn=(3980) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::operator[](unsigned long) +1040 90 ++3 90 ++1 36 + +fn=(4004) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_erase_at_end(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +1789 24 ++2 28 ++3 12 +cfn=(2912) +calls=4 273 +* 28 +* 4 +-1 24 +cfi=(334) +cfn=(4006) void std::_Destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&) +calls=4 203 +* 668 ++2 12 ++3 12 + +fn=(4128) +94 4 ++1 6 ++1 3 + +fn=(4180) +94 4 ++1 6 ++1 3 + +fn=(4184) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_Vector_base() +285 8 +cfn=(4186) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_Vector_impl::_Vector_impl() +calls=1 128 +* 45 +* 3 + +fn=(4192) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_Vector_impl_data::_Vector_impl_data() +94 4 ++1 6 ++1 3 + +fn=(4224) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_Vector_base() +285 8 +cfn=(4226) +calls=1 128 +* 45 +* 3 + +fn=(4260) std::_Vector_base<std::shared_ptr<Dune::BoundarySegment<2, 2, double> >, std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > > >::_Vector_impl_data::_Vector_impl_data() +94 4 ++1 6 ++1 3 + +fn=(4550) std::vector<std::shared_ptr<Dune::BoundarySegment<2, 2, double> >, std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > > >::resize(unsigned long) +934 6 ++2 3 +cfn=(4552) std::vector<std::shared_ptr<Dune::BoundarySegment<2, 2, double> >, std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > > >::size() const +calls=1 -21 +* 13 +* 4 ++2 3 +cfn=(4552) +calls=1 -23 +* 13 +* 4 ++2 3 + +fn=(4610) +1753 308 ++2 84 +cfn=(4612) +calls=28 920 +* 2100 +* 112 +cfn=(4568) +calls=28 915 +* 364 +* 196 ++3 84 +cfn=(4568) +calls=28 915 +* 364 +* 112 +cfn=(4568) +calls=28 915 +* 364 +* 168 +cfi=(265) +cfn=(2360) +calls=28 222 +* 409 +* 84 ++1 84 +cfn=(4568) +calls=28 915 +* 364 +* 140 +cfn=(4612) +calls=28 920 +* 2100 +* 84 ++1 196 + +fn=(4652) +347 287 ++3 82 ++1 144 +cfi=(266) +cfn=(4672) +calls=24 469 +* 3134 ++1 123 + +fn=(4734) std::vector<unsigned char, std::allocator<unsigned char> >::push_back(unsigned char&&) +1200 12288 ++1 6144 +cfi=(286) +cfn=(4736) std::remove_reference<unsigned char&>::type&& std::move<unsigned char&>(unsigned char&) +calls=2048 99 +* 14336 +* 10240 +cfi=(292) +cfn=(4738) +calls=2048 109 +* 440437 +* 6144 + +fn=(4790) +1140 16384 ++3 6144 +cfn=(4742) +calls=2048 826 +* 65536 +* 10240 +cfi=(291) +cfn=(4792) +calls=2048 867 +* 77824 +* 8192 +cfi=(291) +cfn=(4794) +calls=2048 819 +* 16384 ++1 10240 + +fn=(4796) std::vector<unsigned int, std::allocator<unsigned int> >::operator[](unsigned long) const +1058 92160 ++3 92160 ++1 36864 + +fn=(4832) +347 21700 ++3 6200 ++1 18588 +cfi=(266) +cfn=(4836) +calls=3098 469 +* 371463 ++1 9300 + +fn=(5102) std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() const +277 16 ++1 12 + +fn=(5104) std::vector<int, std::allocator<int> >::_S_max_size(std::allocator<int> const&) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(5106) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(5136) std::vector<int, std::allocator<int> >::_S_do_relocate(int*, int*, int*, std::allocator<int>&, std::integral_constant<bool, true>) +450 8 ++3 6 +cfi=(294) +cfn=(5138) int* std::__relocate_a<int*, int*, std::allocator<int> >(int*, int*, int*, std::allocator<int>&) +calls=1 940 +* 73 ++1 2 + +fn=(5354) std::_Vector_base<void*, std::allocator<void*> >::_Vector_impl::_Vector_impl() +128 645 ++2 387 +cfi=(236) +cfn=(5356) std::allocator<void*>::allocator() +calls=129 +8 +* 2322 +* 387 +cfn=(5360) std::_Vector_base<void*, std::allocator<void*> >::_Vector_impl_data::_Vector_impl_data() +calls=129 -36 +* 1677 ++1 387 + +fn=(5382) std::_Vector_base<void*, std::allocator<void*> >::_M_get_Tp_allocator() const +277 24 ++1 18 + +fn=(5384) std::vector<void*, std::allocator<void*> >::_S_max_size(std::allocator<void*> const&) +1773 48 ++5 12 ++2 18 +cfi=(266) +cfn=(5386) +calls=6 505 +* 102 +* 6 ++1 30 +cfi=(265) +cfn=(2866) +calls=6 198 +* 84 +* 6 ++1 30 + +fn=(5392) +808 32 ++1 20 +cfi=(291) +cfn=(5374) +calls=4 -3 +* 48 +* 24 + +fn=(5410) +273 28 ++1 21 + +fn=(5540) std::vector<UG::D2::node*, std::allocator<UG::D2::node*> >::_S_check_init_len(unsigned long, std::allocator<UG::D2::node*> const&) +1764 20490 ++2 10245 +cfi=(236) +cfn=(5542) std::allocator<UG::D2::node*>::allocator(std::allocator<UG::D2::node*> const&) +calls=2049 141 +* 45078 +* 6147 +cfn=(5546) std::vector<UG::D2::node*, std::allocator<UG::D2::node*> >::_S_max_size(std::allocator<UG::D2::node*> const&) +calls=2049 +7 +* 114744 +* 10245 +cfi=(236) +cfn=(5552) std::allocator<UG::D2::node*>::~allocator() +calls=2049 153 +* 36882 +* 4098 ++3 2049 ++1 14343 + +fn=(5546) +1773 16392 ++5 4098 ++2 6147 +cfi=(266) +cfn=(5548) +calls=2049 505 +* 34833 +* 2049 ++1 10245 +cfi=(265) +cfn=(2866) +calls=2049 198 +* 28686 +* 2049 ++1 10245 + +fn=(5562) +356 12294 ++2 10245 +cfn=(5564) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_M_allocate(unsigned long) +calls=2049 -18 +* 235778 +* 4098 ++1 8196 ++1 14343 ++1 6147 + +fn=(6100) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::operator[](unsigned long) +1040 105 ++3 105 ++1 42 + +fn=(6258) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_Vector_impl_data::_Vector_impl_data() +94 16 ++1 24 ++1 12 + +fn=(6524) std::vector<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_S_max_size(std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(6526) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(6714) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::~_Vector_base() +330 65 ++3 91 +-1 91 +cfn=(4652) +calls=13 +15 +* 1788 ++2 39 +cfn=(6716) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_Vector_impl::~_Vector_impl() +calls=13 125 +* 377 +* 39 + +fn=(6734) std::vector<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_S_max_size(std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(6736) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(6932) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::vector() +484 16 +cfn=(6934) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_Vector_base() +calls=2 285 +* 112 +* 6 + +fn=(6976) +920 80 ++1 48 +cfn=(6978) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_M_get_Tp_allocator() const +calls=16 277 +* 112 +* 32 +cfn=(6980) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_S_max_size(std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> const&) +calls=16 1773 +* 896 +* 32 + +fn=(6978) +277 64 ++1 48 + +fn=(6988) +340 24 ++3 28 +cfi=(266) +cfn=(6990) +calls=4 443 +* 1066 +* 4 ++1 8 + +fn=(7084) +1773 224 ++5 56 ++2 84 +cfi=(266) +cfn=(7086) +calls=28 505 +* 476 +* 28 ++1 140 +cfi=(265) +cfn=(2866) +calls=28 198 +* 392 +* 28 ++1 140 + +fn=(7226) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_M_allocate(unsigned long) +340 12 ++3 14 +cfi=(266) +cfn=(7228) +calls=2 443 +* 351 +* 2 ++1 4 + +fn=(7286) +273 8 ++1 6 + +fn=(7290) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_S_do_relocate(Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, std::allocator<Dune::AffineGeometry<double, 1, 1> >&, std::integral_constant<bool, true>) +450 16 ++3 12 +cfi=(294) +cfn=(7292) Dune::AffineGeometry<double, 1, 1>* std::__relocate_a<Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, std::allocator<Dune::AffineGeometry<double, 1, 1> > >(Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, std::allocator<Dune::AffineGeometry<double, 1, 1> >&) +calls=2 940 +* 144 ++1 4 + +fn=(7298) +347 14 ++3 4 ++2 6 + +fn=(7334) std::vector<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::~vector() +675 10 ++3 6 +cfn=(7232) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_M_get_Tp_allocator() +calls=2 273 +* 14 +* 2 +-1 14 +cfi=(334) +cfn=(7336) void std::_Destroy<Dune::FieldMatrix<double, 1, 1>*, Dune::FieldMatrix<double, 1, 1> >(Dune::FieldMatrix<double, 1, 1>*, Dune::FieldMatrix<double, 1, 1>*, std::allocator<Dune::FieldMatrix<double, 1, 1> >&) +calls=2 203 +* 74 ++3 6 +cfn=(7342) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::~_Vector_base() +calls=2 330 +* 376 +* 6 + +fn=(7376) std::vector<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::vector(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +507 16 ++1 12 +cfn=(7378) +calls=2 1764 +* 258 +* 12 +cfn=(7394) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +calls=2 300 +* 422 ++1 10 +cfn=(7408) std::vector<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_M_default_initialize(unsigned long) +calls=2 1600 +* 274 +* 10 + +fn=(7396) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldMatrix<double, 0, 1> > const&) +133 12 ++1 10 +cfi=(236) +cfn=(7380) +calls=2 +7 +* 44 +* 6 +cfn=(7398) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_Vector_impl_data::_Vector_impl_data() +calls=2 -40 +* 26 ++1 6 + +fn=(7400) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_M_create_storage(unsigned long) +356 12 ++2 10 +cfn=(7402) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_M_allocate(unsigned long) +calls=2 -18 +* 220 +* 4 ++1 8 ++1 12 ++1 6 + +fn=(7426) std::vector<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::operator[](unsigned long) +1040 30 ++3 24 ++1 12 + +fn=(7484) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_M_get_Tp_allocator() const +277 8 ++1 6 + +fn=(7494) +915 8 ++1 18 + +fn=(7548) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_Vector_base() +285 8 +cfn=(7550) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_Vector_impl::_Vector_impl() +calls=1 128 +* 45 +* 3 + +fn=(7562) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_Vector_impl::_Vector_impl() +128 5 ++2 3 +cfi=(236) +cfn=(7564) std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(7568) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_Vector_impl_data::_Vector_impl_data() +calls=1 -36 +* 13 ++1 3 + +fn=(7568) +94 4 ++1 6 ++1 3 + +fn=(7600) +1753 11 ++2 3 +cfn=(7590) +calls=1 920 +* 75 +* 4 +cfn=(7586) +calls=1 915 +* 13 +* 7 ++3 3 +cfn=(7586) +calls=1 915 +* 13 +* 4 +cfn=(7586) +calls=1 915 +* 13 +* 6 +cfi=(265) +cfn=(2360) +calls=1 222 +* 15 +* 3 ++1 3 +cfn=(7586) +calls=1 915 +* 13 +* 5 +cfn=(7590) +calls=1 920 +* 75 +* 3 ++1 7 + +fn=(7608) +273 12 ++1 9 + +fn=(7674) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::resize(unsigned long) +934 6 ++2 3 +cfn=(7676) +calls=1 -21 +* 12 +* 4 ++1 3 +cfn=(7676) +calls=1 -22 +* 12 +* 6 +cfi=(292) +cfn=(7678) +calls=1 611 +* 1034 ++3 4 + +fn=(7684) +1773 40 ++5 10 ++2 15 +cfi=(266) +cfn=(7686) +calls=5 505 +* 85 +* 5 ++1 25 +cfi=(265) +cfn=(2866) +calls=5 198 +* 70 +* 5 ++1 25 + +fn=(7692) +340 12 ++3 14 +cfi=(266) +cfn=(7694) +calls=2 443 +* 510 +* 2 ++1 4 + +fn=(7764) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldVector<double, 0> > const&) +133 6 ++1 5 +cfi=(236) +cfn=(7754) std::allocator<Dune::FieldVector<double, 0> >::allocator(std::allocator<Dune::FieldVector<double, 0> > const&) +calls=1 +7 +* 22 +* 3 +cfn=(7538) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_Vector_impl_data::_Vector_impl_data() +calls=1 -40 +* 13 ++1 3 + +fn=(7766) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_create_storage(unsigned long) +356 6 ++2 5 +cfn=(7692) +calls=1 -18 +* 271 +* 2 ++1 4 ++1 6 ++1 3 + +fn=(7796) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_Vector_impl_data::_Vector_impl_data() +94 4 ++1 6 ++1 3 + +fn=(7830) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::operator[](unsigned long) const +1058 5 ++3 5 ++1 2 + +fn=(8104) std::vector<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_S_max_size(std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(8106) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(8128) std::vector<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_M_default_initialize(unsigned long) +1600 24 ++4 12 +cfn=(8130) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_M_get_Tp_allocator() +calls=4 273 +* 28 +* 4 +-1 24 +cfi=(294) +cfn=(8132) Dune::FieldMatrix<double, 0, 2>* std::__uninitialized_default_n_a<Dune::FieldMatrix<double, 0, 2>*, unsigned long, Dune::FieldMatrix<double, 0, 2> >(Dune::FieldMatrix<double, 0, 2>*, unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 2> >&) +calls=4 643 +* 466 +-1 8 ++3 12 + +fn=(8316) +1200 90 ++1 45 +cfi=(286) +cfn=(8318) std::remove_reference<Dune::GeometryType&>::type&& std::move<Dune::GeometryType&>(Dune::GeometryType&) +calls=15 99 +* 105 +* 75 +cfi=(292) +cfn=(8320) +calls=15 109 +* 8481 +* 45 + +fn=(8370) +347 126 ++3 36 ++2 54 + +fn=(8378) +1184 180 ++2 180 ++3 126 +cfi=(266) +cfn=(8384) +calls=18 482 +* 1152 ++2 90 ++5 18 +-1 36 +cfn=(8324) +calls=12 826 +* 384 +* 72 +cfi=(292) +cfn=(8380) +calls=12 426 +* 11557 ++1 90 + +fn=(8632) std::_Vector_base<int, std::allocator<int> >::~_Vector_base() +330 5 ++3 7 +-1 7 +cfn=(5142) +calls=1 +15 +* 180 ++2 3 +cfn=(8638) std::_Vector_base<int, std::allocator<int> >::_Vector_impl::~_Vector_impl() +calls=1 125 +* 29 +* 3 + +fn=(9090) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_erase_at_end(Dune::GeometryType*) +1789 162 ++2 189 ++3 81 +cfn=(8358) +calls=27 273 +* 189 +* 27 +-1 162 +cfi=(334) +cfn=(9092) void std::_Destroy<Dune::GeometryType*, Dune::GeometryType>(Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType>&) +calls=27 203 +* 999 ++2 81 ++3 81 + +fn=(2302) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Vector_impl::_Vector_impl() +128 55 ++2 33 +cfi=(236) +cfn=(2304) std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::allocator() +calls=11 +8 +* 198 +* 33 +cfn=(2308) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Vector_impl_data::_Vector_impl_data() +calls=11 -36 +* 143 ++1 33 + +fn=(2916) +450 272 ++3 204 +cfi=(294) +cfn=(2918) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >* std::__relocate_a<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&) +calls=34 940 +* 5886 ++1 68 + +fn=(4002) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::clear() +1495 20 ++1 24 +cfn=(4004) +calls=4 1789 +* 812 +* 12 + +fn=(4040) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::~_Vector_base() +330 5 ++3 7 +-1 7 +cfn=(2924) +calls=1 +15 +* 134 ++2 3 +cfn=(4042) std::_Vector_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Vector_impl::~_Vector_impl() +calls=1 125 +* 29 +* 3 + +fn=(4042) +125 8 +cfi=(236) +cfn=(4044) std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::~allocator() +calls=1 +28 +* 18 +* 3 + +fn=(4096) std::_Vector_base<double, std::allocator<double> >::_Vector_base() +285 8 +cfn=(4098) +calls=1 128 +* 45 +* 3 + +fn=(4204) +94 12296 ++1 18444 ++1 9222 + +fn=(4246) +94 72 ++1 108 ++1 54 + +fn=(4680) std::vector<unsigned int, std::allocator<unsigned int> >::_S_check_init_len(unsigned long, std::allocator<unsigned int> const&) +1764 30720 ++2 15360 +cfi=(236) +cfn=(4682) +calls=3072 141 +* 67584 +* 9216 +cfn=(4686) std::vector<unsigned int, std::allocator<unsigned int> >::_S_max_size(std::allocator<unsigned int> const&) +calls=3072 +7 +* 172032 +* 15360 +cfi=(236) +cfn=(4692) std::allocator<unsigned int>::~allocator() +calls=3072 153 +* 55296 +* 6144 ++3 3072 ++1 21504 + +fn=(4700) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_M_create_storage(unsigned long) +356 18432 ++2 15360 +cfn=(4702) +calls=3072 -18 +* 349184 +* 6144 ++1 12288 ++1 21504 ++1 9216 + +fn=(4778) +462 264 ++4 144 +cfn=(4780) std::vector<unsigned char, std::allocator<unsigned char> >::_S_do_relocate(unsigned char*, unsigned char*, unsigned char*, std::allocator<unsigned char>&, std::integral_constant<bool, true>) +calls=24 -16 +* 2530 ++1 120 + +fn=(4780) +450 192 ++3 144 +cfi=(294) +cfn=(4782) unsigned char* std::__relocate_a<unsigned char*, unsigned char*, std::allocator<unsigned char> >(unsigned char*, unsigned char*, unsigned char*, std::allocator<unsigned char>&) +calls=24 940 +* 2146 ++1 48 + +fn=(4788) +347 91 ++3 26 ++1 72 +cfi=(266) +cfn=(4882) +calls=12 469 +* 1462 ++1 39 + +fn=(4810) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_M_get_Tp_allocator() const +277 208 ++1 156 + +fn=(5090) std::_Vector_base<int, std::allocator<int> >::_Vector_impl_data::_Vector_impl_data() +94 4 ++1 6 ++1 3 + +fn=(5144) std::vector<int, std::allocator<int> >::operator[](unsigned long) +1040 72035 ++3 72035 ++1 28814 + +fn=(5390) +915 60 ++1 135 + +fn=(5414) std::vector<void*, std::allocator<void*> >::_S_do_relocate(void**, void**, void**, std::allocator<void*>&, std::integral_constant<bool, true>) +450 48 ++3 36 +cfi=(294) +cfn=(5416) void** std::__relocate_a<void**, void**, std::allocator<void*> >(void**, void**, void**, std::allocator<void*>&) +calls=6 940 +* 480 ++1 12 + +fn=(5526) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_erase_at_end(Dune::FieldVector<double, 2>*) +1789 6 ++2 7 ++3 3 +cfn=(4640) +calls=1 273 +* 7 +* 1 +-1 6 +cfi=(334) +cfn=(5528) void std::_Destroy<Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> >&) +calls=1 203 +* 37 ++2 3 ++3 3 + +fn=(5560) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_Vector_impl_data::_Vector_impl_data() +94 8196 ++1 12294 ++1 6147 + +fn=(5838) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::~_Vector_base() +330 10245 ++3 14343 +-1 14343 +cfn=(5840) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_M_deallocate(UG::D2::node**, unsigned long) +calls=2049 +15 +* 274612 ++2 6147 +cfn=(5846) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_Vector_impl::~_Vector_impl() +calls=2049 125 +* 59421 +* 6147 + +fn=(5946) +934 6 ++2 3 +cfn=(5390) +calls=1 -21 +* 13 +* 4 ++2 3 +cfn=(5390) +calls=1 -23 +* 13 +* 4 ++1 9 +cfn=(5948) std::vector<void*, std::allocator<void*> >::_M_erase_at_end(void**) +calls=1 1789 +* 73 ++1 3 + +fn=(6050) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_S_max_size(std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > const&) +1773 64 ++5 16 ++2 24 +cfi=(266) +cfn=(6052) +calls=8 505 +* 136 +* 8 ++1 40 +cfi=(265) +cfn=(2866) +calls=8 198 +* 112 +* 8 ++1 40 + +fn=(6056) +808 32 ++1 20 +cfi=(291) +cfn=(6040) +calls=4 -3 +* 48 +* 24 + +fn=(6080) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_S_do_relocate(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&, std::integral_constant<bool, true>) +450 64 ++3 48 +cfi=(294) +cfn=(6082) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >* std::__relocate_a<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&) +calls=8 940 +* 2529 ++1 16 + +fn=(6088) +347 28 ++3 8 ++1 18 +cfi=(266) +cfn=(9082) +calls=3 469 +* 348 ++1 12 + +fn=(6494) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldVector<double, 2> > const&) +1764 120 ++2 60 +cfi=(236) +cfn=(6496) +calls=12 141 +* 264 +* 36 +cfn=(4616) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_S_max_size(std::allocator<Dune::FieldVector<double, 2> > const&) +calls=12 +7 +* 672 +* 60 +cfi=(236) +cfn=(6500) std::allocator<Dune::FieldVector<double, 2> >::~allocator() +calls=12 153 +* 216 +* 24 ++3 12 ++1 84 + +fn=(6542) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_M_allocate(unsigned long) +340 24 ++3 28 +cfi=(266) +cfn=(6544) +calls=4 443 +* 1003 +* 4 ++1 8 + +fn=(6652) +340 24 ++3 28 +cfi=(266) +cfn=(6654) +calls=4 443 +* 1015 +* 4 ++1 8 + +fn=(6660) +462 44 ++4 24 +cfn=(6662) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_S_do_relocate(Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, std::allocator<Dune::AffineGeometry<double, 2, 2> >&, std::integral_constant<bool, true>) +calls=4 -16 +* 352 ++1 20 + +fn=(6752) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_M_allocate(unsigned long) +340 24 ++3 28 +cfi=(266) +cfn=(6754) +calls=4 443 +* 709 +* 4 ++1 8 + +fn=(6872) +273 16 ++1 12 + +fn=(6876) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_S_do_relocate(Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, std::allocator<Dune::AffineGeometry<double, 1, 2> >&, std::integral_constant<bool, true>) +450 32 ++3 24 +cfi=(294) +cfn=(6878) Dune::AffineGeometry<double, 1, 2>* std::__relocate_a<Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, std::allocator<Dune::AffineGeometry<double, 1, 2> > >(Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, std::allocator<Dune::AffineGeometry<double, 1, 2> >&) +calls=4 940 +* 288 ++1 8 + +fn=(6908) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_Vector_impl_data::_Vector_impl_data() +94 40 ++1 60 ++1 30 + +fn=(6928) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_Vector_impl_data::_Vector_impl_data() +94 8 ++1 12 ++1 6 + +fn=(7196) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldVector<double, 1> > const&) +133 24 ++1 20 +cfi=(236) +cfn=(7186) std::allocator<Dune::FieldVector<double, 1> >::allocator(std::allocator<Dune::FieldVector<double, 1> > const&) +calls=4 +7 +* 88 +* 12 +cfn=(6908) +calls=4 -40 +* 52 ++1 12 + +fn=(7198) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_create_storage(unsigned long) +356 24 ++2 20 +cfn=(7092) +calls=4 -18 +* 452 +* 8 ++1 16 ++1 28 ++1 12 + +fn=(7210) std::vector<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_S_max_size(std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +1773 16 ++5 4 ++2 6 +cfi=(266) +cfn=(7212) +calls=2 505 +* 34 +* 2 ++1 10 +cfi=(265) +cfn=(2866) +calls=2 198 +* 28 +* 2 ++1 10 + +fn=(7230) std::vector<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_M_default_initialize(unsigned long) +1600 12 ++4 6 +cfn=(7232) +calls=2 273 +* 14 +* 2 +-1 12 +cfi=(294) +cfn=(7234) Dune::FieldMatrix<double, 1, 1>* std::__uninitialized_default_n_a<Dune::FieldMatrix<double, 1, 1>*, unsigned long, Dune::FieldMatrix<double, 1, 1> >(Dune::FieldMatrix<double, 1, 1>*, unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 1> >&) +calls=2 643 +* 214 +-1 4 ++3 6 + +fn=(7268) +277 8 ++1 6 + +fn=(7410) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_M_get_Tp_allocator() +273 16 ++1 12 + +fn=(7504) +462 22 ++4 12 +cfn=(7506) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_S_do_relocate(Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, std::allocator<Dune::AffineGeometry<double, 0, 1> >&, std::integral_constant<bool, true>) +calls=2 -16 +* 176 ++1 10 + +fn=(7532) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_Vector_impl::_Vector_impl() +128 10 ++2 6 +cfi=(236) +cfn=(7534) std::allocator<Dune::FieldVector<double, 0> >::allocator() +calls=2 +8 +* 36 +* 6 +cfn=(7538) +calls=2 -36 +* 26 ++1 6 + +fn=(7550) +128 5 ++2 3 +cfi=(236) +cfn=(7552) std::allocator<Dune::AffineGeometry<double, 0, 0> >::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(7556) std::_Vector_base<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_Vector_impl_data::_Vector_impl_data() +calls=1 -36 +* 13 ++1 3 + +fn=(7560) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_Vector_base() +285 8 +cfn=(7562) +calls=1 128 +* 45 +* 3 + +fn=(7714) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_S_do_relocate(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> >&, std::integral_constant<bool, true>) +450 8 ++3 6 +cfi=(294) +cfn=(7716) Dune::FieldVector<double, 0>* std::__relocate_a<Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> > >(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> >&) +calls=1 940 +* 72 ++1 2 + +fn=(7792) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +300 8 ++1 5 +cfn=(7794) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +calls=1 133 +* 52 ++1 5 +cfn=(7798) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_M_create_storage(unsigned long) +calls=1 +54 +* 297 +* 5 + +fn=(8022) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_Vector_impl::~_Vector_impl() +125 16 +cfi=(236) +cfn=(7390) +calls=2 +28 +* 36 +* 6 + +fn=(8078) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::~_Vector_base() +330 20 ++3 28 +-1 28 +cfn=(8080) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_M_deallocate(Dune::FieldMatrix<double, 1, 2>*, unsigned long) +calls=4 +15 +* 536 ++2 12 +cfn=(8086) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_Vector_impl::~_Vector_impl() +calls=4 125 +* 116 +* 12 + +fn=(8080) +347 28 ++3 8 ++1 24 +cfi=(266) +cfn=(8082) +calls=4 469 +* 464 ++1 12 + +fn=(8122) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_M_allocate(unsigned long) +340 24 ++3 28 +cfi=(266) +cfn=(8124) +calls=4 443 +* 376 +* 4 ++1 8 + +fn=(8324) +826 264 ++1 198 +cfi=(291) +cfn=(8326) +calls=33 -21 +* 396 +* 198 + +fn=(8342) +808 144 ++1 90 +cfi=(291) +cfn=(8326) +calls=18 -3 +* 216 +* 108 + +fn=(8348) +340 108 ++3 126 +cfi=(266) +cfn=(8350) +calls=18 443 +* 2647 +* 18 ++1 36 + +fn=(8358) +273 252 ++1 189 + +fn=(8624) std::vector<int, std::allocator<int> >::~vector() +675 5 ++3 3 +cfn=(5118) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(8626) void std::_Destroy<int*, int>(int*, int*, std::allocator<int>&) +calls=1 203 +* 37 ++3 3 +cfn=(8632) +calls=1 330 +* 234 +* 3 + +fn=(8638) +125 8 +cfi=(236) +cfn=(8640) std::allocator<int>::~allocator() +calls=1 +28 +* 18 +* 3 + +fn=(8708) std::_Vector_base<unsigned char, std::allocator<unsigned char> >::_Vector_impl::~_Vector_impl() +125 8 +cfi=(236) +cfn=(8710) std::allocator<unsigned char>::~allocator() +calls=1 +28 +* 18 +* 3 + +fn=(8726) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::_M_deallocate(std::array<int, 2ul>*, unsigned long) +347 7 ++3 2 ++2 3 + +fn=(2868) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::size() const +915 272 ++1 612 + +fn=(7098) +273 80 ++1 60 + +fn=(7110) +462 66 ++4 36 +cfn=(7112) +calls=6 -16 +* 528 ++1 30 + +fn=(4182) std::vector<unsigned char, std::allocator<unsigned char> >::vector() +484 8 +cfn=(4184) +calls=1 285 +* 56 +* 3 + +fn=(4186) +128 5 ++2 3 +cfi=(236) +cfn=(4188) std::allocator<unsigned char>::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(4192) +calls=1 -36 +* 13 ++1 3 + +fn=(4210) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_Vector_impl::_Vector_impl() +128 85 ++2 51 +cfi=(236) +cfn=(4212) std::allocator<Dune::FieldVector<double, 2> >::allocator() +calls=17 +8 +* 306 +* 51 +cfn=(4216) +calls=17 -36 +* 221 ++1 51 + +fn=(4556) std::vector<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::size() const +915 8 ++1 18 + +fn=(4560) std::vector<unsigned char, std::allocator<unsigned char> >::size() const +915 16616 ++1 33232 + +fn=(4644) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_S_do_relocate(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> >&, std::integral_constant<bool, true>) +450 320 ++3 240 +cfi=(294) +cfn=(4646) Dune::FieldVector<double, 2>* std::__relocate_a<Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> > >(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> >&) +calls=40 940 +* 336541 ++1 80 + +fn=(4710) +273 24796 ++1 18597 + +fn=(4748) +1753 132 ++2 36 +cfn=(4750) +calls=12 920 +* 900 +* 48 +cfn=(4560) +calls=12 915 +* 144 +* 84 ++3 36 +cfn=(4560) +calls=12 915 +* 144 +* 48 +cfn=(4560) +calls=12 915 +* 144 +* 72 +cfi=(265) +cfn=(2360) +calls=12 222 +* 169 +* 36 ++1 36 +cfn=(4560) +calls=12 915 +* 144 +* 60 +cfn=(4750) +calls=12 920 +* 900 +* 36 ++1 84 + +fn=(4754) +1773 192 ++5 48 ++2 72 +cfi=(266) +cfn=(4756) +calls=24 505 +* 408 +* 24 ++1 120 +cfi=(265) +cfn=(2866) +calls=24 198 +* 336 +* 24 ++1 120 + +fn=(4776) +273 104 ++1 78 + +fn=(4808) std::vector<unsigned int, std::allocator<unsigned int> >::max_size() const +920 260 ++1 156 +cfn=(4810) +calls=52 277 +* 364 +* 104 +cfn=(4686) +calls=52 1773 +* 2912 +* 104 + +fn=(4842) std::vector<unsigned int, std::allocator<unsigned int> >::~vector() +675 15370 ++3 9222 +cfn=(4710) +calls=3074 273 +* 21518 +* 3074 +-1 21518 +cfi=(334) +cfn=(4844) void std::_Destroy<unsigned int*, unsigned int>(unsigned int*, unsigned int*, std::allocator<unsigned int>&) +calls=3074 203 +* 113738 ++3 9222 +cfn=(4850) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::~_Vector_base() +calls=3074 330 +* 589581 +* 9222 + +fn=(4850) +330 15370 ++3 21518 +-1 21518 +cfn=(4832) +calls=3074 +15 +* 423585 ++2 9222 +cfn=(4852) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_Vector_impl::~_Vector_impl() +calls=3074 125 +* 89146 +* 9222 + +fn=(4852) +125 24592 +cfi=(236) +cfn=(4692) +calls=3074 +28 +* 55332 +* 9222 + +fn=(4922) std::vector<unsigned char, std::allocator<unsigned char> >::operator[](unsigned long) const +1058 10240 ++3 8192 ++1 4096 + +fn=(5084) +128 5 ++2 3 +cfi=(236) +cfn=(5086) std::allocator<int>::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(5090) +calls=1 -36 +* 13 ++1 3 + +fn=(5096) +915 17472 ++1 39312 + +fn=(5112) +340 6 ++3 7 +cfi=(266) +cfn=(5114) +calls=1 443 +* 468 +* 1 ++1 2 + +fn=(5142) +347 14 ++3 4 ++1 6 +cfi=(266) +cfn=(8634) +calls=1 469 +* 162 ++1 6 + +fn=(5352) +285 1032 +cfn=(5354) +calls=129 128 +* 5805 +* 387 + +fn=(5372) +826 56 ++1 42 +cfi=(291) +cfn=(5374) +calls=7 -21 +* 84 +* 42 + +fn=(5398) +340 18 ++3 21 +cfi=(266) +cfn=(5400) +calls=3 443 +* 440 +* 3 ++1 6 + +fn=(5424) +1140 24 ++3 9 +cfn=(5372) +calls=3 826 +* 96 +* 15 +cfi=(291) +cfn=(5426) +calls=3 867 +* 117 +* 12 +cfi=(291) +cfn=(5428) +calls=3 819 +* 24 ++1 15 + +fn=(5558) +133 12294 ++1 10245 +cfi=(236) +cfn=(5542) +calls=2049 +7 +* 45078 +* 6147 +cfn=(5560) +calls=2049 -40 +* 26637 ++1 6147 + +fn=(5830) std::vector<UG::D2::node*, std::allocator<UG::D2::node*> >::~vector() +675 10245 ++3 6147 +cfn=(5572) std::_Vector_base<UG::D2::node*, std::allocator<UG::D2::node*> >::_M_get_Tp_allocator() +calls=2049 273 +* 14343 +* 2049 +-1 14343 +cfi=(334) +cfn=(5832) void std::_Destroy<UG::D2::node**, UG::D2::node*>(UG::D2::node**, UG::D2::node**, std::allocator<UG::D2::node*>&) +calls=2049 203 +* 75813 ++3 6147 +cfn=(5838) +calls=2049 330 +* 385258 +* 6147 + +fn=(5840) +347 14343 ++3 4098 ++1 12294 +cfi=(266) +cfn=(5842) +calls=2049 469 +* 237730 ++1 6147 + +fn=(6062) +340 24 ++3 28 +cfi=(266) +cfn=(6064) +calls=4 443 +* 832 +* 4 ++1 8 + +fn=(6076) +273 32 ++1 24 + +fn=(6078) +462 88 ++4 48 +cfn=(6080) +calls=8 -16 +* 2657 ++1 40 + +fn=(6222) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_Vector_base() +285 32 +cfn=(6224) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_Vector_impl::_Vector_impl() +calls=4 128 +* 180 +* 12 + +fn=(6492) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::vector(unsigned long, std::allocator<Dune::FieldVector<double, 2> > const&) +507 96 ++1 72 +cfn=(6494) +calls=12 1764 +* 1548 +* 72 +cfn=(6504) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldVector<double, 2> > const&) +calls=12 300 +* 3045 ++1 60 +cfn=(6510) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_default_initialize(unsigned long) +calls=12 1600 +* 2396 +* 60 + +fn=(6504) +300 96 ++1 60 +cfn=(6506) +calls=12 133 +* 624 ++1 60 +cfn=(6508) +calls=12 +54 +* 2145 +* 60 + +fn=(6650) +915 16 ++1 48 + +fn=(6702) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::~_Vector_base() +330 20 ++3 28 +-1 28 +cfn=(6704) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_M_deallocate(Dune::FieldMatrix<double, 2, 2>*, unsigned long) +calls=4 +15 +* 536 ++2 12 +cfn=(6710) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_Vector_impl::~_Vector_impl() +calls=4 125 +* 116 +* 12 + +fn=(6704) +347 28 ++3 8 ++1 24 +cfi=(266) +cfn=(6706) +calls=4 469 +* 464 ++1 12 + +fn=(6712) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::~vector() +675 65 ++3 39 +cfn=(4640) +calls=13 273 +* 91 +* 13 +-1 91 +cfi=(334) +cfn=(5528) +calls=13 203 +* 481 ++3 39 +cfn=(6714) +calls=13 330 +* 2490 +* 39 + +fn=(6852) +920 20 ++1 12 +cfn=(6854) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_M_get_Tp_allocator() const +calls=4 277 +* 28 +* 8 +cfn=(6856) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_S_max_size(std::allocator<Dune::AffineGeometry<double, 1, 2> > const&) +calls=4 1773 +* 224 +* 8 + +fn=(6856) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(6858) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(6898) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::vector() +484 48 +cfn=(6900) +calls=6 285 +* 336 +* 18 + +fn=(6942) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_Vector_impl_data::_Vector_impl_data() +94 8 ++1 12 ++1 6 + +fn=(7350) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_Vector_impl::~_Vector_impl() +125 16 +cfi=(236) +cfn=(7214) std::allocator<Dune::FieldMatrix<double, 1, 1> >::~allocator() +calls=2 +28 +* 36 +* 6 + +fn=(7398) +94 8 ++1 12 ++1 6 + +fn=(7558) std::vector<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::vector() +484 8 +cfn=(7560) +calls=1 285 +* 56 +* 3 + +fn=(7724) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::operator[](unsigned long) +1040 15 ++3 12 ++1 6 + +fn=(7752) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldVector<double, 0> > const&) +1764 10 ++2 5 +cfi=(236) +cfn=(7754) +calls=1 141 +* 22 +* 3 +cfn=(7684) +calls=1 +7 +* 56 +* 5 +cfi=(236) +cfn=(7758) std::allocator<Dune::FieldVector<double, 0> >::~allocator() +calls=1 153 +* 18 +* 2 ++3 1 ++1 7 + +fn=(7782) std::vector<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_S_max_size(std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +1773 8 ++5 2 ++2 3 +cfi=(266) +cfn=(7784) +calls=1 505 +* 17 +* 1 ++1 5 +cfi=(265) +cfn=(2866) +calls=1 198 +* 14 +* 1 ++1 5 + +fn=(7806) std::vector<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_M_default_initialize(unsigned long) +1600 6 ++4 3 +cfn=(7808) +calls=1 273 +* 7 +* 1 +-1 6 +cfi=(294) +cfn=(7810) Dune::FieldMatrix<double, 0, 0>* std::__uninitialized_default_n_a<Dune::FieldMatrix<double, 0, 0>*, unsigned long, Dune::FieldMatrix<double, 0, 0> >(Dune::FieldMatrix<double, 0, 0>*, unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 0> >&) +calls=1 643 +* 104 +-1 2 ++3 3 + +fn=(7892) +340 6 ++3 7 +cfi=(266) +cfn=(7894) +calls=1 443 +* 266 +* 1 ++1 2 + +fn=(7900) +462 11 ++4 6 +cfn=(7902) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_S_do_relocate(Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, std::allocator<Dune::AffineGeometry<double, 0, 0> >&, std::integral_constant<bool, true>) +calls=1 -16 +* 88 ++1 5 + +fn=(7966) +330 5 ++3 6 +-1 7 +cfn=(7722) +calls=1 +15 +* 134 ++2 3 +cfn=(7972) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_Vector_impl::~_Vector_impl() +calls=1 125 +* 29 +* 3 + +fn=(7998) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::push_back(Dune::AffineGeometry<double, 0, 1> const&) +1184 24 ++2 24 ++3 28 +cfi=(266) +cfn=(8000) +calls=4 482 +* 284 ++2 20 ++5 16 + +fn=(8216) +340 24 ++3 28 +cfi=(266) +cfn=(8218) +calls=4 443 +* 1003 +* 4 ++1 8 + +fn=(8224) +462 44 ++4 24 +cfn=(8226) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_S_do_relocate(Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, std::allocator<Dune::AffineGeometry<double, 0, 2> >&, std::integral_constant<bool, true>) +calls=4 -16 +* 352 ++1 20 + +fn=(8274) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_Vector_impl::~_Vector_impl() +125 32 +cfi=(236) +cfn=(8110) std::allocator<Dune::FieldMatrix<double, 0, 2> >::~allocator() +calls=4 +28 +* 72 +* 12 + +fn=(8330) +1753 198 ++2 54 +cfn=(8332) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::max_size() const +calls=18 920 +* 1350 +* 72 +cfn=(8314) +calls=18 915 +* 234 +* 126 ++3 54 +cfn=(8314) +calls=18 915 +* 234 +* 72 +cfn=(8314) +calls=18 915 +* 234 +* 108 +cfi=(265) +cfn=(2360) +calls=18 222 +* 270 +* 54 ++1 54 +cfn=(8314) +calls=18 915 +* 234 +* 90 +cfn=(8332) +calls=18 920 +* 1350 +* 54 ++1 126 + +fn=(8728) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::_Vector_impl::~_Vector_impl() +125 8 +cfi=(236) +cfn=(8730) std::allocator<std::array<int, 2ul> >::~allocator() +calls=1 +28 +* 18 +* 3 + +fn=(2300) +285 88 +cfn=(2302) +calls=11 128 +* 495 +* 33 + +fn=(2846) +1184 204 ++2 204 ++3 140 +cfi=(266) +cfn=(2884) +calls=20 482 +* 3919 ++2 100 ++5 20 +-1 42 +cfn=(2848) +calls=14 826 +* 448 +* 84 +cfi=(292) +cfn=(2852) +calls=14 426 +* 21364 ++1 102 + +fn=(2848) +826 160 ++1 120 +cfi=(291) +cfn=(2850) +calls=20 -21 +* 240 +* 120 + +fn=(2860) +1773 272 ++5 68 ++2 102 +cfi=(266) +cfn=(2862) +calls=34 505 +* 578 +* 34 ++1 170 +cfi=(265) +cfn=(2866) +calls=34 198 +* 476 +* 34 ++1 170 + +fn=(2870) +808 136 ++1 85 +cfi=(291) +cfn=(2850) +calls=17 -3 +* 204 +* 102 + +fn=(2876) +340 102 ++3 119 +cfi=(266) +cfn=(2878) +calls=17 443 +* 3275 +* 17 ++1 34 + +fn=(4198) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_Vector_impl::_Vector_impl() +128 10 ++2 6 +cfi=(236) +cfn=(4200) std::allocator<unsigned int>::allocator() +calls=2 +8 +* 36 +* 6 +cfn=(4204) +calls=2 -36 +* 26 ++1 6 + +fn=(4254) +128 5 ++2 3 +cfi=(236) +cfn=(4256) std::allocator<std::shared_ptr<Dune::BoundarySegment<2, 2, double> > >::allocator() +calls=1 +8 +* 18 +* 3 +cfn=(4260) +calls=1 -36 +* 13 ++1 3 + +fn=(4546) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::resize(unsigned long) +934 6 ++2 3 +cfn=(4548) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::size() const +calls=1 -21 +* 13 +* 4 ++2 3 +cfn=(4548) +calls=1 -23 +* 13 +* 4 ++2 3 + +fn=(4548) +915 92 ++1 207 + +fn=(4558) std::vector<unsigned char, std::allocator<unsigned char> >::resize(unsigned long) +934 18 ++2 9 +cfn=(4560) +calls=3 -21 +* 36 +* 12 ++2 9 +cfn=(4560) +calls=3 -23 +* 36 +* 12 ++1 8 +cfn=(5906) std::vector<unsigned char, std::allocator<unsigned char> >::_M_erase_at_end(unsigned char*) +calls=1 1789 +* 72 ++1 9 + +fn=(4614) std::_Vector_base<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::_M_get_Tp_allocator() const +277 352 ++1 264 + +fn=(4760) +808 96 ++1 60 +cfi=(291) +cfn=(4744) +calls=12 -3 +* 144 +* 72 + +fn=(5360) +94 516 ++1 774 ++1 387 + +fn=(5378) +1753 33 ++2 9 +cfn=(5380) std::vector<void*, std::allocator<void*> >::max_size() const +calls=3 920 +* 225 +* 12 +cfn=(5390) +calls=3 915 +* 39 +* 21 ++3 9 +cfn=(5390) +calls=3 915 +* 39 +* 12 +cfn=(5390) +calls=3 915 +* 39 +* 18 +cfi=(265) +cfn=(2360) +calls=3 222 +* 43 +* 9 ++1 9 +cfn=(5390) +calls=3 915 +* 39 +* 15 +cfn=(5380) +calls=3 920 +* 225 +* 9 ++1 21 + +fn=(6038) +826 72 ++1 54 +cfi=(291) +cfn=(6040) +calls=9 -21 +* 108 +* 54 + +fn=(6224) +128 20 ++2 12 +cfi=(236) +cfn=(6226) std::allocator<Dune::AffineGeometry<double, 0, 2> >::allocator() +calls=4 +8 +* 72 +* 12 +cfn=(6230) std::_Vector_base<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_Vector_impl_data::_Vector_impl_data() +calls=4 -36 +* 52 ++1 12 + +fn=(6236) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_Vector_base() +285 32 +cfn=(6238) std::_Vector_base<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::_Vector_impl::_Vector_impl() +calls=4 128 +* 180 +* 12 + +fn=(6314) +273 144 ++1 108 + +fn=(6648) +995 16 ++1 8 ++1 40 + +fn=(6716) +125 104 +cfi=(236) +cfn=(6500) +calls=13 +28 +* 234 +* 39 + +fn=(6866) +340 24 ++3 28 +cfi=(266) +cfn=(6868) +calls=4 443 +* 699 +* 4 ++1 8 + +fn=(7184) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldVector<double, 1> > const&) +1764 40 ++2 20 +cfi=(236) +cfn=(7186) +calls=4 141 +* 88 +* 12 +cfn=(7084) +calls=4 +7 +* 224 +* 20 +cfi=(236) +cfn=(7190) +calls=4 153 +* 72 +* 8 ++3 4 ++1 28 + +fn=(7394) +300 16 ++1 10 +cfn=(7396) +calls=2 133 +* 104 ++1 10 +cfn=(7400) +calls=2 +54 +* 272 +* 10 + +fn=(7492) +995 8 ++1 4 ++1 14 + +fn=(7546) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::vector() +484 8 +cfn=(7548) +calls=1 285 +* 56 +* 3 + +fn=(7590) +920 20 ++1 12 +cfn=(7592) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo> >::_M_get_Tp_allocator() const +calls=4 277 +* 28 +* 8 +cfn=(7594) +calls=4 1773 +* 224 +* 8 + +fn=(7592) +277 16 ++1 12 + +fn=(7602) +340 6 ++3 7 +cfi=(266) +cfn=(7604) +calls=1 443 +* 263 +* 1 ++1 2 + +fn=(7750) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::vector(unsigned long, std::allocator<Dune::FieldVector<double, 0> > const&) +507 8 ++1 6 +cfn=(7752) +calls=1 1764 +* 129 +* 6 +cfn=(7762) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldVector<double, 0> > const&) +calls=1 300 +* 372 ++1 5 +cfn=(7768) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_M_default_initialize(unsigned long) +calls=1 1600 +* 115 +* 5 + +fn=(7762) +300 8 ++1 5 +cfn=(7764) +calls=1 133 +* 52 ++1 5 +cfn=(7766) +calls=1 +54 +* 297 +* 5 + +fn=(7800) std::_Vector_base<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_M_allocate(unsigned long) +340 6 ++3 7 +cfi=(266) +cfn=(7802) +calls=1 443 +* 255 +* 1 ++1 2 + +fn=(7890) +915 4 ++1 12 + +fn=(8006) std::vector<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::~vector() +675 10 ++3 6 +cfn=(7410) +calls=2 273 +* 14 +* 2 +-1 14 +cfi=(334) +cfn=(8008) void std::_Destroy<Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1> >(Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*, std::allocator<Dune::FieldMatrix<double, 0, 1> >&) +calls=2 203 +* 74 ++3 6 +cfn=(8014) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::~_Vector_base() +calls=2 330 +* 374 +* 6 + +fn=(8214) +915 16 ++1 48 + +fn=(8332) +920 180 ++1 108 +cfn=(8334) std::_Vector_base<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_M_get_Tp_allocator() const +calls=36 277 +* 252 +* 72 +cfn=(8336) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_S_max_size(std::allocator<Dune::GeometryType> const&) +calls=36 1773 +* 2016 +* 72 + +fn=(8362) std::vector<Dune::GeometryType, std::allocator<Dune::GeometryType> >::_S_do_relocate(Dune::GeometryType*, Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType>&, std::integral_constant<bool, true>) +450 288 ++3 216 +cfi=(294) +cfn=(8364) Dune::GeometryType* std::__relocate_a<Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType> >(Dune::GeometryType*, Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType>&) +calls=36 940 +* 2592 ++1 72 + +fn=(8706) +330 5 ++3 6 +-1 7 +cfn=(4788) +calls=1 +15 +* 204 ++2 3 +cfn=(8708) +calls=1 125 +* 29 +* 3 + +fn=(8714) std::vector<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::~vector() +675 5 ++3 3 +cfn=(8716) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::_M_get_Tp_allocator() +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(8718) void std::_Destroy<std::array<int, 2ul>*, std::array<int, 2ul> >(std::array<int, 2ul>*, std::array<int, 2ul>*, std::allocator<std::array<int, 2ul> >&) +calls=1 203 +* 37 ++3 3 +cfn=(8724) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::~_Vector_base() +calls=1 330 +* 66 +* 3 + +fn=(2308) +94 44 ++1 66 ++1 33 + +fn=(2924) +347 126 ++3 36 ++1 72 +cfi=(266) +cfn=(3146) +calls=12 469 +* 1392 ++1 54 + +fn=(4118) +484 8 +cfn=(4120) std::_Vector_base<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > >, std::allocator<std::shared_ptr<LevelRockFaultFactory<Dune::UGGrid<2> > > > >::_Vector_base() +calls=1 285 +* 56 +* 3 + +fn=(4120) +285 8 +cfn=(4122) +calls=1 128 +* 45 +* 3 + +fn=(4170) std::vector<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::vector() +484 8 +cfn=(4172) std::_Vector_base<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::_Vector_base() +calls=1 285 +* 56 +* 3 + +fn=(4554) std::vector<std::array<int, 2ul>, std::allocator<std::array<int, 2ul> > >::resize(unsigned long) +934 6 ++2 3 +cfn=(4556) +calls=1 -21 +* 13 +* 4 ++2 3 +cfn=(4556) +calls=1 -23 +* 13 +* 4 ++2 3 + +fn=(4566) std::vector<Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >::resize(unsigned long) +934 114 ++2 57 +cfn=(4568) +calls=19 -21 +* 247 +* 76 ++1 48 +cfn=(4568) +calls=16 -22 +* 208 +* 96 +cfi=(292) +cfn=(6418) +calls=16 611 +* 16907 ++3 16 +-2 9 +cfn=(4568) +calls=3 -23 +* 39 +* 12 ++1 9 +cfn=(5526) +calls=1 1789 +* 73 ++1 57 + +fn=(4604) +826 96 ++1 72 +cfi=(291) +cfn=(4606) +calls=12 -21 +* 144 +* 72 + +fn=(4622) +808 96 ++1 60 +cfi=(291) +cfn=(4606) +calls=12 -3 +* 144 +* 72 + +fn=(4798) std::vector<unsigned int, std::allocator<unsigned int> >::push_back(unsigned int const&) +1184 43398 ++2 43398 ++3 50449 +cfi=(266) +cfn=(4820) +calls=7207 482 +* 454041 ++2 36035 ++5 7207 +-1 78 +cfn=(4800) std::vector<unsigned int, std::allocator<unsigned int> >::end() +calls=26 826 +* 832 +* 156 +cfi=(292) +cfn=(4804) +calls=26 426 +* 56328 ++1 21699 + +fn=(5110) +1753 11 ++2 3 +cfn=(5100) +calls=1 920 +* 75 +* 4 +cfn=(5096) +calls=1 915 +* 13 +* 7 ++3 3 +cfn=(5096) +calls=1 915 +* 13 +* 4 +cfn=(5096) +calls=1 915 +* 13 +* 6 +cfi=(265) +cfn=(2360) +calls=1 222 +* 15 +* 3 ++1 3 +cfn=(5096) +calls=1 915 +* 13 +* 5 +cfn=(5100) +calls=1 920 +* 75 +* 3 ++1 7 + +fn=(5370) +1184 18 ++2 18 ++9 9 +cfn=(5372) +calls=3 826 +* 96 +* 18 +cfi=(292) +cfn=(5376) +calls=3 426 +* 3133 ++1 9 + +fn=(5412) +462 66 ++4 36 +cfn=(5414) +calls=6 -16 +* 576 ++1 30 + +fn=(5538) std::vector<UG::D2::node*, std::allocator<UG::D2::node*> >::vector(unsigned long, std::allocator<UG::D2::node*> const&) +507 16392 ++1 12294 +cfn=(5540) +calls=2049 1764 +* 264321 +* 12294 +cfn=(5556) +calls=2049 300 +* 444776 ++1 10245 +cfn=(5570) std::vector<UG::D2::node*, std::allocator<UG::D2::node*> >::_M_default_initialize(unsigned long) +calls=2049 1600 +* 326283 +* 10245 + +fn=(6238) +128 20 ++2 12 +cfi=(236) +cfn=(6240) std::allocator<Dune::AffineGeometry<double, 1, 2> >::allocator() +calls=4 +8 +* 72 +* 12 +cfn=(6244) +calls=4 -36 +* 52 ++1 12 + +fn=(6250) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_Vector_base() +285 32 +cfn=(6252) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_Vector_impl::_Vector_impl() +calls=4 128 +* 180 +* 12 + +fn=(6264) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_Vector_impl::_Vector_impl() +128 60 ++2 36 +cfi=(236) +cfn=(6266) std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>::allocator() +calls=12 +8 +* 216 +* 36 +cfn=(6270) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_Vector_impl_data::_Vector_impl_data() +calls=12 -36 +* 156 ++1 36 + +fn=(6270) +94 48 ++1 72 ++1 36 + +fn=(6290) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::resize(unsigned long) +934 72 ++2 36 +cfn=(6292) +calls=12 -21 +* 192 +* 48 ++1 36 +cfn=(6292) +calls=12 -22 +* 192 +* 72 +cfi=(292) +cfn=(6294) +calls=12 611 +* 20537 ++3 48 + +fn=(6300) +1773 384 ++5 96 ++2 144 +cfi=(266) +cfn=(6302) +calls=48 505 +* 816 +* 48 ++1 240 +cfi=(265) +cfn=(2866) +calls=48 198 +* 672 +* 48 ++1 240 + +fn=(6360) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::operator[](unsigned long) +1040 160 ++3 256 ++1 64 + +fn=(6446) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::operator[](unsigned long) const +1058 88863590 ++3 142181744 ++1 35545436 + +fn=(6518) std::vector<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +1764 40 ++2 20 +cfi=(236) +cfn=(6520) std::allocator<Dune::FieldMatrix<double, 2, 2> >::allocator(std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +calls=4 141 +* 88 +* 12 +cfn=(6524) +calls=4 +7 +* 224 +* 20 +cfi=(236) +cfn=(6530) std::allocator<Dune::FieldMatrix<double, 2, 2> >::~allocator() +calls=4 153 +* 72 +* 8 ++3 4 ++1 28 + +fn=(6550) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_M_get_Tp_allocator() +273 32 ++1 24 + +fn=(6728) std::vector<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +1764 40 ++2 20 +cfi=(236) +cfn=(6730) std::allocator<Dune::FieldMatrix<double, 1, 2> >::allocator(std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +calls=4 141 +* 88 +* 12 +cfn=(6734) +calls=4 +7 +* 224 +* 20 +cfi=(236) +cfn=(6740) std::allocator<Dune::FieldMatrix<double, 1, 2> >::~allocator() +calls=4 153 +* 72 +* 8 ++3 4 ++1 28 + +fn=(6760) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_M_get_Tp_allocator() +273 32 ++1 24 + +fn=(6854) +277 16 ++1 12 + +fn=(6864) +915 16 ++1 36 + +fn=(6994) +273 48 ++1 36 + +fn=(7182) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::vector(unsigned long, std::allocator<Dune::FieldVector<double, 1> > const&) +507 32 ++1 24 +cfn=(7184) +calls=4 1764 +* 516 +* 24 +cfn=(7194) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldVector<double, 1> > const&) +calls=4 300 +* 860 ++1 20 +cfn=(7200) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::_M_default_initialize(unsigned long) +calls=4 1600 +* 570 +* 20 + +fn=(7194) +300 32 ++1 20 +cfn=(7196) +calls=4 133 +* 208 ++1 20 +cfn=(7198) +calls=4 +54 +* 560 +* 20 + +fn=(7220) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_Vector_impl::_Vector_impl(std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +133 12 ++1 10 +cfi=(236) +cfn=(7206) std::allocator<Dune::FieldMatrix<double, 1, 1> >::allocator(std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +calls=2 +7 +* 44 +* 6 +cfn=(7222) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_Vector_impl_data::_Vector_impl_data() +calls=2 -40 +* 26 ++1 6 + +fn=(7224) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_M_create_storage(unsigned long) +356 12 ++2 10 +cfn=(7226) +calls=2 -18 +* 383 +* 4 ++1 8 ++1 14 ++1 6 + +fn=(7280) +340 12 ++3 14 +cfi=(266) +cfn=(7282) +calls=2 443 +* 368 +* 2 ++1 4 + +fn=(7288) +462 22 ++4 12 +cfn=(7290) +calls=2 -16 +* 176 ++1 10 + +fn=(7326) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::push_back(Dune::AffineGeometry<double, 1, 1> const&) +1184 12 ++2 12 ++3 14 +cfi=(266) +cfn=(7328) +calls=2 482 +* 144 ++2 10 ++5 8 + +fn=(7360) std::_Vector_base<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::~_Vector_base() +330 20 ++3 28 +-1 28 +cfn=(7120) +calls=4 +15 +* 536 ++2 12 +cfn=(7366) +calls=4 125 +* 116 +* 12 + +fn=(7384) +1773 16 ++5 4 ++2 6 +cfi=(266) +cfn=(7386) +calls=2 505 +* 34 +* 2 ++1 10 +cfi=(265) +cfn=(2866) +calls=2 198 +* 28 +* 2 ++1 10 + +fn=(7408) +1600 12 ++4 6 +cfn=(7410) +calls=2 273 +* 14 +* 2 +-1 12 +cfi=(294) +cfn=(7412) Dune::FieldMatrix<double, 0, 1>* std::__uninitialized_default_n_a<Dune::FieldMatrix<double, 0, 1>*, unsigned long, Dune::FieldMatrix<double, 0, 1> >(Dune::FieldMatrix<double, 0, 1>*, unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 1> >&) +calls=2 643 +* 218 +-1 4 ++3 6 + +fn=(7514) +347 14 ++3 4 ++2 6 + +fn=(7530) std::_Vector_base<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::_Vector_base() +285 16 +cfn=(7532) +calls=2 128 +* 90 +* 6 + +fn=(7712) +462 11 ++4 6 +cfn=(7714) +calls=1 -16 +* 88 ++1 5 + +fn=(7722) +347 14 ++3 4 ++1 6 +cfi=(266) +cfn=(7968) +calls=1 469 +* 116 ++1 6 + +fn=(7888) +995 4 ++1 2 ++1 10 + +fn=(7956) +125 8 +cfi=(236) +cfn=(7788) std::allocator<Dune::FieldMatrix<double, 0, 0> >::~allocator() +calls=1 +28 +* 18 +* 3 + +fn=(8070) std::vector<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::~vector() +675 20 ++3 12 +cfn=(6760) +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(334) +cfn=(8072) void std::_Destroy<Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2> >(Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*, std::allocator<Dune::FieldMatrix<double, 1, 2> >&) +calls=4 203 +* 148 ++3 12 +cfn=(8078) +calls=4 330 +* 752 +* 12 + +fn=(8098) std::vector<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +1764 40 ++2 20 +cfi=(236) +cfn=(8100) std::allocator<Dune::FieldMatrix<double, 0, 2> >::allocator(std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +calls=4 141 +* 88 +* 12 +cfn=(8104) +calls=4 +7 +* 224 +* 20 +cfi=(236) +cfn=(8110) +calls=4 153 +* 72 +* 8 ++3 4 ++1 28 + +fn=(8212) +995 16 ++1 8 ++1 40 + +fn=(8258) std::vector<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::~vector() +675 20 ++3 12 +cfn=(8130) +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(334) +cfn=(8260) void std::_Destroy<Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2> >(Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*, std::allocator<Dune::FieldMatrix<double, 0, 2> >&) +calls=4 203 +* 148 ++3 12 +cfn=(8266) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::~_Vector_base() +calls=4 330 +* 748 +* 12 + +fn=(8360) +462 396 ++4 216 +cfn=(8362) +calls=36 -16 +* 3168 ++1 180 + +fn=(2912) +273 156 ++1 117 + +fn=(3202) +1200 18 ++1 9 +cfi=(286) +cfn=(2642) std::remove_reference<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&>::type&& std::move<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) +calls=3 99 +* 21 +* 15 +cfi=(292) +cfn=(3204) +calls=3 109 +* 4398 +* 9 + +fn=(7144) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::operator[](unsigned long) const +1058 70 ++3 112 ++1 28 + +fn=(4196) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_Vector_base() +285 16 +cfn=(4198) +calls=2 128 +* 90 +* 6 + +fn=(4208) +285 136 +cfn=(4210) +calls=17 128 +* 765 +* 51 + +fn=(4222) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::vector() +484 8 +cfn=(4224) +calls=1 285 +* 56 +* 3 + +fn=(4552) +915 16 ++1 36 + +fn=(4612) +920 440 ++1 264 +cfn=(4614) +calls=88 277 +* 616 +* 176 +cfn=(4616) +calls=88 1773 +* 4928 +* 176 + +fn=(4642) +462 440 ++4 240 +cfn=(4644) +calls=40 -16 +* 337181 ++1 200 + +fn=(4678) std::vector<unsigned int, std::allocator<unsigned int> >::vector(unsigned long, std::allocator<unsigned int> const&) +507 24576 ++1 18432 +cfn=(4680) +calls=3072 1764 +* 396288 +* 18432 +cfn=(4696) std::_Vector_base<unsigned int, std::allocator<unsigned int> >::_Vector_base(unsigned long, std::allocator<unsigned int> const&) +calls=3072 300 +* 662528 ++1 15360 +cfn=(4708) +calls=3072 1600 +* 467968 +* 15360 + +fn=(4696) +300 24576 ++1 15360 +cfn=(4698) +calls=3072 133 +* 159744 ++1 15360 +cfn=(4700) +calls=3072 +54 +* 432128 +* 15360 + +fn=(4806) +1753 286 ++2 78 +cfn=(4808) +calls=26 920 +* 1950 +* 104 +cfn=(4564) +calls=26 915 +* 338 +* 182 ++3 78 +cfn=(4564) +calls=26 915 +* 338 +* 104 +cfn=(4564) +calls=26 915 +* 338 +* 156 +cfi=(265) +cfn=(2360) +calls=26 222 +* 366 +* 78 ++1 78 +cfn=(4564) +calls=26 915 +* 338 +* 130 +cfn=(4808) +calls=26 920 +* 1950 +* 78 ++1 182 + +fn=(5080) std::vector<int, std::allocator<int> >::vector() +484 8 +cfn=(5082) +calls=1 285 +* 56 +* 3 + +fn=(5100) +920 20 ++1 12 +cfn=(5102) +calls=4 277 +* 28 +* 8 +cfn=(5104) +calls=4 1773 +* 224 +* 8 + +fn=(5118) +273 12 ++1 9 + +fn=(5380) +920 30 ++1 18 +cfn=(5382) +calls=6 277 +* 42 +* 12 +cfn=(5384) +calls=6 1773 +* 336 +* 12 + +fn=(5422) +347 21 ++3 6 ++1 12 +cfi=(266) +cfn=(5440) +calls=2 469 +* 232 ++1 9 + +fn=(5572) +273 16392 ++1 12294 + +fn=(5906) +1789 6 ++2 6 ++3 3 +cfn=(4776) +calls=1 273 +* 7 +* 1 +-1 6 +cfi=(334) +cfn=(5908) +calls=1 203 +* 37 ++2 3 ++3 3 + +fn=(6030) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::push_back(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&&) +1200 30 ++1 15 +cfi=(286) +cfn=(6032) std::remove_reference<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&>::type&& std::move<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&>(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&) +calls=5 99 +* 35 +* 25 +cfi=(292) +cfn=(6034) +calls=5 109 +* 7679 +* 15 + +fn=(6046) std::vector<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::max_size() const +920 40 ++1 24 +cfn=(6048) std::_Vector_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >::_M_get_Tp_allocator() const +calls=8 277 +* 56 +* 16 +cfn=(6050) +calls=8 1773 +* 448 +* 16 + +fn=(6048) +277 32 ++1 24 + +fn=(6220) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::vector() +484 32 +cfn=(6222) +calls=4 285 +* 224 +* 12 + +fn=(6252) +128 20 ++2 12 +cfi=(236) +cfn=(6254) std::allocator<Dune::AffineGeometry<double, 2, 2> >::allocator() +calls=4 +8 +* 72 +* 12 +cfn=(6258) +calls=4 -36 +* 52 ++1 12 + +fn=(6262) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::_Vector_base() +285 96 +cfn=(6264) +calls=12 128 +* 540 +* 36 + +fn=(6306) +1753 132 ++2 36 +cfn=(6296) +calls=12 920 +* 900 +* 48 +cfn=(6292) +calls=12 915 +* 192 +* 84 ++3 36 +cfn=(6292) +calls=12 915 +* 192 +* 48 +cfn=(6292) +calls=12 915 +* 192 +* 72 +cfi=(265) +cfn=(2360) +calls=12 222 +* 180 +* 36 ++1 36 +cfn=(6292) +calls=12 915 +* 192 +* 60 +cfn=(6296) +calls=12 920 +* 900 +* 36 ++1 84 + +fn=(6358) +347 84 ++3 24 ++2 36 + +fn=(6510) +1600 72 ++4 36 +cfn=(4640) +calls=12 273 +* 84 +* 12 +-1 72 +cfi=(294) +cfn=(6420) +calls=12 643 +* 2060 +-1 24 ++3 36 + +fn=(6516) std::vector<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::vector(unsigned long, std::allocator<Dune::FieldMatrix<double, 2, 2> > const&) +507 32 ++1 24 +cfn=(6518) +calls=4 1764 +* 516 +* 24 +cfn=(6534) +calls=4 300 +* 1475 ++1 20 +cfn=(6548) std::vector<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_M_default_initialize(unsigned long) +calls=4 1600 +* 676 +* 20 + +fn=(6536) +133 24 ++1 20 +cfi=(236) +cfn=(6520) +calls=4 +7 +* 88 +* 12 +cfn=(6538) std::_Vector_base<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::_Vector_impl_data::_Vector_impl_data() +calls=4 -40 +* 52 ++1 12 + +fn=(6540) +356 24 ++2 20 +cfn=(6542) +calls=4 -18 +* 1067 +* 8 ++1 16 ++1 28 ++1 12 + +fn=(6566) std::vector<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::operator[](unsigned long) +1040 40 ++3 40 ++1 16 + +fn=(6638) +920 20 ++1 12 +cfn=(6640) std::_Vector_base<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_M_get_Tp_allocator() const +calls=4 277 +* 28 +* 8 +cfn=(6642) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::_S_max_size(std::allocator<Dune::AffineGeometry<double, 2, 2> > const&) +calls=4 1773 +* 224 +* 8 + +fn=(6642) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(6644) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(6694) std::vector<Dune::FieldMatrix<double, 2, 2>, std::allocator<Dune::FieldMatrix<double, 2, 2> > >::~vector() +675 20 ++3 12 +cfn=(6550) +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(334) +cfn=(6696) void std::_Destroy<Dune::FieldMatrix<double, 2, 2>*, Dune::FieldMatrix<double, 2, 2> >(Dune::FieldMatrix<double, 2, 2>*, Dune::FieldMatrix<double, 2, 2>*, std::allocator<Dune::FieldMatrix<double, 2, 2> >&) +calls=4 203 +* 148 ++3 12 +cfn=(6702) +calls=4 330 +* 752 +* 12 + +fn=(6726) std::vector<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::vector(unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 2> > const&) +507 32 ++1 24 +cfn=(6728) +calls=4 1764 +* 516 +* 24 +cfn=(6744) +calls=4 300 +* 1181 ++1 20 +cfn=(6758) std::vector<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_M_default_initialize(unsigned long) +calls=4 1600 +* 1284 +* 20 + +fn=(6746) +133 24 ++1 20 +cfi=(236) +cfn=(6730) +calls=4 +7 +* 88 +* 12 +cfn=(6748) std::_Vector_base<Dune::FieldMatrix<double, 1, 2>, std::allocator<Dune::FieldMatrix<double, 1, 2> > >::_Vector_impl_data::_Vector_impl_data() +calls=4 -40 +* 52 ++1 12 + +fn=(6750) +356 24 ++2 20 +cfn=(6752) +calls=4 -18 +* 773 +* 8 ++1 16 ++1 28 ++1 12 + +fn=(6874) +462 44 ++4 24 +cfn=(6876) +calls=4 -16 +* 352 ++1 20 + +fn=(6902) +128 30 ++2 18 +cfi=(236) +cfn=(6904) std::allocator<Dune::FieldVector<double, 1> >::allocator() +calls=6 +8 +* 108 +* 18 +cfn=(6908) +calls=6 -36 +* 78 ++1 18 + +fn=(6920) +285 16 +cfn=(6922) std::_Vector_base<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_Vector_impl::_Vector_impl() +calls=2 128 +* 90 +* 6 + +fn=(6970) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::resize(unsigned long) +934 24 ++2 12 +cfn=(6972) +calls=4 -21 +* 64 +* 16 ++1 12 +cfn=(6972) +calls=4 -22 +* 64 +* 24 +cfi=(292) +cfn=(6974) +calls=4 611 +* 5876 ++3 16 + +fn=(6980) +1773 128 ++5 32 ++2 48 +cfi=(266) +cfn=(6982) +calls=16 505 +* 272 +* 16 ++1 80 +cfi=(265) +cfn=(2866) +calls=16 198 +* 224 +* 16 ++1 80 + +fn=(7204) std::vector<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +1764 20 ++2 10 +cfi=(236) +cfn=(7206) +calls=2 141 +* 44 +* 6 +cfn=(7210) +calls=2 +7 +* 112 +* 10 +cfi=(236) +cfn=(7214) +calls=2 153 +* 36 +* 4 ++3 2 ++1 14 + +fn=(7278) +915 8 ++1 24 + +fn=(7402) +340 12 ++3 14 +cfi=(266) +cfn=(7404) +calls=2 443 +* 188 +* 2 ++1 4 + +fn=(7556) +94 4 ++1 6 ++1 3 + +fn=(7698) +273 16 ++1 12 + +fn=(8014) +330 10 ++3 12 +-1 14 +cfn=(8016) std::_Vector_base<Dune::FieldMatrix<double, 0, 1>, std::allocator<Dune::FieldMatrix<double, 0, 1> > >::_M_deallocate(Dune::FieldMatrix<double, 0, 1>*, unsigned long) +calls=2 +15 +* 268 ++2 6 +cfn=(8022) +calls=2 125 +* 58 +* 6 + +fn=(8016) +347 14 ++3 4 ++1 12 +cfi=(266) +cfn=(8018) +calls=2 469 +* 232 ++1 6 + +fn=(8096) std::vector<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::vector(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 2> > const&) +507 32 ++1 24 +cfn=(8098) +calls=4 1764 +* 516 +* 24 +cfn=(8114) +calls=4 300 +* 844 ++1 20 +cfn=(8128) +calls=4 1600 +* 578 +* 20 + +fn=(8116) +133 24 ++1 20 +cfi=(236) +cfn=(8100) +calls=4 +7 +* 88 +* 12 +cfn=(8118) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_Vector_impl_data::_Vector_impl_data() +calls=4 -40 +* 52 ++1 12 + +fn=(8120) +356 24 ++2 20 +cfn=(8122) +calls=4 -18 +* 440 +* 8 ++1 16 ++1 24 ++1 12 + +fn=(8146) std::vector<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::operator[](unsigned long) +1040 90 ++3 72 ++1 36 + +fn=(8312) +934 270 ++2 135 +cfn=(8314) +calls=45 -21 +* 585 +* 180 ++2 135 +cfn=(8314) +calls=45 -23 +* 585 +* 180 ++1 243 +cfn=(9090) +calls=27 1789 +* 1971 ++1 135 + +fn=(8336) +1773 288 ++5 72 ++2 108 +cfi=(266) +cfn=(8338) +calls=36 505 +* 612 +* 36 ++1 180 +cfi=(265) +cfn=(2866) +calls=36 198 +* 504 +* 36 ++1 180 + +fn=(8724) +330 5 ++3 7 +-1 7 +cfn=(8726) +calls=1 +15 +* 12 ++2 3 +cfn=(8728) +calls=1 125 +* 29 +* 3 + +fn=(4896) std::vector<unsigned char, std::allocator<unsigned char> >::operator[](unsigned long) +1040 61445 ++3 49156 ++1 24578 + +fn=(7090) +1753 66 ++2 18 +cfn=(7080) +calls=6 920 +* 450 +* 24 +cfn=(7076) +calls=6 915 +* 78 +* 42 ++3 18 +cfn=(7076) +calls=6 915 +* 78 +* 24 +cfn=(7076) +calls=6 915 +* 78 +* 36 +cfi=(265) +cfn=(2360) +calls=6 222 +* 90 +* 18 ++1 18 +cfn=(7076) +calls=6 915 +* 78 +* 30 +cfn=(7080) +calls=6 920 +* 450 +* 18 ++1 42 + +fn=(7120) +347 70 ++3 20 ++1 24 +cfi=(266) +cfn=(7362) +calls=4 469 +* 464 ++1 30 + +fn=(7122) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::operator[](unsigned long) +1040 130 ++3 130 ++1 52 + +fn=(4038) std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::~vector() +675 5 ++3 3 +cfn=(2912) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(4006) +calls=1 203 +* 185 ++3 3 +cfn=(4040) +calls=1 330 +* 188 +* 3 + +fn=(4104) +94 4 ++1 6 ++1 3 + +fn=(4172) +285 8 +cfn=(4174) +calls=1 128 +* 45 +* 3 + +fn=(4238) +285 144 +cfn=(4240) +calls=18 128 +* 810 +* 54 + +fn=(4616) +1773 800 ++5 200 ++2 300 +cfi=(266) +cfn=(4618) +calls=100 505 +* 1700 +* 100 ++1 500 +cfi=(265) +cfn=(2866) +calls=100 198 +* 1400 +* 100 ++1 500 + +fn=(4686) +1773 24992 ++5 6248 ++2 9372 +cfi=(266) +cfn=(4688) +calls=3124 505 +* 53108 +* 3124 ++1 15620 +cfi=(265) +cfn=(2866) +calls=3124 198 +* 43736 +* 3124 ++1 15620 + +fn=(4766) +340 72 ++3 84 +cfi=(266) +cfn=(4768) +calls=12 443 +* 1548 +* 12 ++1 24 + +fn=(4800) +826 16592 ++1 12444 +cfi=(291) +cfn=(4802) +calls=2074 -21 +* 24888 +* 12444 + +fn=(5564) +340 12294 ++3 14343 +cfi=(266) +cfn=(5566) +calls=2049 443 +* 202994 +* 2049 ++1 4098 + +fn=(5948) +1789 6 ++2 7 ++3 3 +cfn=(5410) +calls=1 273 +* 7 +* 1 +-1 6 +cfi=(334) +cfn=(5950) void std::_Destroy<void**, void*>(void**, void**, std::allocator<void*>&) +calls=1 203 +* 37 ++2 3 ++3 3 + +fn=(6234) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >::vector() +484 32 +cfn=(6236) +calls=4 285 +* 224 +* 12 + +fn=(6260) std::vector<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo> >::vector() +484 96 +cfn=(6262) +calls=12 285 +* 672 +* 36 + +fn=(6292) +915 71091424 ++1 213274272 + +fn=(6658) +273 16 ++1 12 + +fn=(6662) +450 32 ++3 24 +cfi=(294) +cfn=(6664) Dune::AffineGeometry<double, 2, 2>* std::__relocate_a<Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, std::allocator<Dune::AffineGeometry<double, 2, 2> > >(Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, std::allocator<Dune::AffineGeometry<double, 2, 2> >&) +calls=4 940 +* 288 ++1 8 + +fn=(6670) +347 28 ++3 8 ++2 12 + +fn=(6686) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::push_back(Dune::AffineGeometry<double, 2, 2> const&) +1184 24 ++2 24 ++3 28 +cfi=(266) +cfn=(6688) +calls=4 482 +* 344 ++2 20 ++5 16 + +fn=(6922) +128 10 ++2 6 +cfi=(236) +cfn=(6924) std::allocator<Dune::AffineGeometry<double, 0, 1> >::allocator() +calls=2 +8 +* 36 +* 6 +cfn=(6928) +calls=2 -36 +* 26 ++1 6 + +fn=(6934) +285 16 +cfn=(6936) std::_Vector_base<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >::_Vector_impl::_Vector_impl() +calls=2 128 +* 90 +* 6 + +fn=(6948) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_Vector_impl::_Vector_impl() +128 20 ++2 12 +cfi=(236) +cfn=(6950) std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>::allocator() +calls=4 +8 +* 72 +* 12 +cfn=(6954) std::_Vector_base<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::_Vector_impl_data::_Vector_impl_data() +calls=4 -36 +* 52 ++1 12 + +fn=(6954) +94 16 ++1 24 ++1 12 + +fn=(6986) +1753 44 ++2 12 +cfn=(6976) +calls=4 920 +* 300 +* 16 +cfn=(6972) +calls=4 915 +* 64 +* 28 ++3 12 +cfn=(6972) +calls=4 915 +* 64 +* 16 +cfn=(6972) +calls=4 915 +* 64 +* 24 +cfi=(265) +cfn=(2360) +calls=4 222 +* 60 +* 12 ++1 12 +cfn=(6972) +calls=4 915 +* 64 +* 20 +cfn=(6976) +calls=4 920 +* 300 +* 12 ++1 28 + +fn=(7074) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::resize(unsigned long) +934 36 ++2 18 +cfn=(7076) +calls=6 -21 +* 78 +* 24 ++1 18 +cfn=(7076) +calls=6 -22 +* 78 +* 36 +cfi=(292) +cfn=(7078) +calls=6 611 +* 5981 ++3 24 + +fn=(7082) +277 96 ++1 72 + +fn=(7202) std::vector<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::vector(unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +507 16 ++1 12 +cfn=(7204) +calls=2 1764 +* 258 +* 12 +cfn=(7218) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_Vector_base(unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 1> > const&) +calls=2 300 +* 587 ++1 10 +cfn=(7230) +calls=2 1600 +* 270 +* 10 + +fn=(7222) +94 8 ++1 12 ++1 6 + +fn=(7276) +995 8 ++1 4 ++1 20 + +fn=(7342) +330 10 ++3 14 +-1 14 +cfn=(7344) std::_Vector_base<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::_M_deallocate(Dune::FieldMatrix<double, 1, 1>*, unsigned long) +calls=2 +15 +* 268 ++2 6 +cfn=(7350) +calls=2 125 +* 58 +* 6 + +fn=(7344) +347 14 ++3 4 ++1 12 +cfi=(266) +cfn=(7346) +calls=2 469 +* 232 ++1 6 + +fn=(7352) std::vector<Dune::FieldVector<double, 1>, std::allocator<Dune::FieldVector<double, 1> > >::~vector() +675 20 ++3 12 +cfn=(7098) +calls=4 273 +* 28 +* 4 +-1 28 +cfi=(334) +cfn=(7354) void std::_Destroy<Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1> >(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> >&) +calls=4 203 +* 148 ++3 12 +cfn=(7360) +calls=4 330 +* 752 +* 12 + +fn=(7502) +273 8 ++1 6 + +fn=(7506) +450 16 ++3 12 +cfi=(294) +cfn=(7508) Dune::AffineGeometry<double, 0, 1>* std::__relocate_a<Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, std::allocator<Dune::AffineGeometry<double, 0, 1> > >(Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, std::allocator<Dune::AffineGeometry<double, 0, 1> >&) +calls=2 940 +* 144 ++1 4 + +fn=(7538) +94 12 ++1 18 ++1 9 + +fn=(7682) +277 16 ++1 12 + +fn=(7776) std::vector<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::_S_check_init_len(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +1764 10 ++2 5 +cfi=(236) +cfn=(7778) std::allocator<Dune::FieldMatrix<double, 0, 0> >::allocator(std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +calls=1 141 +* 22 +* 3 +cfn=(7782) +calls=1 +7 +* 56 +* 5 +cfi=(236) +cfn=(7788) +calls=1 153 +* 18 +* 2 ++3 1 ++1 7 + +fn=(7878) +920 5 ++1 3 +cfn=(7880) +calls=1 277 +* 7 +* 2 +cfn=(7882) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >::_S_max_size(std::allocator<Dune::AffineGeometry<double, 0, 0> > const&) +calls=1 1773 +* 56 +* 2 + +fn=(7882) +1773 8 ++5 2 ++2 3 +cfi=(266) +cfn=(7884) +calls=1 505 +* 17 +* 1 ++1 5 +cfi=(265) +cfn=(2866) +calls=1 198 +* 14 +* 1 ++1 5 + +fn=(7940) std::vector<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::~vector() +675 5 ++3 3 +cfn=(7808) +calls=1 273 +* 7 +* 1 +-1 7 +cfi=(334) +cfn=(7942) void std::_Destroy<Dune::FieldMatrix<double, 0, 0>*, Dune::FieldMatrix<double, 0, 0> >(Dune::FieldMatrix<double, 0, 0>*, Dune::FieldMatrix<double, 0, 0>*, std::allocator<Dune::FieldMatrix<double, 0, 0> >&) +calls=1 203 +* 37 ++3 3 +cfn=(7948) +calls=1 330 +* 187 +* 3 + +fn=(7972) +125 8 +cfi=(236) +cfn=(7758) +calls=1 +28 +* 18 +* 3 + +fn=(8086) +125 32 +cfi=(236) +cfn=(6740) +calls=4 +28 +* 72 +* 12 + +fn=(8130) +273 32 ++1 24 + +fn=(8202) +920 20 ++1 12 +cfn=(8204) +calls=4 277 +* 28 +* 8 +cfn=(8206) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >::_S_max_size(std::allocator<Dune::AffineGeometry<double, 0, 2> > const&) +calls=4 1773 +* 224 +* 8 + +fn=(8206) +1773 32 ++5 8 ++2 12 +cfi=(266) +cfn=(8208) +calls=4 505 +* 68 +* 4 ++1 20 +cfi=(265) +cfn=(2866) +calls=4 198 +* 56 +* 4 ++1 20 + +fn=(8266) +330 20 ++3 24 +-1 28 +cfn=(8268) std::_Vector_base<Dune::FieldMatrix<double, 0, 2>, std::allocator<Dune::FieldMatrix<double, 0, 2> > >::_M_deallocate(Dune::FieldMatrix<double, 0, 2>*, unsigned long) +calls=4 +15 +* 536 ++2 12 +cfn=(8274) +calls=4 125 +* 116 +* 12 + +fn=(8268) +347 28 ++3 8 ++1 24 +cfi=(266) +cfn=(8270) +calls=4 469 +* 464 ++1 12 + +fn=(8334) +277 144 ++1 108 + +fn=(8716) +273 4 ++1 3 + +fn=(4568) +915 5036 ++1 11331 + +fn=(2854) +1753 187 ++2 51 +cfn=(2856) +calls=17 920 +* 1275 +* 68 +cfn=(2868) +calls=17 915 +* 221 +* 119 ++3 51 +cfn=(2868) +calls=17 915 +* 221 +* 68 +cfn=(2868) +calls=17 915 +* 221 +* 102 +cfi=(265) +cfn=(2360) +calls=17 222 +* 244 +* 51 ++1 51 +cfn=(2868) +calls=17 915 +* 221 +* 85 +cfn=(2856) +calls=17 920 +* 1275 +* 51 ++1 119 + +fn=(7092) +340 60 ++3 70 +cfi=(266) +cfn=(7094) +calls=10 443 +* 1421 +* 10 ++1 20 + +fn=(4094) +484 8 +cfn=(4096) +calls=1 285 +* 56 +* 3 + +fn=(4194) std::vector<unsigned int, std::allocator<unsigned int> >::vector() +484 16 +cfn=(4196) +calls=2 285 +* 112 +* 6 + +fn=(4216) +94 116 ++1 174 ++1 87 + +fn=(4564) +915 57792 ++1 130032 + +fn=(4628) +340 240 ++3 280 +cfi=(266) +cfn=(4630) +calls=40 443 +* 7125 +* 40 ++1 80 + +fn=(4640) +273 328 ++1 246 + +fn=(4702) +340 18588 ++3 21686 +cfi=(266) +cfn=(4704) +calls=3098 443 +* 305348 +* 3098 ++1 6196 + +fn=(4724) +1040 123535 ++3 123535 ++1 49414 + +fn=(4752) +277 96 ++1 72 + +fn=(5094) std::vector<int, std::allocator<int> >::resize(unsigned long) +934 6 ++2 3 +cfn=(5096) +calls=1 -21 +* 13 +* 4 ++1 3 +cfn=(5096) +calls=1 -22 +* 13 +* 6 +cfi=(292) +cfn=(5098) +calls=1 611 +* 9986 ++3 4 + +fn=(5134) +462 11 ++4 6 +cfn=(5136) +calls=1 -16 +* 89 ++1 5 + +fn=(5570) +1600 12294 ++4 6147 +cfn=(5572) +calls=2049 273 +* 14343 +* 2049 +-1 12294 +cfi=(294) +cfn=(5574) UG::D2::node** std::__uninitialized_default_n_a<UG::D2::node**, unsigned long, UG::D2::node*>(UG::D2::node**, unsigned long, std::allocator<UG::D2::node*>&) +calls=2049 643 +* 268911 +-1 4098 ++3 6147 + +fn=(5846) +125 16392 +cfi=(236) +cfn=(5552) +calls=2049 +28 +* 36882 +* 6147 + +fn=(5914) +1789 6 ++2 7 ++3 3 +cfn=(4710) +calls=1 273 +* 7 +* 1 +-1 6 +cfi=(334) +cfn=(4844) +calls=1 203 +* 37 ++2 3 ++3 3 + +fn=(6044) +1753 44 ++2 12 +cfn=(6046) +calls=4 920 +* 300 +* 16 +cfn=(4548) +calls=4 915 +* 52 +* 28 ++3 12 +cfn=(4548) +calls=4 915 +* 52 +* 16 +cfn=(4548) +calls=4 915 +* 52 +* 24 +cfi=(265) +cfn=(2360) +calls=4 222 +* 57 +* 12 ++1 12 +cfn=(4548) +calls=4 915 +* 52 +* 20 +cfn=(6046) +calls=4 920 +* 300 +* 12 ++1 28 + +fn=(6090) +1140 40 ++3 15 +cfn=(6038) +calls=5 826 +* 160 +* 25 +cfi=(291) +cfn=(6092) +calls=5 867 +* 195 +* 20 +cfi=(291) +cfn=(6094) +calls=5 819 +* 40 ++1 25 + +fn=(6230) +94 16 ++1 24 ++1 12 + +fn=(6248) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >::vector() +484 32 +cfn=(6250) +calls=4 285 +* 224 +* 12 + +fn=(6538) +94 16 ++1 24 ++1 12 + +fn=(6548) +1600 24 ++4 12 +cfn=(6550) +calls=4 273 +* 28 +* 4 +-1 24 +cfi=(294) +cfn=(6552) Dune::FieldMatrix<double, 2, 2>* std::__uninitialized_default_n_a<Dune::FieldMatrix<double, 2, 2>*, unsigned long, Dune::FieldMatrix<double, 2, 2> >(Dune::FieldMatrix<double, 2, 2>*, unsigned long, std::allocator<Dune::FieldMatrix<double, 2, 2> >&) +calls=4 643 +* 564 +-1 8 ++3 12 + +fn=(6640) +277 16 ++1 12 + +fn=(6710) +125 32 +cfi=(236) +cfn=(6530) +calls=4 +28 +* 72 +* 12 + +fn=(6748) +94 16 ++1 24 ++1 12 + +fn=(6758) +1600 24 ++4 12 +cfn=(6760) +calls=4 273 +* 28 +* 4 +-1 24 +cfi=(294) +cfn=(6762) Dune::FieldMatrix<double, 1, 2>* std::__uninitialized_default_n_a<Dune::FieldMatrix<double, 1, 2>*, unsigned long, Dune::FieldMatrix<double, 1, 2> >(Dune::FieldMatrix<double, 1, 2>*, unsigned long, std::allocator<Dune::FieldMatrix<double, 1, 2> >&) +calls=4 643 +* 1172 +-1 8 ++3 12 + +fn=(6862) +995 16 ++1 8 ++1 28 + +fn=(6936) +128 10 ++2 6 +cfi=(236) +cfn=(6938) std::allocator<Dune::AffineGeometry<double, 1, 1> >::allocator() +calls=2 +8 +* 36 +* 6 +cfn=(6942) +calls=2 -36 +* 26 ++1 6 + +fn=(6946) +285 32 +cfn=(6948) +calls=4 128 +* 180 +* 12 + +fn=(6972) +915 224 ++1 672 + +fn=(7038) std::vector<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo> >::operator[](unsigned long) +1040 30 ++3 48 ++1 12 + +fn=(7200) +1600 24 ++4 12 +cfn=(7098) +calls=4 273 +* 28 +* 4 +-1 24 +cfi=(294) +cfn=(7100) +calls=4 643 +* 458 +-1 8 ++3 12 + +fn=(7218) +300 16 ++1 10 +cfn=(7220) +calls=2 133 +* 104 ++1 10 +cfn=(7224) +calls=2 +54 +* 437 +* 10 + +fn=(7232) +273 16 ++1 12 + +fn=(7244) std::vector<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::operator[](unsigned long) +1040 20 ++3 20 ++1 8 + +fn=(7482) +920 10 ++1 6 +cfn=(7484) +calls=2 277 +* 14 +* 4 +cfn=(7486) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >::_S_max_size(std::allocator<Dune::AffineGeometry<double, 0, 1> > const&) +calls=2 1773 +* 112 +* 4 + +fn=(7486) +1773 16 ++5 4 ++2 6 +cfi=(266) +cfn=(7488) +calls=2 505 +* 34 +* 2 ++1 10 +cfi=(265) +cfn=(2866) +calls=2 198 +* 28 +* 2 ++1 10 + +fn=(7528) std::vector<Dune::FieldVector<double, 0>, std::allocator<Dune::FieldVector<double, 0> > >::vector() +484 16 +cfn=(7530) +calls=2 285 +* 112 +* 6 + +fn=(7642) +347 7 ++3 2 ++2 3 + +fn=(7676) +915 28 ++1 56 + +fn=(7768) +1600 6 ++4 3 +cfn=(7698) +calls=1 273 +* 7 +* 1 +-1 6 +cfi=(294) +cfn=(7700) +calls=1 643 +* 87 +-1 2 ++3 3 + +fn=(7774) std::vector<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::vector(unsigned long, std::allocator<Dune::FieldMatrix<double, 0, 0> > const&) +507 8 ++1 6 +cfn=(7776) +calls=1 1764 +* 129 +* 6 +cfn=(7792) +calls=1 300 +* 372 ++1 5 +cfn=(7806) +calls=1 1600 +* 132 +* 5 + +fn=(7794) +133 6 ++1 5 +cfi=(236) +cfn=(7778) +calls=1 +7 +* 22 +* 3 +cfn=(7796) +calls=1 -40 +* 13 ++1 3 + +fn=(7798) +356 6 ++2 5 +cfn=(7800) +calls=1 -18 +* 271 +* 2 ++1 4 ++1 6 ++1 3 + +fn=(7824) std::vector<Dune::FieldMatrix<double, 0, 0>, std::allocator<Dune::FieldMatrix<double, 0, 0> > >::operator[](unsigned long) +1040 10 ++3 8 ++1 4 + +fn=(7898) +273 4 ++1 3 + +fn=(7902) +450 8 ++3 6 +cfi=(294) +cfn=(7904) Dune::AffineGeometry<double, 0, 0>* std::__relocate_a<Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, std::allocator<Dune::AffineGeometry<double, 0, 0> > >(Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, std::allocator<Dune::AffineGeometry<double, 0, 0> >&) +calls=1 940 +* 72 ++1 2 + +fn=(7910) +347 7 ++3 2 ++2 3 + +fn=(8118) +94 16 ++1 24 ++1 12 + +fn=(8222) +273 16 ++1 12 + +fn=(8226) +450 32 ++3 24 +cfi=(294) +cfn=(8228) Dune::AffineGeometry<double, 0, 2>* std::__relocate_a<Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, std::allocator<Dune::AffineGeometry<double, 0, 2> > >(Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, std::allocator<Dune::AffineGeometry<double, 0, 2> >&) +calls=4 940 +* 288 ++1 8 + +fn=(8234) +347 28 ++3 8 ++2 12 + +fn=(8372) +1140 120 ++3 45 +cfn=(8324) +calls=15 826 +* 480 +* 75 +cfi=(291) +cfn=(8374) +calls=15 867 +* 585 +* 60 +cfi=(291) +cfn=(8376) +calls=15 819 +* 120 ++1 75 + +fl=(361) /home/joscha/software/dune/dune-uggrid/dune/uggrid/gm/cw.cc +fn=(4406) UG::D3::InitCW() +951 3 ++1 1 +cfn=(4316) InitPredefinedControlWords() +calls=1 483 +* 748 +* 4 ++2 1 +cfn=(4318) InitPredefinedControlEntries() +calls=1 534 +* 41629 +* 4 ++7 1 ++1 2 + +fn=(4316) +483 4 ++6 5 +cob=(2) +cfi=(18) +cfn=(2248) +calls=1 0 +* 58 ++2 1 ++1 43 ++1 160 ++2 84 ++3 12 ++1 96 ++1 48 ++5 48 ++1 48 ++1 48 ++1 48 +-16 40 ++19 2 ++6 1 ++1 2 +-35 4 ++6 5 +cob=(2) +cfi=(18) +cfn=(2248) +calls=1 0 +* 58 ++2 1 ++1 43 ++1 160 ++2 84 ++3 12 ++1 96 ++1 48 ++5 48 ++1 48 ++1 48 ++1 48 +-16 40 ++19 2 ++6 1 ++1 2 + +fn=(4314) UG::D2::InitCW() +951 3 ++1 1 +cfn=(4316) +calls=1 483 +* 748 +* 4 ++2 1 +cfn=(4318) +calls=1 534 +* 41629 +* 4 ++7 1 ++1 2 + +fn=(4318) +534 4 ++7 5 +cob=(2) +cfi=(18) +cfn=(2248) +calls=1 0 +* 4819 ++2 1 ++1 1 ++1 203 ++1 1100 ++2 650 ++3 65 ++1 715 ++1 260 ++5 520 ++2 260 ++1 260 ++1 260 ++1 260 ++1 260 ++1 260 ++1 260 ++1 975 ++1 390 ++8 195 ++1 195 ++1 2795 ++2 9100 ++2 5200 ++2 5460 ++2 715 ++4 588 ++16 3 ++2 686 +-25 1040 ++2 1274 ++2 45 +-9 2600 +-33 200 ++77 2 ++6 1 ++1 2 +-95 4 ++7 5 +cob=(2) +cfi=(18) +cfn=(2248) +calls=1 0 +* 4819 ++2 1 ++1 1 ++1 203 ++1 1100 ++2 650 ++3 65 ++1 715 ++1 260 ++5 520 ++2 260 ++1 260 ++1 260 ++1 260 ++1 260 ++1 260 ++1 260 ++1 975 ++1 390 ++8 195 ++1 195 ++1 2795 ++2 9100 ++2 5200 ++2 5460 ++2 715 ++4 588 ++16 3 ++2 686 +-25 1040 ++2 1274 ++2 45 +-9 2600 +-33 200 ++77 2 ++6 1 ++1 2 + +fn=(8596) UG::D2::WriteCW(void*, int, int) +731 14336 ++7 8192 ++7 38912 ++1 61440 ++2 20480 ++2 8192 ++6 16384 ++3 4096 ++12 10240 ++9 6144 ++1 6144 ++1 6144 ++1 6144 ++1 10240 ++1 8192 ++1 12288 ++2 6144 ++11 4096 ++2 10240 ++1 6144 + +fl=(368) +fn=(4340) +1676 3 ++8 2 ++1 3 +cfi=(354) +cfn=(4336) +calls=1 570 +* 35 +* 4 ++5 1 ++1 2 + +fn=(4424) +1676 3 ++8 2 ++1 3 +cfi=(354) +cfn=(4336) +calls=1 570 +* 35 +* 4 ++5 1 ++1 2 + +fl=(239) +fn=(2200) __static_initialization_and_destruction_0(int, int) +648 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(239) +648 3 + +fn=(5958) +170 594 ++2 264 ++3 198 ++1 462 + +fn=(8816) +337 9 ++2 13 ++3 20 +cfi=(413) +cfn=(8480) +calls=4 875 +* 232 +* 20 +cfi=(416) +cfn=(8486) +calls=4 833 +* 12832266 +* 28 +cfi=(422) +cfn=(8520) +calls=4 44 +* 256 +* 20 +cfi=(422) +cfn=(8522) +calls=4 50 +* 260 +* 870420 +cfi=(421) +cfn=(8524) +calls=174084 131 +* 13578552 +* 870408 +cfi=(421) +cfn=(8528) +calls=174080 109 +* 3133440 +* 174080 ++1 870400 +cfn=(8818) Dune::UGGrid<2>::mark(int, Dune::Entity<0, 2, Dune::UGGrid<2> const, Dune::UGGridEntity> const&) +calls=174080 187 +* 42301440 +-1 522240 +cfi=(421) +cfn=(8534) +calls=174080 67 +* 50482872 +* 174080 ++3 12 +cfn=(8828) Dune::UGGrid<2>::preAdapt() +calls=4 -77 +* 80 ++1 12 +cfn=(8830) Dune::UGGrid<2>::adapt() +calls=4 -59 +* 22245386590 +-7 6 + +fn=(8818) +187 1914880 ++3 522240 +cfi=(418) +cfn=(6184) +calls=174080 +66 +* 1218560 +* 348160 ++3 348160 ++9 522240 +cfi=(370) +cfn=(8820) +calls=174080 2439 +* 4177920 +* 696320 ++3 348160 ++1 870400 +cfi=(350) +cfn=(8822) Dune::UG_NS<2>::MarkForRefinement(UG::D2::element*, int, int) +calls=174080 644 +* 28723200 +* 696320 ++5 348160 ++1 348160 ++13 1218560 + +fn=(8828) +268 16 ++2 16 ++5 16 ++1 8 +-1 12 ++1 4 ++8 8 + +fn=(8830) +287 36 ++2 16 ++4 20 +cfi=(350) +cfn=(8832) Dune::UG_NS<2>::Set_Current_BVP(void**) +calls=4 1044 +* 80 ++2 4 ++2 16 ++3 16 ++4 4 ++3 4 ++2 28 +cfi=(433) +cfn=(8836) +calls=4 6376 +* 11543247037 +* 4 ++2 8 ++4 20 +cfn=(5956) Dune::UGGrid<2>::setIndices(bool, std::vector<unsigned int, std::allocator<unsigned int> >*) +calls=4 618 +* 10702139270 ++6 6 ++1 21 + +fn=(4220) Dune::UGGrid<2>::UGGrid(Dune::Communication<Dune::No_Comm>) +36 9 ++9 6 +cob=(2) +cfi=(18) +cfn=(2294) +calls=1 -45 +* 8 +* 4 +cfi=(259) +cfn=(4222) +calls=1 484 +* 67 +* 6 +cfi=(349) +cfn=(4234) Dune::UGGridLeafIndexSet<Dune::UGGrid<2> const>::UGGridLeafIndexSet(Dune::UGGrid<2> const&) +calls=1 260 +* 247 +* 6 +cfi=(349) +cfn=(4248) Dune::UGGridIdSet<Dune::UGGrid<2> const>::UGGridIdSet(Dune::UGGrid<2> const&) +calls=1 528 +* 11 +* 12 +cfi=(259) +cfn=(4250) +calls=1 484 +* 67 +* 2 ++3 7 ++26 1 ++1 2 +cob=(2) +cfi=(18) +cfn=(4262) +calls=1 -75 +* 101 +* 1 ++1 2 ++2 5 +cfi=(350) +cfn=(4264) Dune::UG_NS<2>::InitUg(int*, char***) +calls=1 1021 +* 79981 +* 4 ++3 5 +cfi=(350) +cfn=(4398) Dune::UG_NS<3>::InitUg(int*, char***) +calls=1 1021 +* 258819 +* 4 ++3 3 +cob=(2) +cfi=(18) +cfn=(4440) +calls=1 -84 +* 84 ++4 1 ++1 1 ++3 3 +cob=(2) +cfi=(18) +cfn=(4442) +calls=1 -92 +* 3230 ++1 7 +cob=(2) +cfi=(18) +cfn=(4446) +calls=1 -93 +* 3806 ++1 5 +cob=(2) +cfi=(18) +cfn=(4472) +calls=1 -94 +* 92 +* 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 -94 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 237 +* 3 +cob=(2) +cfi=(18) +cfn=(2432) +calls=1 -94 +* 4 +* 5 +cfi=(272) +cfn=(2436) +calls=1 525 +* 217 +* 5 +cfi=(272) +cfn=(3548) +calls=1 6109 +* 181 +* 6 +cfi=(272) +cfn=(3756) +calls=1 6097 +* 141 +* 6 +cfi=(272) +cfn=(3756) +calls=1 6097 +* 124 +* 6 +cob=(2) +cfi=(18) +cfn=(2750) +calls=1 -94 +* 47 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -94 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -94 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -94 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -94 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 -94 +* 4 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -94 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(3462) +calls=1 -94 +* 4 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -94 +* 8 ++2 7 +cfi=(272) +cfn=(4476) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, char const*) +calls=1 6057 +* 419 ++2 3 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 -98 +* 5 +* 8 +cfi=(350) +cfn=(4478) Dune::UG_NS<2>::CreateBoundaryValueProblem(char const*, int, int (**)(double*, double*), int, int (**)(double*, double*)) +calls=1 1034 +* 4135 +* 4 ++3 4 ++4 2 +cob=(2) +cfi=(18) +cfn=(4262) +calls=1 0 +* 95 +* 1 ++1 4 +cfi=(350) +cfn=(4492) Dune::UG_NS<2>::CreateFormatCmd(int, char**) +calls=1 1118 +* 14615 +* 4 ++2 3 +cob=(2) +cfi=(18) +cfn=(4440) +calls=1 0 +* 84 ++19 5 ++2 4 +cfi=(262) +cfn=(4536) Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>& Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>::operator<< <char const*>(char const*) +calls=1 265 +* 8 +* 3 +cfi=(262) +cfn=(4538) Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>::operator<<(int) +calls=1 287 +* 8 +* 3 +cfi=(262) +cfn=(4536) +calls=1 265 +* 8 +* 7 +cob=(2) +cfi=(18) +cfn=(2890) +calls=1 0 +* 137 +* 4 +cfi=(262) +cfn=(4540) Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>& Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>::operator<< <std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) +calls=1 265 +* 8 +* 3 +cfi=(262) +cfn=(4536) +calls=1 265 +* 8 +* 5 +cfi=(262) +cfn=(4542) Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>::operator<<(std::ostream& (*)(std::ostream&)) +calls=1 303 +* 8 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +-33 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -96 +* 97 +-4 3 +cob=(2) +cfi=(18) +cfn=(3976) +calls=1 -92 +* 102 ++39 8 + +fn=(5956) +618 60 ++4 20 +cfi=(259) +cfn=(4548) +calls=5 915 +* 65 +* 20 +cfn=(5958) +calls=5 170 +* 115 +* 15 +cfn=(5958) +calls=5 170 +* 115 +* 40 ++1 25 +cfi=(342) +cfn=(5960) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > std::make_shared<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>>() +calls=5 +91 +* 5794 +* 20 +cfi=(259) +cfn=(6030) +calls=5 1200 +* 7799 +* 15 +cfi=(342) +cfn=(6096) +calls=5 103 +* 175 +-1 10 ++5 10 ++1 5 +cfi=(259) +cfn=(6100) +calls=1 1040 +* 12 +* 2 +cfi=(343) +cfn=(6102) +calls=1 1012 +* 28 +* 7 +cfi=(241) +cfn=(6108) +calls=1 11 +* 14665180 ++3 20 +cfn=(5958) +calls=5 170 +* 115 +* 30 +cfn=(5958) +calls=10 170 +* 230 +* 60 ++1 70 +cfi=(259) +cfn=(6100) +calls=10 1040 +* 120 +* 20 +cfi=(343) +cfn=(9086) +calls=10 1312 +* 100 +* 20 ++1 70 +cfi=(259) +cfn=(6100) +calls=10 1040 +* 120 +* 20 +cfi=(343) +cfn=(6102) +calls=10 1012 +* 280 +* 60 +cfi=(241) +cfn=(6108) +calls=10 11 +* 6343951629 +-2 20 ++4 30 +cfi=(241) +cfn=(8466) +calls=5 153 +* 4375146818 ++3 32 + +fn=(2198) _GLOBAL__sub_I_uggrid.cc +648 6 +cfn=(2200) +calls=1 * +* 119 +* 2 + +fl=(295) +fn=(6210) std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::tuple<void, true>() +561 20 ++1 12 +cfn=(6212) std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::_Tuple_impl() +calls=4 206 +* 1148 +* 12 + +fn=(6844) std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >& std::__get_helper<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >(std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +1309 90 ++1 54 +cfn=(6846) std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::_M_head(std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +calls=18 195 +* 324 +* 36 + +fn=(6846) +195 162 +cfn=(6848) std::_Head_base<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, false>::_M_head(std::_Head_base<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, false>&) +calls=18 -35 +* 126 +* 36 + +fn=(6848) +160 126 + +fn=(6910) std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >, true>() +918 10 ++1 6 +cfn=(6912) std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >::_Tuple_impl() +calls=2 206 +* 380 +* 6 + +fn=(6912) +206 10 ++1 6 +cfn=(6914) std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >::_Tuple_impl() +calls=2 339 +* 186 +* 8 +cfn=(6930) std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, false>::_Head_base() +calls=2 -85 +* 164 +* 6 + +fn=(6930) +122 10 ++1 14 +cfi=(259) +cfn=(6932) +calls=2 484 +* 134 +* 6 + +fn=(8604) +918 5 ++1 3 +cfn=(8606) std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >::_Tuple_impl() +calls=1 206 +* 41 +* 3 + +fn=(8612) std::_Head_base<0ul, Dune::UGGrid<2>*, false>::_Head_base() +122 4 ++1 5 + +fn=(8662) std::default_delete<Dune::UGGrid<2> >& std::__get_helper<1ul, std::default_delete<Dune::UGGrid<2> >>(std::_Tuple_impl<1ul, std::default_delete<Dune::UGGrid<2> >>&) +1309 10 ++1 6 +cfn=(8664) std::_Tuple_impl<1ul, std::default_delete<Dune::UGGrid<2> > >::_M_head(std::_Tuple_impl<1ul, std::default_delete<Dune::UGGrid<2> > >&) +calls=2 334 +* 34 +* 4 + +fn=(8676) +1326 25 ++1 15 +cfn=(8678) Dune::UGGrid<2>* const& std::__get_helper<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >(std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > > const&) +calls=5 -13 +* 135 +* 10 + +fn=(8692) std::_Tuple_impl<1ul, std::default_delete<Dune::UGGrid<2> > >::_Tuple_impl<std::default_delete<Dune::UGGrid<2> > >(std::default_delete<Dune::UGGrid<2> >&&) +348 6 ++1 3 +cfi=(286) +cfn=(8668) +calls=1 74 +* 7 +* 5 +cfn=(8694) std::_Head_base<1ul, std::default_delete<Dune::UGGrid<2> >, true>::_Head_base<std::default_delete<Dune::UGGrid<2> > >(std::default_delete<Dune::UGGrid<2> >&&) +calls=1 86 +* 19 +* 3 + +fn=(8694) +86 6 ++1 3 +cfi=(286) +cfn=(8668) +calls=1 -13 +* 7 +* 3 + +fn=(3000) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const& std::__get_helper<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::_Tuple_impl<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&) +1309 95 ++1 57 +cfn=(2990) std::_Tuple_impl<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::_M_head(std::_Tuple_impl<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&) +calls=19 334 +* 342 +* 38 + +fn=(7542) std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >::_Tuple_impl() +339 5 ++1 3 +cfn=(7544) std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >, false>::_Head_base() +calls=1 122 +* 82 +* 3 + +fn=(8616) +1320 25 ++1 15 +cfn=(8618) Dune::UGGrid<2>*& std::__get_helper<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >(std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >&) +calls=5 -12 +* 135 +* 10 + +fn=(8666) std::_Head_base<1ul, std::default_delete<Dune::UGGrid<2> >, true>::_M_head(std::_Head_base<1ul, std::default_delete<Dune::UGGrid<2> >, true>&) +113 14 + +fn=(8678) +1314 25 ++1 15 +cfn=(8680) std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >::_M_head(std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > > const&) +calls=5 198 +* 85 +* 10 + +fn=(2950) std::_Head_base<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, false>::_Head_base(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +125 190 ++1 228 + +fn=(2996) std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, 0ul>(std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) +1670 128 ++4 16 +-1 48 +cfn=(2998) std::tuple_element<0ul, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&> >::type& std::get<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&) +calls=16 1320 +* 608 ++1 32 +cfi=(286) +cfn=(2882) +calls=16 74 +* 112 +* 48 +cob=(2) +cfi=(18) +cfn=(2890) +calls=16 0 +* 2297 +* 64 +cob=(2) +cfi=(18) +cfn=(2294) +calls=16 0 +* 128 ++1 80 + +fn=(2998) +1320 95 ++1 57 +cfn=(3000) +calls=19 -12 +* 532 +* 38 + +fn=(6628) std::tuple_element<0ul, std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > > >::type& std::get<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >(std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +1320 40 ++1 24 +cfn=(6630) std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >& std::__get_helper<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >(std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +calls=8 -12 +* 224 +* 16 + +fn=(7868) std::tuple_element<0ul, std::tuple<std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > > >::type& std::get<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >(std::tuple<std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >&) +1320 10 ++1 6 +cfn=(7870) std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >& std::__get_helper<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >>(std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >>&) +calls=2 -12 +* 54 +* 4 + +fn=(7872) std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >::_M_head(std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >&) +334 16 +cfn=(7874) std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >, false>::_M_head(std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > >, false>&) +calls=2 160 +* 14 +* 4 + +fn=(8196) std::_Tuple_impl<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::_M_head(std::_Tuple_impl<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +334 144 +cfn=(8198) std::_Head_base<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >, false>::_M_head(std::_Head_base<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >, false>&) +calls=18 160 +* 126 +* 36 + +fn=(8622) std::_Head_base<0ul, Dune::UGGrid<2>*, false>::_M_head(std::_Head_base<0ul, Dune::UGGrid<2>*, false>&) +160 35 + +fn=(8690) std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >::_Tuple_impl<Dune::UGGrid<2>*&, std::default_delete<Dune::UGGrid<2> >, void>(Dune::UGGrid<2>*&, std::default_delete<Dune::UGGrid<2> >&&) +216 8 ++2 3 +cfi=(286) +cfn=(8668) +calls=1 74 +* 7 +* 5 +cfn=(8692) +calls=1 348 +* 43 +* 4 +cfi=(286) +cfn=(8688) Dune::UGGrid<2>*& std::forward<Dune::UGGrid<2>*&>(std::remove_reference<Dune::UGGrid<2>*&>::type&) +calls=1 74 +* 7 +* 3 +cfn=(8696) std::_Head_base<0ul, Dune::UGGrid<2>*, false>::_Head_base<Dune::UGGrid<2>*&>(Dune::UGGrid<2>*&) +calls=1 -86 +* 22 +* 5 + +fn=(2986) +642 209 +cfn=(2988) std::_Tuple_impl<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::_Tuple_impl(std::_Tuple_impl<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&) +calls=19 358 +* 1083 +* 57 + +fn=(6212) +206 20 ++1 12 +cfn=(6214) std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::_Tuple_impl() +calls=4 -1 +* 760 +* 16 +cfn=(6246) std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, false>::_Head_base() +calls=4 -85 +* 328 +* 12 + +fn=(6216) std::_Tuple_impl<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::_Tuple_impl() +339 20 ++1 12 +cfn=(6218) std::_Head_base<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >, false>::_Head_base() +calls=4 122 +* 328 +* 12 + +fn=(6634) std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, false>::_M_head(std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, false>&) +160 56 + +fn=(7476) std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >::_M_head(std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +334 48 +cfn=(7478) std::_Head_base<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >, false>::_M_head(std::_Head_base<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >, false>&) +calls=6 160 +* 42 +* 12 + +fn=(7544) +122 5 ++1 7 +cfi=(259) +cfn=(7546) +calls=1 484 +* 67 +* 3 + +fn=(8660) +1320 10 ++1 6 +cfn=(8662) +calls=2 -12 +* 54 +* 4 + +fn=(2988) +358 133 ++2 76 +cfn=(2990) +calls=19 -26 +* 342 +* 38 +cfi=(286) +cfn=(2882) +calls=19 74 +* 133 +* 57 +cfn=(2950) +calls=19 125 +* 209 +* 95 + +fn=(2994) +1658 96 ++5 96 +cfn=(2996) +calls=16 +7 +* 3561 ++1 48 + +fn=(3264) +1658 18 ++5 18 +cfn=(3266) std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, 0ul>(std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) +calls=3 +7 +* 1703 ++1 9 + +fn=(6842) std::tuple_element<1ul, std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > > >::type& std::get<1ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >(std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +1320 90 ++1 54 +cfn=(6844) +calls=18 -12 +* 504 +* 36 + +fn=(7472) std::tuple_element<1ul, std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > > >::type& std::get<1ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >(std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +1320 30 ++1 18 +cfn=(7474) std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >& std::__get_helper<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >>(std::_Tuple_impl<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >>&) +calls=6 -12 +* 162 +* 12 + +fn=(7870) +1309 10 ++1 6 +cfn=(7872) +calls=2 334 +* 34 +* 4 + +fn=(7874) +160 14 + +fn=(8194) std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >& std::__get_helper<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >>(std::_Tuple_impl<2ul, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > >>&) +1309 90 ++1 54 +cfn=(8196) +calls=18 334 +* 306 +* 36 + +fn=(8198) +160 126 + +fn=(8664) +334 16 +cfn=(8666) +calls=2 113 +* 14 +* 4 + +fn=(8680) +198 40 +cfn=(8682) std::_Head_base<0ul, Dune::UGGrid<2>*, false>::_M_head(std::_Head_base<0ul, Dune::UGGrid<2>*, false> const&) +calls=5 -35 +* 35 +* 10 + +fn=(8682) +163 35 + +fn=(2946) +588 114 ++1 95 +cfn=(2948) std::_Tuple_impl<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::_Tuple_impl(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=19 343 +* 475 +* 57 + +fn=(6218) +122 20 ++1 28 +cfi=(259) +cfn=(6220) +calls=4 484 +* 268 +* 12 + +fn=(6632) std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >::_M_head(std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +195 72 +cfn=(6634) +calls=8 -35 +* 56 +* 16 + +fn=(7256) std::tuple_element<0ul, std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > > >::type& std::get<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >(std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +1320 20 ++1 12 +cfn=(7258) std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >& std::__get_helper<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >(std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +calls=4 -12 +* 112 +* 8 + +fn=(7474) +1309 30 ++1 18 +cfn=(7476) +calls=6 334 +* 102 +* 12 + +fn=(7478) +160 42 + +fn=(7540) std::tuple<std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >::tuple<void, true>() +561 5 ++1 3 +cfn=(7542) +calls=1 339 +* 93 +* 3 + +fn=(8606) +206 5 ++1 3 +cfn=(8608) std::_Tuple_impl<1ul, std::default_delete<Dune::UGGrid<2> > >::_Tuple_impl() +calls=1 339 +* 18 +* 3 +cfn=(8612) +calls=1 -85 +* 9 +* 3 + +fn=(2948) +343 114 ++1 95 +cfn=(2950) +calls=19 125 +* 209 +* 57 + +fn=(2990) +334 304 +cfn=(2992) std::_Head_base<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, false>::_M_head(std::_Head_base<0ul, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, false>&) +calls=38 160 +* 304 +* 76 + +fn=(6214) +206 20 ++1 12 +cfn=(6216) +calls=4 339 +* 372 +* 16 +cfn=(6232) std::_Head_base<1ul, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, false>::_Head_base() +calls=4 -85 +* 328 +* 12 + +fn=(6232) +122 20 ++1 28 +cfi=(259) +cfn=(6234) +calls=4 484 +* 268 +* 12 + +fn=(6914) +339 10 ++1 6 +cfn=(6916) std::_Head_base<1ul, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > >, false>::_Head_base() +calls=2 122 +* 164 +* 6 + +fn=(7258) +1309 20 ++1 12 +cfn=(7260) std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >::_M_head(std::_Tuple_impl<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +calls=4 195 +* 72 +* 8 + +fn=(7260) +195 36 +cfn=(7262) std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, false>::_M_head(std::_Head_base<0ul, std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, false>&) +calls=4 -35 +* 28 +* 8 + +fn=(7262) +160 28 + +fn=(8610) std::_Head_base<1ul, std::default_delete<Dune::UGGrid<2> >, true>::_Head_base() +76 4 ++1 3 + +fn=(8620) std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >::_M_head(std::_Tuple_impl<0ul, Dune::UGGrid<2>*, std::default_delete<Dune::UGGrid<2> > >&) +195 40 +cfn=(8622) +calls=5 -35 +* 35 +* 10 + +fn=(6246) +122 20 ++1 28 +cfi=(259) +cfn=(6248) +calls=4 484 +* 268 +* 12 + +fn=(6630) +1309 40 ++1 24 +cfn=(6632) +calls=8 195 +* 144 +* 16 + +fn=(8608) +339 5 ++1 3 +cfn=(8610) +calls=1 76 +* 7 +* 3 + +fn=(8618) +1309 25 ++1 15 +cfn=(8620) +calls=5 195 +* 85 +* 10 + +fn=(8686) +968 9 ++1 4 +cfi=(286) +cfn=(8668) +calls=1 74 +* 7 +* 4 +cfi=(286) +cfn=(8688) +calls=1 74 +* 7 +* 4 +cfn=(8690) +calls=1 216 +* 107 +* 6 + +fn=(2992) +160 304 + +fn=(3266) +1670 24 ++4 3 +-1 9 +cfn=(2998) +calls=3 1320 +* 114 ++1 6 +cfi=(286) +cfn=(2882) +calls=3 74 +* 21 +* 9 +cob=(2) +cfi=(18) +cfn=(2890) +calls=3 0 +* 413 +* 12 +cfi=(258) +cfn=(2292) +calls=3 22 +* 1077 ++1 15 + +fn=(6916) +122 10 ++1 14 +cfi=(259) +cfn=(6918) +calls=2 484 +* 134 +* 6 + +fn=(8192) std::tuple_element<2ul, std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > > >::type& std::get<2ul, std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >(std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +1320 90 ++1 54 +cfn=(8194) +calls=18 -12 +* 486 +* 36 + +fn=(8696) +132 6 ++1 3 +cfi=(286) +cfn=(8688) +calls=1 -59 +* 7 +* 6 + +fl=(272) +fn=(2794) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&) +6091 112 ++2 80 +cob=(2) +cfi=(18) +cfn=(2796) +calls=16 0 +* 6796 +* 32 +cfi=(286) +cfn=(2642) +calls=16 99 +* 112 +* 80 +cob=(2) +cfi=(18) +cfn=(2644) +calls=16 0 +* 288 +* 48 + +fn=(3548) +6109 21 ++2 15 +cob=(2) +cfi=(18) +cfn=(3550) +calls=3 0 +* 390 +* 6 +cfi=(286) +cfn=(2642) +calls=3 99 +* 21 +* 15 +cob=(2) +cfi=(18) +cfn=(2644) +calls=3 0 +* 54 +* 9 + +fn=(3490) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >) +263 21 ++3 18 +cfn=(3492) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct_aux<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::__false_type) +calls=3 -23 +* 746 ++1 9 + +fn=(3756) +6097 40 ++3 15 +cob=(2) +cfi=(18) +cfn=(2606) +calls=5 0 +* 25 +* 20 +cob=(2) +cfi=(18) +cfn=(2606) +calls=5 0 +* 25 +* 10 ++1 15 +cob=(2) +cfi=(18) +cfn=(3758) +calls=5 0 +* 40 ++1 15 +-1 5 ++3 35 +cob=(2) +cfi=(18) +cfn=(2628) +calls=5 0 +* 209 +* 10 +cfi=(286) +cfn=(2642) +calls=5 99 +* 35 +* 20 +cob=(2) +cfi=(18) +cfn=(2644) +calls=5 0 +* 90 ++1 25 + +fn=(3168) bool std::operator!=<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, char const*) +6213 18 ++2 15 +cfn=(3170) +calls=3 -40 +* 195 +* 9 + +fn=(3214) +6020 198 ++3 90 +cob=(2) +cfi=(18) +cfn=(2890) +calls=18 0 +* 2322 ++1 90 +cob=(2) +cfi=(18) +cfn=(2628) +calls=18 0 +* 1358 ++1 18 ++1 144 + +fn=(2632) +6121 161 ++2 115 +cob=(2) +cfi=(18) +cfn=(2634) +calls=23 0 +* 3443 +* 46 +cfi=(286) +cfn=(2642) +calls=23 99 +* 161 +* 115 +cob=(2) +cfi=(18) +cfn=(2644) +calls=23 0 +* 414 +* 69 + +fn=(3546) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct_aux<char*>(char*, char*, std::__false_type) +243 50 ++4 30 +cfi=(274) +cfn=(2898) +calls=5 -41 +* 550 ++1 30 + +fn=(3170) +6175 42 ++2 35 +cob=(2) +cfi=(18) +cfn=(3172) +calls=7 0 +* 402 +* 28 + +fn=(3512) +6547 45 ++1 45 +cfi=(302) /usr/include/c++/9/ext/string_conversions.h +cfn=(3514) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > __gnu_cxx::__to_xstring<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, char>(int (*)(char*, unsigned long, char const*, __va_list_tag*), unsigned long, char const*, ...) +calls=5 99 +* 6421 +* 30 + +fn=(2436) +525 128 ++1 64 +cob=(2) +cfi=(18) +cfn=(2438) +calls=16 0 +* 80 +* 96 +cob=(2) +cfi=(18) +cfn=(2442) +calls=16 0 +* 80 ++1 80 +cfi=(273) +cfn=(2446) +calls=16 329 +* 517 +* 128 +cfn=(2448) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<char const*>(char const*, char const*) +calls=16 263 +* 5888 +* 80 + +fn=(3122) bool std::operator< <char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +6226 3288 ++3 2740 +cob=(2) +cfi=(18) +cfn=(3124) +calls=548 0 +* 27541 +* 1644 + +fn=(2450) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct_aux<char const*>(char const*, char const*, std::__false_type) +243 160 ++4 96 +cfi=(274) +cfn=(2452) +calls=16 -41 +* 5280 ++1 96 + +fn=(3488) +625 27 ++2 12 +cob=(2) +cfi=(18) +cfn=(2438) +calls=3 0 +* 15 +* 18 +cob=(2) +cfi=(18) +cfn=(2442) +calls=3 0 +* 15 ++1 18 +cfn=(3490) +calls=3 263 +* 794 +* 15 + +fn=(2448) +263 112 ++3 96 +cfn=(2450) +calls=16 -23 +* 5632 ++1 48 + +fn=(3492) +243 30 ++4 18 +cfi=(274) +cfn=(3494) +calls=3 -41 +* 680 ++1 18 + +fn=(3542) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string<char*, void>(char*, char*, std::allocator<char> const&) +625 45 ++2 20 +cob=(2) +cfi=(18) +cfn=(2438) +calls=5 0 +* 25 +* 30 +cob=(2) +cfi=(18) +cfn=(2442) +calls=5 0 +* 25 ++1 30 +cfn=(3544) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<char*>(char*, char*) +calls=5 263 +* 740 +* 25 + +fn=(3544) +263 35 ++3 30 +cfn=(3546) +calls=5 -23 +* 660 ++1 15 + +fn=(4476) +6057 33 ++3 15 +cob=(2) +cfi=(18) +cfn=(2890) +calls=3 0 +* 411 ++1 15 +cob=(2) +cfi=(18) +cfn=(2634) +calls=3 0 +* 768 ++1 3 ++1 24 + +fl=(395) +fn=(5502) +22 4 ++12 3 + +fn=(5272) +15 8 ++1 12 ++3 6 + +fl=(357) +fn=(4300) UG::FindStructDir(char const*, char const**) +193 2358 ++7 524 ++3 786 +cob=(2) +cfi=(18) +cfn=(4278) +calls=262 0 +* 5748 +* 1310 ++3 524 ++4 1048 ++3 520 ++1 520 ++5 34 ++1 4 ++3 12 +cfi=(355) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/misc.cc +cfn=(4280) UG::strntok(char const*, char const*, int, char*) +calls=2 376 +* 654 +* 1560 +cfi=(355) +cfn=(4280) +calls=260 376 +* 100280 +* 1310 ++3 1048 ++2 520 ++1 780 ++2 1040 ++4 8 ++3 6 +cob=(2) +cfi=(18) +cfn=(4296) +calls=2 0 +* 46 +* 4 ++8 4 ++4 10 ++1 4 ++2 18 ++2 10 +cob=(2) +cfi=(18) +cfn=(4296) +calls=2 0 +* 46 +* 4 ++1 2 ++4 4 ++3 10 ++3 12 +cfi=(355) +cfn=(4280) +calls=2 376 +* 566 +* 10 ++3 6 ++3 4 ++1 10 ++6 4 ++1 6 ++2 6 ++1 1310 + +fn=(4388) UG::SetStringVar(char const*, char const*) +761 2580 ++5 1290 +cfn=(4300) +calls=258 193 +* 120154 +* 1290 ++3 1290 +cfn=(4390) UG::FindStringVar(UG::ENVDIR const*, char const*) +calls=258 297 +* 24018 +* 258 ++2 2040 +cob=(2) +cfi=(18) +cfn=(4278) +calls=254 0 +* 4572 +* 508 ++6 516 ++2 12 +cob=(2) +cfi=(18) +cfn=(4278) +calls=4 0 +* 72 +* 24 +cfn=(4304) UG::MakeStructItem(UG::ENVDIR*, char const*, int, int) +calls=4 529 +* 1405 +* 4 ++1 8 ++4 1548 +cob=(2) +cfi=(18) +cfn=(4288) +calls=258 0 +* 8654 ++2 258 ++1 1806 + +fn=(4298) +608 32 ++4 20 +cfn=(4300) +calls=4 193 +* 2536 +* 20 ++2 20 +cfn=(4302) UG::FindStructure(UG::ENVDIR const*, char const*) +calls=4 327 +* 148 +* 20 ++1 24 +cfn=(4304) +calls=4 -86 +* 1416 +* 16 ++2 4 ++1 20 + +fn=(4302) +327 24 ++3 8 ++3 12 ++1 12 ++2 10 ++2 12 +cob=(2) +cfi=(18) +cfn=(4296) +calls=2 0 +* 46 +* 4 ++3 6 +-7 2 ++10 4 ++1 8 + +fn=(4304) +529 64 ++5 16 ++1 24 ++5 24 +cob=(2) +cfi=(18) +cfn=(4278) +calls=8 0 +* 144 +* 16 ++3 40 ++1 30 ++2 46 +cob=(2) +cfi=(18) +cfn=(4296) +calls=3 0 +* 69 +* 6 ++3 14 ++1 21 +-6 7 ++10 24 ++2 32 ++1 16 +cfi=(353) +cfn=(4306) UG::AllocEnvMemory(int) +calls=4 +29 +* 826 +* 4 ++1 8 ++1 16 ++2 12 ++2 12 ++1 12 +cfi=(353) +cfn=(4306) +calls=4 +22 +* 862 +* 4 ++1 8 ++1 12 ++6 24 ++1 16 ++1 48 +cob=(2) +cfi=(18) +cfn=(4288) +calls=8 0 +* 252 ++3 16 ++3 12 ++1 28 ++5 12 ++1 12 ++1 8 ++4 4 ++1 8 +-1 4 ++1 8 + +fn=(4294) UG::InitUgStruct() +1349 8 ++4 4 +cfi=(353) +cfn=(4276) +calls=2 120 +* 408 +* 8 ++3 2 +cfi=(353) +cfn=(4284) +calls=2 630 +* 18 +* 2 ++1 10 +cfi=(353) +cfn=(4286) +calls=2 244 +* 737 +* 8 ++2 2 +cfi=(353) +cfn=(4292) +calls=2 649 +* 18 +* 2 ++3 4 +cfi=(353) +cfn=(4276) +calls=2 120 +* 1388 +* 10 ++3 14 ++3 2 ++1 4 + +fn=(4390) +297 1548 ++4 774 ++1 1796 ++2 4470 ++2 2292 +cob=(2) +cfi=(18) +cfn=(4296) +calls=382 0 +* 8786 +* 764 ++1 508 ++2 1920 +-7 640 ++10 4 ++1 516 + +fn=(4348) +914 2322 ++3 1806 +cob=(2) +cfi=(18) +cfn=(4350) +calls=258 0 +* 709922 ++1 1290 +cfn=(4388) +calls=258 761 +* 172307 ++1 1290 + +fl=(431) /home/joscha/software/dune/dune-common/dune/common/to_unique_ptr.hh +fn=(8598) Dune::ToUniquePtr<Dune::UGGrid<2> >::ToUniquePtr(Dune::UGGrid<2>*) +54 6 ++1 5 +cfi=(432) +cfn=(8600) +calls=1 203 +* 133 ++1 3 + +fn=(8698) Dune::ToUniquePtr<Dune::UGGrid<2> >::~ToUniquePtr() +35 8 +cfi=(432) +cfn=(8700) +calls=1 278 +* 68 +* 3 + +fl=(387) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridfactory.hh +fn=(4576) Dune::GridFactory<Dune::UGGrid<2> >::comm() const +273 6 ++2 4 +cfi=(344) +cfn=(4578) +calls=1 570 +* 8 +* 1 ++1 4 + +fl=(240) +fn=(2204) __static_initialization_and_destruction_0(int, int) +408 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(240) +408 3 + +fn=(6194) Dune::UGGridEntity<0, 2, Dune::UGGrid<2> const>::type() const +113 64991565 ++4 28885140 +cfi=(350) +cfn=(6196) Dune::UG_NS<2>::Tag(UG::D2::element const*) +calls=7221285 649 +* 72212850 +* 14442570 ++2 43327710 ++4 7221285 ++24 50548995 + +fn=(2202) _GLOBAL__sub_I_uggridentity.cc +408 6 +cfn=(2204) +calls=1 * +* 119 +* 2 + +fn=(6138) +151 24348275 ++3 10434975 ++1 17391625 +cfi=(420) +cfn=(6140) Dune::UGGridGeometry<2, 2, Dune::UGGrid<2> const>::setToTarget(UG::D2::element*) +calls=3478325 -44 +* 38261575 ++1 10434972 ++1 10434972 + +fl=(267) /home/joscha/software/dune/dune-common/dune/common/stdthread.cc +fn=(2412) _GLOBAL__sub_I_stdthread.cc +80 6 +cfn=(2414) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(2414) +80 10 +fi=(220) +-6 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(267) ++6 3 + +fl=(350) +fn=(4570) Dune::UG_NS<2>::RemoveDomain(char const*) +1126 5 ++1 3 +cfi=(359) +cfn=(4572) UG::D2::RemoveDomain(char const*) +calls=1 326 +* 1220 ++1 3 + +fn=(8464) +676 2318164 ++1 1159082 ++1 1159082 + +fn=(6190) +584 47393648 ++3 106635708 ++1 23696824 + +fn=(8470) +591 17967984 ++3 40427964 ++1 8983992 + +fn=(8478) +987 1177648 ++4 3532944 ++1 588824 + +fn=(4492) +1118 6 ++1 5 +cfi=(383) +cfn=(4494) UG::D2::CreateFormatCmd(int, char**) +calls=1 1755 +* 14602 ++1 2 + +fn=(8424) +385 84 ++8 42 ++1 42 + +fn=(8594) Dune::UG_NS<2>::WriteCW(void*, int, int) +1016 14336 ++1 12288 +cfi=(361) +cfn=(8596) +calls=2048 731 +* 264192 ++1 6144 + +fn=(5174) Dune::UG_NS<2>::CreateLinearSegment(char const*, int, int, int, int, int const*, double (*) [2]) +1152 1280 ++6 1536 +cfi=(359) +cfn=(5176) UG::D2::CreateLinearSegment(char const*, int, int, int, int, int const*, double (*) [2]) +calls=128 473 +* 66304 +* 128 ++7 256 + +fn=(5178) Dune::UG_NS<2>::ConfigureCommand(int, char const**) +1103 6 ++2 5 +cfi=(392) /home/joscha/software/dune/dune-uggrid/dune/uggrid/commands.cc +cfn=(5180) UG::D2::ConfigureCommand(int, char**) +calls=1 125 +* 16735 ++1 2 + +fn=(8304) +503 25990584 ++2 25990584 ++1 12995292 + +fn=(8454) +766 1852716 ++1 926358 ++1 926358 + +fn=(4398) +1021 6 ++1 5 +cfi=(351) +cfn=(4400) +calls=1 116 +* 258806 ++1 2 + +fn=(4478) +1034 9 ++5 10 +cfi=(359) +cfn=(4480) UG::D2::CreateBoundaryValueProblem(char const*, int (*)(void*, void*, double*, double*, int*), int, int (**)(double*, double*), int, int (**)(double*, double*)) +calls=1 584 +* 4114 ++2 2 + +fn=(5518) Dune::UG_NS<2>::GetMultigrid(char const*) +1083 5 ++1 3 +cfi=(365) +cfn=(5206) +calls=1 2940 +* 1237 ++1 2 + +fn=(5520) Dune::UG_NS<2>::InsertInnerNode(UG::D2::grid*, double const*) +1130 5766 ++1 4805 +cfi=(365) +cfn=(5522) +calls=961 4246 +* 854653 ++1 1922 + +fn=(8294) +957 53317854 ++1 44431545 +cfi=(365) +cfn=(5664) +calls=8886309 2111 +* 499672532 ++1 17772618 + +fn=(8306) +671 13912796 ++1 6956398 ++1 6956398 + +fn=(6156) +413 276 ++8 138 ++1 138 + +fn=(5588) Dune::UG_NS<2>::FirstNode(UG::D2::grid*) +399 4 ++8 2 ++1 2 + +fn=(6196) +649 28885140 ++2 28885140 ++1 14442570 + +fn=(8296) +756 22069248 ++1 11034624 ++1 11034624 + +fn=(8532) +780 696320 ++1 348160 ++1 348160 + +fn=(8566) +708 352016 ++1 176008 ++1 176008 + +fn=(8822) +644 1218560 ++1 1044480 +cfi=(370) +cfn=(8824) +calls=174080 2071 +* 26112000 ++1 348160 + +fn=(8832) +1044 20 ++1 12 +cfi=(359) +cfn=(8834) UG::D2::Set_Current_BVP(void**) +calls=4 1348 +* 36 ++1 12 + +fn=(9088) +523 1165104 ++6 4951692 ++1 582552 + +fn=(5166) Dune::UG_NS<2>::CreateDomain(char const*, int, int) +1122 7 ++1 6 +cfi=(359) +cfn=(5168) UG::D2::CreateDomain(char const*, int, int) +calls=1 286 +* 3348 ++1 2 + +fn=(5196) Dune::UG_NS<2>::NewCommand(int, char**, std::shared_ptr<PPIF::PPIFContext>) +1109 11 ++1 5 +cfi=(342) +cfn=(5198) +calls=1 129 +* 51 +* 6 +cfi=(392) +cfn=(5204) UG::D2::NewCommand(int, char**, std::shared_ptr<PPIF::PPIFContext>) +calls=1 214 +* 1393461 +* 5 +cfi=(342) +cfn=(5306) +calls=1 103 +* 35 +* 1 ++1 7 + +fn=(8292) +939 105708075 ++4 295982610 ++1 42283230 + +fn=(8468) +800 13475988 ++1 6737994 ++1 6737994 + +fn=(4264) +1021 6 ++1 5 +cfi=(351) +cfn=(4266) +calls=1 116 +* 79968 ++1 2 + +fn=(8310) +730 3678208 ++1 1839104 ++1 1839104 + +fn=(8462) +508 4170880 ++2 4170880 ++1 2085440 + +fn=(8476) +699 2837212 ++5 9930242 ++1 1418606 + +fn=(8586) +810 352016 ++1 264012 ++1 176008 + +fl=(409) /usr/include/c++/9/utility +fn=(5758) UG::D2::multigrid::FaceNodes const& std::__pair_get<0ul>::__get<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >(std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&) +174 48640 ++1 36480 + +fn=(5756) std::tuple_element<0ul, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >::type& std::get<0ul, UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >(std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&) +219 60800 ++1 36480 +cfn=(5758) +calls=12160 -46 +* 85120 +* 24320 + +fl=(235) +fn=(4902) +939 8 +cfn=(4904) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Rb_tree_impl<std::less<Dune::UGGridBoundarySegment<2> >, true>::_Rb_tree_impl() +calls=1 680 +* 73 +* 3 + +fn=(2312) +939 40 +cfn=(2314) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_Rb_tree_impl<std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, true>::_Rb_tree_impl() +calls=5 680 +* 365 +* 15 + +fn=(2320) std::_Rb_tree_key_compare<std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree_key_compare() +146 44 ++4 33 + +fn=(2652) +939 8 +cfn=(2654) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree_impl<std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, true>::_Rb_tree_impl() +calls=1 680 +* 73 +* 3 + +fn=(2814) std::_Rb_tree_const_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_Rb_tree_const_iterator(std::_Rb_tree_node_base const*) +345 320 ++1 384 + +fn=(2840) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_begin() const +748 276 ++3 138 ++1 138 + +fn=(2938) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree_iterator(std::_Rb_tree_node_base*) +273 360 ++1 432 + +fn=(3018) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +2085 40 ++4 12 +cfn=(2934) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_begin() +calls=4 744 +* 32 +* 4 ++1 12 +cfn=(2932) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_end() +calls=4 755 +* 32 +* 4 ++1 4 ++1 12 ++6 20 +cfn=(2938) +calls=4 273 +* 44 ++1 8 ++2 12 +cfn=(3020) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::begin() +calls=4 1006 +* 124 +* 24 +cfn=(2944) +calls=4 315 +* 52 +* 8 ++1 24 +cfi=(298) +cfn=(3022) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*&, std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*&, std::_Rb_tree_node_base*&) +calls=4 341 +* 144 +* 12 ++7 28 + +fn=(3068) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Alloc_node::_Alloc_node(std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&) +538 80 ++1 96 + +fn=(3078) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_get_Node_allocator() +566 256 ++1 192 + +fn=(3162) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_key(std::_Rb_tree_node_base const*) +809 210 ++1 126 +cfn=(3112) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_key(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const*) +calls=42 -43 +* 2394 +* 84 + +fn=(3198) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_lower_bound(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const*, std::_Rb_tree_node_base const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +1940 492 ++4 158 ++1 152 +cfn=(3268) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_S_key(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > const*) +calls=38 767 +* 2166 +* 228 +cfi=(297) +cfn=(3120) +calls=38 385 +* 3006 +* 114 ++1 85 +cfn=(3304) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_S_left(std::_Rb_tree_node_base const*) +calls=17 793 +* 136 +* 34 ++2 63 +cfn=(3318) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_S_right(std::_Rb_tree_node_base const*) +calls=21 801 +* 168 +* 21 +-4 21 ++5 205 +cfn=(3190) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_Rb_tree_const_iterator(std::_Rb_tree_node_base const*) +calls=41 345 +* 451 +* 41 ++1 287 + +fn=(3224) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_begin() +744 132 ++1 132 + +fn=(3242) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_get_node() +579 15 ++1 9 +cfn=(3244) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_get_Node_allocator() +calls=3 -14 +* 21 +* 9 +cfi=(266) +cfn=(3246) +calls=3 443 +* 732 +* 6 + +fn=(3268) +767 968 ++18 363 +cfn=(3270) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_valptr() const +calls=121 238 +* 3388 +* 605 +cfi=(297) +cfn=(3276) std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::operator()(std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> const&) const +calls=121 1155 +* 968 ++1 605 + +fn=(3280) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_const_cast() const +352 24 ++1 18 +cfn=(3228) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_Rb_tree_iterator(std::_Rb_tree_node_base*) +calls=3 -80 +* 33 +* 18 + +fn=(3292) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*) +2354 39 ++4 6 +-1 9 +cfn=(3222) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_end() +calls=3 755 +* 24 +* 6 ++1 8 +cfn=(3306) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_S_key(std::_Rb_tree_node_base const*) +calls=2 809 +* 134 +* 8 +cfn=(3268) +calls=2 767 +* 114 +* 8 +cfi=(297) +cfn=(3120) +calls=2 385 +* 151 +* 8 +-1 2 ++5 4 +-1 10 +cob=(2) +cfi=(18) +cfn=(3030) +calls=2 0 +* 80 +-4 1 ++5 2 +-1 5 +cob=(2) +cfi=(18) +cfn=(3030) +calls=1 0 +* 17 ++2 15 ++1 15 +cfn=(3228) +calls=3 273 +* 33 +* 3 ++1 24 + +fn=(3302) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_left(std::_Rb_tree_node_base*) +789 136 ++1 136 + +fn=(3472) +360 60 ++1 48 +cfn=(3004) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_valptr() const +calls=12 238 +* 336 +* 24 + +fn=(4954) std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >* std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Alloc_node::operator()<Dune::UGGridBoundarySegment<2> const&>(Dune::UGGridBoundarySegment<2> const&) const +546 21952 ++2 15680 +cfi=(286) +cfn=(4950) +calls=3136 74 +* 21952 +* 9408 +cfn=(4956) std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >* std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_create_node<Dune::UGGridBoundarySegment<2> const&>(Dune::UGGridBoundarySegment<2> const&) +calls=3136 +80 +* 959879 +* 12544 + +fn=(4960) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_get_Node_allocator() +566 50176 ++1 37632 + +fn=(5148) +1010 16 ++1 12 +cfn=(5150) std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >::_Rb_tree_const_iterator(std::_Rb_tree_node_base const*) +calls=2 345 +* 22 +* 12 + +fn=(5150) +345 660 ++1 792 + +fn=(8648) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Rb_tree_impl<std::less<Dune::UGGridBoundarySegment<2> >, true>::~_Rb_tree_impl() +673 8 +cfi=(236) +cfn=(8650) std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::~allocator() +calls=1 153 +* 18 +* 3 + +fn=(2178) std::_Rb_tree_key_compare<std::less<QuadratureRuleKey> >::_Rb_tree_key_compare() +146 8 ++4 6 + +fn=(2180) std::_Rb_tree_header::_Rb_tree_header() +173 70 ++2 28 ++1 42 +cfn=(2182) std::_Rb_tree_header::_M_reset() +calls=14 +30 +* 238 ++1 42 + +fn=(2188) std::_Rb_tree<QuadratureRuleKey, std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> >, std::_Select1st<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > >, std::less<QuadratureRuleKey>, std::allocator<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > > >::_Rb_tree_impl<std::less<QuadratureRuleKey>, true>::_Rb_tree_impl() +680 5 ++4 3 +cfi=(236) +cfn=(2190) std::allocator<std::_Rb_tree_node<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 1> > > >::allocator() +calls=1 138 +* 18 +* 3 +cfn=(2178) +calls=1 146 +* 7 +* 4 +cfn=(2180) +calls=1 173 +* 30 ++1 3 + +fn=(2324) +939 40 +cfn=(2326) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_Rb_tree_impl<std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, true>::_Rb_tree_impl() +calls=5 680 +* 365 +* 15 + +fn=(2824) +394 160 ++1 256 + +fn=(2934) +744 80 ++1 80 + +fn=(2974) void std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_construct_node<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +609 208 ++4 64 +cfi=(293) +cfn=(2888) +calls=16 174 +* 128 ++1 48 +cfi=(286) +cfn=(2956) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2958) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2960) +calls=16 74 +* 112 +* 64 +cfn=(2976) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_valptr() +calls=16 234 +* 448 +* 64 +cfn=(2966) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_get_Node_allocator() +calls=16 -48 +* 112 +* 96 +cfi=(266) +cfn=(2982) +calls=16 482 +* 7065 ++10 128 + +fn=(3004) +238 1470 ++1 1176 +cfi=(296) +cfn=(3006) +calls=294 76 +* 4998 +* 588 + +fn=(3114) std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_M_valptr() const +238 680 ++1 544 +cfi=(296) +cfn=(3116) +calls=136 76 +* 2312 +* 272 + +fn=(3282) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::size() const +1042 12 ++1 12 + +fn=(3304) +793 68 ++1 68 + +fn=(3306) +809 100 ++1 60 +cfn=(3268) +calls=20 -43 +* 1140 +* 40 + +fn=(3356) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_erase(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*) +1907 6 ++4 10 ++2 12 +cfn=(3160) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_right(std::_Rb_tree_node_base*) +calls=4 797 +* 32 +* 20 +cfn=(3357) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_erase(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*)'2 +calls=4 -6 +* 4650 ++1 12 +cfn=(3302) +calls=4 789 +* 32 +* 4 ++1 20 +cfn=(3358) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_drop_node(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*) +calls=4 648 +* 1391 ++1 8 +-5 4 ++7 3 + +fn=(3357) +1907 96 ++4 56 ++2 36 +cfn=(3160) +calls=12 797 +* 96 +* 60 +cfn=(3357) +calls=12 -6 +* 4393 ++1 36 +cfn=(3302) +calls=12 789 +* 96 +* 12 ++1 60 +cfn=(3358) +calls=12 648 +* 4018 ++1 24 +-5 12 ++7 48 + +fn=(3358) +648 96 ++2 80 +cfn=(3360) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_destroy_node(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*) +calls=16 -13 +* 2671 ++1 80 +cfn=(3366) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_put_node(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*) +calls=16 -68 +* 2434 ++1 48 + +fn=(4910) std::_Rb_tree_key_compare<std::less<Dune::UGGridBoundarySegment<2> > >::_Rb_tree_key_compare() +146 4 ++4 3 + +fn=(4938) std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >::_Rb_tree_iterator(std::_Rb_tree_node_base*) +273 97700 ++1 117240 + +fn=(4990) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_S_key(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > const*) +767 437048 ++18 163893 +cfn=(4992) std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >::_M_valptr() const +calls=54631 238 +* 1529668 +* 273155 +cfi=(297) +cfn=(4932) std::_Identity<Dune::UGGridBoundarySegment<2> >::operator()(Dune::UGGridBoundarySegment<2> const&) const +calls=54631 1139 +* 437048 ++1 273155 + +fn=(5042) +1203 27072 ++3 6016 ++1 9024 +cfn=(5044) std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >::operator++() +calls=3008 364 +* 104987 ++1 15040 +cfn=(5052) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_erase_aux(std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >) +calls=3008 2504 +* 995500 ++1 9024 +cfn=(5072) std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >::_M_const_cast() const +calls=3008 352 +* 93248 ++1 15040 + +fn=(5158) std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> >::operator*() const +356 1280 ++1 1024 +cfn=(4992) +calls=256 238 +* 7168 +* 512 + +fn=(4904) +680 5 ++4 3 +cfi=(236) +cfn=(4906) std::allocator<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> > >::allocator() +calls=1 138 +* 18 +* 3 +cfn=(4910) +calls=1 146 +* 7 +* 4 +cfn=(2180) +calls=1 173 +* 30 ++1 3 + +fn=(2186) +939 8 +cfn=(2188) +calls=1 680 +* 73 +* 3 + +fn=(2822) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_lower_bound(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const*, std::_Rb_tree_node_base const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +1940 192 ++4 126 ++1 188 +cfn=(3112) +calls=47 767 +* 2679 +* 282 +cfi=(297) +cfn=(3120) +calls=47 385 +* 3566 +* 141 ++1 90 +cfn=(3180) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_left(std::_Rb_tree_node_base const*) +calls=18 793 +* 144 +* 36 ++2 87 +cfn=(3128) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_S_right(std::_Rb_tree_node_base const*) +calls=29 801 +* 232 +* 29 +-4 29 ++5 80 +cfn=(2814) +calls=16 345 +* 176 +* 16 ++1 112 + +fn=(2838) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_end() const +759 276 ++1 276 + +fn=(2954) +2452 224 ++3 48 +cfi=(286) +cfn=(2956) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2958) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2960) +calls=16 74 +* 112 +* 96 +cfn=(2962) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >* std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_create_node<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=16 628 +* 14137 +* 16 ++4 48 +cfn=(3002) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_S_key(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const*) +calls=16 767 +* 912 +* 96 +cfn=(3012) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 2187 +* 5572 +* 32 ++2 48 ++1 96 +cfn=(3028) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*) +calls=16 2354 +* 3020 +* 16 ++10 128 + +fn=(2964) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_get_node() +579 80 ++1 48 +cfn=(2966) +calls=16 -14 +* 112 +* 48 +cfi=(266) +cfn=(2968) +calls=16 443 +* 3984 +* 32 + +fn=(3020) +1006 32 ++1 24 +cfn=(2938) +calls=4 273 +* 44 +* 24 + +fn=(3028) +2354 208 ++4 32 +-1 33 +cfn=(2932) +calls=11 755 +* 88 +* 22 ++1 28 +cfn=(3156) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_S_key(std::_Rb_tree_node_base const*) +calls=7 809 +* 469 +* 28 +cfn=(3002) +calls=7 767 +* 399 +* 28 +cfi=(297) +cfn=(3120) +calls=7 385 +* 528 +* 39 +-1 7 ++5 14 +-1 35 +cob=(2) +cfi=(18) +cfn=(3030) +calls=7 0 +* 316 +-4 9 ++5 18 +-1 45 +cob=(2) +cfi=(18) +cfn=(3030) +calls=9 0 +* 194 ++2 80 ++1 80 +cfn=(2938) +calls=16 273 +* 176 +* 16 ++1 128 + +fn=(3058) std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_Rb_tree_iterator(std::_Rb_tree_node_base*) +273 205 ++1 246 + +fn=(3128) +801 116 ++1 116 + +fn=(3130) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_S_right(std::_Rb_tree_node_base const*) +801 288 ++1 288 + +fn=(3160) +797 180 ++1 180 + +fn=(3236) +348 15 ++1 21 + +fn=(3294) +277 305 ++1 244 +cfn=(3254) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >::_M_valptr() +calls=61 -44 +* 1708 +* 122 + +fn=(3296) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_S_left(std::_Rb_tree_node_base*) +789 124 ++1 124 + +fn=(3300) +1002 116 ++1 58 + +fn=(3312) +1002 32 ++1 16 + +fn=(3324) std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::operator--() +300 30 ++2 24 +cob=(2) +cfi=(18) +cfn=(3326) +calls=6 0 +* 104 +* 12 ++1 6 ++1 12 + +fn=(3372) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree_impl<std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, true>::~_Rb_tree_impl() +673 8 +cfi=(236) +cfn=(3374) std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::~allocator() +calls=1 153 +* 18 +* 3 + +fn=(4916) +1264 5 ++2 3 +cfn=(4918) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_begin() +calls=1 744 +* 8 +* 5 +cfn=(4920) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_erase(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*) +calls=1 1907 +* 11 ++1 4 +cfn=(2182) +calls=1 206 +* 17 ++1 3 + +fn=(5066) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_put_node(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*) +583 18816 ++1 9408 +cfn=(4960) +calls=3136 -18 +* 21952 +* 18816 +cfi=(266) +cfn=(5068) +calls=3136 469 +* 366254 +* 9408 + +fn=(2314) +680 25 ++4 15 +cfi=(236) +cfn=(2316) std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::allocator() +calls=5 138 +* 90 +* 15 +cfn=(2320) +calls=5 146 +* 35 +* 20 +cfn=(2180) +calls=5 173 +* 150 ++1 15 + +fn=(2812) +1018 384 ++1 288 +cfn=(2814) +calls=48 345 +* 528 +* 288 + +fn=(2816) +2567 160 ++3 48 +cfn=(2818) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_end() const +calls=16 759 +* 128 +* 64 +cfn=(2820) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_begin() const +calls=16 748 +* 128 +* 112 +cfn=(2822) +calls=16 1940 +* 8205 +* 16 ++1 48 +cfn=(2812) +calls=16 1018 +* 496 +* 96 +cfn=(2824) +calls=16 394 +* 208 ++2 32 +-1 56 +cfn=(3162) +calls=14 809 +* 938 +* 70 +cfi=(297) +cfn=(3120) +calls=14 385 +* 1055 +* 28 ++1 48 +cfn=(2812) +calls=16 1018 +* 496 +* 16 ++1 112 + +fn=(2930) +1281 112 ++1 48 +cfn=(2932) +calls=16 755 +* 128 +* 64 +cfn=(2934) +calls=16 744 +* 128 +* 112 +cfn=(2936) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_lower_bound(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*, std::_Rb_tree_node_base*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 1924 +* 4150 +* 64 + +fn=(2932) +755 188 ++1 188 + +fn=(3034) +277 120 ++1 96 +cfn=(2976) +calls=24 -44 +* 672 +* 48 + +fn=(3060) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::begin() +1006 72 ++1 54 +cfn=(3058) +calls=9 273 +* 99 +* 54 + +fn=(3108) std::_Rb_tree_const_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_Rb_tree_const_iterator(std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +348 80 ++1 112 + +fn=(3188) +1018 872 ++1 654 +cfn=(3190) +calls=109 345 +* 1199 +* 654 + +fn=(3196) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_begin() const +748 164 ++3 82 ++1 82 + +fn=(3200) +394 410 ++1 656 + +fn=(3228) +273 360 ++1 432 + +fn=(3318) +801 84 ++1 84 + +fn=(3322) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_rightmost() +736 16 ++1 16 + +fn=(5058) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_drop_node(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*) +648 18816 ++2 15680 +cfn=(5060) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_destroy_node(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*) +calls=3136 -13 +* 247744 ++1 15680 +cfn=(5066) +calls=3136 -68 +* 444654 ++1 9408 + +fn=(5078) +1038 4 ++1 6 + +fn=(8646) +994 5 ++1 3 +cfn=(4918) +calls=1 744 +* 8 +* 5 +cfn=(4920) +calls=1 1907 +* 39353 +* 3 +cfn=(8648) +calls=1 673 +* 29 +* 3 + +fn=(3156) +809 425 ++1 255 +cfn=(3002) +calls=85 -43 +* 4845 +* 170 + +fn=(3184) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_S_left(std::_Rb_tree_node_base const*) +793 320 ++1 320 + +fn=(3194) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_end() const +759 164 ++1 164 + +fn=(3238) +2452 42 ++3 9 +cfi=(286) +cfn=(2956) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2958) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2960) +calls=3 74 +* 21 +* 18 +cfn=(3240) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >* std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_create_node<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=3 628 +* 3671 +* 3 ++4 9 +cfn=(3268) +calls=3 767 +* 171 +* 18 +cfn=(3278) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=3 2187 +* 853 +* 6 ++2 9 ++1 18 +cfn=(3292) +calls=3 2354 +* 726 +* 3 ++10 24 + +fn=(3254) +234 320 ++1 256 +cfi=(296) +cfn=(3256) +calls=64 72 +* 1088 +* 128 + +fn=(3270) +238 605 ++1 484 +cfi=(296) +cfn=(3272) +calls=121 76 +* 2057 +* 242 + +fn=(3278) +2187 33 ++4 9 +cfn=(3280) +calls=3 352 +* 93 +* 3 ++4 12 +cfn=(3222) +calls=3 755 +* 24 +* 12 ++2 9 +cfn=(3282) +calls=3 1042 +* 24 ++1 14 +cfn=(3322) +calls=2 736 +* 16 +* 6 +cfn=(3306) +calls=2 809 +* 134 +* 12 +cfi=(297) +cfn=(3120) +calls=2 385 +* 151 +* 9 +-1 6 ++2 6 +cfn=(3322) +calls=2 736 +* 16 +* 14 +cfi=(298) +cfn=(3158) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node_base* const&, std::_Rb_tree_node_base*&) +calls=2 325 +* 54 +* 6 ++2 5 +cfn=(3284) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=1 2085 +* 163 +* 1 ++37 21 + +fn=(3344) std::_Rb_tree_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::operator--() +300 25 ++2 20 +cob=(2) +cfi=(18) +cfn=(3326) +calls=5 0 +* 86 +* 10 ++1 5 ++1 10 + +fn=(3360) +637 112 ++5 48 +cfn=(3088) std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::_M_valptr() +calls=16 234 +* 448 +* 64 +cfn=(3078) +calls=16 -76 +* 112 +* 48 +cfi=(266) +cfn=(3362) +calls=16 495 +* 1759 ++3 80 + +fn=(3366) +583 96 ++1 48 +cfn=(3078) +calls=16 -18 +* 112 +* 96 +cfi=(266) +cfn=(3368) +calls=16 469 +* 2034 +* 48 + +fn=(4918) +744 24584 ++1 24584 + +fn=(4930) +2139 55296 ++9 30720 +cfi=(297) +cfn=(4932) +calls=6144 1139 +* 49152 +* 6144 +-1 24576 +cfn=(4934) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_get_insert_unique_pos(Dune::UGGridBoundarySegment<2> const&) +calls=6144 -62 +* 34908222 +* 12288 ++3 18432 ++2 15680 +cfn=(4948) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Alloc_node::_Alloc_node(std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >&) +calls=3136 538 +* 34496 ++3 3136 +-2 9408 +cfi=(286) +cfn=(4950) +calls=3136 74 +* 21952 +* 25088 +cfn=(4952) std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> > std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_insert_<Dune::UGGridBoundarySegment<2> const&, std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, Dune::UGGridBoundarySegment<2> const&, std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_Alloc_node&) +calls=3136 1797 +* 3510701 +* 3136 ++2 18816 +cfi=(298) +cfn=(4980) std::pair<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >, bool>::pair<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >, bool, true>(std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >&&, bool&&) +calls=3136 341 +* 112896 +* 9408 ++3 18048 +cfn=(4938) +calls=3008 273 +* 33088 +* 18048 +cfi=(298) +cfn=(4980) +calls=3008 341 +* 108288 +* 6016 ++1 30720 + +fn=(4936) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_end() +755 37120 ++1 37120 + +fn=(5036) std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >::operator--() +300 21215 ++2 16972 +cob=(2) +cfi=(18) +cfn=(3326) +calls=4243 0 +* 96560 +* 8486 ++1 4243 ++1 8486 + +fn=(5072) +352 24064 ++1 18048 +cfn=(4938) +calls=3008 -80 +* 33088 +* 18048 + +fn=(2326) +680 25 ++4 15 +cfi=(236) +cfn=(2328) std::allocator<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::allocator() +calls=5 138 +* 90 +* 15 +cfn=(2320) +calls=5 146 +* 35 +* 20 +cfn=(2180) +calls=5 173 +* 150 ++1 15 + +fn=(2832) +1018 1272 ++1 954 +cfn=(2834) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Rb_tree_const_iterator(std::_Rb_tree_node_base const*) +calls=159 345 +* 1749 +* 954 + +fn=(2842) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_lower_bound(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const*, std::_Rb_tree_node_base const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +1940 828 ++4 442 ++1 608 +cfn=(3002) +calls=152 767 +* 8664 +* 912 +cfi=(297) +cfn=(3120) +calls=152 385 +* 11769 +* 456 ++1 400 +cfn=(3184) +calls=80 793 +* 640 +* 160 ++2 216 +cfn=(3130) +calls=72 801 +* 576 +* 72 +-4 72 ++5 345 +cfn=(2834) +calls=69 345 +* 759 +* 69 ++1 483 + +fn=(2844) +394 630 ++1 1008 + +fn=(3002) +767 2256 ++18 846 +cfn=(3004) +calls=282 238 +* 7896 +* 1410 +cfi=(297) +cfn=(3010) std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::operator()(std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) const +calls=282 1155 +* 2256 ++1 1410 + +fn=(3012) +2187 176 ++4 48 +cfn=(3014) std::_Rb_tree_const_iterator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_const_cast() const +calls=16 352 +* 496 +* 16 ++4 64 +cfn=(2932) +calls=16 755 +* 128 +* 64 ++2 24 +cfn=(3016) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::size() const +calls=8 1042 +* 64 ++1 32 +cfn=(3154) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_rightmost() +calls=4 736 +* 32 +* 12 +cfn=(3156) +calls=4 809 +* 268 +* 24 +cfi=(297) +cfn=(3120) +calls=4 385 +* 301 +* 20 +-1 16 ++2 12 +cfn=(3154) +calls=4 736 +* 32 +* 28 +cfi=(298) +cfn=(3158) +calls=4 325 +* 108 +* 12 ++2 20 +cfn=(3018) +calls=4 2085 +* 652 +* 4 ++2 32 +cfn=(3156) +calls=8 809 +* 536 +* 40 +cfi=(297) +cfn=(3120) +calls=8 385 +* 606 +* 16 ++3 16 ++1 32 +cfn=(3314) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_leftmost() +calls=8 728 +* 64 +* 40 ++1 9 +cfn=(3314) +calls=3 728 +* 24 +* 12 +cfn=(3314) +calls=3 728 +* 24 +* 18 +cfi=(298) +cfn=(3316) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node_base*&, std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node_base*&, std::_Rb_tree_node_base*&) +calls=3 341 +* 108 +* 9 ++1 20 +cfn=(3344) +calls=5 300 +* 156 +* 15 +cfn=(3156) +calls=5 809 +* 335 +* 30 +cfi=(297) +cfn=(3120) +calls=5 385 +* 379 +* 10 ++2 15 +cfn=(3152) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_S_right(std::_Rb_tree_node_base*) +calls=5 797 +* 40 +* 20 ++1 21 +cfi=(298) +cfn=(3158) +calls=3 325 +* 81 +* 9 ++2 12 +cfi=(298) +cfn=(3316) +calls=2 341 +* 72 +* 6 ++24 112 + +fn=(3052) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +2085 160 ++4 48 +cfn=(3054) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_begin() +calls=16 744 +* 128 +* 16 ++1 48 +cfn=(3056) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_end() +calls=16 755 +* 128 +* 16 ++1 16 ++1 189 ++2 94 ++1 188 +cfn=(3112) +calls=47 767 +* 2679 +* 235 +cfi=(297) +cfn=(3120) +calls=47 385 +* 3566 +* 47 ++1 148 +cfn=(3302) +calls=18 789 +* 144 +* 105 +cfn=(3160) +calls=29 797 +* 232 +* 47 +-4 47 ++6 80 +cfn=(3058) +calls=16 273 +* 176 ++1 32 ++2 27 +cfn=(3060) +calls=9 1006 +* 279 +* 54 +cfn=(3062) std::operator==(std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&, std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&) +calls=9 315 +* 117 +* 18 ++1 18 +cfi=(298) +cfn=(3064) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*&, std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*&, std::_Rb_tree_node_base*&) +calls=3 341 +* 108 +* 9 ++2 18 +cfn=(3324) +calls=6 300 +* 188 ++2 52 +cfn=(3162) +calls=13 809 +* 871 +* 78 +cfi=(297) +cfn=(3120) +calls=13 385 +* 1000 +* 26 ++1 78 +cfi=(298) +cfn=(3064) +calls=13 341 +* 468 +* 39 ++2 112 + +fn=(3054) +744 68 ++1 68 + +fn=(3076) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_get_node() +579 80 ++1 48 +cfn=(3078) +calls=16 -14 +* 112 +* 48 +cfi=(266) +cfn=(3080) +calls=16 443 +* 3348 +* 32 + +fn=(3154) +736 32 ++1 32 + +fn=(3180) +793 72 ++1 72 + +fn=(3190) +345 750 ++1 900 + +fn=(3222) +755 156 ++1 156 + +fn=(3234) +315 165 ++1 264 + +fn=(3240) +628 30 ++2 9 +cfn=(3242) +calls=3 -51 +* 792 +* 3 ++1 9 +cfi=(286) +cfn=(2956) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2958) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2960) +calls=3 74 +* 21 +* 21 +cfn=(3252) void std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_construct_node<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*, std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>&&, std::tuple<>&&) +calls=3 -22 +* 2702 ++1 3 ++1 15 + +fn=(3244) +566 24 ++1 18 + +fn=(3252) +609 39 ++4 12 +cfi=(293) +cfn=(2888) +calls=3 174 +* 24 ++1 9 +cfi=(286) +cfn=(2956) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2958) +calls=3 74 +* 21 +* 12 +cfi=(286) +cfn=(2960) +calls=3 74 +* 21 +* 12 +cfn=(3254) +calls=3 234 +* 84 +* 12 +cfn=(3244) +calls=3 -48 +* 21 +* 18 +cfi=(266) +cfn=(3260) +calls=3 482 +* 2360 ++10 24 + +fn=(3284) +2085 10 ++4 3 +cfn=(3224) +calls=1 744 +* 8 +* 1 ++1 3 +cfn=(3222) +calls=1 755 +* 8 +* 1 ++1 1 ++1 3 ++6 5 +cfn=(3228) +calls=1 273 +* 11 ++1 2 ++2 3 +cfn=(3286) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::begin() +calls=1 1006 +* 31 +* 6 +cfn=(3234) +calls=1 315 +* 13 +* 2 ++1 6 +cfi=(298) +cfn=(3288) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*&, std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*&, std::_Rb_tree_node_base*&) +calls=1 341 +* 36 +* 3 ++7 7 + +fn=(4920) +1907 12 ++4 16 ++2 18 +cfn=(5030) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_S_right(std::_Rb_tree_node_base*) +calls=6 797 +* 48 +* 30 +cfn=(4921) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_erase(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*)'2 +calls=6 -6 +* 37560 ++1 18 +cfn=(5034) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_S_left(std::_Rb_tree_node_base*) +calls=6 789 +* 48 +* 6 ++1 30 +cfn=(5058) +calls=6 648 +* 1554 ++1 12 +-5 6 ++7 6 + +fn=(4921) +1907 768 ++4 500 ++2 366 +cfn=(5030) +calls=122 797 +* 976 +* 610 +cfn=(4921) +calls=122 -6 +* 83336 ++1 366 +cfn=(5034) +calls=122 789 +* 976 +* 122 ++1 610 +cfn=(5058) +calls=122 648 +* 31516 ++1 244 +-5 122 ++7 384 + +fn=(4952) +1797 43904 ++10 6272 +-1 9408 +cfn=(4936) +calls=3136 755 +* 25088 +* 6272 ++1 12540 +cfn=(5032) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_S_key(std::_Rb_tree_node_base const*) +calls=3135 809 +* 210045 +* 18810 +cfi=(297) +cfn=(4932) +calls=3135 1139 +* 25080 +* 12540 +cfi=(297) +cfn=(4998) std::less<Dune::UGGridBoundarySegment<2> >::operator()(Dune::UGGridBoundarySegment<2> const&, Dune::UGGridBoundarySegment<2> const&) const +calls=3135 385 +* 1764825 +* 10862 +-1 1680 ++4 5040 +cfi=(286) +cfn=(4950) +calls=1680 74 +* 11760 +-4 1456 ++4 4368 +cfi=(286) +cfn=(4950) +calls=1456 74 +* 10192 +* 15680 +cfn=(4954) +calls=3136 546 +* 1041415 +* 3136 ++3 6272 +-1 15680 +cob=(2) +cfi=(18) +cfn=(3030) +calls=3136 0 +* 154296 ++2 15680 ++1 15680 +cfn=(4938) +calls=3136 273 +* 34496 +* 3136 ++1 25088 + +fn=(4968) void std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_construct_node<Dune::UGGridBoundarySegment<2> const&>(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*, Dune::UGGridBoundarySegment<2> const&) +609 28224 ++4 12544 +cfi=(293) +cfn=(2888) +calls=3136 174 +* 25088 ++1 9408 +cfi=(286) +cfn=(4950) +calls=3136 74 +* 21952 +* 12544 +cfn=(4970) std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >::_M_valptr() +calls=3136 234 +* 87808 +* 12544 +cfn=(4960) +calls=3136 -48 +* 21952 +* 12544 +cfi=(266) +cfn=(4976) +calls=3136 482 +* 200704 ++10 18816 + +fn=(4970) +234 31360 ++1 25088 +cfi=(296) +cfn=(4972) +calls=6272 72 +* 106624 +* 12544 + +fn=(4988) +348 45760 ++1 64064 + +fn=(4992) +238 274435 ++1 219548 +cfi=(296) +cfn=(4994) +calls=54887 76 +* 933079 +* 109774 + +fn=(5034) +789 69712 ++1 69712 + +fn=(5044) +364 16320 ++2 13056 +cob=(2) +cfi=(18) +cfn=(5046) +calls=3264 0 +* 67755 +* 6528 ++1 3264 ++1 6528 + +fn=(5052) +2504 18048 ++6 6016 +-1 12032 +cob=(2) +cfi=(18) +cfn=(5054) +calls=3008 0 +* 198380 +* 3008 ++2 15040 +cfn=(5058) +calls=3008 648 +* 718912 ++1 15040 ++1 9024 + +fn=(5156) std::operator!=(std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> > const&, std::_Rb_tree_const_iterator<Dune::UGGridBoundarySegment<2> > const&) +398 1290 ++1 2064 + +fn=(2820) +748 64 ++3 32 ++1 32 + +fn=(2834) +345 1140 ++1 1368 + +fn=(2836) +2567 690 ++3 207 +cfn=(2838) +calls=69 759 +* 552 +* 276 +cfn=(2840) +calls=69 748 +* 552 +* 483 +cfn=(2842) +calls=69 1940 +* 27471 +* 69 ++1 207 +cfn=(2832) +calls=69 1018 +* 2139 +* 414 +cfn=(2844) +calls=69 394 +* 897 ++2 138 +-1 244 +cfn=(3156) +calls=61 809 +* 4087 +* 305 +cfi=(297) +cfn=(3120) +calls=61 385 +* 4940 +* 122 ++1 99 +cfn=(2832) +calls=33 1018 +* 1023 +* 69 ++1 483 + +fn=(2936) +1924 192 ++4 76 ++1 88 +cfn=(3002) +calls=22 767 +* 1254 +* 132 +cfi=(297) +cfn=(3120) +calls=22 385 +* 1654 +* 66 ++1 45 +cfn=(3308) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_S_left(std::_Rb_tree_node_base*) +calls=9 789 +* 72 +* 18 ++2 39 +cfn=(3152) +calls=13 797 +* 104 +* 13 +-4 13 ++5 80 +cfn=(2938) +calls=16 273 +* 176 +* 16 ++1 112 + +fn=(2962) +628 160 ++2 48 +cfn=(2964) +calls=16 -51 +* 4304 +* 16 ++1 48 +cfi=(286) +cfn=(2956) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2958) +calls=16 74 +* 112 +* 64 +cfi=(286) +cfn=(2960) +calls=16 74 +* 112 +* 112 +cfn=(2974) +calls=16 -22 +* 8889 ++1 16 ++1 80 + +fn=(2966) +566 128 ++1 96 + +fn=(2976) +234 200 ++1 160 +cfi=(296) +cfn=(2978) +calls=40 72 +* 680 +* 80 + +fn=(3016) +1042 32 ++1 32 + +fn=(3072) std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >* std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Alloc_node::operator()<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +546 112 ++2 80 +cfi=(286) +cfn=(2882) +calls=16 74 +* 112 +* 48 +cfn=(3074) std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >* std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_create_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 +80 +* 10172 +* 64 + +fn=(3074) +628 96 ++2 48 +cfn=(3076) +calls=16 -51 +* 3668 +* 16 ++1 48 +cfi=(286) +cfn=(2882) +calls=16 74 +* 112 +* 96 +cfn=(3086) void std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_construct_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>(std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=16 -22 +* 6040 ++1 16 ++1 32 + +fn=(3112) +767 1088 ++18 408 +cfn=(3114) +calls=136 238 +* 3808 +* 680 +cfi=(297) +cfn=(3050) std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::operator()(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const +calls=136 1139 +* 1088 ++1 680 + +fn=(3152) +797 72 ++1 72 + +fn=(3226) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_M_lower_bound(std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*, std::_Rb_tree_node_base*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +1924 384 ++4 180 ++1 232 +cfn=(3268) +calls=58 767 +* 3306 +* 348 +cfi=(297) +cfn=(3120) +calls=58 385 +* 4657 +* 174 ++1 155 +cfn=(3296) +calls=31 789 +* 248 +* 62 ++2 81 +cfn=(3320) std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> > >::_S_right(std::_Rb_tree_node_base*) +calls=27 797 +* 216 +* 27 +-4 27 ++5 160 +cfn=(3228) +calls=32 273 +* 352 +* 32 ++1 224 + +fn=(3314) +728 56 ++1 56 + +fn=(3354) +994 5 ++1 3 +cfn=(3054) +calls=1 744 +* 8 +* 5 +cfn=(3356) +calls=1 1907 +* 6204 +* 3 +cfn=(3372) +calls=1 673 +* 29 +* 3 + +fn=(4942) std::operator==(std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> > const&, std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> > const&) +315 21220 ++1 33952 + +fn=(4948) +538 15680 ++1 18816 + +fn=(4958) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::_M_get_node() +579 15680 ++1 9408 +cfn=(4960) +calls=3136 -14 +* 21952 +* 9408 +cfi=(266) +cfn=(4962) +calls=3136 443 +* 342087 +* 6272 + +fn=(5060) +637 21952 ++5 9408 +cfn=(4970) +calls=3136 234 +* 87808 +* 12544 +cfn=(4960) +calls=3136 -76 +* 21952 +* 9408 +cfi=(266) +cfn=(5062) +calls=3136 495 +* 68992 ++3 15680 + +fn=(5154) +1018 1040 ++1 780 +cfn=(5150) +calls=130 345 +* 1430 +* 780 + +fn=(5162) +1042 12 ++1 12 + +fn=(2172) std::_Rb_tree<QuadratureRuleKey, std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> >, std::_Select1st<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > >, std::less<QuadratureRuleKey>, std::allocator<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > > >::_Rb_tree_impl<std::less<QuadratureRuleKey>, true>::_Rb_tree_impl() +680 5 ++4 3 +cfi=(236) +cfn=(2174) std::allocator<std::_Rb_tree_node<std::pair<QuadratureRuleKey const, Dune::QuadratureRule<double, 2> > > >::allocator() +calls=1 138 +* 18 +* 3 +cfn=(2178) +calls=1 146 +* 7 +* 4 +cfn=(2180) +calls=1 173 +* 30 ++1 3 + +fn=(2182) +206 60 ++2 30 ++1 45 ++1 45 ++1 30 ++1 45 + +fn=(3014) +352 128 ++1 96 +cfn=(2938) +calls=16 -80 +* 176 +* 96 + +fn=(3062) +315 45 ++1 72 + +fn=(3070) std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_M_insert_<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::_Identity<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::_Alloc_node&) +1797 224 ++10 32 +-1 48 +cfn=(3056) +calls=16 755 +* 128 +* 32 ++1 60 +cfn=(3162) +calls=15 809 +* 1005 +* 90 +cfi=(297) +cfn=(3050) +calls=15 1139 +* 120 +* 60 +cfi=(297) +cfn=(3120) +calls=15 385 +* 1144 +* 55 +-1 7 ++4 21 +cfi=(286) +cfn=(2882) +calls=7 74 +* 49 +-4 9 ++4 27 +cfi=(286) +cfn=(2882) +calls=9 74 +* 63 +* 80 +cfn=(3072) +calls=16 546 +* 10588 +* 16 ++3 32 +-1 80 +cob=(2) +cfi=(18) +cfn=(3030) +calls=16 0 +* 751 ++2 80 ++1 80 +cfn=(3058) +calls=16 273 +* 176 +* 16 ++1 128 + +fn=(3086) +609 144 ++4 64 +cfi=(293) +cfn=(2888) +calls=16 174 +* 128 ++1 48 +cfi=(286) +cfn=(2882) +calls=16 74 +* 112 +* 64 +cfn=(3088) +calls=16 234 +* 448 +* 64 +cfn=(3078) +calls=16 -48 +* 112 +* 64 +cfi=(266) +cfn=(3094) +calls=16 482 +* 4696 ++10 96 + +fn=(3192) +2567 410 ++3 123 +cfn=(3194) +calls=41 759 +* 328 +* 164 +cfn=(3196) +calls=41 748 +* 328 +* 287 +cfn=(3198) +calls=41 1940 +* 7828 +* 41 ++1 123 +cfn=(3188) +calls=41 1018 +* 1271 +* 246 +cfn=(3200) +calls=41 394 +* 533 ++2 82 +-1 64 +cfn=(3306) +calls=16 809 +* 1072 +* 80 +cfi=(297) +cfn=(3120) +calls=16 385 +* 1342 +* 32 ++1 81 +cfn=(3188) +calls=27 1018 +* 837 +* 41 ++1 287 + +fn=(3308) +789 36 ++1 36 + +fn=(4934) +2085 61440 ++4 18432 +cfn=(4918) +calls=6144 744 +* 49152 +* 6144 ++1 18432 +cfn=(4936) +calls=6144 755 +* 49152 +* 6144 ++1 6144 ++1 154491 ++2 90706 ++1 181412 +cfn=(4990) +calls=45353 767 +* 2585121 +* 226765 +cfi=(297) +cfn=(4998) +calls=45353 385 +* 25564950 +* 45353 ++1 142606 +cfn=(5034) +calls=17300 789 +* 138400 +* 101459 +cfn=(5030) +calls=28053 797 +* 224424 +* 45353 +-4 45353 ++6 30720 +cfn=(4938) +calls=6144 273 +* 67584 ++1 12288 ++2 12732 +cfn=(4940) std::_Rb_tree<Dune::UGGridBoundarySegment<2>, Dune::UGGridBoundarySegment<2>, std::_Identity<Dune::UGGridBoundarySegment<2> >, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >::begin() +calls=4244 1006 +* 131564 +* 25464 +cfn=(4942) +calls=4244 315 +* 55172 +* 8488 ++1 6 +cfi=(298) +cfn=(4944) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*&, std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*&, std::_Rb_tree_node_base*&) +calls=1 341 +* 36 +* 3 ++2 12729 +cfn=(5036) +calls=4243 300 +* 155962 ++2 24572 +cfn=(5032) +calls=6143 809 +* 411581 +* 36858 +cfi=(297) +cfn=(4998) +calls=6143 385 +* 3856373 +* 12286 ++1 18810 +cfi=(298) +cfn=(4944) +calls=3135 341 +* 112860 +* 9405 ++1 21056 +cfi=(298) +cfn=(5038) std::pair<std::_Rb_tree_node_base*, std::_Rb_tree_node_base*>::pair<std::_Rb_tree_node_base*&, true>(std::_Rb_tree_node_base*&, std::_Rb_tree_node_base* const&) +calls=3008 311 +* 81216 +* 6016 ++1 43008 + +fn=(5030) +797 112724 ++1 112724 + +fn=(2170) +939 8 +cfn=(2172) +calls=1 680 +* 73 +* 3 + +fn=(2654) +680 5 ++4 3 +cfi=(236) +cfn=(2656) std::allocator<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::allocator() +calls=1 138 +* 18 +* 3 +cfn=(2320) +calls=1 146 +* 7 +* 4 +cfn=(2180) +calls=1 173 +* 30 ++1 3 + +fn=(2818) +759 64 ++1 64 + +fn=(2942) +1014 128 ++1 96 +cfn=(2938) +calls=16 273 +* 176 +* 96 + +fn=(2944) +315 100 ++1 160 + +fn=(2952) +348 80 ++1 112 + +fn=(3048) +2139 144 ++9 80 +cfi=(297) +cfn=(3050) +calls=16 1139 +* 128 +* 16 +-1 64 +cfn=(3052) +calls=16 -62 +* 12129 +* 32 ++3 48 ++2 80 +cfn=(3068) +calls=16 538 +* 176 ++3 16 +-2 48 +cfi=(286) +cfn=(2882) +calls=16 74 +* 112 +* 128 +cfn=(3070) +calls=16 1797 +* 15201 +* 16 ++2 96 +cfi=(298) +cfn=(3098) std::pair<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, bool>::pair<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, bool, true>(std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&&, bool&&) +calls=16 341 +* 576 +* 48 ++4 80 + +fn=(3056) +755 128 ++1 128 + +fn=(3088) +234 160 ++1 128 +cfi=(296) +cfn=(3090) +calls=32 72 +* 544 +* 64 + +fn=(3220) +1281 224 ++1 96 +cfn=(3222) +calls=32 755 +* 256 +* 128 +cfn=(3224) +calls=32 744 +* 256 +* 224 +cfn=(3226) +calls=32 1924 +* 10865 +* 128 + +fn=(3232) +1014 256 ++1 192 +cfn=(3228) +calls=32 273 +* 352 +* 192 + +fn=(3286) +1006 8 ++1 6 +cfn=(3228) +calls=1 273 +* 11 +* 6 + +fn=(3320) +797 108 ++1 108 + +fn=(4940) +1006 33952 ++1 25464 +cfn=(4938) +calls=4244 273 +* 46684 +* 25464 + +fn=(4956) +628 18816 ++2 9408 +cfn=(4958) +calls=3136 -51 +* 404807 +* 3136 ++1 9408 +cfi=(286) +cfn=(4950) +calls=3136 74 +* 21952 +* 18816 +cfn=(4968) +calls=3136 -22 +* 464128 ++1 3136 ++1 6272 + +fn=(5032) +809 46390 ++1 27834 +cfn=(4990) +calls=9278 -43 +* 528846 +* 18556 + +fl=(242) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridfactory.cc +fn=(4544) Dune::GridFactory<Dune::UGGrid<2> >::createBegin() +585 9 ++9 5 ++13 6 +cfi=(259) +cfn=(4546) +calls=1 934 +* 49 ++5 6 +cfi=(259) +cfn=(4550) +calls=1 934 +* 49 ++1 5 +cfi=(259) +cfn=(4554) +calls=1 934 +* 49 ++1 5 +cfi=(259) +cfn=(4558) +calls=1 934 +* 47 ++1 5 +cfi=(259) +cfn=(4562) +calls=1 934 +* 49 ++1 5 +cfi=(259) +cfn=(4566) +calls=1 934 +* 49 ++5 8 +cfi=(272) +cfn=(4476) +calls=1 6057 +* 425 ++1 3 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 2 +cfi=(350) +cfn=(4570) +calls=1 1126 +* 1231 +-1 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 97 ++2 8 + +fn=(2210) _GLOBAL__sub_I_uggridfactory.cc +632 6 +cfn=(2212) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(4886) Dune::GridFactory<Dune::UGGrid<2> >::createGrid() +218 12 ++5 4 ++18 4 +cfi=(344) +cfn=(4578) +calls=1 570 +* 8 +* 1 ++3 4 +cfi=(259) +cfn=(4568) +calls=1 915 +* 13 +* 1 ++1 6 +cfi=(348) /home/joscha/software/dune/dune-common/dune/common/parallel/communication.hh +cfn=(4888) int Dune::Communication<Dune::No_Comm>::broadcast<int>(int*, int, int) const +calls=1 +23 +* 10 ++1 7 +cfi=(259) +cfn=(4566) +calls=1 934 +* 49 ++1 4 +cfi=(259) +cfn=(4568) +calls=1 915 +* 13 +* 6 +cfi=(259) +cfn=(4890) +calls=1 1040 +* 12 +* 6 +cfi=(348) +cfn=(4892) int Dune::Communication<Dune::No_Comm>::broadcast<Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2>*, int, int) const +calls=1 +21 +* 10 ++3 4 +cfi=(259) +cfn=(4564) +calls=1 915 +* 13 +* 1 ++1 6 +cfi=(348) +cfn=(4888) +calls=1 +17 +* 10 ++1 7 +cfi=(259) +cfn=(4562) +calls=1 934 +* 49 ++1 4 +cfi=(259) +cfn=(4564) +calls=1 915 +* 13 +* 6 +cfi=(259) +cfn=(4724) +calls=1 1040 +* 12 +* 6 +cfi=(348) +cfn=(4894) int Dune::Communication<Dune::No_Comm>::broadcast<unsigned int>(unsigned int*, int, int) const +calls=1 +15 +* 10 ++3 4 +cfi=(259) +cfn=(4560) +calls=1 915 +* 12 +* 1 ++1 6 +cfi=(348) +cfn=(4888) +calls=1 +11 +* 10 ++1 7 +cfi=(259) +cfn=(4558) +calls=1 934 +* 47 ++1 4 +cfi=(259) +cfn=(4560) +calls=1 915 +* 12 +* 6 +cfi=(259) +cfn=(4896) +calls=1 1040 +* 11 +* 6 +cfi=(348) +cfn=(4898) int Dune::Communication<Dune::No_Comm>::broadcast<unsigned char>(unsigned char*, int, int) const +calls=1 +9 +* 10 ++5 3 +cfi=(287) +cfn=(4900) +calls=1 -97 +* 95 ++3 8 +cfi=(245) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/boundaryextractor.cc +cfn=(4912) Dune::BoundaryExtractor::detectBoundarySegments(std::vector<unsigned char, std::allocator<unsigned char> > const&, std::vector<unsigned int, std::allocator<unsigned int> > const&, std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > >&) +calls=1 14 +* 41891040 ++1 3 +cfi=(287) +cfn=(5076) +calls=1 414 +* 20 +* 2 ++3 3 +cfi=(259) +cfn=(5080) +calls=1 484 +* 67 ++1 4 +cfi=(259) +cfn=(4568) +calls=1 915 +* 13 +* 6 +cfi=(245) +cfn=(5092) int Dune::BoundaryExtractor::detectBoundaryNodes<2>(std::set<Dune::UGGridBoundarySegment<2>, std::less<Dune::UGGridBoundarySegment<2> >, std::allocator<Dune::UGGridBoundarySegment<2> > > const&, int, std::vector<int, std::allocator<int> >&) +calls=1 141 +* 130919 ++2 3 +cfi=(287) +cfn=(5160) +calls=1 419 +* 18 +* 4 +cfi=(262) +cfn=(5164) Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>& Dune::DebugStream<2u, 4u, 1u, Dune::greater_or_equal>::operator<< <unsigned long>(unsigned long) +calls=1 -9 +* 8 +* 3 +cfi=(262) +cfn=(4536) +calls=1 -9 +* 8 +* 5 +cfi=(262) +cfn=(4542) +calls=1 +29 +* 8 ++2 5 +cfi=(259) +cfn=(4552) +calls=1 915 +* 13 +* 4 +cfi=(287) +cfn=(5160) +calls=1 419 +* 18 +* 4 ++6 1 ++1 5 +cfi=(259) +cfn=(5096) +calls=1 915 +* 13 +* 4356 +cfi=(259) +cfn=(5096) +calls=1089 915 +* 14157 +* 4360 ++1 5445 +cfi=(259) +cfn=(5144) +calls=1089 1040 +* 13068 +* 5445 ++1 128 +-2 2178 ++9 3 +cfi=(259) +cfn=(4194) +calls=1 484 +* 67 ++2 6 +cfi=(259) +cfn=(5096) +calls=1 915 +* 13 +* 5445 +cfi=(259) +cfn=(5096) +calls=1089 915 +* 14157 +* 4360 ++1 6534 +cfi=(259) +cfn=(5144) +calls=1089 1040 +* 13068 +* 5445 ++1 640 +cfi=(259) +cfn=(4798) +calls=128 1184 +* 19609 +-2 4356 ++5 6 +cfi=(259) +cfn=(5096) +calls=1 915 +* 13 +* 5445 +cfi=(259) +cfn=(5096) +calls=1089 915 +* 14157 +* 4360 ++1 6534 +cfi=(259) +cfn=(5144) +calls=1089 1040 +* 13068 +* 5445 ++1 4805 +cfi=(259) +cfn=(4798) +calls=961 1184 +* 93582 +-2 4356 ++8 3 +cfi=(287) +cfn=(5160) +calls=1 419 +* 18 +* 4 ++1 8 +cfi=(272) +cfn=(4476) +calls=1 6057 +* 425 ++3 3 +-1 4 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 6 +cfi=(350) +cfn=(5166) +calls=1 1122 +* 3363 ++2 2 +-2 2 ++9 7 +cfi=(259) +cfn=(4552) +calls=1 915 +* 13 +* 4 ++95 3 +cfi=(287) +cfn=(5146) +calls=1 -70 +* 41 +* 1 ++2 3 +cfi=(287) +cfn=(5152) +calls=1 -63 +* 41 +* 384 +cfi=(287) +cfn=(5152) +calls=128 -63 +* 5248 +* 774 +cfi=(235) +cfn=(5156) +calls=129 -18 +* 1677 +* 258 ++2 384 +cfi=(235) +cfn=(5158) +calls=128 -62 +* 4992 +* 128 ++5 512 +cfi=(391) +cfn=(5172) +calls=128 33 +* 896 +* 768 +cfi=(391) +cfn=(5172) +calls=256 33 +* 1792 +* 1536 ++1 1536 +cfi=(253) +cfn=(5002) +calls=256 189 +* 6144 +* 1536 +cfi=(259) +cfn=(5144) +calls=256 1040 +* 3072 +* 1024 +-1 512 ++5 768 +cob=(2) +cfi=(18) +cfn=(4350) +calls=128 0 +* 143439 +* 384 ++4 512 +cfi=(391) +cfn=(5172) +calls=128 33 +* 896 +* 768 +cfi=(391) +cfn=(5172) +calls=256 33 +* 1792 +* 1536 ++1 1792 ++1 4096 +cfi=(253) +cfn=(5002) +calls=512 189 +* 12288 +* 2560 +cfi=(259) +cfn=(4890) +calls=512 1040 +* 6144 +* 3072 +cfi=(252) +cfn=(2252) +calls=512 192 +* 18944 +* 4096 +-1 1024 +-1 512 ++4 384 +cfi=(391) +cfn=(5172) +calls=128 33 +* 896 +* 1792 +cfi=(350) +cfn=(5174) +calls=128 1152 +* 69504 +* 128 ++7 256 +-7 256 +-20 384 +cfi=(235) +cfn=(5044) +calls=128 -52 +* 4232 +* 256 ++38 9 +cfi=(274) +cfn=(2604) +calls=1 1158 +* 503 +* 5 +cfi=(272) +cfn=(2632) +calls=1 6121 +* 388 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 +* 9 +cfi=(274) +cfn=(2604) +calls=1 1158 +* 316 +* 5 +cfi=(272) +cfn=(2632) +calls=1 6121 +* 137 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 8 ++1 3 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 5 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 1 ++2 4 +cfi=(350) +cfn=(5178) +calls=1 1103 +* 16748 +* 4 ++5 9 ++1 6 +cob=(2) +cfi=(18) +cfn=(4272) +calls=3 0 +* 132 +* 12 +-1 6 ++3 5 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 6 +cob=(2) +cfi=(18) +cfn=(4350) +calls=1 0 +* 1084 ++2 5 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 6 +cob=(2) +cfi=(18) +cfn=(4350) +calls=1 0 +* 1163 ++1 6 +cob=(2) +cfi=(18) +cfn=(4350) +calls=1 0 +* 1198 ++2 4 +cfi=(342) +cfn=(5190) std::shared_ptr<PPIF::PPIFContext>::shared_ptr(decltype(nullptr)) +calls=1 307 +* 46 +* 5 +cfi=(350) +cfn=(5196) +calls=1 1109 +* 1393582 +* 5 +cfi=(342) +cfn=(5306) +calls=1 103 +* 35 +* 2 ++8 9 ++1 15 +cob=(2) +cfi=(18) +cfn=(4440) +calls=3 0 +* 252 +-1 6 ++4 5 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 0 +* 5 +* 5 +cfi=(350) +cfn=(5518) +calls=1 1083 +* 1247 +* 1 ++1 5 ++10 7 ++2 4 ++29 2 ++1 5 +cfi=(259) +cfn=(4568) +calls=1 915 +* 13 +* 4356 +cfi=(259) +cfn=(4568) +calls=1089 915 +* 14157 +* 4360 ++1 5445 +cfi=(259) +cfn=(5144) +calls=1089 1040 +* 13068 +* 5445 ++2 5766 +cfi=(259) +cfn=(4890) +calls=961 1040 +* 11532 +* 2883 +cfi=(252) +cfn=(2252) +calls=961 192 +* 35557 +* 7688 +cfi=(350) +cfn=(5520) +calls=961 1130 +* 867146 +* 3844 ++3 7688 +cfi=(259) +cfn=(5144) +calls=961 1040 +* 11532 +* 1922 +-4 128 +-2 2178 ++9 5 +cfi=(259) +cfn=(4566) +calls=1 934 +* 131 ++6 3 +cfi=(236) +cfn=(5534) std::allocator<UG::D2::node*>::allocator() +calls=1 138 +* 18 +* 3 +cfi=(259) +cfn=(5096) +calls=1 915 +* 13 +* 6 +cfi=(259) +cfn=(5538) +calls=1 -33 +* 9362 +* 3 +cfi=(236) +cfn=(5552) +calls=1 153 +* 18 ++1 6 +cfi=(350) +cfn=(5588) +calls=1 399 +* 8 +* 2181 ++1 8712 +cfi=(259) +cfn=(5590) +calls=1089 1040 +* 13068 +* 1089 +-1 4356 ++3 1 ++1 5 +cfi=(259) +cfn=(4560) +calls=1 915 +* 12 +* 8192 +cfi=(259) +cfn=(4560) +calls=2048 915 +* 24576 +* 8196 ++2 6144 +cfi=(236) +cfn=(5534) +calls=2048 138 +* 36864 +* 12288 +cfi=(259) +cfn=(4896) +calls=2048 1040 +* 22528 +* 14336 +cfi=(259) +cfn=(5538) +calls=2048 -40 +* 1087488 +* 6144 +cfi=(236) +cfn=(5552) +calls=2048 153 +* 36864 ++1 14336 +cfi=(259) +cfn=(4896) +calls=2048 1040 +* 22528 +* 36864 +cfi=(259) +cfn=(4896) +calls=6144 1040 +* 67584 +* 49152 ++1 55296 +cfi=(259) +cfn=(4724) +calls=6144 1040 +* 73728 +* 36864 +cfi=(259) +cfn=(5144) +calls=6144 1040 +* 73728 +* 36864 +cfi=(259) +cfn=(5590) +calls=6144 1040 +* 73728 +* 36864 +cfi=(259) +cfn=(5590) +calls=6144 1040 +* 73728 +* 6144 +-1 12288 ++3 8192 +cfi=(259) +cfn=(5590) +calls=2048 1040 +* 24576 +* 14336 +cfi=(259) +cfn=(4896) +calls=2048 1040 +* 22528 +* 24576 +cfi=(365) +cfn=(5592) +calls=2048 4675 +* 28431049 +* 8192 +-4 6144 +cfi=(259) +cfn=(5830) +calls=2048 675 +* 520192 +-2 4096 ++11 5 +cfi=(259) +cfn=(4558) +calls=1 934 +* 127 ++1 5 +cfi=(259) +cfn=(4562) +calls=1 934 +* 131 ++3 5 +cfi=(364) +cfn=(5916) +calls=1 2272 +* 1287715 +* 4 ++4 11 +cfi=(402) +cfn=(5940) +calls=1 266 +* 868 ++1 4 ++3 6 +cfi=(239) +cfn=(5956) +calls=1 +50 +* 31640126 ++3 7 +cfi=(413) +cfn=(6110) +calls=1 867 +* 66 +* 5 +cfi=(416) +cfn=(6118) +calls=1 833 +* 726 +* 7 +cfi=(422) +cfn=(6168) +calls=1 44 +* 64 +* 5 +cfi=(422) +cfn=(6170) +calls=1 50 +* 65 +* 10245 +cfi=(421) +cfn=(6172) +calls=2049 131 +* 159822 +* 10242 +cfi=(421) +cfn=(6180) +calls=2048 109 +* 36864 +* 2048 ++1 6144 +cfi=(418) +cfn=(6184) +calls=2048 256 +* 14336 +* 10240 +cfi=(350) +cfn=(8594) +calls=2048 1016 +* 296960 +-1 6144 +cfi=(421) +cfn=(8298) +calls=2048 67 +* 413655 +* 2048 ++8 3 ++1 2 ++1 5 +cfi=(431) +cfn=(8598) +calls=1 54 +* 147 +-41 3 +cfi=(259) +cfn=(5830) +calls=1 675 +* 300 +-86 17 +cob=(2) +cfi=(18) +cfn=(2754) +calls=2 0 +* 214 +* 2 +308 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 0 +* 97 +-16 3 +cfi=(259) +cfn=(4842) +calls=1 675 +* 300 +-21 3 +cfi=(259) +cfn=(8624) +calls=1 675 +* 300 +-7 3 +cfi=(287) +cfn=(8644) +calls=1 +17 +* 39420 +* 1 +582 10 + +fn=(4730) Dune::GridFactory<Dune::UGGrid<2> >::insertElement(Dune::GeometryType const&, std::vector<unsigned int, std::allocator<unsigned int> > const&) +113 22528 ++4 6144 +cfi=(389) +cfn=(4732) +calls=2048 644 +* 18432 +* 8192 ++4 8192 +cfi=(259) +cfn=(4564) +calls=2048 915 +* 26624 +* 2048 ++2 10240 +cfi=(259) +cfn=(4564) +calls=2048 915 +* 26624 +* 10240 +cfi=(259) +cfn=(4734) +calls=2048 1200 +* 489589 ++1 10240 +cfi=(259) +cfn=(4564) +calls=2048 915 +* 26624 +* 24576 +cfi=(259) +cfn=(4564) +calls=6144 915 +* 79872 +* 32768 ++1 43008 +cfi=(259) +cfn=(4796) +calls=6144 1058 +* 73728 +* 18432 +cfi=(259) +cfn=(4798) +calls=6144 1184 +* 600430 +-1 12288 ++3 6144 +cfi=(389) +cfn=(4840) +calls=2048 599 +* 45056 +* 4096 ++2 6144 +cfi=(259) +cfn=(4564) +calls=2048 915 +* 26624 +* 8192 ++53 16384 + +fn=(2212) +632 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(242) +632 3 + +fn=(4166) Dune::GridFactory<Dune::UGGrid<2> >::GridFactory() +76 10 ++1 3 +cfi=(347) /home/joscha/software/dune/dune-grid/dune/grid/common/gridfactory.hh +cfn=(4168) Dune::GridFactoryInterface<Dune::UGGrid<2> >::GridFactoryInterface() +calls=1 +13 +* 11 +* 8 +cfi=(259) +cfn=(4170) +calls=1 484 +* 67 +* 4 +cfi=(259) +cfn=(4182) +calls=1 484 +* 67 +* 4 +cfi=(259) +cfn=(4194) +calls=1 484 +* 67 +* 4 +cfi=(259) +cfn=(4206) +calls=1 484 +* 67 ++2 3 +cfi=(348) +cfn=(4218) Dune::Communication<Dune::No_Comm>::Communication() +calls=1 +5 +* 7 +* 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 -79 +* 414 +* 3 +cfi=(239) +cfn=(4220) +calls=1 -43 +* 367519 +* 2 ++2 2 ++2 3 +cfn=(4544) +calls=1 585 +* 2120 ++1 9 + +fn=(4600) Dune::GridFactory<Dune::UGGrid<2> >::insertVertex(Dune::FieldVector<double, 2> const&) +106 6534 ++3 6534 +cfi=(259) +cfn=(4602) +calls=1089 1184 +* 450746 ++1 3267 + +fn=(8702) Dune::GridFactory<Dune::UGGrid<2> >::~GridFactory() +98 6 ++5 4 +-2 4 ++2 4 +cfi=(259) +cfn=(6712) +calls=1 675 +* 300 +* 4 +cfi=(259) +cfn=(4842) +calls=1 675 +* 11877 +* 4 +cfi=(259) +cfn=(8704) +calls=1 675 +* 323 +* 4 +cfi=(259) +cfn=(8714) +calls=1 675 +* 132 +* 3 +cfi=(347) +cfn=(8734) Dune::GridFactoryInterface<Dune::UGGrid<2> >::~GridFactoryInterface() +calls=1 -9 +* 11 +* 5 + +fl=(298) +fn=(3316) +341 35 ++1 15 +cfi=(286) +cfn=(3026) std::_Rb_tree_node_base*& std::forward<std::_Rb_tree_node_base*&>(std::remove_reference<std::_Rb_tree_node_base*&>::type&) +calls=5 74 +* 35 +* 30 +cfi=(286) +cfn=(3026) +calls=5 74 +* 35 +* 30 + +fn=(5808) +524 61440 ++5 18432 +cfi=(286) +cfn=(3102) bool&& std::forward<bool>(std::remove_reference<bool>::type&) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5810) std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>&& std::forward<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true> >(std::remove_reference<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true> >::type&) +calls=6144 74 +* 43008 +* 36864 +cfn=(5812) std::pair<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>, bool>::pair<std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>, bool, true>(std::__detail::_Node_iterator<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, false, true>&&, bool&&) +calls=6144 341 +* 221184 +* 12288 ++1 43008 + +fn=(3098) +341 112 ++1 48 +cfi=(286) +cfn=(3100) std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&& std::forward<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(std::remove_reference<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >::type&) +calls=16 74 +* 112 +* 96 +cfi=(286) +cfn=(3102) +calls=16 74 +* 112 +* 96 + +fn=(3104) +341 128 ++1 64 +cfi=(286) +cfn=(3106) std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >& std::forward<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&>(std::remove_reference<std::_Rb_tree_iterator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&>::type&) +calls=16 74 +* 112 +* 48 +cfi=(235) +cfn=(3108) +calls=16 +6 +* 192 +* 48 +cfi=(286) +cfn=(3110) bool& std::forward<bool&>(std::remove_reference<bool&>::type&) +calls=16 74 +* 112 +* 128 + +fn=(4980) +341 43008 ++1 18432 +cfi=(286) +cfn=(4982) std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >&& std::forward<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> > >(std::remove_reference<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> > >::type&) +calls=6144 74 +* 43008 +* 36864 +cfi=(286) +cfn=(3102) +calls=6144 74 +* 43008 +* 36864 + +fn=(5038) +311 21056 ++1 9024 +cfi=(286) +cfn=(3026) +calls=3008 74 +* 21056 +* 30080 + +fn=(5702) +524 61440 ++5 18432 +cfi=(286) +cfn=(5704) int& std::forward<int&>(std::remove_reference<int&>::type&) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5706) UG::D2::element*& std::forward<UG::D2::element*&>(std::remove_reference<UG::D2::element*&>::type&) +calls=6144 74 +* 43008 +* 36864 +cfn=(5708) std::pair<UG::D2::element*, int>::pair<UG::D2::element*&, int&, true>(UG::D2::element*&, int&) +calls=6144 341 +* 221184 +* 12288 ++1 43008 + +fn=(5812) +341 43008 ++1 18432 +cfi=(286) +cfn=(5810) +calls=6144 74 +* 43008 +* 36864 +cfi=(286) +cfn=(3102) +calls=6144 74 +* 43008 +* 36864 + +fn=(3158) +325 63 ++1 63 +cfi=(286) +cfn=(3026) +calls=9 74 +* 63 +* 54 + +fn=(3288) +341 7 ++1 3 +cfi=(286) +cfn=(3290) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*& std::forward<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*&>(std::remove_reference<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, Dune::ParameterTree> >*&>::type&) +calls=1 74 +* 7 +* 6 +cfi=(286) +cfn=(3026) +calls=1 74 +* 7 +* 6 + +fn=(4984) +341 49152 ++1 24576 +cfi=(286) +cfn=(4986) std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >& std::forward<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >&>(std::remove_reference<std::_Rb_tree_iterator<Dune::UGGridBoundarySegment<2> >&>::type&) +calls=6144 74 +* 43008 +* 18432 +cfi=(235) +cfn=(4988) +calls=6144 +6 +* 73728 +* 18432 +cfi=(286) +cfn=(3110) +calls=6144 74 +* 43008 +* 49152 + +fn=(5708) +341 43008 ++1 18432 +cfi=(286) +cfn=(5706) +calls=6144 74 +* 43008 +* 36864 +cfi=(286) +cfn=(5704) +calls=6144 74 +* 43008 +* 36864 + +fn=(3022) +341 28 ++1 12 +cfi=(286) +cfn=(3024) std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*& std::forward<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*&>(std::remove_reference<std::_Rb_tree_node<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*&>::type&) +calls=4 74 +* 28 +* 24 +cfi=(286) +cfn=(3026) +calls=4 74 +* 28 +* 24 + +fn=(4944) +341 21952 ++1 9408 +cfi=(286) +cfn=(4946) std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*& std::forward<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*&>(std::remove_reference<std::_Rb_tree_node<Dune::UGGridBoundarySegment<2> >*&>::type&) +calls=3136 74 +* 21952 +* 18816 +cfi=(286) +cfn=(3026) +calls=3136 74 +* 21952 +* 18816 + +fn=(5744) +341 43008 ++1 18432 +cfi=(286) +cfn=(5714) +calls=6144 74 +* 43008 +* 79872 +cfi=(286) +cfn=(5712) +calls=6144 74 +* 43008 +* 49152 + +fn=(3064) +341 112 ++1 48 +cfi=(286) +cfn=(3066) std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*& std::forward<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*&>(std::remove_reference<std::_Rb_tree_node<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >*&>::type&) +calls=16 74 +* 112 +* 96 +cfi=(286) +cfn=(3026) +calls=16 74 +* 112 +* 96 + +fl=(318) +fn=(8942) void std::__sort<UG::D2::node**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> >(UG::D2::node**, UG::D2::node**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +1962 5476800 ++3 2347200 ++3 3912000 +cfi=(265) +cfn=(5684) std::__lg(long) +calls=782400 1029 +* 10171200 +-1 6259200 +cfn=(8944) void std::__introsort_loop<UG::D2::node**, long, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> >(UG::D2::node**, UG::D2::node**, long, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +calls=782400 -28 +* 10953600 ++3 4694400 +cfn=(8946) void std::__final_insertion_sort<UG::D2::node**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> >(UG::D2::node**, UG::D2::node**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +calls=782400 -91 +* 1225466305 ++2 2347200 + +fn=(8944) +1939 6259200 ++4 3129600 ++13 1564800 + +fn=(4858) bool std::__next_permutation<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__ops::_Iter_less_iter>(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__ops::_Iter_less_iter) +2899 18432 ++3 10240 +cfi=(291) +cfn=(4860) +calls=2048 893 +* 71680 +* 4096 ++2 4096 ++1 6144 +cfi=(291) +cfn=(4862) +calls=2048 827 +* 24576 ++1 10240 +cfi=(291) +cfn=(4860) +calls=2048 893 +* 71680 +* 4096 ++2 4096 ++1 6144 +cfi=(291) +cfn=(4864) +calls=2048 839 +* 24576 ++4 4096 ++1 6144 +cfi=(291) +cfn=(4864) +calls=2048 839 +* 24576 ++1 10240 +cfi=(390) +cfn=(4866) +calls=2048 42 +* 77824 +* 4096 ++2 2048 ++1 3072 +cfi=(291) +cfn=(4864) +calls=1024 839 +* 12288 +* 6144 +cfi=(390) +cfn=(4866) +calls=1024 42 +* 38912 +* 3072 ++2 5120 +cfi=(265) +cfn=(4870) void std::iter_swap<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >) +calls=1024 123 +* 93184 ++2 3072 +cfi=(277) +cfn=(4876) +calls=1024 205 +* 6144 +-1 5120 +cfn=(4878) void std::__reverse<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, std::random_access_iterator_tag) +calls=1024 1152 +* 109568 ++2 2048 ++2 5120 +cfi=(291) +cfn=(4860) +calls=1024 893 +* 35840 +* 2048 ++3 3072 +cfi=(277) +cfn=(4876) +calls=1024 205 +* 6144 +-1 5120 +cfn=(4878) +calls=1024 1152 +* 282624 ++2 1024 ++3 10240 + +fn=(8948) void std::__insertion_sort<UG::D2::node**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> >(UG::D2::node**, UG::D2::node**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +1839 7824000 ++3 2347200 ++2 23472000 ++2 37555200 +cfi=(390) +cfn=(8950) +calls=6259200 142 +* 175257600 +* 12518400 ++3 3551043 +cfi=(286) +cfn=(5698) std::remove_reference<UG::D2::node*&>::type&& std::move<UG::D2::node*&>(UG::D2::node*&) +calls=1183681 99 +* 8285767 +* 2367362 ++1 8285767 +cfi=(265) +cfn=(5820) UG::D2::node** std::move_backward<UG::D2::node**, UG::D2::node**>(UG::D2::node**, UG::D2::node**, UG::D2::node**) +calls=1183681 676 +* 194926488 ++1 3551043 +cfi=(286) +cfn=(5698) +calls=1183681 99 +* 8285767 +* 4734724 ++3 15226557 +cfi=(390) +cfn=(8954) +calls=5075519 225 +* 258851469 +* 25377595 +cfn=(8960) void std::__unguarded_linear_insert<UG::D2::node**, __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)> >(UG::D2::node**, __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +calls=5075519 -34 +* 400969923 +-10 12518400 ++13 3912000 + +fn=(8960) +1820 45679671 ++4 15226557 +cfi=(286) +cfn=(5698) +calls=5075519 99 +* 35528633 +* 10151038 ++1 10151038 ++1 5075519 ++1 30453114 +cfi=(390) +cfn=(8962) +calls=5075519 214 +* 142114532 +* 444 +cfi=(390) +cfn=(8962) +calls=74 214 +* 2072 +* 10151186 ++2 222 +cfi=(286) +cfn=(5698) +calls=74 99 +* 518 +* 222 ++1 148 ++1 74 +-4 74 ++6 15226557 +cfi=(286) +cfn=(5698) +calls=5075519 99 +* 35528633 +* 15226557 ++1 30453114 + +fn=(5688) void std::__final_insertion_sort<UG::D2::node**, __gnu_cxx::__ops::_Iter_less_iter>(UG::D2::node**, UG::D2::node**, __gnu_cxx::__ops::_Iter_less_iter) +1879 36864 ++3 24576 ++7 30720 +cfn=(5690) void std::__insertion_sort<UG::D2::node**, __gnu_cxx::__ops::_Iter_less_iter>(UG::D2::node**, UG::D2::node**, __gnu_cxx::__ops::_Iter_less_iter) +calls=6144 -50 +* 1133568 ++1 18432 + +fn=(5690) +1839 55296 ++3 18432 ++2 55296 ++2 30720 +cfi=(390) +cfn=(5692) +calls=6144 42 +* 86016 +* 12288 ++3 9216 +cfi=(286) +cfn=(5698) +calls=3072 99 +* 21504 +* 6144 ++1 21504 +cfi=(265) +cfn=(5820) +calls=3072 676 +* 509952 ++1 9216 +cfi=(286) +cfn=(5698) +calls=3072 99 +* 21504 +* 12288 ++4 3072 +cfi=(390) +cfn=(5694) +calls=3072 99 +* 15360 +-1 9216 +cfn=(5696) void std::__unguarded_linear_insert<UG::D2::node**, __gnu_cxx::__ops::_Val_less_iter>(UG::D2::node**, __gnu_cxx::__ops::_Val_less_iter) +calls=3072 -34 +* 193536 +-10 12288 ++13 30720 + +fn=(8934) +4885 5476800 ++12 2347200 +cfi=(390) +cfn=(8936) +calls=782400 149 +* 39902400 +* 4694400 +cfn=(8942) +calls=782400 1962 +* 1271627905 ++1 2347200 + +fn=(8994) +4885 3642240 ++12 1560960 +cfi=(390) +cfn=(8996) +calls=520320 149 +* 26536320 +* 3121920 +cfn=(9002) void std::__sort<UG::D2::compare_record**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> >(UG::D2::compare_record**, UG::D2::compare_record**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>) +calls=520320 1962 +* 206911812 ++1 1560960 + +fn=(9002) +1962 3642240 ++3 1560960 ++3 2601600 +cfi=(265) +cfn=(5684) +calls=520320 1029 +* 6764160 +-1 4162560 +cfn=(9004) void std::__introsort_loop<UG::D2::compare_record**, long, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> >(UG::D2::compare_record**, UG::D2::compare_record**, long, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>) +calls=520320 -28 +* 7284480 ++3 3121920 +cfn=(9006) void std::__final_insertion_sort<UG::D2::compare_record**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> >(UG::D2::compare_record**, UG::D2::compare_record**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>) +calls=520320 -91 +* 176212932 ++2 1560960 + +fn=(4878) +1152 12288 ++3 10240 +cfi=(291) +cfn=(4860) +calls=2048 893 +* 71680 +* 4096 ++2 6144 +cfi=(291) +cfn=(4864) +calls=2048 839 +* 24576 ++1 15360 +cfi=(291) +cfn=(4880) +calls=3072 922 +* 107520 +* 6144 ++2 5120 +cfi=(265) +cfn=(4870) +calls=1024 123 +* 93184 ++1 3072 +cfi=(291) +cfn=(4862) +calls=1024 827 +* 12288 ++1 3072 +cfi=(291) +cfn=(4864) +calls=1024 839 +* 12288 +-4 1024 ++6 4096 + +fn=(5682) void std::__sort<UG::D2::node**, __gnu_cxx::__ops::_Iter_less_iter>(UG::D2::node**, UG::D2::node**, __gnu_cxx::__ops::_Iter_less_iter) +1962 36864 ++3 18432 ++3 30720 +cfi=(265) +cfn=(5684) +calls=6144 1029 +* 79872 +-1 36864 +cfn=(5686) void std::__introsort_loop<UG::D2::node**, long, __gnu_cxx::__ops::_Iter_less_iter>(UG::D2::node**, UG::D2::node**, long, __gnu_cxx::__ops::_Iter_less_iter) +calls=6144 -28 +* 79872 ++3 30720 +cfn=(5688) +calls=6144 -91 +* 1244160 ++2 18432 + +fn=(5686) +1939 43008 ++4 24576 ++13 12288 + +fn=(5696) +1820 24576 ++4 9216 +cfi=(286) +cfn=(5698) +calls=3072 99 +* 21504 +* 6144 ++1 6144 ++1 3072 ++1 15360 +cfi=(390) +cfn=(5700) +calls=3072 89 +* 43008 +* 6144 ++6 9216 +cfi=(286) +cfn=(5698) +calls=3072 99 +* 21504 +* 9216 ++1 18432 + +fn=(9004) +1939 4162560 ++4 2081280 ++13 1040640 + +fn=(4854) bool std::next_permutation<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >) +2948 12288 ++12 2048 +cfi=(390) +cfn=(4856) +calls=2048 49 +* 10240 +* 10240 +cfn=(4858) +calls=2048 -61 +* 1028096 ++1 4096 + +fn=(5680) +4855 36864 ++10 6144 +cfi=(390) +cfn=(4856) +calls=6144 49 +* 30720 +* 30720 +cfn=(5682) +calls=6144 1962 +* 1575936 ++1 18432 + +fn=(9008) void std::__insertion_sort<UG::D2::compare_record**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> >(UG::D2::compare_record**, UG::D2::compare_record**, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>) +1839 5203200 ++3 1560960 ++2 4682880 ++2 3121920 +cfi=(390) +cfn=(9010) +calls=520320 142 +* 42824928 +* 1040640 ++3 1000446 +cfi=(286) +cfn=(9022) std::remove_reference<UG::D2::compare_record*&>::type&& std::move<UG::D2::compare_record*&>(UG::D2::compare_record*&) +calls=333482 99 +* 2334374 +* 666964 ++1 2334374 +cfi=(265) +cfn=(9026) UG::D2::compare_record** std::move_backward<UG::D2::compare_record**, UG::D2::compare_record**>(UG::D2::compare_record**, UG::D2::compare_record**, UG::D2::compare_record**) +calls=333482 676 +* 55358012 ++1 1000446 +cfi=(286) +cfn=(9022) +calls=333482 99 +* 2334374 +* 1333928 ++3 560514 +cfi=(390) +cfn=(9014) +calls=186838 225 +* 9528738 +* 934190 +cfn=(9020) void std::__unguarded_linear_insert<UG::D2::compare_record**, __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)> >(UG::D2::compare_record**, __gnu_cxx::__ops::_Val_comp_iter<bool (*)(UG::D2::compare_record const*, UG::D2::compare_record const*)>) +calls=186838 -34 +* 26343404 +-10 1040640 ++13 2601600 + +fn=(8946) +1879 5476800 ++3 3129600 ++7 4694400 +cfn=(8948) +calls=782400 -50 +* 1209818305 ++1 2347200 + +fn=(3726) +4324 8 ++10 5 +cfi=(291) +cfn=(3728) +calls=1 907 +* 35 +* 5 +cfi=(291) +cfn=(3728) +calls=1 907 +* 35 +* 4 ++1 3 +cfi=(291) +cfn=(3730) +calls=1 819 +* 8 +* 5 +cfi=(301) +cfn=(3732) +calls=1 284 +* 266 +* 4 +cfi=(291) +cfn=(3730) +calls=1 819 +* 8 +* 1 +-1 3 +cfi=(291) +cfn=(3742) +calls=1 827 +* 12 +* 3 +cfi=(291) +cfn=(3742) +calls=1 827 +* 12 +* 1 ++2 1 ++1 4 + +fn=(8964) +2279 75110400 ++13 28166400 +cfi=(390) +cfn=(8966) +calls=9388800 182 +* 478828800 +* 56332800 +cfi=(265) +cfn=(8970) UG::D2::node** std::__lower_bound<UG::D2::node**, UG::D2::node*, __gnu_cxx::__ops::_Iter_comp_val<bool (*)(UG::D2::node const*, UG::D2::node const*)> >(UG::D2::node**, UG::D2::node**, UG::D2::node* const&, __gnu_cxx::__ops::_Iter_comp_val<bool (*)(UG::D2::node const*, UG::D2::node const*)>) +calls=9388800 966 +* 2269633850 +* 9388800 ++2 100967168 +cfi=(433) +cfn=(8952) +calls=9100096 3545 +* 91000960 +* 40601088 ++1 18777600 + +fn=(9006) +1879 3642240 ++3 2081280 ++7 3121920 +cfn=(9008) +calls=520320 -50 +* 165806532 ++1 1560960 + +fn=(9020) +1820 1681542 ++4 560514 +cfi=(286) +cfn=(9022) +calls=186838 99 +* 1307866 +* 373676 ++1 373676 ++1 186838 ++1 1121028 +cfi=(390) +cfn=(9024) +calls=186838 214 +* 16814666 +* 373676 ++6 560514 +cfi=(286) +cfn=(9022) +calls=186838 99 +* 1307866 +* 560514 ++1 1121028 + +fl=(319) +fn=(3738) std::ctype<char>::tolower(char) const +835 7 ++1 9 +cob=(14) +cfi=(199) +cfn=(3740) +calls=1 0 +* 5 +* 2 + +fn=(3734) +2649 7 ++1 3 +cob=(2) +cfi=(18) +cfn=(3736) +calls=1 0 +* 174 +* 5 +cfn=(3738) +calls=1 835 +* 23 +* 2 + +fl=(359) +fn=(5182) UG::D2::BVP_GetByName(char const*) +1355 15 ++1 18 +cfi=(353) +cfn=(4524) +calls=3 563 +* 2900 ++1 6 + +fn=(5430) GetFirstBoundarySegment(UG::D2::domain*) +436 5 ++3 3 ++2 5 ++3 3 +cfn=(5432) GetNextBoundarySegment(UG::D2::boundary_segment*) +calls=1 -36 +* 1411 +* 1 ++1 2 + +fn=(5184) +1361 12 ++3 4 ++4 4 ++3 12 +cob=(2) +cfi=(18) +cfn=(4288) +calls=2 0 +* 70 ++3 8 ++1 8 ++1 8 ++1 8 ++1 8 ++1 8 ++2 4 ++2 2 ++1 4 + +fn=(5188) UG::D2::GetDomain(char const*) +308 5 ++2 6 +cfi=(353) +cfn=(4524) +calls=1 563 +* 1218 ++1 2 + +fn=(5364) +904 8 ++16 3 +cfn=(5182) +calls=1 1355 +* 981 +* 1 ++1 2 ++2 2 ++2 3 ++1 2 ++2 3 ++3 3 ++1 3 ++3 1 ++1 8 +cfi=(402) +cfn=(5366) +calls=1 173 +* 1166 +* 1 ++1 2 ++3 388 ++1 768 +-1 256 ++2 3 ++1 3 +cfn=(5430) +calls=1 436 +* 1430 +* 3 ++39 3 +cfn=(5434) GetFirstLinearSegment(UG::D2::domain*) +calls=1 536 +* 17 +* 1 ++1 258 ++3 1024 ++2 512 +cfi=(402) +cfn=(5436) +calls=128 214 +* 28136 +* 128 ++1 256 ++2 256 ++1 512 ++1 512 ++1 512 ++1 512 ++1 1664 ++2 2560 ++1 1792 ++1 9216 +-1 1024 +-3 512 ++6 769 ++1 508 +-1 1 ++1 516 ++1 1024 ++6 256 +-26 384 +cfn=(5438) GetNextLinearSegment(UG::D2::linear_segment*) +calls=128 522 +* 2427 +* 128 +-2 128 ++34 3 ++2 388 ++1 1024 +-1 256 ++4 2 ++14 8 +cfi=(402) +cfn=(5366) +calls=1 173 +* 1464 +* 1 ++1 2 ++2 3 ++3 5 +cob=(2) +cfi=(18) +cfn=(5444) +calls=1 0 +* 253 +* 1 ++1 5 +cob=(2) +cfi=(18) +cfn=(5444) +calls=1 0 +* 253 +* 1 ++2 388 ++2 1152 ++1 3584 ++1 4352 +-1 512 ++3 1152 +-6 256 ++25 388 ++2 1024 ++4 512 +-1 768 +cfi=(402) +cfn=(5436) +calls=128 214 +* 29078 +* 128 ++2 256 ++3 256 ++1 384 ++2 384 ++1 896 +-14 256 ++18 5 +cob=(2) +cfi=(18) +cfn=(5444) +calls=1 0 +* 253 +* 1 ++2 388 ++2 1152 ++2 3584 ++2 2816 ++1 4352 ++1 4864 +-4 512 +-4 256 ++24 388 ++2 1792 ++2 1024 ++1 384 ++7 2176 +-12 256 ++19 3 +cob=(2) +cfi=(18) +cfn=(4440) +calls=1 0 +* 84 ++1 3 +cob=(2) +cfi=(18) +cfn=(4440) +calls=1 0 +* 84 ++1 3 +cob=(2) +cfi=(18) +cfn=(4440) +calls=1 0 +* 84 ++3 1 ++83 4 ++1 3 ++1 4 ++1 8 +cfi=(402) +cfn=(5436) +calls=1 214 +* 348 +* 2 ++1 1 ++1 388 ++2 896 ++1 1664 ++1 3072 +-1 512 ++2 1280 +-5 256 ++17 388 ++2 896 ++1 384 ++1 1280 +-4 256 ++8 773 ++3 2 ++2 2 ++1 4 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++1 2 ++2 8 +cfi=(402) +cfn=(5366) +calls=1 173 +* 1605 +-1 2 ++2 4 ++3 7 +cfn=(5446) CreateCornerPoints(UG::HEAP*, UG::D2::std_BoundaryValueProblem*, void***) +calls=1 775 +* 58007 +* 4 ++4 773 ++6 4 ++3 4 +-1 6 +cfi=(402) +cfn=(5436) +calls=1 214 +* 83 +-1 2 ++3 4 ++4 4 ++21 13 ++1 14 +-1 4 ++4 1 ++1 2 + +fn=(5432) +408 4 ++3 2 ++3 3 ++1 2 +-1 381 ++1 889 +-2 127 ++4 1 ++1 2 + +fn=(5658) GetPatchId(UG::D2::patch*, int) +641 163008 ++1 202432 ++4 56256 ++2 50496 ++9 54336 + +fn=(4310) +3226 3 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++7 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 365 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 370 +* 4 ++6 1 ++1 2 + +fn=(4572) +326 5 ++1 6 +cfi=(353) +cfn=(4524) +calls=1 563 +* 1203 +* 1 ++1 2 ++4 3 + +fn=(5176) +473 1280 ++4 256 ++5 768 +cfi=(353) +cfn=(4286) +calls=128 244 +* 45056 +* 128 ++2 256 ++4 384 ++1 384 ++1 384 ++1 384 ++1 1280 ++2 2816 ++1 1792 ++1 9216 +-1 1024 +-3 512 ++7 128 ++1 256 + +fn=(5434) +536 5 ++3 3 ++2 5 ++1 2 ++3 2 + +fn=(8922) GetNumberOfCommonPatches(UG::D2::patch*, UG::D2::patch*, int*) +1442 13440 ++3 1920 ++1 5760 +cfn=(5450) GetNumberOfPatches(UG::D2::patch*) +calls=1920 622 +* 30592 +* 1920 ++1 5760 +cfn=(5450) +calls=1920 622 +* 30592 +* 1920 ++1 14976 ++2 12160 +cfn=(5658) +calls=2432 641 +* 46592 +* 2432 ++1 18944 ++1 15360 +cfn=(5658) +calls=3072 641 +* 58880 +* 12288 ++2 3840 ++1 5760 ++1 1920 +-5 6144 +-3 4864 ++12 1920 ++1 3840 + +fn=(5170) UG::D2::CreateDomainWithParts(char const*, int, int, int, UG::D2::DOMAIN_PART_INFO const*) +236 9 ++4 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 1110 +* 4 ++4 6 +cfi=(353) +cfn=(4286) +calls=1 * +* 689 +* 1 ++1 2 ++4 3 ++1 3 ++1 3 ++1 3 ++2 3 +cfi=(353) +cfn=(4276) +calls=1 120 +* 1438 +* 4 ++2 2 +cfi=(358) +cfn=(4432) +calls=1 -30 +* 14 ++1 3 +cfi=(358) +cfn=(4432) +calls=1 -31 +* 14 ++1 2 +cfi=(358) +cfn=(4432) +calls=1 -32 +* 14 ++2 1 ++1 2 + +fn=(5186) STD_BVP_Configure(int, char**) +549 9 ++8 2 +cfi=(355) +cfn=(4496) UG::expandfmt(char const*) +calls=1 195 +* 1992 +* 8 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2595 ++1 7 +-1 2 ++4 3 +cfn=(5182) +calls=1 1355 +* 981 +* 1 ++1 2 ++3 10 ++1 28 ++1 2 +cfi=(355) +cfn=(4496) +calls=1 195 +* 1831 +* 12 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2290 ++1 7 +-1 1 +-2 4 ++6 3 +cfn=(5188) +calls=1 308 +* 1231 +* 1 ++1 2 ++3 3 ++2 1 ++1 5 + +fn=(5450) +622 208368 ++1 397168 ++4 75520 ++2 42996 ++8 104184 + +fn=(5478) BndPointGlobal(void* const*, double*) +2508 18432 ++7 4096 ++1 18432 ++5 17792 ++4 13440 +cfn=(5480) PatchGlobal(UG::D2::patch const*, double*, double*) +calls=1920 2229 +* 99840 +* 1920 ++3 1152 ++7 896 +cfn=(5480) +calls=128 2229 +* 6656 ++2 1152 ++2 1536 ++2 1536 +cfn=(5480) +calls=128 2229 +* 6656 +* 512 ++8 896 ++1 2816 +cfi=(404) +cfn=(5482) +calls=256 72 +* 2304 +* 1024 +-1 512 +-12 256 ++17 256 ++34 10240 + +fn=(5480) +2229 15232 ++1 8704 ++2 8704 ++3 17408 ++1 13056 +-1 4352 ++2 17408 ++1 10880 +-1 4352 ++1 2176 +-1 2176 ++23 4352 ++4 4352 + +fn=(5656) +2708 43692 ++10 39720 ++2 71496 ++1 103272 ++4 47664 +cfn=(5450) +calls=7944 622 +* 129896 +* 46160 +cfn=(5450) +calls=9232 622 +* 146640 +* 87168 +-7 15888 ++11 3972 ++2 7944 ++3 15888 +cfn=(5450) +calls=3972 622 +* 64948 +* 13848 +cfn=(5450) +calls=4616 622 +* 73320 +* 34352 ++1 18464 +cfn=(5450) +calls=4616 622 +* 75368 +* 3312 +cfn=(5450) +calls=1104 622 +* 16400 +* 22880 ++4 25360 +cfn=(5658) +calls=5072 641 +* 98464 +* 30432 +cfn=(5658) +calls=5072 641 +* 98976 +* 20288 ++2 19840 +cfn=(5658) +calls=3968 641 +* 78080 +* 3968 ++1 31744 ++1 31744 ++1 3968 +-9 2208 +-1 9232 ++52 7944 ++1 8 ++2 11904 ++1 3968 +-1 23808 +cfi=(402) +cfn=(5436) +calls=3968 214 +* 898983 +* 3968 ++2 7936 ++2 11904 ++1 11904 ++1 39680 ++1 39680 ++1 126976 +-1 15872 +-1 15872 ++4 39680 ++1 55552 +-1 15872 ++6 39680 ++12 3968 ++1 27804 + +fn=(4402) +3226 3 ++3 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 204 +* 4 ++7 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 361 +* 4 ++5 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++3 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 359 +* 4 ++6 1 ++1 2 + +fn=(5476) +2593 12288 ++1 4096 ++4 22528 ++9 10240 +cfn=(5478) +calls=2048 -99 +* 212352 +* 2048 ++1 4096 + +fn=(5438) +522 512 ++3 256 ++3 384 ++1 891 ++2 128 ++1 256 + +fn=(5446) +775 8 ++3 517 ++2 2048 +cfn=(5448) CreateBndPOnPoint(UG::HEAP*, UG::D2::patch*) +calls=128 661 +* 53248 +* 128 ++1 1024 +-3 256 ++7 773 ++3 1 ++1 4 + +fn=(5448) +661 768 ++5 512 ++4 512 +cfn=(5450) +calls=128 -48 +* 1664 +* 768 +cfn=(5450) +calls=256 -48 +* 3328 +* 2048 ++3 384 ++2 512 +-1 768 +cfi=(402) +cfn=(5436) +calls=128 214 +* 29056 +* 128 ++2 256 ++2 384 ++1 512 ++2 1280 ++2 3072 ++1 1024 ++42 1024 ++2 2048 ++4 768 ++1 128 ++2 768 ++1 128 +-55 512 ++79 512 ++10 128 ++1 256 + +fn=(5484) +2613 12288 ++4 4096 ++1 18432 ++3 4096 ++2 17792 ++4 7680 ++2 13440 ++1 3840 ++3 512 ++2 896 ++1 256 ++13 4096 + +fn=(8834) +1348 16 ++1 8 ++1 12 + +fn=(5168) +286 7 ++2 7 +cfn=(5170) +calls=1 -52 +* 3332 ++1 2 + +fn=(8920) +2823 23040 ++5 3840 ++1 3840 ++2 7680 ++3 17280 ++1 17280 ++3 7680 +cfn=(5450) +calls=1920 622 +* 30592 +* 7296 +cfn=(5450) +calls=2432 622 +* 37248 +* 22272 ++3 7680 +cfn=(5450) +calls=1920 622 +* 30592 +* 7296 +cfn=(5450) +calls=2432 622 +* 37248 +* 22272 ++3 11520 +cfn=(8922) +calls=1920 1442 +* 301824 +* 1920 ++1 3840 ++5 7680 +-1 11520 +cfi=(402) +cfn=(5436) +calls=1920 214 +* 430892 +* 1920 ++3 3840 ++2 5760 ++52 7680 +cfn=(5450) +calls=1920 622 +* 30592 +* 7296 +cfn=(5450) +calls=2432 622 +* 37248 +* 21760 ++1 9728 +cfn=(5450) +calls=2432 622 +* 38784 +* 2688 +cfn=(5450) +calls=896 622 +* 13184 +* 13312 ++1 14080 +cfn=(5658) +calls=2816 641 +* 53888 +* 16896 +cfn=(5658) +calls=2816 641 +* 54272 +* 11264 ++2 9600 +cfn=(5658) +calls=1920 641 +* 37376 +* 3840 ++1 9600 ++1 23040 ++1 19200 +-1 9600 +-1 3840 +-4 1792 ++10 1920 +-11 9728 ++14 21120 ++18 1920 ++1 13440 + +fn=(4480) +584 10 ++5 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 864 +* 4 ++4 7 ++2 8 +cfi=(353) +cfn=(4286) +calls=1 244 +* 380 +* 1 ++1 2 ++2 3 +cfi=(353) +cfn=(4276) +calls=1 120 +* 1636 +* 4 ++3 3 ++1 3 ++1 7 ++1 11 +-1 2 ++2 7 ++1 13 +-1 2 ++3 2 ++2 2 ++1 2 ++1 3 ++1 3 ++2 5 +cfi=(358) +cfn=(4482) +calls=1 269 +* 1125 ++2 1 ++1 2 + +fl=(420) +fn=(6134) +39 456 ++1 342 + +fn=(8404) +39 120 ++1 90 + +fn=(6140) +111 17391625 ++2 10434975 ++1 10434975 + +fn=(8410) +111 2897885 ++2 1738731 ++1 1738731 + +fl=(244) /home/joscha/software/dune/dune-grid/dune/grid/uggrid/uggridhieriterator.cc +fn=(2220) __static_initialization_and_destruction_0(int, int) +54 10 +fi=(220) ++20 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(244) +-20 3 + +fn=(2218) _GLOBAL__sub_I_uggridhieriterator.cc +54 6 +cfn=(2220) +calls=1 * +* 119 +* 2 + +fl=(326) +fn=(3896) +720 168 ++1 72 +cfn=(3868) +calls=24 349 +* 528 ++1 72 ++1 72 ++1 72 + +fn=(3868) +349 208 +cfi=(327) +cfn=(3870) +calls=26 -80 +* 286 ++1 78 + +fl=(248) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/jacobi_1_0.cc +fn=(2234) _GLOBAL__sub_I_jacobi_1_0.cc +12 6 +cfn=(2236) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(2236) +12 10 +fi=(220) ++62 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(248) +-62 3 + +fl=(252) +fn=(7156) +376 72 + +fn=(7150) +409 28 + +fn=(3938) Dune::FieldVector<double, 1>& Dune::FieldVector<double, 1>::operator=<double, void>(double const&) +369 110 ++2 88 ++1 22 ++1 44 + +fn=(6428) Dune::FieldVector<double, 2>::FieldVector() +116 368 ++1 276 ++1 276 + +fn=(7140) +378 790 ++4 158 ++1 316 + +fn=(4596) +196 40500 ++2 33750 +cfi=(253) +cfn=(4598) +calls=6750 -9 +* 162000 ++1 13500 + +fn=(7314) Dune::FieldVector<double, 1>::operator[](unsigned long) const +384 420 ++4 84 ++1 168 + +fn=(2252) +192 25374 ++2 21145 +cfi=(253) +cfn=(2254) +calls=4229 -9 +* 101496 ++1 8458 + +fn=(7728) Dune::FieldVector<double, 0>::FieldVector(double const&) +121 14 ++2 6 +cfi=(253) +cfn=(7730) +calls=2 +11 +* 54 +* 8 +cfi=(253) +cfn=(7736) +calls=2 +3 +* 54 +* 12 +cfi=(265) +cfn=(4144) void std::fill<double*, double>(double*, double*, double const&) +calls=2 742 +* 110 ++1 10 + +fn=(3886) Dune::FieldVector<double, 1>::FieldVector() +313 184 ++1 138 ++1 138 + +fn=(7126) Dune::FieldVector<double, 1>::FieldVector<double, void>(double const&) +325 168 + +fn=(4134) +121 8085 ++2 3465 +cfi=(253) +cfn=(4136) +calls=1155 +11 +* 32340 +* 4620 +cfi=(253) +cfn=(4142) +calls=1155 +3 +* 31185 +* 6930 +cfi=(265) +cfn=(4144) +calls=1155 742 +* 82005 ++1 5775 + +fn=(6456) +190 1488 + +fn=(2262) +192 738 ++2 615 +cfi=(253) +cfn=(2264) +calls=123 -9 +* 2952 ++1 246 + +fn=(7710) Dune::FieldVector<double, 0>::FieldVector() +116 8 ++2 6 + +fn=(2274) +190 96 + +fl=(412) /usr/include/c++/9/bits/cpp_type_traits.h +fn=(7464) Dune::FieldMatrix<double, 0, 1>* std::__miter_base<Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*) +428 16 ++1 12 + +fn=(6830) Dune::FieldMatrix<double, 1, 2>* std::__miter_base<Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*) +428 48 ++1 36 + +fn=(7130) Dune::FieldVector<double, 1>* std::__miter_base<Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*) +428 32 ++1 24 + +fn=(5822) UG::D2::node** std::__miter_base<UG::D2::node**>(UG::D2::node**) +428 9494024 ++1 7120518 + +fn=(6434) Dune::FieldVector<double, 2>* std::__miter_base<Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*) +428 144 ++1 108 + +fn=(8184) Dune::FieldMatrix<double, 0, 2>* std::__miter_base<Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*) +428 48 ++1 36 + +fn=(9028) UG::D2::compare_record** std::__miter_base<UG::D2::compare_record**>(UG::D2::compare_record**) +428 2667856 ++1 2000892 + +fl=(260) +fn=(2782) Dune::ParameterTreeParser::rtrim(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +32 315 ++1 175 +cob=(2) +cfi=(18) +cfn=(2784) +calls=35 -33 +* 6795 +* 35 ++2 70 ++1 280 +cob=(2) +cfi=(18) +cfn=(2742) +calls=35 -36 +* 5513 +* 35 ++2 210 + +fn=(2494) +45 12 ++1 3 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 -46 +* 5 +* 6 +cob=(2) +cfi=(18) +cfn=(2500) +calls=1 -46 +* 19816 ++2 4 +cob=(2) +cfi=(18) +cfn=(2600) +calls=1 -48 +* 6 +* 2 ++3 6 +cfi=(274) +cfn=(2604) +calls=1 1158 +* 3903 +* 6 +cfi=(272) +cfn=(2632) +calls=1 6121 +* 1592 +* 6 +cfn=(2648) Dune::ParameterTreeParser::readINITree(std::istream&, Dune::ParameterTree&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, bool) +calls=1 +16 +* 290044 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -51 +* 97 +* 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -51 +* 8 +-5 3 +cob=(2) +cfi=(18) +cfn=(3378) +calls=1 -46 +* 14536 ++6 8 + +fn=(2334) __static_initialization_and_destruction_0(int, int) +244 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(260) +244 3 + +fn=(2648) +67 13 ++1 3 +cob=(2) +cfi=(18) +cfn=(2294) +calls=1 -68 +* 8 ++1 3 +cfi=(287) +cfn=(2650) +calls=1 +98 +* 95 ++1 297 +cob=(2) +cfi=(18) +cfn=(2660) +calls=33 -70 +* 231 +* 99 ++2 96 +cob=(2) +cfi=(18) +cfn=(2294) +calls=32 -72 +* 256 ++1 160 +cob=(2) +cfi=(18) +cfn=(2664) +calls=32 -73 +* 25871 ++1 160 +cfn=(2730) Dune::ParameterTreeParser::ltrim(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) +calls=32 -51 +* 12415 +* 160 +cob=(2) +cfi=(18) +cfn=(2750) +calls=32 -74 +* 1100 +* 96 +cob=(2) +cfi=(18) +cfn=(2754) +calls=32 -74 +* 4522 ++1 96 +cob=(2) +cfi=(18) +cfn=(2606) +calls=32 -75 +* 160 +* 137 ++1 9 ++1 92 +cob=(2) +cfi=(18) +cfn=(2768) +calls=23 -77 +* 138 +* 130 ++5 15 +cob=(2) +cfi=(18) +cfn=(3164) +calls=3 -82 +* 138 +* 3 ++1 6 ++1 24 +cob=(2) +cfi=(18) +cfn=(2742) +calls=3 -84 +* 446 +* 15 +cfn=(2730) +calls=3 -61 +* 798 +* 15 +cfn=(2782) +calls=3 -52 +* 813 +* 15 +cob=(2) +cfi=(18) +cfn=(2750) +calls=3 -84 +* 143 +* 9 +cob=(2) +cfi=(18) +cfn=(2754) +calls=3 -84 +* 24 +* 9 +cob=(2) +cfi=(18) +cfn=(2754) +calls=3 -84 +* 24 +* 9 +cob=(2) +cfi=(18) +cfn=(2754) +calls=3 -84 +* 24 ++1 12 +cfi=(272) +cfn=(3168) +calls=3 6213 +* 237 +* 6 ++1 12 +cob=(2) +cfi=(18) +cfn=(3176) +calls=3 -86 +* 216 ++3 3 ++2 80 +cob=(2) +cfi=(18) +cfn=(2772) +calls=16 -91 +* 3436 +* 16 ++1 112 +cob=(2) +cfi=(18) +cfn=(2742) +calls=16 -92 +* 3951 +* 80 +cob=(2) +cfi=(18) +cfn=(2750) +calls=16 -92 +* 584 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -92 +* 1196 ++1 80 +cob=(2) +cfi=(18) +cfn=(2772) +calls=16 -93 +* 1985 +* 16 ++1 32 ++2 112 +cob=(2) +cfi=(18) +cfn=(2742) +calls=16 -96 +* 2754 +* 80 +cfn=(2730) +calls=16 -73 +* 5219 +* 80 +cfn=(2782) +calls=16 -64 +* 7414 +* 96 +cfi=(272) +cfn=(2794) +calls=16 6091 +* 7548 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -96 +* 128 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -96 +* 484 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -96 +* 484 ++1 112 +cob=(2) +cfi=(18) +cfn=(2742) +calls=16 -97 +* 2932 +* 80 +cfn=(2730) +calls=16 -74 +* 5429 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -97 +* 484 ++2 48 +cob=(2) +cfi=(18) +cfn=(2806) +calls=16 -99 +* 80 +* 64 ++3 64 +cob=(2) +cfi=(18) +cfn=(2768) +calls=16 0 +* 96 +* 112 +cob=(2) +cfi=(18) +cfn=(2768) +calls=16 0 +* 96 +* 96 ++19 80 +cfn=(2782) +calls=16 -89 +* 5201 +* 80 +cob=(2) +cfi=(18) +cfn=(2750) +calls=16 0 +* 628 +* 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 0 +* 306 ++3 80 +cfi=(287) +cfn=(2810) +calls=16 748 +* 13792 +* 64 ++5 96 ++1 80 +cfi=(258) +cfn=(2826) +calls=16 +19 +* 130466 +* 80 +cob=(2) +cfi=(18) +cfn=(3036) +calls=16 0 +* 3103 ++1 80 +cfi=(287) +cfn=(3046) +calls=16 509 +* 30530 +-34 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -97 +* 484 +-1 48 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 -96 +* 1285 ++38 16 +-55 8 ++10 6 ++45 80 +cob=(2) +cfi=(18) +cfn=(2754) +calls=16 0 +* 1196 +* 28 +cob=(2) +cfi=(18) +cfn=(2754) +calls=7 0 +* 412 +* 27 +cob=(2) +cfi=(18) +cfn=(2754) +calls=9 0 +* 72 +* 32 +-64 32 +-1 3 +cfi=(287) +cfn=(3352) +calls=1 281 +* 6271 +-1 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -68 +* 8 ++70 8 + +fn=(2332) _GLOBAL__sub_I_parametertreeparser.cc +244 6 +cfn=(2334) +calls=1 * +* 119 +* 2 + +fn=(2730) +23 603 ++1 335 +cob=(2) +cfi=(18) +cfn=(2732) +calls=67 -24 +* 7881 +* 67 ++2 134 ++1 348 +cob=(2) +cfi=(18) +cfn=(2742) +calls=58 -27 +* 13934 +* 58 ++1 27 +cob=(2) +cfi=(18) +cfn=(2294) +calls=9 -28 +* 72 ++1 402 + +fl=(302) +fn=(3514) +99 80 ++6 160 ++4 30 ++2 35 +cob=(3) +cfi=(303) +cfn=(3516) +calls=5 +12 +* 5011 +* 5 ++4 15 +cob=(2) +cfi=(18) +cfn=(2432) +calls=5 0 +* 20 +* 55 +cfi=(272) +cfn=(3542) +calls=5 625 +* 940 +* 15 +cob=(2) +cfi=(18) +cfn=(3462) +calls=5 0 +* 20 ++1 35 + +fl=(348) +fn=(4888) +268 21 ++5 3 ++1 6 + +fn=(4894) +268 7 ++5 1 ++1 2 + +fn=(4898) +268 7 ++5 1 ++1 2 + +fn=(4580) Dune::Communication<Dune::No_Comm>::rank() const +95 4 ++2 1 ++1 2 + +fn=(4218) +84 4 ++1 3 + +fn=(4892) +268 7 ++5 1 ++1 2 + +fl=(255) +fn=(2278) +553 5 ++1 133 ++1 1 ++1 5 ++3 1 ++1 11 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++2 5 ++4 1 ++1 11 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 11 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++1 12 +cfi=(252) +cfn=(2262) +calls=1 192 +* 37 +* 2 ++2 11 ++1 11 ++1 11 ++1 11 ++1 11 ++1 11 ++2 5 ++2 3 + +fl=(265) +fn=(8970) +966 103276800 ++6 46944000 +cfi=(276) +cfn=(8972) +calls=9388800 138 +* 300441600 +* 9388800 ++2 56332800 ++2 56332800 ++1 37555200 ++1 93888000 +cfi=(276) +cfn=(8978) +calls=18777600 202 +* 751104000 ++1 112665600 +cfi=(390) +cfn=(8982) +calls=18777600 176 +* 525772800 +* 37555200 ++2 10284260 ++1 5142130 ++1 25710650 ++3 27270940 +-12 13635470 ++14 9388800 ++1 46944000 + +fn=(4648) Dune::FieldVector<double, 2>* std::__niter_base<Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*) +280 696 ++2 522 + +fn=(4720) __gnu_cxx::__enable_if<std::__is_scalar<unsigned int>::__value, unsigned int*>::__type std::__fill_n_a<unsigned int*, unsigned long, unsigned int>(unsigned int*, unsigned long, unsigned int const&) +767 18432 ++2 9216 ++1 6144 ++1 22528 ++1 24576 +-2 24576 ++3 3072 ++1 6144 + +fn=(5126) int* std::fill_n<int*, unsigned long, int>(int*, unsigned long, int const&) +802 7 ++6 3 +cfn=(5128) int* std::__niter_base<int*>(int*) +calls=1 280 +* 7 +* 6 +cfn=(5130) __gnu_cxx::__enable_if<std::__is_scalar<int>::__value, int*>::__type std::__fill_n_a<int*, unsigned long, int>(int*, unsigned long, int const&) +calls=1 -41 +* 8728 +* 5 +cfn=(5132) int* std::__niter_wrap<int*>(int* const&, int*) +calls=1 295 +* 8 ++2 2 + +fn=(5418) void** std::__niter_base<void**>(void**) +280 72 ++2 54 + +fn=(5864) +1059 54144 ++10 18048 +cfn=(5866) UG::D2::node* const* std::__niter_base<UG::D2::node* const*>(UG::D2::node* const*) +calls=6016 280 +* 42112 +* 24064 +cfn=(5866) +calls=6016 280 +* 42112 +* 24064 +cfn=(5866) +calls=6016 280 +* 42112 +* 24064 +cfn=(5868) bool std::__equal_aux<UG::D2::node* const*, UG::D2::node* const*>(UG::D2::node* const*, UG::D2::node* const*, UG::D2::node* const*) +calls=6016 841 +* 372992 ++3 30080 + +fn=(6598) +742 40 ++7 20 +cfi=(254) +cfn=(6600) +calls=4 156 +* 64 +* 20 +cfn=(6602) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> std::__niter_base<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> >(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>) +calls=4 280 +* 120 +* 20 +cfi=(254) +cfn=(6600) +calls=4 156 +* 64 +* 20 +cfn=(6602) +calls=4 280 +* 120 +* 24 +cfn=(6604) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double const&) +calls=4 -40 +* 3324 ++2 24 + +fn=(6602) +280 48 ++2 40 +cfi=(254) +cfn=(6600) +calls=8 156 +* 128 +* 24 + +fn=(7294) Dune::AffineGeometry<double, 1, 1>* std::__niter_base<Dune::AffineGeometry<double, 1, 1>*>(Dune::AffineGeometry<double, 1, 1>*) +280 24 ++2 18 + +fn=(7856) +742 10 ++7 5 +cfi=(254) +cfn=(7858) +calls=1 156 +* 16 +* 5 +cfn=(7860) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&> std::__niter_base<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&> >(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>) +calls=1 280 +* 30 +* 5 +cfi=(254) +cfn=(7858) +calls=1 156 +* 16 +* 5 +cfn=(7860) +calls=1 280 +* 30 +* 6 +cfn=(7862) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, double const&) +calls=1 -40 +* 61 ++2 6 + +fn=(7860) +280 12 ++2 10 +cfi=(254) +cfn=(7858) +calls=2 156 +* 32 +* 6 + +fn=(8140) Dune::FieldMatrix<double, 0, 2>* std::__niter_base<Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*) +280 88 ++2 66 + +fn=(9026) +676 2667856 ++10 1000446 +cfi=(412) +cfn=(9028) +calls=333482 428 +* 2334374 +* 1333928 +cfi=(412) +cfn=(9028) +calls=333482 428 +* 2334374 +* 2000892 +cfn=(9030) UG::D2::compare_record** std::__copy_move_backward_a2<true, UG::D2::compare_record**, UG::D2::compare_record**>(UG::D2::compare_record**, UG::D2::compare_record**, UG::D2::compare_record**) +calls=333482 -73 +* 42352214 ++3 1333928 + +fn=(3918) +742 220 ++7 110 +cfi=(254) +cfn=(3920) +calls=22 156 +* 352 +* 110 +cfn=(3922) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> std::__niter_base<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> >(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>) +calls=22 280 +* 660 +* 110 +cfi=(254) +cfn=(3920) +calls=22 156 +* 352 +* 110 +cfn=(3922) +calls=22 280 +* 660 +* 132 +cfn=(3924) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double const&) +calls=22 -40 +* 4356 ++2 132 + +fn=(3922) +280 264 ++2 220 +cfi=(254) +cfn=(3920) +calls=44 156 +* 704 +* 132 + +fn=(4162) __gnu_cxx::__enable_if<std::__is_scalar<int>::__value, void>::__type std::__fill_a<unsigned int*, int>(unsigned int*, unsigned int*, int const&) +709 252 ++3 126 ++1 588 ++1 462 +-1 308 ++2 126 + +fn=(4784) unsigned char* std::__niter_base<unsigned char*>(unsigned char*) +280 288 ++2 216 + +fn=(5016) int const* std::__niter_base<int const*>(int const*) +280 874096 ++2 655572 + +fn=(5018) bool std::__lexicographical_compare_aux<int const*, int const*>(int const*, int const*, int const*, int const*) +948 437048 ++5 54631 ++7 327786 +cfn=(5020) bool std::__lexicographical_compare<false>::__lc<int const*, int const*>(int const*, int const*, int const*, int const*) +calls=54631 -39 +* 7358055 ++2 109262 + +fn=(5130) +767 6 ++2 3 ++1 2 ++1 2180 ++1 3267 +-2 3267 ++3 1 ++1 2 + +fn=(5586) UG::D2::node** std::__niter_wrap<UG::D2::node**>(UG::D2::node** const&, UG::D2::node**) +295 5944010 ++1 3566406 + +fn=(5868) +841 42112 ++4 6016 ++6 36096 +cfn=(5870) bool std::__equal<true>::equal<UG::D2::node*>(UG::D2::node* const*, UG::D2::node* const*, UG::D2::node* const*) +calls=6016 -20 +* 276736 ++1 12032 + +fn=(6834) Dune::FieldMatrix<double, 1, 2>* std::__niter_base<Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*) +280 72 ++2 54 + +fn=(6880) Dune::AffineGeometry<double, 1, 2>* std::__niter_base<Dune::AffineGeometry<double, 1, 2>*>(Dune::AffineGeometry<double, 1, 2>*) +280 48 ++2 36 + +fn=(7424) Dune::FieldMatrix<double, 0, 1>* std::__niter_wrap<Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>* const&, Dune::FieldMatrix<double, 0, 1>*) +295 20 ++1 12 + +fn=(7462) Dune::FieldMatrix<double, 0, 1>* std::copy<Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*) +465 16 ++9 6 +cfi=(412) +cfn=(7464) +calls=2 -46 +* 14 +* 8 +cfi=(412) +cfn=(7464) +calls=2 -46 +* 14 +* 12 +cfn=(7466) Dune::FieldMatrix<double, 0, 1>* std::__copy_move_a2<false, Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*) +calls=2 -36 +* 240 ++1 8 + +fn=(7470) Dune::FieldMatrix<double, 0, 1>* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<Dune::FieldMatrix<double, 0, 1> >(Dune::FieldMatrix<double, 0, 1> const*, Dune::FieldMatrix<double, 0, 1> const*, Dune::FieldMatrix<double, 0, 1>*) +375 14 ++9 6 ++1 4 ++1 12 +cob=(2) +cfi=(18) +cfn=(4834) +calls=2 0 +* 36 ++1 6 ++1 4 + +fn=(8138) Dune::FieldMatrix<double, 0, 2>* std::fill_n<Dune::FieldMatrix<double, 0, 2>*, unsigned long, Dune::FieldMatrix<double, 0, 2> >(Dune::FieldMatrix<double, 0, 2>*, unsigned long, Dune::FieldMatrix<double, 0, 2> const&) +802 28 ++6 12 +cfn=(8140) +calls=4 280 +* 28 +* 24 +cfn=(8142) __gnu_cxx::__enable_if<!std::__is_scalar<Dune::FieldMatrix<double, 0, 2> >::__value, Dune::FieldMatrix<double, 0, 2>*>::__type std::__fill_n_a<Dune::FieldMatrix<double, 0, 2>*, unsigned long, Dune::FieldMatrix<double, 0, 2> >(Dune::FieldMatrix<double, 0, 2>*, unsigned long, Dune::FieldMatrix<double, 0, 2> const&) +calls=4 -52 +* 122 +* 20 +cfn=(8144) Dune::FieldMatrix<double, 0, 2>* std::__niter_wrap<Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>* const&, Dune::FieldMatrix<double, 0, 2>*) +calls=4 295 +* 32 ++2 8 + +fn=(8176) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double const&) +709 60 ++3 18 ++1 30 +cfi=(330) /home/joscha/software/dune/dune-common/dune/common/iteratorfacades.hh +cfn=(8178) Dune::EnableIfInterOperable<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, bool>::type Dune::operator!=<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>(Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long> const&, Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long> const&) +calls=6 613 +* 210 +* 12 ++2 36 + +fn=(8366) Dune::GeometryType* std::__niter_base<Dune::GeometryType*>(Dune::GeometryType*) +280 432 ++2 324 + +fn=(7138) Dune::FieldVector<double, 1>* std::__niter_wrap<Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>* const&, Dune::FieldVector<double, 1>*) +295 20 ++1 12 + +fn=(4148) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<double*, double>(double*, double*, double const&) +709 6942 ++3 3471 ++1 10401 ++1 6930 +-1 4620 ++2 3471 + +fn=(4160) unsigned int* std::__niter_base<unsigned int*>(unsigned int*) +280 13248 ++2 9936 + +fn=(5020) +921 437048 ++5 54631 +cfi=(390) +cfn=(4856) +calls=54631 49 +* 273155 +-2 327786 +cfn=(5022) bool std::__lexicographical_compare_impl<int const*, int const*, __gnu_cxx::__ops::_Iter_less_iter>(int const*, int const*, int const*, int const*, __gnu_cxx::__ops::_Iter_less_iter) +calls=54631 -33 +* 6156173 ++3 109262 + +fn=(5580) UG::D2::node** std::fill_n<UG::D2::node**, unsigned long, UG::D2::node*>(UG::D2::node**, unsigned long, UG::D2::node* const&) +802 14343 ++6 6147 +cfn=(5582) UG::D2::node** std::__niter_base<UG::D2::node**>(UG::D2::node**) +calls=2049 280 +* 14343 +* 12294 +cfn=(5584) __gnu_cxx::__enable_if<std::__is_scalar<UG::D2::node*>::__value, UG::D2::node**>::__type std::__fill_n_a<UG::D2::node**, unsigned long, UG::D2::node*>(UG::D2::node**, unsigned long, UG::D2::node* const&) +calls=2049 -41 +* 90648 +* 10245 +cfn=(5586) +calls=2049 295 +* 16392 ++2 4098 + +fn=(5866) +280 72192 ++2 54144 + +fn=(5870) +831 42112 ++2 36096 ++1 42112 +cob=(2) +cfi=(18) +cfn=(5872) +calls=6016 0 +* 126336 +* 18048 ++2 12032 + +fn=(6800) +742 80 ++7 40 +cfi=(254) +cfn=(6802) +calls=8 156 +* 128 +* 40 +cfn=(6804) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> std::__niter_base<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> >(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>) +calls=8 280 +* 240 +* 40 +cfi=(254) +cfn=(6802) +calls=8 156 +* 128 +* 40 +cfn=(6804) +calls=8 280 +* 240 +* 48 +cfn=(6806) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, double const&) +calls=8 -40 +* 3568 ++2 48 + +fn=(6804) +280 96 ++2 80 +cfi=(254) +cfn=(6802) +calls=16 156 +* 256 +* 48 + +fn=(6828) Dune::FieldMatrix<double, 1, 2>* std::copy<Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*) +465 48 ++9 18 +cfi=(412) +cfn=(6830) +calls=6 -46 +* 42 +* 24 +cfi=(412) +cfn=(6830) +calls=6 -46 +* 42 +* 36 +cfn=(6832) Dune::FieldMatrix<double, 1, 2>* std::__copy_move_a2<false, Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*) +calls=6 -36 +* 720 ++1 24 + +fn=(7450) +742 20 ++7 10 +cfi=(254) +cfn=(7452) +calls=2 156 +* 32 +* 10 +cfn=(7454) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> std::__niter_base<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&> >(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>) +calls=2 280 +* 60 +* 10 +cfi=(254) +cfn=(7452) +calls=2 156 +* 32 +* 10 +cfn=(7454) +calls=2 280 +* 60 +* 12 +cfn=(7456) __gnu_cxx::__enable_if<std::__is_scalar<double>::__value, void>::__type std::__fill_a<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double>(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, double const&) +calls=2 -40 +* 122 ++2 12 + +fn=(7454) +280 24 ++2 20 +cfi=(254) +cfn=(7452) +calls=4 156 +* 64 +* 12 + +fn=(7468) Dune::FieldMatrix<double, 0, 1>* std::__copy_move_a<false, Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*) +393 14 ++5 2 ++6 12 +cfn=(7470) +calls=2 -29 +* 82 ++1 4 + +fn=(7818) Dune::FieldMatrix<double, 0, 0>* std::__niter_base<Dune::FieldMatrix<double, 0, 0>*>(Dune::FieldMatrix<double, 0, 0>*) +280 4 ++2 3 + +fn=(8142) +756 24 ++2 8 ++1 36 +-1 42 ++3 4 ++1 8 + +fn=(9034) UG::D2::compare_record** std::__copy_move_backward_a<true, UG::D2::compare_record**, UG::D2::compare_record**>(UG::D2::compare_record**, UG::D2::compare_record**, UG::D2::compare_record**) +595 2334374 ++5 333482 ++6 2000892 +cfn=(9036) UG::D2::compare_record** std::__copy_move_backward<true, true, std::random_access_iterator_tag>::__copy_move_b<UG::D2::compare_record*>(UG::D2::compare_record* const*, UG::D2::compare_record* const*, UG::D2::compare_record**) +calls=333482 -29 +* 16007136 ++3 666964 + +fn=(2360) +222 700 ++5 840 ++1 144 ++1 68 ++1 280 + +fn=(2866) +198 27600 ++5 33120 ++2 5520 ++1 11040 + +fn=(4058) +222 5 ++5 6 ++1 2 ++2 2 + +fn=(4158) +742 336 ++7 126 +cfn=(4160) +calls=42 280 +* 294 +* 168 +cfn=(4160) +calls=42 280 +* 294 +* 252 +cfn=(4162) +calls=42 -40 +* 1862 ++2 210 + +fn=(4870) +123 14336 ++28 6144 +cfi=(291) +cfn=(4868) +calls=2048 819 +* 16384 +* 8192 +cfi=(291) +cfn=(4868) +calls=2048 819 +* 16384 +* 6144 +cfi=(286) +cfn=(4872) std::enable_if<std::__and_<std::__not_<std::__is_tuple_like<unsigned int> >, std::is_move_constructible<unsigned int>, std::is_move_assignable<unsigned int> >::value, void>::type std::swap<unsigned int>(unsigned int&, unsigned int&) +calls=2048 +31 +* 108544 ++2 10240 + +fn=(5014) +1241 600941 ++15 163893 +cfn=(5016) +calls=54631 280 +* 382417 +* 218524 +cfn=(5016) +calls=54631 280 +* 382417 +* 218524 +cfn=(5016) +calls=54631 280 +* 382417 +* 218524 +cfn=(5016) +calls=54631 280 +* 382417 +* 273155 +cfn=(5018) +calls=54631 948 +* 8286782 ++4 327786 + +fn=(5024) int const* std::__lc_rai<std::random_access_iterator_tag, std::random_access_iterator_tag>::__newlast1<int const*, int const*>(int const*, int const*, int const*, int const*) +873 382417 ++4 218524 ++2 218524 ++1 218524 ++1 109262 + +fn=(6604) +709 40 ++3 12 ++1 20 +cfi=(330) +cfn=(6606) Dune::EnableIfInterOperable<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, bool>::type Dune::operator!=<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>(Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long> const&, Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long> const&) +calls=4 613 +* 112 +* 40 +cfi=(330) +cfn=(6606) +calls=8 613 +* 252 +* 24 ++1 24 +cfi=(330) +cfn=(6610) Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long>::operator*() const +calls=8 498 +* 680 +* 40 +cfi=(254) +cfn=(6622) +calls=8 267 +* 1840 +-1 24 +cfi=(330) +cfn=(6624) Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 2, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long>::operator++() +calls=8 519 +* 184 +* 8 ++2 24 + +fn=(7816) Dune::FieldMatrix<double, 0, 0>* std::fill_n<Dune::FieldMatrix<double, 0, 0>*, unsigned long, Dune::FieldMatrix<double, 0, 0> >(Dune::FieldMatrix<double, 0, 0>*, unsigned long, Dune::FieldMatrix<double, 0, 0> const&) +802 7 ++6 3 +cfn=(7818) +calls=1 280 +* 7 +* 6 +cfn=(7820) __gnu_cxx::__enable_if<!std::__is_scalar<Dune::FieldMatrix<double, 0, 0> >::__value, Dune::FieldMatrix<double, 0, 0>*>::__type std::__fill_n_a<Dune::FieldMatrix<double, 0, 0>*, unsigned long, Dune::FieldMatrix<double, 0, 0> >(Dune::FieldMatrix<double, 0, 0>*, unsigned long, Dune::FieldMatrix<double, 0, 0> const&) +calls=1 -52 +* 18 +* 5 +cfn=(7822) Dune::FieldMatrix<double, 0, 0>* std::__niter_wrap<Dune::FieldMatrix<double, 0, 0>*>(Dune::FieldMatrix<double, 0, 0>* const&, Dune::FieldMatrix<double, 0, 0>*) +calls=1 295 +* 8 ++2 2 + +fn=(7862) +709 10 ++3 3 ++1 5 +cfi=(330) +cfn=(7864) Dune::EnableIfInterOperable<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, bool>::type Dune::operator!=<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&, long, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>(Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&, long> const&, Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 0> >, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&>, Dune::FieldVector<double, 0>, Dune::FieldVector<double, 0>&, long> const&) +calls=1 613 +* 35 +* 2 ++2 6 + +fn=(8182) Dune::FieldMatrix<double, 0, 2>* std::copy<Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*) +465 48 ++9 18 +cfi=(412) +cfn=(8184) +calls=6 -46 +* 42 +* 24 +cfi=(412) +cfn=(8184) +calls=6 -46 +* 42 +* 36 +cfn=(8186) Dune::FieldMatrix<double, 0, 2>* std::__copy_move_a2<false, Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*) +calls=6 -36 +* 722 ++1 24 + +fn=(8190) Dune::FieldMatrix<double, 0, 2>* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<Dune::FieldMatrix<double, 0, 2> >(Dune::FieldMatrix<double, 0, 2> const*, Dune::FieldMatrix<double, 0, 2> const*, Dune::FieldMatrix<double, 0, 2>*) +375 42 ++9 18 ++1 12 ++1 36 +cob=(2) +cfi=(18) +cfn=(4834) +calls=6 0 +* 110 ++1 18 ++1 12 + +fn=(9030) +613 3001338 ++2 1000446 +cfn=(9032) UG::D2::compare_record** std::__niter_base<UG::D2::compare_record**>(UG::D2::compare_record**) +calls=333482 280 +* 2334374 +* 1333928 +cfn=(9032) +calls=333482 280 +* 2334374 +* 1333928 +cfn=(9032) +calls=333482 280 +* 2334374 +* 1333928 +cfn=(9034) +calls=333482 -20 +* 21342848 +* 1667410 +cfn=(9038) UG::D2::compare_record** std::__niter_wrap<UG::D2::compare_record**>(UG::D2::compare_record** const&, UG::D2::compare_record**) +calls=333482 295 +* 2667856 ++4 1667410 + +fn=(9032) +280 4001784 ++2 3001338 + +fn=(3924) +709 220 ++3 66 ++1 110 +cfi=(330) +cfn=(3926) Dune::EnableIfInterOperable<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, bool>::type Dune::operator!=<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>(Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long> const&, Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long> const&) +calls=22 613 +* 616 +* 110 +cfi=(330) +cfn=(3926) +calls=22 613 +* 770 +* 88 ++1 66 +cfi=(330) +cfn=(3930) Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long>::operator*() const +calls=22 498 +* 1210 +* 110 +cfi=(252) +cfn=(3938) +calls=22 369 +* 264 +-1 66 +cfi=(330) +cfn=(3940) Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long>::operator++() +calls=22 519 +* 506 +* 22 ++2 132 + +fn=(2920) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >* std::__niter_base<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +280 408 ++2 306 + +fn=(7132) Dune::FieldVector<double, 1>* std::__copy_move_a2<false, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*) +438 36 ++2 12 +cfn=(7116) Dune::FieldVector<double, 1>* std::__niter_base<Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*) +calls=4 280 +* 28 +* 16 +cfn=(7116) +calls=4 280 +* 28 +* 16 +cfn=(7116) +calls=4 280 +* 28 +* 16 +cfn=(7134) Dune::FieldVector<double, 1>* std::__copy_move_a<false, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*) +calls=4 -47 +* 228 +* 20 +cfn=(7138) +calls=4 295 +* 32 ++4 20 + +fn=(5582) +280 14249232 ++2 10686924 + +fn=(5820) +676 9494024 ++10 3560259 +cfi=(412) +cfn=(5822) +calls=1186753 428 +* 8307271 +* 4747012 +cfi=(412) +cfn=(5822) +calls=1186753 428 +* 8307271 +* 7120518 +cfn=(5824) UG::D2::node** std::__copy_move_backward_a2<true, UG::D2::node**, UG::D2::node**>(UG::D2::node**, UG::D2::node**, UG::D2::node**) +calls=1186753 -73 +* 149153073 ++3 4747012 + +fn=(5826) UG::D2::node** std::__copy_move_backward_a<true, UG::D2::node**, UG::D2::node**>(UG::D2::node**, UG::D2::node**, UG::D2::node**) +595 8307271 ++5 1186753 ++6 7120518 +cfn=(5828) UG::D2::node** std::__copy_move_backward<true, true, std::random_access_iterator_tag>::__copy_move_b<UG::D2::node*>(UG::D2::node* const*, UG::D2::node* const*, UG::D2::node**) +calls=1186753 -29 +* 55399586 ++3 2373506 + +fn=(6436) Dune::FieldVector<double, 2>* std::__copy_move_a2<false, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*) +438 162 ++2 54 +cfn=(4648) +calls=18 280 +* 126 +* 72 +cfn=(4648) +calls=18 280 +* 126 +* 72 +cfn=(4648) +calls=18 280 +* 126 +* 72 +cfn=(6438) Dune::FieldVector<double, 2>* std::__copy_move_a<false, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*) +calls=18 -47 +* 1030 +* 90 +cfn=(6442) Dune::FieldVector<double, 2>* std::__niter_wrap<Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>* const&, Dune::FieldVector<double, 2>*) +calls=18 295 +* 144 ++4 90 + +fn=(7420) Dune::FieldMatrix<double, 0, 1>* std::__niter_base<Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*) +280 32 ++2 24 + +fn=(7820) +756 6 ++2 2 ++1 4 +-1 3 ++3 1 ++1 2 + +fn=(8188) Dune::FieldMatrix<double, 0, 2>* std::__copy_move_a<false, Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*) +393 42 ++5 6 ++6 36 +cfn=(8190) +calls=6 -29 +* 248 ++1 12 + +fn=(7134) +393 28 ++5 4 ++6 24 +cfn=(7136) Dune::FieldVector<double, 1>* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<Dune::FieldVector<double, 1> >(Dune::FieldVector<double, 1> const*, Dune::FieldVector<double, 1> const*, Dune::FieldVector<double, 1>*) +calls=4 -29 +* 164 ++1 8 + +fn=(4722) unsigned int* std::__niter_wrap<unsigned int*>(unsigned int* const&, unsigned int*) +295 15360 ++1 9216 + +fn=(5026) bool std::__lc_rai<std::random_access_iterator_tag, std::random_access_iterator_tag>::__cnd2<int const*>(int const*, int const*) +885 336140 ++1 201684 + +fn=(5584) +767 12294 ++2 6147 ++1 4098 ++1 18564 ++1 21699 +-2 21699 ++3 2049 ++1 4098 + +fn=(5684) +1029 17015232 + +fn=(5824) +613 10680777 ++2 3560259 +cfn=(5582) +calls=1186753 280 +* 8307271 +* 4747012 +cfn=(5582) +calls=1186753 280 +* 8307271 +* 4747012 +cfn=(5582) +calls=1186753 280 +* 8307271 +* 4747012 +cfn=(5826) +calls=1186753 -20 +* 74387634 +* 5933765 +cfn=(5586) +calls=1186753 295 +* 9494024 ++4 5933765 + +fn=(5828) +577 8307271 ++9 4747012 ++1 2373506 ++1 14241036 +cob=(2) +cfi=(18) +cfn=(4834) +calls=1186753 0 +* 16236737 ++1 7120518 ++1 2373506 + +fn=(6084) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >* std::__niter_base<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*>(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*) +280 96 ++2 72 + +fn=(6438) +393 126 ++5 18 ++6 108 +cfn=(6440) Dune::FieldVector<double, 2>* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2> const*, Dune::FieldVector<double, 2> const*, Dune::FieldVector<double, 2>*) +calls=18 -29 +* 742 ++1 36 + +fn=(6442) +295 90 ++1 54 + +fn=(6806) +709 80 ++3 24 ++1 40 +cfi=(330) +cfn=(6808) Dune::EnableIfInterOperable<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, bool>::type Dune::operator!=<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>(Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long> const&, Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long> const&) +calls=8 613 +* 224 +* 40 +cfi=(330) +cfn=(6808) +calls=8 613 +* 280 +* 32 ++1 24 +cfi=(330) +cfn=(6812) Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long>::operator*() const +calls=8 498 +* 680 +* 40 +cfi=(254) +cfn=(6622) +calls=8 267 +* 1840 +-1 24 +cfi=(330) +cfn=(6824) Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 1, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&, long>::operator++() +calls=8 519 +* 184 +* 8 ++2 48 + +fn=(7418) Dune::FieldMatrix<double, 0, 1>* std::fill_n<Dune::FieldMatrix<double, 0, 1>*, unsigned long, Dune::FieldMatrix<double, 0, 1> >(Dune::FieldMatrix<double, 0, 1>*, unsigned long, Dune::FieldMatrix<double, 0, 1> const&) +802 14 ++6 6 +cfn=(7420) +calls=2 280 +* 14 +* 12 +cfn=(7422) __gnu_cxx::__enable_if<!std::__is_scalar<Dune::FieldMatrix<double, 0, 1> >::__value, Dune::FieldMatrix<double, 0, 1>*>::__type std::__fill_n_a<Dune::FieldMatrix<double, 0, 1>*, unsigned long, Dune::FieldMatrix<double, 0, 1> >(Dune::FieldMatrix<double, 0, 1>*, unsigned long, Dune::FieldMatrix<double, 0, 1> const&) +calls=2 -52 +* 46 +* 10 +cfn=(7424) +calls=2 295 +* 16 ++2 4 + +fn=(7456) +709 20 ++3 6 ++1 10 +cfi=(330) +cfn=(7458) Dune::EnableIfInterOperable<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, bool>::type Dune::operator!=<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long, Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>(Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long> const&, Dune::RandomAccessIteratorFacade<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 1> >, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&>, Dune::FieldVector<double, 1>, Dune::FieldVector<double, 1>&, long> const&) +calls=2 613 +* 70 +* 4 ++2 12 + +fn=(7116) +280 120 ++2 90 + +fn=(6666) Dune::AffineGeometry<double, 2, 2>* std::__niter_base<Dune::AffineGeometry<double, 2, 2>*>(Dune::AffineGeometry<double, 2, 2>*) +280 48 ++2 36 + +fn=(6838) Dune::FieldMatrix<double, 1, 2>* std::__copy_move<false, true, std::random_access_iterator_tag>::__copy_m<Dune::FieldMatrix<double, 1, 2> >(Dune::FieldMatrix<double, 1, 2> const*, Dune::FieldMatrix<double, 1, 2> const*, Dune::FieldMatrix<double, 1, 2>*) +375 42 ++9 24 ++1 12 ++1 48 +cob=(2) +cfi=(18) +cfn=(4834) +calls=6 0 +* 78 ++1 30 ++1 12 + +fn=(7422) +756 12 ++2 4 ++1 12 +-1 12 ++3 2 ++1 4 + +fn=(7466) +438 18 ++2 6 +cfn=(7420) +calls=2 280 +* 14 +* 8 +cfn=(7420) +calls=2 280 +* 14 +* 8 +cfn=(7420) +calls=2 280 +* 14 +* 8 +cfn=(7468) +calls=2 -47 +* 114 +* 10 +cfn=(7424) +calls=2 295 +* 16 ++4 10 + +fn=(7510) Dune::AffineGeometry<double, 0, 1>* std::__niter_base<Dune::AffineGeometry<double, 0, 1>*>(Dune::AffineGeometry<double, 0, 1>*) +280 24 ++2 18 + +fn=(8144) +295 50 ++1 30 + +fn=(9036) +577 2334374 ++9 1333928 ++1 666964 ++1 4001784 +cob=(2) +cfi=(18) +cfn=(4834) +calls=333482 0 +* 5002230 ++1 2000892 ++1 666964 + +fn=(7128) Dune::FieldVector<double, 1>* std::copy<Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*) +465 32 ++9 12 +cfi=(412) +cfn=(7130) +calls=4 -46 +* 28 +* 16 +cfi=(412) +cfn=(7130) +calls=4 -46 +* 28 +* 24 +cfn=(7132) +calls=4 -36 +* 480 ++1 16 + +fn=(4146) double* std::__niter_base<double*>(double*) +280 9256 ++2 6942 + +fn=(5022) +891 437048 ++8 327786 +cfn=(5024) +calls=54631 -26 +* 1147251 +* 54631 ++1 555872 +cfn=(5026) +calls=67228 -15 +* 537824 +* 421416 ++3 336140 +cfi=(390) +cfn=(5028) +calls=67228 42 +* 941192 +* 134456 ++1 43780 ++1 226690 +cfi=(390) +cfn=(5028) +calls=45338 42 +* 634732 +* 90676 ++1 53450 +-6 55839 ++8 48128 ++1 109262 + +fn=(6432) Dune::FieldVector<double, 2>* std::copy<Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*) +465 144 ++9 54 +cfi=(412) +cfn=(6434) +calls=18 -46 +* 126 +* 72 +cfi=(412) +cfn=(6434) +calls=18 -46 +* 126 +* 108 +cfn=(6436) +calls=18 -36 +* 2164 ++1 72 + +fn=(6832) +438 54 ++2 18 +cfn=(6834) +calls=6 280 +* 42 +* 24 +cfn=(6834) +calls=6 280 +* 42 +* 24 +cfn=(6834) +calls=6 280 +* 42 +* 24 +cfn=(6836) Dune::FieldMatrix<double, 1, 2>* std::__copy_move_a<false, Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*) +calls=6 -47 +* 342 +* 30 +cfn=(6840) Dune::FieldMatrix<double, 1, 2>* std::__niter_wrap<Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>* const&, Dune::FieldMatrix<double, 1, 2>*) +calls=6 295 +* 48 ++4 30 + +fn=(6840) +295 30 ++1 18 + +fn=(7906) Dune::AffineGeometry<double, 0, 0>* std::__niter_base<Dune::AffineGeometry<double, 0, 0>*>(Dune::AffineGeometry<double, 0, 0>*) +280 12 ++2 9 + +fn=(8170) +742 60 ++7 30 +cfi=(254) +cfn=(8172) +calls=6 156 +* 96 +* 30 +cfn=(8174) Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> std::__niter_base<Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&> >(Dune::DenseIterator<Dune::DenseMatrix<Dune::FieldMatrix<double, 0, 2> >, Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>&>) +calls=6 280 +* 180 +* 30 +cfi=(254) +cfn=(8172) +calls=6 156 +* 96 +* 30 +cfn=(8174) +calls=6 280 +* 180 +* 36 +cfn=(8176) +calls=6 -40 +* 366 ++2 36 + +fn=(8174) +280 72 ++2 60 +cfi=(254) +cfn=(8172) +calls=12 156 +* 192 +* 36 + +fn=(8230) Dune::AffineGeometry<double, 0, 2>* std::__niter_base<Dune::AffineGeometry<double, 0, 2>*>(Dune::AffineGeometry<double, 0, 2>*) +280 48 ++2 36 + +fn=(7136) +375 28 ++9 16 ++1 8 ++1 28 +cob=(2) +cfi=(18) +cfn=(4834) +calls=4 0 +* 60 ++1 16 ++1 8 + +fn=(4144) +742 9256 ++7 3471 +cfn=(4146) +calls=1157 280 +* 8099 +* 4628 +cfn=(4146) +calls=1157 280 +* 8099 +* 6942 +cfn=(4148) +calls=1157 -40 +* 35835 ++2 5785 + +fn=(4718) unsigned int* std::fill_n<unsigned int*, unsigned long, unsigned int>(unsigned int*, unsigned long, unsigned int const&) +802 21504 ++6 9216 +cfn=(4160) +calls=3072 280 +* 21504 +* 18432 +cfn=(4720) +calls=3072 -41 +* 114688 +* 15360 +cfn=(4722) +calls=3072 295 +* 24576 ++2 6144 + +fn=(5128) +280 16 ++2 12 + +fn=(5132) +295 5 ++1 3 + +fn=(6440) +375 126 ++9 72 ++1 36 ++1 144 +cob=(2) +cfi=(18) +cfn=(4834) +calls=18 0 +* 238 ++1 90 ++1 36 + +fn=(6836) +393 42 ++5 6 ++6 36 +cfn=(6838) +calls=6 -29 +* 246 ++1 12 + +fn=(7718) Dune::FieldVector<double, 0>* std::__niter_base<Dune::FieldVector<double, 0>*>(Dune::FieldVector<double, 0>*) +280 12 ++2 9 + +fn=(7822) +295 5 ++1 3 + +fn=(8186) +438 54 ++2 18 +cfn=(8140) +calls=6 280 +* 42 +* 24 +cfn=(8140) +calls=6 280 +* 42 +* 24 +cfn=(8140) +calls=6 280 +* 42 +* 24 +cfn=(8188) +calls=6 -47 +* 344 +* 30 +cfn=(8144) +calls=6 295 +* 48 ++4 30 + +fn=(9038) +295 1667410 ++1 1000446 + +fl=(334) +fn=(6698) void std::_Destroy<Dune::FieldMatrix<double, 2, 2>*>(Dune::FieldMatrix<double, 2, 2>*, Dune::FieldMatrix<double, 2, 2>*) +127 24 ++10 20 +cfn=(6700) void std::_Destroy_aux<true>::__destroy<Dune::FieldMatrix<double, 2, 2>*>(Dune::FieldMatrix<double, 2, 2>*, Dune::FieldMatrix<double, 2, 2>*) +calls=4 -20 +* 32 ++1 12 + +fn=(7354) +203 28 ++3 20 +cfn=(7356) void std::_Destroy<Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*) +calls=4 -79 +* 88 ++1 12 + +fn=(7942) +203 7 ++3 5 +cfn=(7944) void std::_Destroy<Dune::FieldMatrix<double, 0, 0>*>(Dune::FieldMatrix<double, 0, 0>*, Dune::FieldMatrix<double, 0, 0>*) +calls=1 -79 +* 22 ++1 3 + +fn=(8076) void std::_Destroy_aux<true>::__destroy<Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*) +117 32 + +fn=(8264) void std::_Destroy_aux<true>::__destroy<Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*) +117 32 + +fn=(9096) void std::_Destroy_aux<true>::__destroy<Dune::GeometryType*>(Dune::GeometryType*, Dune::GeometryType*) +117 216 + +fn=(4008) void std::_Destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +127 30 ++10 25 +cfn=(4010) void std::_Destroy_aux<false>::__destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +calls=5 -32 +* 708 ++1 15 + +fn=(4010) +105 30 ++2 69 ++1 54 +cfi=(286) +cfn=(3132) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >* std::__addressof<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&) +calls=18 -61 +* 126 +* 36 +cfn=(4012) void std::_Destroy<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*) +calls=18 -11 +* 342 +-1 36 ++2 15 + +fn=(4846) void std::_Destroy<unsigned int*>(unsigned int*, unsigned int*) +127 18450 ++10 15375 +cfn=(4848) void std::_Destroy_aux<true>::__destroy<unsigned int*>(unsigned int*, unsigned int*) +calls=3075 -20 +* 24600 ++1 9225 + +fn=(5530) void std::_Destroy<Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*) +127 84 ++10 70 +cfn=(5532) void std::_Destroy_aux<true>::__destroy<Dune::FieldVector<double, 2>*>(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*) +calls=14 -20 +* 112 ++1 42 + +fn=(6700) +117 32 + +fn=(7708) void std::_Construct<Dune::FieldVector<double, 0>>(Dune::FieldVector<double, 0>*) +74 10 ++1 8 +cfi=(293) +cfn=(2888) +calls=2 +99 +* 16 +* 4 +cfi=(252) +cfn=(7710) +calls=2 +41 +* 14 +* 6 + +fn=(7944) +127 6 ++10 5 +cfn=(7946) void std::_Destroy_aux<true>::__destroy<Dune::FieldMatrix<double, 0, 0>*>(Dune::FieldMatrix<double, 0, 0>*, Dune::FieldMatrix<double, 0, 0>*) +calls=1 -20 +* 8 ++1 3 + +fn=(8626) +203 7 ++3 5 +cfn=(8628) void std::_Destroy<int*>(int*, int*) +calls=1 -79 +* 22 ++1 3 + +fn=(8630) void std::_Destroy_aux<true>::__destroy<int*>(int*, int*) +117 8 + +fn=(8720) void std::_Destroy<std::array<int, 2ul>*>(std::array<int, 2ul>*, std::array<int, 2ul>*) +127 6 ++10 5 +cfn=(8722) void std::_Destroy_aux<true>::__destroy<std::array<int, 2ul>*>(std::array<int, 2ul>*, std::array<int, 2ul>*) +calls=1 -20 +* 8 ++1 3 + +fn=(7108) void std::_Construct<Dune::FieldVector<double, 1>>(Dune::FieldVector<double, 1>*) +74 80 ++1 64 +cfi=(293) +cfn=(2888) +calls=16 +99 +* 128 +* 32 +cfi=(252) +cfn=(3886) +calls=16 313 +* 160 +* 48 + +fn=(5912) void std::_Destroy_aux<true>::__destroy<unsigned char*>(unsigned char*, unsigned char*) +117 16 + +fn=(5950) +203 7 ++3 5 +cfn=(5952) void std::_Destroy<void**>(void**, void**) +calls=1 -79 +* 22 ++1 3 + +fn=(6352) +203 84 ++3 60 +cfn=(6354) void std::_Destroy<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*) +calls=12 -79 +* 312 ++1 36 + +fn=(6354) +127 72 ++10 60 +cfn=(6356) void std::_Destroy_aux<false>::__destroy<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*) +calls=12 -32 +* 144 ++1 36 + +fn=(7946) +117 8 + +fn=(7960) +203 7 ++3 5 +cfn=(7962) void std::_Destroy<Dune::FieldVector<double, 0>*>(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*) +calls=1 -79 +* 22 ++1 3 + +fn=(8628) +127 6 ++10 5 +cfn=(8630) +calls=1 -20 +* 8 ++1 3 + +fn=(4006) +203 35 ++3 25 +cfn=(4008) +calls=5 -79 +* 778 ++1 15 + +fn=(5836) void std::_Destroy_aux<true>::__destroy<UG::D2::node**>(UG::D2::node**, UG::D2::node**) +117 16392 + +fn=(6324) void std::_Construct<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*) +74 256 ++1 128 +cfi=(293) +cfn=(2888) +calls=32 +99 +* 256 +* 96 +cfi=(424) +cfn=(6326) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::SubEntityInfo() +calls=32 689 +* 6688 +* 224 + +fn=(6356) +105 72 ++2 36 ++2 36 + +fn=(7336) +203 14 ++3 10 +cfn=(7338) void std::_Destroy<Dune::FieldMatrix<double, 1, 1>*>(Dune::FieldMatrix<double, 1, 1>*, Dune::FieldMatrix<double, 1, 1>*) +calls=2 -79 +* 44 ++1 6 + +fn=(7358) void std::_Destroy_aux<true>::__destroy<Dune::FieldVector<double, 1>*>(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*) +117 32 + +fn=(7618) void std::_Construct<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*) +74 8 ++1 4 +cfi=(293) +cfn=(2888) +calls=1 +99 +* 8 +* 3 +cfi=(424) +cfn=(7620) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::SubEntityInfo() +calls=1 689 +* 191 +* 7 + +fn=(8718) +203 7 ++3 5 +cfn=(8720) +calls=1 -79 +* 22 ++1 3 + +fn=(8722) +117 8 + +fn=(4012) +97 90 ++1 54 +cob=(2) +cfi=(18) +cfn=(2754) +calls=18 -98 +* 144 +* 54 + +fn=(4848) +117 24600 + +fn=(5528) +203 98 ++3 70 +cfn=(5530) +calls=14 -79 +* 308 ++1 42 + +fn=(5910) void std::_Destroy<unsigned char*>(unsigned char*, unsigned char*) +127 12 ++10 10 +cfn=(5912) +calls=2 -20 +* 16 ++1 6 + +fn=(6426) void std::_Construct<Dune::FieldVector<double, 2>>(Dune::FieldVector<double, 2>*) +74 390 ++1 312 +cfi=(293) +cfn=(2888) +calls=78 +99 +* 624 +* 156 +cfi=(252) +cfn=(6428) +calls=78 +41 +* 780 +* 234 + +fn=(6560) void std::_Construct<Dune::FieldMatrix<double, 2, 2>>(Dune::FieldMatrix<double, 2, 2>*) +74 20 ++1 16 +cfi=(293) +cfn=(2888) +calls=4 +99 +* 32 +* 160 +cfi=(328) +cfn=(6562) Dune::FieldMatrix<double, 2, 2>::FieldMatrix() +calls=4 +16 +* 92 +* 12 + +fn=(6770) void std::_Construct<Dune::FieldMatrix<double, 1, 2>>(Dune::FieldMatrix<double, 1, 2>*) +74 70 ++1 56 +cfi=(293) +cfn=(2888) +calls=14 +99 +* 112 +* 196 +cfi=(328) +cfn=(6772) Dune::FieldMatrix<double, 1, 2>::FieldMatrix() +calls=14 +16 +* 294 +* 42 + +fn=(7004) void std::_Construct<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*) +74 48 ++1 24 +cfi=(293) +cfn=(2888) +calls=6 +99 +* 48 +* 18 +cfi=(424) +cfn=(7006) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::SubEntityInfo() +calls=6 689 +* 1200 +* 42 + +fn=(7338) +127 12 ++10 10 +cfn=(7340) void std::_Destroy_aux<true>::__destroy<Dune::FieldMatrix<double, 1, 1>*>(Dune::FieldMatrix<double, 1, 1>*, Dune::FieldMatrix<double, 1, 1>*) +calls=2 -20 +* 16 ++1 6 + +fn=(9092) +203 189 ++3 135 +cfn=(9094) void std::_Destroy<Dune::GeometryType*>(Dune::GeometryType*, Dune::GeometryType*) +calls=27 -79 +* 594 ++1 81 + +fn=(5834) void std::_Destroy<UG::D2::node**>(UG::D2::node**, UG::D2::node**) +127 12294 ++10 10245 +cfn=(5836) +calls=2049 -20 +* 16392 ++1 6147 + +fn=(5908) +203 14 ++3 10 +cfn=(5910) +calls=2 -79 +* 44 ++1 6 + +fn=(7030) +203 28 ++3 20 +cfn=(7032) void std::_Destroy<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*) +calls=4 -79 +* 104 ++1 12 + +fn=(7032) +127 24 ++10 20 +cfn=(7034) void std::_Destroy_aux<false>::__destroy<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*) +calls=4 -32 +* 48 ++1 12 + +fn=(7340) +117 16 + +fn=(7964) void std::_Destroy_aux<true>::__destroy<Dune::FieldVector<double, 0>*>(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*) +117 8 + +fn=(4844) +203 21525 ++3 15375 +cfn=(4846) +calls=3075 -79 +* 67650 ++1 9225 + +fn=(5832) +203 14343 ++3 10245 +cfn=(5834) +calls=2049 -79 +* 45078 ++1 6147 + +fn=(5954) void std::_Destroy_aux<true>::__destroy<void**>(void**, void**) +117 8 + +fn=(7034) +105 24 ++2 12 ++2 12 + +fn=(7242) void std::_Construct<Dune::FieldMatrix<double, 1, 1>>(Dune::FieldMatrix<double, 1, 1>*) +74 10 ++1 8 +cfi=(293) +cfn=(2888) +calls=2 +99 +* 16 +* 8 +cfi=(328) +cfn=(3884) +calls=2 324 +* 42 +* 6 + +fn=(7356) +127 24 ++10 20 +cfn=(7358) +calls=4 -20 +* 32 ++1 12 + +fn=(7636) +203 7 ++3 5 +cfn=(7638) void std::_Destroy<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*) +calls=1 -79 +* 26 ++1 3 + +fn=(7638) +127 6 ++10 5 +cfn=(7640) void std::_Destroy_aux<false>::__destroy<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*) +calls=1 -32 +* 12 ++1 3 + +fn=(8008) +203 14 ++3 10 +cfn=(8010) void std::_Destroy<Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*) +calls=2 -79 +* 44 ++1 6 + +fn=(5532) +117 112 + +fn=(5952) +127 6 ++10 5 +cfn=(5954) +calls=1 -20 +* 8 ++1 3 + +fn=(7640) +105 6 ++2 3 ++2 3 + +fn=(8010) +127 12 ++10 10 +cfn=(8012) void std::_Destroy_aux<true>::__destroy<Dune::FieldMatrix<double, 0, 1>*>(Dune::FieldMatrix<double, 0, 1>*, Dune::FieldMatrix<double, 0, 1>*) +calls=2 -20 +* 16 ++1 6 + +fn=(8072) +203 28 ++3 20 +cfn=(8074) void std::_Destroy<Dune::FieldMatrix<double, 1, 2>*>(Dune::FieldMatrix<double, 1, 2>*, Dune::FieldMatrix<double, 1, 2>*) +calls=4 -79 +* 88 ++1 12 + +fn=(8260) +203 28 ++3 20 +cfn=(8262) void std::_Destroy<Dune::FieldMatrix<double, 0, 2>*>(Dune::FieldMatrix<double, 0, 2>*, Dune::FieldMatrix<double, 0, 2>*) +calls=4 -79 +* 88 ++1 12 + +fn=(9094) +127 162 ++10 135 +cfn=(9096) +calls=27 -20 +* 216 ++1 81 + +fn=(6696) +203 28 ++3 20 +cfn=(6698) +calls=4 -79 +* 88 ++1 12 + +fn=(7962) +127 6 ++10 5 +cfn=(7964) +calls=1 -20 +* 8 ++1 3 + +fn=(8012) +117 16 + +fn=(8074) +127 24 ++10 20 +cfn=(8076) +calls=4 -20 +* 32 ++1 12 + +fn=(8262) +127 24 ++10 20 +cfn=(8264) +calls=4 -20 +* 32 ++1 12 + +fl=(352) +fn=(4268) +86 8 ++4 2 +cfi=(353) +cfn=(4270) UG::InitUgEnv() +calls=2 -5 +* 252 +* 10 ++7 2 +cfi=(354) +cfn=(4274) UG::InitFileOpen() +calls=2 1045 +* 1205 +* 10 ++7 2 +cfi=(357) +cfn=(4294) +calls=2 1349 +* 2649 +* 10 ++6 2 ++1 4 + +fl=(426) /usr/include/c++/9/bitset +fn=(6406) std::_Base_bitset<1ul>::_M_getword(unsigned long) +410 495 ++1 297 + +fn=(7058) std::bitset<2ul>::reset() +1099 60 ++2 36 +cfn=(6396) std::_Base_bitset<1ul>::_M_do_reset() +calls=12 460 +* 108 ++1 12 ++1 24 + +fn=(6396) +460 436 ++1 545 + +fn=(6412) std::_Base_bitset<1ul>::_S_maskbit(unsigned long) +406 495 ++1 297 +cfn=(6408) std::_Base_bitset<1ul>::_S_whichbit(unsigned long) +calls=99 -5 +* 792 +* 594 + +fn=(7068) std::bitset<2ul>::reference::operator=(bool) +828 70 ++2 20 ++1 40 +cfn=(6412) +calls=10 406 +* 220 +* 90 ++3 10 ++1 20 + +fn=(7664) std::bitset<1ul>::operator[](unsigned long) +1163 7 ++1 6 +cfn=(7666) std::bitset<1ul>::reference::reference(std::bitset<1ul>&, unsigned long) +calls=1 813 +* 38 +* 3 + +fn=(6394) std::bitset<4ul>::reset() +1099 480 ++2 288 +cfn=(6396) +calls=96 460 +* 864 ++1 96 ++1 192 + +fn=(6404) std::bitset<4ul>::reference::reference(std::bitset<4ul>&, unsigned long) +813 616 ++2 440 +cfn=(6406) +calls=88 410 +* 704 +* 176 ++1 264 +cfn=(6408) +calls=88 402 +* 704 +* 176 ++1 264 + +fn=(6408) +402 792 ++1 792 + +fn=(6410) std::bitset<4ul>::reference::operator=(bool) +828 616 ++2 176 ++1 352 +cfn=(6412) +calls=88 406 +* 1936 +* 792 ++3 88 ++1 176 + +fn=(7066) std::bitset<2ul>::reference::reference(std::bitset<2ul>&, unsigned long) +813 70 ++2 50 +cfn=(6406) +calls=10 410 +* 80 +* 20 ++1 30 +cfn=(6408) +calls=10 402 +* 80 +* 20 ++1 30 + +fn=(7070) std::bitset<2ul>::reference::~reference() +823 40 ++1 30 + +fn=(7658) std::bitset<1ul>::reset() +1099 5 ++2 3 +cfn=(6396) +calls=1 460 +* 9 ++1 1 ++1 2 + +fn=(7668) std::bitset<1ul>::reference::operator=(bool) +828 7 ++2 2 ++1 4 +cfn=(6412) +calls=1 406 +* 22 +* 9 ++3 1 ++1 2 + +fn=(6402) std::bitset<4ul>::operator[](unsigned long) +1163 616 ++1 528 +cfn=(6404) +calls=88 813 +* 3344 +* 264 + +fn=(6414) std::bitset<4ul>::reference::~reference() +823 352 ++1 264 + +fn=(7666) +813 7 ++2 5 +cfn=(6406) +calls=1 410 +* 8 +* 2 ++1 3 +cfn=(6408) +calls=1 402 +* 8 +* 2 ++1 3 + +fn=(7670) std::bitset<1ul>::reference::~reference() +823 4 ++1 3 + +fn=(7064) std::bitset<2ul>::operator[](unsigned long) +1163 70 ++1 60 +cfn=(7066) +calls=10 813 +* 380 +* 30 + +fl=(347) +fn=(4168) +90 4 ++1 7 + +fn=(8734) +94 4 ++1 7 + +fl=(353) +fn=(4286) +244 1162 ++5 498 +cob=(2) +cfi=(18) +cfn=(4278) +calls=166 0 +* 3064 +* 498 ++4 996 ++1 498 ++15 332 ++6 664 ++3 552 +cob=(2) +cfi=(18) +cfn=(4272) +calls=138 0 +* 27149 +* 138 ++2 276 ++5 828 +cob=(2) +cfi=(18) +cfn=(2248) +calls=138 0 +* 4665 ++16 138 +-11 84 ++1 112 +cob=(2) +cfi=(18) +cfn=(4272) +calls=28 0 +* 6361 +* 28 ++2 56 ++5 168 +cob=(2) +cfi=(18) +cfn=(2248) +calls=28 0 +* 59144 ++1 56 ++2 28 ++4 84 ++1 56 ++1 168 +cob=(2) +cfi=(18) +cfn=(4288) +calls=28 0 +* 858 +-6 138 ++4 414 ++1 276 ++1 828 +cob=(2) +cfi=(18) +cfn=(4288) +calls=138 0 +* 4402 ++3 332 ++3 33 ++1 77 ++5 310 ++1 620 ++1 620 ++1 465 ++4 155 ++1 310 +-1 11 ++1 22 + +fn=(4532) UG::RemoveEnvDir(UG::envitem*) +415 5 ++5 6 ++1 3 ++1 2 ++2 4 ++3 2 ++1 9 ++1 4 ++1 4 +cfn=(4534) RemoveEnvDirContent(UG::envitem*) +calls=1 -45 +* 12 ++3 4 ++1 5 ++3 4 ++1 5 ++3 3 +cob=(2) +cfi=(18) +cfn=(4440) +calls=1 0 +* 84 ++2 1 ++1 2 + +fn=(4306) +586 40 ++1 32 +cob=(2) +cfi=(18) +cfn=(4272) +calls=8 0 +* 1600 ++1 16 + +fn=(4524) +563 72 ++2 36 +cob=(2) +cfi=(18) +cfn=(4296) +calls=9 0 +* 243 +* 18 ++1 27 +cfn=(4276) +calls=9 120 +* 8884 +* 36 ++3 54 +cfn=(4526) SearchTree(char const*, int, int) +calls=9 -63 +* 496 +* 9 ++1 18 + +fn=(4270) +85 8 ++4 6 ++1 2 ++3 2 +cob=(2) +cfi=(18) +cfn=(4272) +calls=1 -93 +* 205 +* 5 ++2 2 ++1 10 ++1 4 ++3 1 ++1 2 ++3 1 ++1 4 + +fn=(4526) +506 63 ++4 54 ++3 27 ++1 18 ++2 24 ++1 36 +cob=(2) +cfi=(18) +cfn=(4296) +calls=6 0 +* 214 +* 12 ++1 12 ++5 9 ++1 6 ++17 3 ++1 18 + +fn=(4276) +120 392 ++6 98 ++3 147 +cob=(2) +cfi=(18) +cfn=(4278) +calls=49 0 +* 1014 +* 245 ++3 98 ++4 441 ++3 92 ++1 92 ++5 90 ++1 6 ++6 21 +cfi=(355) +cfn=(4280) +calls=3 376 +* 3132 +* 322 +cfi=(355) +cfn=(4280) +calls=46 376 +* 13659 +* 245 ++2 147 ++4 104 +cob=(2) +cfi=(18) +cfn=(4296) +calls=26 0 +* 734 +* 52 ++8 52 ++1 130 ++1 246 ++2 1107 ++2 738 +cob=(2) +cfi=(18) +cfn=(4296) +calls=123 0 +* 3060 +* 246 ++3 291 +-7 97 ++5 26 ++4 52 ++1 156 +-23 23 ++26 196 ++3 1210 ++1 98 ++3 245 ++1 245 + +fn=(4284) +630 99 ++4 99 ++2 33 ++1 66 + +fn=(4534) +385 5 ++3 4 ++7 1 ++1 2 + +fn=(4292) +649 87 ++4 87 ++2 29 ++1 58 + +fl=(401) +fn=(5334) +449 5 ++1 8 + +fn=(5748) std::__detail::_Hashtable_ebo_helper<0, std::__detail::_Select1st, true>::_S_get(std::__detail::_Hashtable_ebo_helper<0, std::__detail::_Select1st, true>&) +1108 24576 ++1 18432 + +fn=(5850) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_extract() const +1415 49800 +cfn=(5852) std::__detail::_Hashtable_ebo_helper<0, std::__detail::_Select1st, true>::_S_cget(std::__detail::_Hashtable_ebo_helper<0, std::__detail::_Select1st, true> const&) +calls=6225 1104 +* 43575 +* 12450 + +fn=(5936) +2118 30 ++2 266 ++2 256 ++1 384 +cfn=(5814) +calls=128 269 +* 1024 +* 128 ++1 640 +cfn=(5874) +calls=128 -24 +* 37786 +-4 128 ++6 15 + +fn=(5784) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_h2() const +1427 122432 +cfn=(5786) std::__detail::_Hashtable_ebo_helper<2, std::__detail::_Mod_range_hashing, true>::_S_cget(std::__detail::_Hashtable_ebo_helper<2, std::__detail::_Mod_range_hashing, true> const&) +calls=15304 1104 +* 107128 +* 30608 + +fn=(5852) +1104 24900 ++1 18675 + +fn=(5854) std::__detail::_Hashtable_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<true, false, true> >::_M_eq() const +1846 49800 +cfn=(5856) std::__detail::_Hashtable_ebo_helper<0, std::equal_to<UG::D2::multigrid::FaceNodes>, true>::_S_cget(std::__detail::_Hashtable_ebo_helper<0, std::equal_to<UG::D2::multigrid::FaceNodes>, true> const&) +calls=6225 1104 +* 43575 +* 12450 + +fn=(5602) +476 12548 ++1 12548 + +fn=(5786) +1104 61216 ++1 45912 + +fn=(5332) +218 55305 + +fn=(5814) +269 49212 ++1 49212 + +fn=(5604) +462 5 ++1 33 + +fn=(5730) std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>::_Hash_node() +264 49152 +cfn=(5732) std::__detail::_Hash_node_value_base<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >::_Hash_node_value_base() +calls=6144 -35 +* 122880 +* 18432 + +fn=(5752) +92 72960 ++2 36480 +cfi=(286) +cfn=(5754) std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >& std::forward<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&>(std::remove_reference<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >&>::type&) +calls=12160 -20 +* 85120 +* 24320 +cfi=(409) +cfn=(5756) +calls=12160 219 +* 206720 +* 24320 + +fn=(5762) std::__detail::_Hash_code_base<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, UG::D2::multigrid::FaceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, true>::_M_h1() const +1421 73216 +cfn=(5764) std::__detail::_Hashtable_ebo_helper<1, UG::D2::multigrid::FaceHasher, false>::_S_cget(std::__detail::_Hashtable_ebo_helper<1, UG::D2::multigrid::FaceHasher, false> const&) +calls=9152 1124 +* 64064 +* 18304 + +fn=(5806) std::__detail::_Node_iterator_base<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>::_Node_iterator_base(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +294 45760 ++1 54912 + +fn=(5858) std::__detail::_Equal_helper<UG::D2::multigrid::FaceNodes, std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, std::__detail::_Select1st, std::equal_to<UG::D2::multigrid::FaceNodes>, unsigned long, true>::_S_equals(std::equal_to<UG::D2::multigrid::FaceNodes> const&, std::__detail::_Select1st const&, UG::D2::multigrid::FaceNodes const&, unsigned long, std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +1448 56025 ++2 42948 +cfn=(5750) +calls=6016 244 +* 228608 +* 30080 +cfn=(5752) +calls=6016 92 +* 222592 +* 36096 +cfi=(297) +cfn=(5860) std::equal_to<UG::D2::multigrid::FaceNodes>::operator()(UG::D2::multigrid::FaceNodes const&, UG::D2::multigrid::FaceNodes const&) const +calls=6016 355 +* 1419776 +* 36723 + +fn=(5880) std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>*) +2108 36864 ++3 18432 +cfi=(394) +cfn=(5882) +calls=6144 141 +* 165888 +* 6144 ++2 18432 +cfn=(5618) std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > >::_M_node_allocator() +calls=6144 -67 +* 104448 +* 36864 +cfi=(266) +cfn=(5888) +calls=6144 469 +* 715162 ++1 18432 + +fn=(5616) +2130 10 ++2 3 +cfn=(5618) +calls=1 -86 +* 17 +* 5 +cfi=(236) +cfn=(5622) std::allocator<std::__detail::_Hash_node_base*>::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >(std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> > const&) +calls=1 151 +* 19 ++2 5 +cfi=(266) +cfn=(5626) +calls=1 443 +* 242 +* 1 ++1 3 +cfi=(394) +cfn=(5632) +calls=1 151 +* 7 +* 1 ++1 6 +cob=(2) +cfi=(18) +cfn=(2248) +calls=1 0 +* 8891 ++1 1 +-5 3 +cfi=(236) +cfn=(5634) std::allocator<std::__detail::_Hash_node_base*>::~allocator() +calls=1 153 +* 18 ++5 1 ++1 7 + +fn=(5720) +2079 61440 ++2 18432 +cfn=(5618) +calls=6144 -35 +* 104448 +* 18432 +cfi=(266) +cfn=(5722) +calls=6144 443 +* 627366 +* 6144 ++1 18432 +cfi=(394) +cfn=(5728) +calls=6144 151 +* 43008 +* 6144 ++3 24576 +cfi=(293) +cfn=(2888) +calls=6144 174 +* 49152 +* 12288 +cfn=(5730) +calls=6144 264 +* 190464 ++1 18432 +cfi=(286) +cfn=(5712) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5714) +calls=6144 74 +* 43008 +* 24576 +cfn=(5734) std::__detail::_Hash_node_value_base<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> > >::_M_valptr() +calls=6144 236 +* 172032 +* 24576 +cfn=(5618) +calls=6144 -40 +* 104448 +* 30720 +cfi=(266) +cfn=(5740) +calls=6144 482 +* 860160 ++3 12288 ++7 36864 + +fn=(5732) +229 49152 +cfn=(5332) +calls=6144 -11 +* 55296 +* 18432 + +fn=(5734) +236 137280 ++1 109824 +cfi=(296) +cfn=(5736) +calls=27456 114 +* 466752 +* 54912 + +fn=(5750) +244 60800 ++1 36480 +cfn=(5734) +calls=12160 -9 +* 340480 +* 24320 + +fn=(5760) +1380 54912 ++4 27456 +cfn=(5762) +calls=9152 +37 +* 155584 +* 45760 +cfi=(398) +cfn=(5766) +calls=9152 1584 +* 2525952 ++1 18304 + +fn=(5764) +1124 36608 ++1 27456 + +fn=(5804) +340 54912 ++1 45760 +cfn=(5806) +calls=9152 -47 +* 100672 +* 27456 + +fn=(5818) +1393 43064 ++3 18456 +cfn=(5784) +calls=6152 +31 +* 104584 +* 43064 +cfn=(5788) std::__detail::_Mod_range_hashing::operator()(unsigned long, unsigned long) const +calls=6152 431 +* 73824 +* 12304 + +fn=(5788) +431 91824 ++2 91824 + +fn=(5800) +1399 18816 ++1 18816 + +fn=(5874) +2100 43008 ++2 18432 +cfn=(5734) +calls=6144 236 +* 172032 +* 24576 +cfn=(5618) +calls=6144 -56 +* 104448 +* 18432 +cfi=(266) +cfn=(5876) +calls=6144 495 +* 135168 ++1 30720 +cfn=(5880) +calls=6144 +5 +* 1120666 ++1 30720 + +fn=(5326) std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >, true>::_Hashtable_ebo_helper() +1096 8 +cfi=(236) +cfn=(5328) std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >::allocator() +calls=1 138 +* 18 +* 3 + +fn=(5892) +348 15040 ++1 12032 +cfn=(5734) +calls=3008 236 +* 84224 +* 6016 + +fn=(5324) +2036 8 +cfn=(5326) +calls=1 1096 +* 29 +* 3 + +fn=(5618) +2046 122885 ++1 73731 +cfn=(5620) std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >, true>::_S_get(std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >, true>&) +calls=24577 1108 +* 172039 +* 49154 + +fn=(5620) +1108 98308 ++1 73731 + +fn=(5746) +1418 49152 +cfn=(5748) +calls=6144 1108 +* 43008 +* 12288 + +fn=(5782) +1388 73216 ++2 27456 +cfn=(5784) +calls=9152 +37 +* 155584 +* 54912 +cfn=(5788) +calls=9152 431 +* 109824 +* 18304 + +fn=(5848) +1829 56025 ++5 18675 +cfn=(5850) +calls=6225 1415 +* 105825 +* 24900 +cfn=(5854) +calls=6225 +12 +* 105825 +* 56025 +cfn=(5858) +calls=6225 1448 +* 2072848 ++2 24900 + +fn=(5856) +1104 24900 ++1 18675 + +fl=(418) +fn=(6192) +343 57770280 +cfi=(240) +cfn=(6194) +calls=7221285 113 +* 281630115 +* 14442570 + +fn=(6184) +256 23186177 + +fn=(8400) +183 150 ++1 90 +cfi=(419) +cfn=(8402) +calls=30 81 +* 660 +* 90 + +fn=(6130) +362 570 ++1 342 +cfi=(419) +cfn=(6132) +calls=114 612 +* 2508 +* 342 + +fn=(8472) +438 1252755 ++2 751653 +cfi=(419) +cfn=(8474) +calls=250551 714 +* 7767081 ++1 501102 + +fn=(6146) +366 1710 ++1 2736 ++1 1026 + +fn=(6136) +254 54343968 + +fn=(8406) +78 9544346 + +fn=(8416) +187 450 ++1 720 ++1 270 + +fn=(8444) +172 3307188 ++2 2755990 +cfi=(419) +cfn=(8446) +calls=551198 -7 +* 19843128 ++1 1102396 + +fn=(6176) +351 20205978 ++2 16838315 +cfi=(419) +cfn=(6178) +calls=3367663 777 +* 121235868 ++1 6735326 + +fn=(6186) +335 98042448 ++2 81702040 +cfi=(419) +cfn=(6188) +calls=16340408 652 +* 708366384 ++1 32680816 + +fn=(8452) +84 3858281 + +fl=(421) +fn=(8528) +109 1740800 ++2 1044480 +cfi=(430) +cfn=(8530) +calls=348160 -25 +* 2785280 ++1 696320 + +fn=(6180) +109 15097235 ++2 9058341 +cfi=(417) +cfn=(6182) +calls=3019447 -28 +* 24155576 ++1 6038894 + +fn=(8440) +131 2779140 ++2 2315950 +cfi=(417) +cfn=(8442) +calls=463190 -47 +* 29644160 +* 463190 ++1 926380 + +fn=(8518) +29 352 +cfi=(430) +cfn=(8500) +calls=32 -11 +* 1152 +* 96 + +fn=(8582) +109 440020 ++2 264012 +cfi=(430) +cfn=(8584) +calls=88004 -25 +* 704032 ++1 176008 + +fn=(8298) +67 15097235 ++2 9058341 +cfi=(417) +cfn=(8300) +calls=3019447 +2 +* 576712341 ++1 3019446 ++1 6038892 + +fn=(8498) +146 96 ++1 80 +cfi=(430) +cfn=(8500) +calls=16 18 +* 576 ++1 48 + +fn=(6172) +131 18116970 ++2 15097475 +cfi=(417) +cfn=(6174) +calls=3019495 -47 +* 193247680 +* 3019495 ++1 6038990 + +fn=(8434) +29 484 +cfi=(417) +cfn=(8414) +calls=44 -7 +* 1584 +* 132 + +fn=(8534) +67 1740800 ++2 1044480 +cfi=(430) +cfn=(8536) +calls=348160 +8 +* 97135984 ++1 348160 ++1 696320 + +fn=(8588) +67 440020 ++2 264012 +cfi=(430) +cfn=(8590) +calls=88004 +8 +* 23936788 ++1 88004 ++1 176008 + +fn=(6142) +146 588 ++1 490 +cfi=(417) +cfn=(6144) +calls=98 22 +* 3528 ++1 294 + +fn=(8524) +131 2089008 ++2 1740840 +cfi=(430) +cfn=(8526) +calls=348168 -44 +* 22282752 +* 348168 ++1 696336 + +fn=(8572) +29 176 +cfi=(430) +cfn=(8554) +calls=16 -11 +* 576 +* 48 + +fn=(6166) +29 2156 +cfi=(417) +cfn=(6144) +calls=196 -7 +* 7056 +* 588 + +fn=(8412) +146 132 ++1 110 +cfi=(417) +cfn=(8414) +calls=22 22 +* 792 ++1 66 + +fn=(8552) +146 48 ++1 40 +cfi=(430) +cfn=(8554) +calls=8 18 +* 288 ++1 24 + +fn=(8448) +109 2315895 ++2 1389537 +cfi=(417) +cfn=(8450) +calls=463179 -28 +* 3705432 ++1 926358 + +fn=(8456) +67 2315895 ++2 1389537 +cfi=(417) +cfn=(8458) +calls=463179 +2 +* 88466738 ++1 463179 ++1 926358 + +fn=(8578) +131 528048 ++2 440040 +cfi=(430) +cfn=(8580) +calls=88008 -44 +* 5632512 +* 88008 ++1 176016 + +fl=(360) +fn=(4404) +87 4 ++4 1 +cfi=(361) +cfn=(4406) +calls=1 951 +* 42393 +* 5 ++7 1 +cfi=(362) +cfn=(4408) UG::D3::PreInitElementTypes() +calls=1 886 +* 195866 +* 5 ++8 1 +cfi=(363) +cfn=(4412) +calls=1 520 +* 622 +* 5 ++7 1 +cfi=(364) +cfn=(4414) +calls=1 4189 +* 4638 +* 5 ++7 1 +cfi=(365) +cfn=(4420) +calls=1 9137 +* 739 +* 5 ++7 1 +cfi=(366) +cfn=(4422) +calls=1 3670 +* 104 +* 5 ++7 1 +cfi=(369) +cfn=(4426) +calls=1 -18 +* 1801 +* 5 ++7 1 +cfi=(370) +cfn=(4428) +calls=1 3231 +* 3390 +* 5 ++7 4 +cfi=(357) +cfn=(4348) +calls=1 914 +* 3837 +* 4 ++3 1 ++1 2 + +fn=(4312) +87 4 ++4 1 +cfi=(361) +cfn=(4314) +calls=1 951 +* 42393 +* 5 ++7 1 +cfi=(362) +cfn=(4320) UG::D2::PreInitElementTypes() +calls=1 886 +* 20127 +* 5 ++8 1 +cfi=(363) +cfn=(4324) +calls=1 520 +* 608 +* 5 ++7 1 +cfi=(364) +cfn=(4326) +calls=1 4189 +* 4634 +* 5 ++7 1 +cfi=(365) +cfn=(4332) +calls=1 9137 +* 739 +* 5 ++7 1 +cfi=(366) +cfn=(4334) +calls=1 3670 +* 104 +* 5 ++7 1 +cfi=(369) +cfn=(4342) +calls=1 -18 +* 1808 +* 5 ++7 1 +cfi=(370) +cfn=(4344) +calls=1 3231 +* 47 +* 5 ++7 4 +cfi=(357) +cfn=(4348) +calls=1 914 +* 3845 +* 4 ++3 1 ++1 2 + +fl=(297) +fn=(4998) +385 382417 ++1 273155 +cfi=(391) +cfn=(5000) +calls=54631 38 +* 30421314 +* 109262 + +fn=(3010) +1155 1410 ++1 846 + +fn=(4932) +1139 319550 ++1 191730 + +fn=(3050) +1139 835 ++1 501 + +fn=(3120) +385 3836 ++1 2740 +cfi=(272) +cfn=(3122) +calls=548 6226 +* 35213 +* 1096 + +fn=(3276) +1155 605 ++1 363 + +fn=(5860) +355 42112 ++1 30080 +cfi=(253) +cfn=(5862) +calls=6016 252 +* 1335552 +* 12032 + +fl=(328) +fn=(8036) Dune::FieldMatrix<double, 2, 1>::FieldMatrix() +91 112 +cfi=(253) +cfn=(8038) +calls=14 +3 +* 140 +* 42 + +fn=(3936) +466 540 ++4 108 ++1 216 + +fn=(7312) +473 420 ++4 84 ++1 168 + +fn=(7430) Dune::FieldMatrix<double, 0, 1>::FieldMatrix<double, void>(double const&) +104 12 ++2 10 +cfi=(329) +cfn=(7432) +calls=2 306 +* 702 ++1 6 + +fn=(8046) +276 504 ++3 420 +cfi=(253) +cfn=(8048) +calls=84 -90 +* 2100 ++1 168 + +fn=(6682) +276 192 ++3 160 +cfi=(253) +cfn=(6684) +calls=32 -90 +* 800 ++1 64 + +fn=(7988) Dune::FieldMatrix<double, 1, 0>::FieldMatrix() +91 32 +cfi=(253) +cfn=(7990) +calls=4 +3 +* 28 +* 12 + +fn=(6578) Dune::FieldMatrix<double, 2, 2>::FieldMatrix<double, void>(double const&) +104 24 ++1 12 +cfi=(253) +cfn=(6564) +calls=4 -11 +* 48 ++1 20 +cfi=(329) +cfn=(6580) +calls=4 306 +* 4484 ++1 12 + +fn=(6616) +270 192 ++3 160 +cfi=(253) +cfn=(6618) +calls=32 -88 +* 800 ++1 64 + +fn=(6772) +91 112 +cfi=(253) +cfn=(6774) +calls=14 +3 +* 140 +* 42 + +fn=(8164) +267 42 + +fn=(7254) Dune::FieldMatrix<double, 1, 1>::FieldMatrix<double, void>(double const&) +335 12 ++1 6 +cfi=(252) +cfn=(3886) +calls=2 -23 +* 20 ++1 10 +cfi=(329) +cfn=(4026) +calls=2 -31 +* 976 ++1 6 + +fn=(3884) +324 192 +cfi=(252) +cfn=(3886) +calls=24 -11 +* 240 +* 72 + +fn=(6592) +267 28 + +fn=(6780) Dune::FieldMatrix<double, 1, 2>::FieldMatrix<double, void>(double const&) +104 48 ++1 24 +cfi=(253) +cfn=(6774) +calls=8 -11 +* 80 ++1 40 +cfi=(329) +cfn=(6782) +calls=8 306 +* 5888 ++1 24 + +fn=(6818) +270 144 ++3 120 +cfi=(253) +cfn=(6820) +calls=24 -88 +* 600 ++1 48 + +fn=(7850) +267 7 + +fn=(3912) +463 154 + +fn=(6562) +91 64 +cfi=(253) +cfn=(6564) +calls=8 +3 +* 96 +* 24 + +fn=(8150) Dune::FieldMatrix<double, 0, 2>::FieldMatrix<double, void>(double const&) +104 36 ++2 30 +cfi=(329) +cfn=(8152) +calls=6 306 +* 2106 ++1 18 + +fn=(6794) +267 56 + +fn=(7444) +267 14 + +fn=(8056) +270 336 ++3 280 +cfi=(253) +cfn=(8058) +calls=56 -88 +* 1344 ++1 112 + +fn=(7836) Dune::FieldMatrix<double, 0, 0>::FieldMatrix<double, void>(double const&) +104 6 ++2 5 +cfi=(329) +cfn=(7838) +calls=1 306 +* 351 ++1 3 + +fn=(8240) Dune::FieldMatrix<double, 2, 0>::FieldMatrix() +91 112 +cfi=(253) +cfn=(8242) +calls=14 +3 +* 98 +* 42 + +fl=(362) +fn=(5344) ProcessElementDescription(UG::D2::multigrid*, UG::D2::GENERAL_ELEMENT*) +800 12 ++3 6 ++1 2 ++3 16 ++3 12 ++3 8 ++15 12 ++4 16 ++3 8 ++1 10 ++7 8 ++10 16 ++3 16 ++3 16 ++3 8 ++1 2 +cfi=(365) +cfn=(5346) +calls=2 206 +* 92 +* 4 ++1 8 ++2 8 ++1 2 +cfi=(365) +cfn=(5346) +calls=2 206 +* 120 +* 4 ++1 8 ++2 2 ++1 4 + +fn=(4410) PreProcessElementDescription(UG::D3::GENERAL_ELEMENT*) +282 20 ++7 12 ++5 76 ++1 3424 +-1 64 ++2 160 ++2 595 ++1 595 +-3 70 ++7 108 ++1 1392 +-1 96 ++2 160 ++2 210 ++1 175 ++2 899 ++1 1086 ++1 2674 ++2 8620 ++1 175 ++1 8676 ++1 210 +-5 1300 +-2 362 +-5 70 ++20 60 ++1 2568 +-1 48 ++2 100 ++1 650 ++2 700 ++1 700 +-3 140 +-1 40 ++9 76 ++1 6240 +-1 64 ++2 160 ++1 455 ++2 700 ++1 354 ++1 1988 ++2 910 ++1 70 +-4 144 +-3 140 +-1 70 ++16 108 ++1 336 ++1 864 +-1 192 +-1 96 ++5 60 ++1 120 +-1 48 ++4 108 ++1 240 +-1 96 ++4 76 ++1 160 +-1 64 ++4 76 ++1 864 ++1 4608 +-1 768 +-1 64 ++95 60 ++1 360 ++1 1728 +-1 288 +-1 48 ++4 30 ++5 29 ++1 90 ++1 21 ++1 273 ++1 546 ++1 1680 ++1 18 +-2 168 +-1 84 ++4 42 ++1 60 ++1 48 ++1 6 +-9 30 ++12 24 +-13 12 ++17 21 ++1 4 ++1 116 ++1 168 +-1 24 ++3 44 ++1 80 +-1 12 ++2 4 ++2 16 ++1 24 +-10 8 ++14 29 ++1 6 ++1 78 ++1 348 ++1 1584 ++1 900 +-2 144 +-1 24 ++6 90 ++1 168 +-1 30 ++2 6 ++1 24 ++2 36 +-13 12 ++17 21 ++1 44 ++1 10 ++1 290 ++1 420 +-1 60 ++2 80 ++1 24 ++1 4 +-6 12 ++9 16 +-10 8 ++14 29 ++1 78 ++1 132 ++1 108 ++1 528 +-1 24 ++2 12 ++1 48 ++1 252 +-6 24 +-1 12 ++20 25 ++1 35 ++1 1 ++1 36 ++1 56 +-1 8 ++3 21 ++1 40 +-1 8 ++2 1 ++2 4 ++1 6 +-11 10 ++19 25 ++1 53 ++1 12 ++1 383 ++1 574 +-1 82 ++2 96 ++1 30 ++1 5 +-6 14 ++9 20 +-10 10 ++14 37 ++1 104 ++1 176 ++1 152 ++1 748 +-1 36 ++2 16 ++1 64 ++1 336 +-6 32 +-1 16 ++29 41 ++1 117 ++1 198 ++1 162 ++1 792 +-1 36 ++2 18 ++1 72 ++1 378 +-6 36 +-1 18 ++17 53 ++1 12 ++1 156 ++1 240 ++1 1272 ++1 4032 ++1 1224 ++1 936 ++1 3024 ++1 432 ++1 3816 ++1 12096 ++1 3672 +-2 1728 +-3 288 +-3 576 +-2 48 ++16 324 ++1 624 +-1 132 ++2 12 ++1 48 ++2 120 ++1 96 +-24 24 ++31 53 ++1 12 ++1 156 ++1 240 ++1 1272 ++1 4032 ++1 1224 ++1 936 ++1 3024 ++1 432 ++1 3816 ++1 12096 ++1 3672 +-2 1728 +-3 288 +-3 576 +-2 48 ++17 324 ++1 624 +-1 132 ++2 12 ++1 48 ++2 72 +-24 24 ++31 53 ++1 156 ++1 264 ++1 216 ++1 1056 +-1 48 ++2 24 ++1 96 ++1 504 +-6 48 +-1 24 +549 2 ++53 2 ++29 2 ++79 1 ++3 100 ++1 508 ++1 3350 ++1 11996 ++1 26000 ++2 1400 ++2 2940 +-5 2600 +-1 724 +-1 204 +-1 40 ++13 20 ++1 24 ++1 24 ++2 4 ++1 8 + +fn=(5342) +925 5 ++3 2 ++4 4 +cfn=(5344) +calls=1 800 +* 182 +* 1 ++1 2 ++1 4 +cfn=(5344) +calls=1 800 +* 238 +* 1 ++1 2 ++18 1 ++1 2 + +fn=(4322) PreProcessElementDescription(UG::D2::GENERAL_ELEMENT*) +282 10 ++7 6 ++5 38 ++1 1712 +-1 32 ++2 38 ++2 119 ++1 119 +-3 14 ++7 54 ++1 696 +-1 48 ++2 38 ++2 42 ++1 35 ++2 135 ++1 150 ++1 250 ++2 746 ++1 35 ++1 746 ++1 42 +-5 100 +-2 50 +-5 14 ++20 30 ++1 1284 +-1 24 ++2 38 ++1 154 ++2 140 ++1 140 +-3 28 +-1 14 ++9 38 ++1 3120 +-1 32 ++2 38 ++1 91 ++2 140 ++1 56 ++1 294 ++2 182 ++1 14 +-4 14 +-3 28 +-1 14 ++16 54 ++1 168 ++1 432 +-1 96 +-1 48 ++5 30 ++1 60 +-1 24 ++4 54 ++1 120 +-1 48 ++4 38 ++1 80 +-1 32 ++4 38 ++1 432 ++1 2304 +-1 384 +-1 32 ++5 6 ++16 17 ++1 39 ++1 66 ++1 42 ++1 198 +-1 6 ++2 6 ++1 24 ++1 126 +-6 12 +-1 6 ++16 21 ++1 44 ++1 10 ++1 130 ++1 260 ++1 800 ++1 8 +-2 80 +-1 40 ++4 20 ++1 40 ++1 32 ++1 4 +-9 12 ++12 16 +-13 8 ++20 21 ++1 4 ++1 52 ++1 168 ++1 704 ++1 400 +-2 64 +-1 16 ++6 44 ++1 80 +-1 12 ++2 4 ++1 16 ++2 24 +-13 8 ++20 21 ++1 52 ++1 88 ++1 56 ++1 264 +-1 8 ++2 8 ++1 32 ++1 168 +-6 16 +-1 8 +-44 2 ++56 1 +726 5 ++1 6 ++1 6 ++2 1 ++1 2 +-5 5 ++1 6 ++1 6 ++2 1 ++1 2 + +fn=(4408) +886 4 ++11 2 +cfn=(4410) +calls=1 282 +* 26368 +* 1 ++1 2 ++1 2 +cfn=(4410) +calls=1 282 +* 27038 +* 1 ++1 2 ++1 2 +cfn=(4410) +calls=1 282 +* 29156 +* 1 ++1 2 ++1 2 +cfn=(4410) +calls=1 282 +* 113277 +* 1 ++1 2 ++3 1 ++1 2 + +fn=(4320) +886 4 ++4 2 +cfn=(4322) +calls=1 282 +* 7987 +* 1 ++1 2 ++1 2 +cfn=(4322) +calls=1 282 +* 12123 +* 1 ++1 2 ++14 1 ++1 2 + +fl=(413) +fn=(6110) +867 600 ++4 180 +cfn=(6112) Dune::Grid<2, 2, double, Dune::UGGridFamily<2> >::asImp() const +calls=60 768 +* 420 +* 360 +cfi=(414) +cfn=(6114) +calls=60 103 +* 900 +* 300 +cfi=(415) +cfn=(6116) +calls=60 142 +* 840 ++1 360 + +fn=(8480) +875 108 ++4 36 +cfn=(6112) +calls=12 768 +* 84 +* 60 +cfi=(414) +cfn=(8482) +calls=12 315 +* 132 +* 60 +cfi=(415) +cfn=(8484) +calls=12 142 +* 144 ++1 72 + +fn=(6112) +768 504 + +fl=(264) /usr/include/c++/9/bits/stl_deque.h +fn=(2344) std::deque<bool, std::allocator<bool> >::deque() +912 48 +cfn=(2346) std::_Deque_base<bool, std::allocator<bool> >::_Deque_base() +calls=6 505 +* 5652 +* 18 + +fn=(2356) std::_Deque_base<bool, std::allocator<bool> >::_M_initialize_map(unsigned long) +696 60 ++3 12 +cfn=(2358) std::__deque_buf_size(unsigned long) +calls=6 94 +* 72 +* 36 ++4 18 +-1 6 ++1 30 +cfi=(265) +cfn=(2360) +calls=6 222 +* 84 +-1 18 ++2 36 +cfn=(2362) std::_Deque_base<bool, std::allocator<bool> >::_M_allocate_map(unsigned long) +calls=6 -76 +* 2040 +* 12 ++7 12 ++1 30 +-1 12 ++2 30 ++3 36 +cfn=(2386) std::_Deque_base<bool, std::allocator<bool> >::_M_create_nodes(bool**, bool**) +calls=6 +19 +* 1746 ++9 36 +cfn=(2396) std::_Deque_iterator<bool, bool&, bool*>::_M_set_node(bool**) +calls=6 270 +* 264 ++1 42 +cfn=(2396) +calls=6 270 +* 264 ++1 24 ++1 12 ++2 12 +cfn=(2358) +calls=6 94 +* 72 +* 36 +-1 6 +-1 12 ++3 48 + +fn=(2366) std::_Deque_base<bool, std::allocator<bool> >::_M_get_Tp_allocator() const +606 24 ++1 18 + +fn=(2348) std::_Deque_base<bool, std::allocator<bool> >::_Deque_impl::_Deque_impl() +572 30 ++2 18 +cfi=(236) +cfn=(2350) std::allocator<bool>::allocator() +calls=6 138 +* 108 +* 48 +cfn=(2354) std::_Deque_iterator<bool, bool&, bool*>::_Deque_iterator() +calls=6 150 +* 90 +* 24 +cfn=(2354) +calls=6 150 +* 90 ++1 18 + +fn=(2364) std::_Deque_base<bool, std::allocator<bool> >::_M_get_map_allocator() const +610 36 ++1 18 +cfn=(2366) +calls=6 -5 +* 42 +* 30 +cfi=(236) +cfn=(2368) std::allocator<bool*>::allocator<bool>(std::allocator<bool> const&) +calls=6 151 +* 114 +* 18 + +fn=(2388) std::_Deque_base<bool, std::allocator<bool> >::_M_allocate_node() +614 30 ++3 12 +cfn=(2358) +calls=6 94 +* 72 +* 30 +cfi=(266) +cfn=(2390) +calls=6 443 +* 1422 ++1 12 + +fn=(2396) +270 84 ++2 36 ++1 48 ++1 36 +cfn=(2398) std::_Deque_iterator<bool, bool&, bool*>::_S_buffer_size() +calls=12 130 +* 228 +* 36 ++1 60 + +fn=(2358) +94 120 ++1 240 + +fn=(2386) +735 48 ++6 48 ++1 18 +cfn=(2388) +calls=6 614 +* 1578 +* 12 +-1 12 ++8 30 + +fn=(2398) +130 36 ++1 24 +cfn=(2358) +calls=12 -37 +* 144 +* 24 + +fn=(2346) +505 36 ++1 18 +cfn=(2348) +calls=6 +66 +* 426 ++1 24 +cfn=(2356) +calls=6 696 +* 5118 +* 30 + +fn=(2354) +150 48 ++1 132 + +fn=(2362) +628 60 ++2 30 +cfn=(2364) +calls=6 -20 +* 258 ++1 30 +cfi=(266) +cfn=(2372) +calls=6 443 +* 1476 +* 12 +-1 18 +cfi=(236) +cfn=(2382) std::allocator<bool*>::~allocator() +calls=6 153 +* 108 ++1 6 ++1 42 + +fl=(355) +fn=(4496) +195 35 ++7 21 +cob=(2) +cfi=(18) +cfn=(4278) +calls=7 0 +* 142 +* 7 ++1 14 ++2 14 ++1 14 ++3 56 ++3 492 ++1 408 +-1 51 ++3 56 ++3 56 ++3 336 ++1 168 +-1 21 ++3 28 ++3 28 ++3 56 ++3 28 ++4 28 ++6 140 ++5 252 ++1 112 +-1 14 ++3 56 ++3 56 ++4 28 ++1 28 ++2 28 ++6 21 ++6 35 ++8 42 ++1 14 ++2 21 ++1 7 ++2 1974 ++2 2590 ++2 42 ++1 14 ++2 5096 +-7 651 +-32 7 +-12 7 +-27 14 ++83 14 ++2 7 ++1 14 + +fn=(4280) +376 2504 ++4 6670 +cob=(2) +cfi=(18) +cfn=(4282) +calls=598 0 +* 14352 +* 1812 ++3 5905 ++1 18327 +cob=(2) +cfi=(18) +cfn=(4282) +calls=1553 0 +* 37272 +* 3106 ++1 10857 +-2 4653 ++6 2191 +cob=(2) +cfi=(18) +cfn=(4282) +calls=313 0 +* 7512 +* 626 ++4 1565 ++2 313 ++1 626 + +fl=(332) /usr/include/c++/9/bits/ios_base.h +fn=(3958) std::operator|(std::_Ios_Openmode, std::_Ios_Openmode) +130 45 + +fl=(346) +fn=(4164) +249 12 ++5 3 +cfi=(242) +cfn=(4166) +calls=1 76 +* 370396 ++1 6 +cfn=(4574) Dune::StructuredGridFactory<Dune::UGGrid<2> >::createSimplexGrid(Dune::GridFactory<Dune::UGGrid<2> >&, Dune::FieldVector<double, 2> const&, Dune::FieldVector<double, 2> const&, std::array<unsigned int, 2ul> const&) +calls=1 -76 +* 7668060 ++1 5 +cfi=(242) +cfn=(4886) +calls=1 -38 +* 110014703 +* 5 +cfi=(432) +cfn=(8654) +calls=1 -7 +* 390 +* 3 +cfi=(431) +cfn=(8698) +calls=1 35 +* 79 +-2 3 +cfi=(242) +cfn=(8702) +calls=1 98 +* 12681 ++2 1 ++1 8 + +fn=(4588) Dune::StructuredGridFactory<Dune::UGGrid<2> >::insertVertices(Dune::GridFactory<Dune::UGGrid<2> >&, Dune::FieldVector<double, 2> const&, Dune::FieldVector<double, 2> const&, std::array<unsigned int, 2ul> const&) +37 11 ++5 5 +cfi=(388) +cfn=(4590) +calls=1 -19 +* 162 ++3 3 +cfi=(388) +cfn=(4592) +calls=1 +1 +* 90 +* 1 ++3 3271 ++3 7623 +cfi=(252) +cfn=(4134) +calls=1089 +70 +* 164439 ++1 7623 ++1 13068 +cfi=(252) +cfn=(4596) +calls=2178 196 +* 80586 +* 17424 +cfi=(253) +cfn=(4584) +calls=2178 185 +* 52272 +* 28314 +cfi=(252) +cfn=(4596) +calls=2178 196 +* 80586 +* 17424 +cfi=(252) +cfn=(4596) +calls=2178 196 +* 80586 +* 26136 +cfi=(253) +cfn=(4594) +calls=2178 189 +* 52272 +* 39204 +cfi=(252) +cfn=(2252) +calls=2178 192 +* 80586 +* 4356 +-1 4356 ++2 3267 ++3 9801 +cfi=(242) +cfn=(4600) +calls=1089 +49 +* 467081 +-9 4356 +cfi=(388) +cfn=(4654) +calls=1089 -19 +* 126324 +* 1089 ++13 6 + +fn=(4574) +179 12 ++6 3 +cfi=(387) +cfn=(4576) +calls=1 +88 +* 23 +* 3 +cfi=(348) +cfn=(4580) +calls=1 -90 +* 7 +* 4 ++3 3 ++1 4 +cfi=(253) +cfn=(4582) +calls=1 -14 +* 7 +* 6 +cfi=(253) +cfn=(4582) +calls=2 -14 +* 14 +* 12 ++1 10 +cfi=(253) +cfn=(4584) +calls=2 -5 +* 48 +* 6 +-1 4 ++3 6 +cfn=(4588) +calls=1 37 +* 1372322 ++5 3 +cfn=(4676) Dune::StructuredGridFactory<Dune::UGGrid<2> >::computeUnitOffsets(std::array<unsigned int, 2ul> const&) +calls=1 65 +* 149 +* 1 ++4 5 +cfi=(388) +cfn=(4590) +calls=1 23 +* 162 ++1 3 +cfi=(388) +cfn=(4592) +calls=1 46 +* 90 +* 1 ++2 3076 ++3 1024 ++1 7168 ++1 12288 +cfi=(253) +cfn=(4584) +calls=2048 -24 +* 49152 +* 14336 +cfi=(253) +cfn=(4584) +calls=2048 -24 +* 49152 +* 6144 +-1 4096 ++4 3072 +cfi=(236) +cfn=(4200) +calls=1024 -74 +* 18432 +* 5120 +cfi=(259) +cfn=(4678) +calls=1024 507 +* 531456 +* 3072 +cfi=(236) +cfn=(4692) +calls=1024 -59 +* 18432 ++1 7168 ++1 14336 +cfi=(259) +cfn=(4724) +calls=2048 1040 +* 24576 +* 2048 +-1 4096 ++6 6144 +cfi=(236) +cfn=(4200) +calls=2048 -81 +* 36864 +* 10240 +cfi=(259) +cfn=(4678) +calls=2048 507 +* 1087488 +* 6144 +cfi=(236) +cfn=(4692) +calls=2048 -66 +* 36864 ++1 10240 +cfi=(259) +cfn=(4724) +calls=2048 1040 +* 24576 +* 2048 ++2 14336 ++2 24576 +cfi=(259) +cfn=(4724) +calls=4096 1040 +* 49152 +* 28672 +cfi=(259) +cfn=(4724) +calls=4096 1040 +* 49152 +* 24576 +cfi=(253) +cfn=(4584) +calls=4096 -39 +* 98304 +* 8192 +-1 28672 +cfi=(259) +cfn=(4724) +calls=4096 1040 +* 49152 +* 4096 +-1 8192 ++4 12288 +cfi=(389) +cfn=(4726) +calls=2048 767 +* 83968 +* 14336 +cfi=(242) +cfn=(4730) +calls=2048 113 +* 1663459 +-7 6144 +cfi=(259) +cfn=(4842) +calls=2048 675 +* 520192 ++9 6144 +cfi=(259) +cfn=(4800) +calls=2048 826 +* 65536 +* 8192 +cfi=(259) +cfn=(4812) +calls=2048 808 +* 63488 +* 6144 +cfi=(318) +cfn=(4854) +calls=2048 2948 +* 1067008 +* 4096 +-12 1024 +-4 3072 +cfi=(259) +cfn=(4842) +calls=1024 675 +* 260096 +-8 3072 +cfi=(388) +cfn=(4654) +calls=1024 29 +* 118913 +* 2048 ++30 8 + +fn=(4676) +65 9 ++4 4 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 1 ++2 5 ++1 7 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 8 +cfi=(253) +cfn=(4594) +calls=1 189 +* 24 +* 8 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 1 +-1 2 ++3 1 ++1 7 + +fl=(349) +fn=(4234) +260 8 ++1 23 +cfi=(259) +cfn=(4236) +calls=3 484 +* 201 +* 9 ++1 6 + +fn=(6018) +34 35 ++9 180 +cfi=(259) +cfn=(4236) +calls=15 484 +* 1005 +* 45 ++1 30 + +fn=(4248) +528 11 + +fl=(217) +fn=(1640) +0 12 +cob=(3) +cfi=(218) +cfn=(1642) +calls=1 137 +0 22490037966 + +fn=(1644) +0 15 +cob=(2) +cfi=(18) +cfn=(1646) +calls=1 0 +0 7 +0 8 +cfn=(1650) 0x0000000000291b40 +calls=1 0 +0 12 +0 80 +cfi=(267) +cfn=(2412) +calls=1 80 +0 127 +cfi=(261) +cfn=(2336) +calls=1 44 +0 8228 +cfi=(260) +cfn=(2332) +calls=1 244 +0 127 +cfi=(258) +cfn=(2288) +calls=1 241 +0 569 +cfi=(257) +cfn=(2284) +calls=1 245 +0 127 +cfi=(256) +cfn=(2280) +calls=1 12 +0 127 +cfi=(250) +cfn=(2242) +calls=1 22 +0 45057 +cfi=(249) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/jacobi_2_0.cc +cfn=(2238) _GLOBAL__sub_I_jacobi_2_0.cc +calls=1 12 +0 127 +cfi=(248) +cfn=(2234) +calls=1 12 +0 127 +cfi=(247) /home/joscha/software/dune/dune-geometry/dune/geometry/quadraturerules/gauss.cc +cfn=(2230) _GLOBAL__sub_I_gauss.cc +calls=1 12 +0 127 +cfi=(246) +cfn=(2226) +calls=1 191 +0 127 +cfi=(245) +cfn=(2222) _GLOBAL__sub_I_boundaryextractor.cc +calls=1 180 +0 127 +cfi=(244) +cfn=(2218) +calls=1 54 +0 127 +cfi=(243) +cfn=(2214) +calls=1 184 +0 127 +cfi=(242) +cfn=(2210) +calls=1 632 +0 127 +cfi=(241) +cfn=(2206) +calls=1 379 +0 127 +cfi=(240) +cfn=(2202) +calls=1 408 +0 127 +cfi=(239) +cfn=(2198) +calls=1 648 +0 127 +cfi=(238) +cfn=(2194) +calls=1 722 +0 127 +cfi=(219) +cfn=(1656) +calls=1 376 +0 146922 +0 71 + +fn=(1650) +0 12 + +fl=(367) /home/joscha/software/dune/dune-uggrid/dune/uggrid/low/defaults.cc +fn=(4338) UG::GetDefaultValue(char const*, char const*, char*) +76 24 ++1 4 ++1 8 + +fl=(410) +fn=(5774) +158 73216 ++7 137280 ++1 256256 +cfi=(398) +cfn=(5776) +calls=36608 1586 +* 1171456 +* 36608 +-1 73216 ++2 9152 ++1 18304 + +fl=(399) +fn=(5598) +1120 6 ++1 5 +cfi=(400) +cfn=(5600) +calls=1 2039 +* 9611 +* 3 + +fn=(5320) +141 8 +cfi=(400) +cfn=(5322) +calls=1 414 +* 92 +* 3 + +fn=(5710) +387 55296 ++1 24576 +cfi=(286) +cfn=(5712) +calls=6144 74 +* 43008 +* 24576 +cfi=(286) +cfn=(5714) +calls=6144 74 +* 43008 +* 24576 +cfi=(400) +cfn=(5716) +calls=6144 748 +* 10010227 +* 30720 + +fn=(5932) +842 25 ++1 15 +cfi=(400) +cfn=(5934) +calls=5 2024 +* 85292 +* 15 + +fn=(5594) +1013 10240 ++1 6144 +cfi=(400) +cfn=(5596) +calls=2048 552 +* 16384 +* 4096 + +fn=(5894) +814 18048 ++1 15040 +cfi=(400) +cfn=(5896) +calls=3008 -44 +* 4142936 +* 6016 + +fl=(236) +fn=(4906) +138 8 +cfi=(237) +cfn=(4908) +calls=1 -58 +* 7 +* 3 + +fn=(4682) +141 36864 ++1 30720 +cfi=(237) +cfn=(4684) +calls=6144 -59 +* 49152 +* 18432 + +fn=(5086) +138 8 +cfi=(237) +cfn=(5088) +calls=1 -58 +* 7 +* 3 + +fn=(5962) std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::allocator() +138 40 +cfi=(237) +cfn=(5964) +calls=5 -58 +* 35 +* 15 + +fn=(6240) +138 32 +cfi=(237) +cfn=(6242) +calls=4 -58 +* 28 +* 12 + +fn=(6950) +138 32 +cfi=(237) +cfn=(6952) +calls=4 -58 +* 28 +* 12 + +fn=(7186) +141 48 ++1 40 +cfi=(237) +cfn=(7188) +calls=8 -59 +* 64 +* 24 + +fn=(7372) std::allocator<Dune::FieldMatrix<double, 0, 1> >::allocator() +138 16 +cfi=(237) +cfn=(7374) +calls=2 -58 +* 14 +* 6 + +fn=(2190) +138 8 +cfi=(237) +cfn=(2192) +calls=1 -58 +* 7 +* 3 + +fn=(2656) +138 8 +cfi=(237) +cfn=(2658) +calls=1 -58 +* 7 +* 3 + +fn=(4100) +138 8 +cfi=(237) +cfn=(4102) +calls=1 -58 +* 7 +* 3 + +fn=(5258) +153 56 +cfi=(237) +cfn=(5260) +calls=7 -64 +* 49 +* 21 + +fn=(6254) +138 32 +cfi=(237) +cfn=(6256) +calls=4 -58 +* 28 +* 12 + +fn=(6520) +141 48 ++1 40 +cfi=(237) +cfn=(6522) +calls=8 -59 +* 64 +* 24 + +fn=(6730) +141 48 ++1 40 +cfi=(237) +cfn=(6732) +calls=8 -59 +* 64 +* 24 + +fn=(8100) +141 48 ++1 40 +cfi=(237) +cfn=(8102) +calls=8 -59 +* 64 +* 24 + +fn=(4228) +138 8 +cfi=(237) +cfn=(4230) +calls=1 -58 +* 7 +* 3 + +fn=(5552) +153 49176 +cfi=(237) +cfn=(5554) +calls=6147 -64 +* 43029 +* 18441 + +fn=(6924) +138 16 +cfi=(237) +cfn=(6926) +calls=2 -58 +* 14 +* 6 + +fn=(7206) +141 24 ++1 20 +cfi=(237) +cfn=(7208) +calls=4 -59 +* 32 +* 12 + +fn=(7214) +153 48 +cfi=(237) +cfn=(7216) +calls=6 -64 +* 42 +* 18 + +fn=(7534) +138 24 +cfi=(237) +cfn=(7536) +calls=3 -58 +* 21 +* 9 + +fn=(2174) +138 8 +cfi=(237) +cfn=(2176) +calls=1 -58 +* 7 +* 3 + +fn=(2304) +138 88 +cfi=(237) +cfn=(2306) +calls=11 -58 +* 77 +* 33 + +fn=(4044) +153 8 +cfi=(237) +cfn=(4046) +calls=1 -64 +* 7 +* 3 + +fn=(4212) +138 232 +cfi=(237) +cfn=(4214) +calls=29 -58 +* 203 +* 87 + +fn=(5246) +141 36 ++1 30 +cfi=(237) +cfn=(5248) +calls=6 -59 +* 48 +* 18 + +fn=(5542) +141 24588 ++1 20490 +cfi=(237) +cfn=(5544) +calls=4098 -59 +* 32784 +* 12294 + +fn=(5634) +153 8 +cfi=(237) +cfn=(5636) +calls=1 -64 +* 7 +* 3 + +fn=(5994) +141 90 ++1 75 +cfi=(237) +cfn=(5996) +calls=15 -59 +* 120 +* 45 + +fn=(6530) +153 96 +cfi=(237) +cfn=(6532) +calls=12 -64 +* 84 +* 36 + +fn=(6740) +153 96 +cfi=(237) +cfn=(6742) +calls=12 -64 +* 84 +* 36 + +fn=(6938) +138 16 +cfi=(237) +cfn=(6940) +calls=2 -58 +* 14 +* 6 + +fn=(7564) +138 8 +cfi=(237) +cfn=(7566) +calls=1 -58 +* 7 +* 3 + +fn=(7778) +141 12 ++1 10 +cfi=(237) +cfn=(7780) +calls=2 -59 +* 16 +* 6 + +fn=(8110) +153 96 +cfi=(237) +cfn=(8112) +calls=12 -64 +* 84 +* 36 + +fn=(8710) +153 8 +cfi=(237) +cfn=(8712) +calls=1 -64 +* 7 +* 3 + +fn=(8776) +153 8 +cfi=(237) +cfn=(8778) +calls=1 -64 +* 7 +* 3 + +fn=(3374) +153 8 +cfi=(237) +cfn=(3376) +calls=1 -64 +* 7 +* 3 + +fn=(4188) +138 8 +cfi=(237) +cfn=(4190) +calls=1 -58 +* 7 +* 3 + +fn=(2316) +138 40 +cfi=(237) +cfn=(2318) +calls=5 -58 +* 35 +* 15 + +fn=(2350) +138 48 +cfi=(237) +cfn=(2352) +calls=6 -58 +* 42 +* 18 + +fn=(3872) +138 32 +cfi=(237) +cfn=(3874) +calls=4 -58 +* 28 +* 12 + +fn=(4176) +138 8 +cfi=(237) +cfn=(4178) +calls=1 -58 +* 7 +* 3 + +fn=(4200) +138 24592 +cfi=(237) +cfn=(4202) +calls=3074 -58 +* 21518 +* 9222 + +fn=(4242) +138 144 +cfi=(237) +cfn=(4244) +calls=18 -58 +* 126 +* 54 + +fn=(5214) std::allocator<PPIF::PPIFContext>::allocator() +138 16 +cfi=(237) +cfn=(5216) +calls=2 -58 +* 14 +* 6 + +fn=(5534) +138 16392 +cfi=(237) +cfn=(5536) +calls=2049 -58 +* 14343 +* 6147 + +fn=(6512) std::allocator<Dune::FieldMatrix<double, 2, 2> >::allocator() +138 32 +cfi=(237) +cfn=(6514) +calls=4 -58 +* 28 +* 12 + +fn=(6722) std::allocator<Dune::FieldMatrix<double, 1, 2> >::allocator() +138 32 +cfi=(237) +cfn=(6724) +calls=4 -58 +* 28 +* 12 + +fn=(7380) +141 24 ++1 20 +cfi=(237) +cfn=(7382) +calls=4 -59 +* 32 +* 12 + +fn=(7788) +153 24 +cfi=(237) +cfn=(7790) +calls=3 -64 +* 21 +* 9 + +fn=(8092) std::allocator<Dune::FieldMatrix<double, 0, 2> >::allocator() +138 32 +cfi=(237) +cfn=(8094) +calls=4 -58 +* 28 +* 12 + +fn=(5226) +151 27 +cfi=(237) +cfn=(5228) +calls=3 -71 +* 21 +* 9 + +fn=(6004) +153 120 +cfi=(237) +cfn=(6006) +calls=15 -64 +* 105 +* 45 + +fn=(6500) +153 296 +cfi=(237) +cfn=(6502) +calls=37 -64 +* 259 +* 111 + +fn=(6904) +138 80 +cfi=(237) +cfn=(6906) +calls=10 -58 +* 70 +* 30 + +fn=(7552) +138 8 +cfi=(237) +cfn=(7554) +calls=1 -58 +* 7 +* 3 + +fn=(2368) +151 54 +cfi=(237) +cfn=(2370) +calls=6 -71 +* 42 +* 18 + +fn=(4124) +138 8 +cfi=(237) +cfn=(4126) +calls=1 -58 +* 7 +* 3 + +fn=(4256) +138 8 +cfi=(237) +cfn=(4258) +calls=1 -58 +* 7 +* 3 + +fn=(5328) +138 8 +cfi=(237) +cfn=(5330) +calls=1 -58 +* 7 +* 3 + +fn=(5356) +138 1032 +cfi=(237) +cfn=(5358) +calls=129 -58 +* 903 +* 387 + +fn=(5622) +151 9 +cfi=(237) +cfn=(5624) +calls=1 -71 +* 7 +* 3 + +fn=(6266) +138 96 +cfi=(237) +cfn=(6268) +calls=12 -58 +* 84 +* 36 + +fn=(6496) +141 144 ++1 120 +cfi=(237) +cfn=(6498) +calls=24 -59 +* 192 +* 72 + +fn=(7390) +153 48 +cfi=(237) +cfn=(7392) +calls=6 -64 +* 42 +* 18 + +fn=(7758) +153 24 +cfi=(237) +cfn=(7760) +calls=3 -64 +* 21 +* 9 + +fn=(7770) std::allocator<Dune::FieldMatrix<double, 0, 0> >::allocator() +138 8 +cfi=(237) +cfn=(7772) +calls=1 -58 +* 7 +* 3 + +fn=(8650) +153 8 +cfi=(237) +cfn=(8652) +calls=1 -64 +* 7 +* 3 + +fn=(8748) +138 8 +cfi=(237) +cfn=(8750) +calls=1 -58 +* 7 +* 3 + +fn=(2328) +138 40 +cfi=(237) +cfn=(2330) +calls=5 -58 +* 35 +* 15 + +fn=(2382) +153 48 +cfi=(237) +cfn=(2384) +calls=6 -64 +* 42 +* 18 + +fn=(4692) +153 73744 +cfi=(237) +cfn=(4694) +calls=9218 -64 +* 64526 +* 27654 + +fn=(5278) +153 24 +cfi=(237) +cfn=(5280) +calls=3 -64 +* 21 +* 9 + +fn=(5974) +151 45 +cfi=(237) +cfn=(5976) +calls=5 -71 +* 35 +* 15 + +fn=(6024) +153 40 +cfi=(237) +cfn=(6026) +calls=5 -64 +* 35 +* 15 + +fn=(6226) +138 32 +cfi=(237) +cfn=(6228) +calls=4 -58 +* 28 +* 12 + +fn=(7190) +153 96 +cfi=(237) +cfn=(7192) +calls=12 -64 +* 84 +* 36 + +fn=(7754) +141 12 ++1 10 +cfi=(237) +cfn=(7756) +calls=2 -59 +* 16 +* 6 + +fn=(8640) +153 8 +cfi=(237) +cfn=(8642) +calls=1 -64 +* 7 +* 3 + +fn=(8730) +153 8 +cfi=(237) +cfn=(8732) +calls=1 -64 +* 7 +* 3 + +fl=(331) +fn=(3944) +40 10 +cob=(2) +cfi=(18) +cfn=(2294) +calls=1 -40 +* 8 ++1 5 +cob=(2) +cfi=(18) +cfn=(3036) +calls=1 -41 +* 156 ++1 5 + +fn=(3956) MatrixReader<Dune::Matrix<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > > >::split(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, char, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >&) +22 65 ++1 15 +cfi=(332) +cfn=(3958) +calls=5 130 +* 45 +* 30 +cob=(2) +cfi=(18) +cfn=(3960) +calls=5 -23 +* 18855 ++1 15 +cob=(2) +cfi=(18) +cfn=(2294) +calls=5 -24 +* 40 ++2 138 +cob=(2) +cfi=(18) +cfn=(3970) +calls=23 -26 +* 3756 +* 138 +cob=(2) +cfi=(18) +cfn=(3972) +calls=23 -26 +* 138 +* 46 ++1 90 +cfi=(259) +cfn=(2846) +calls=18 1184 +* 7518 +-1 18 +-2 15 +cob=(2) +cfi=(18) +cfn=(2754) +calls=5 -24 +* 40 +-1 15 +cob=(2) +cfi=(18) +cfn=(3976) +calls=5 -23 +* 510 ++6 40 + +fn=(3946) +45 10 ++1 3 +cob=(2) +cfi=(18) +cfn=(2294) +calls=1 -46 +* 8 ++1 3 +cfi=(259) +cfn=(2298) +calls=1 484 +* 67 ++1 6 +cob=(2) +cfi=(18) +cfn=(3948) +calls=1 -48 +* 4255 ++2 3 +cob=(2) +cfi=(18) +cfn=(3952) +calls=1 -50 +* 11 +* 2 ++2 5 +cob=(2) +cfi=(18) +cfn=(2664) +calls=1 -52 +* 351 ++1 7 +cfn=(3956) +calls=1 -31 +* 8395 ++2 4 +cfi=(259) +cfn=(3980) +calls=1 1040 +* 12 +* 2 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 -55 +* 5 +* 2 +cob=(2) +cfi=(18) +cfn=(3982) +calls=1 -55 +* 114 +* 2 ++1 4 +cfi=(259) +cfn=(3980) +calls=1 1040 +* 12 +* 2 +cob=(2) +cfi=(18) +cfn=(2496) +calls=1 -56 +* 5 +* 2 +cob=(2) +cfi=(18) +cfn=(3982) +calls=1 -56 +* 114 +* 2 ++2 6 +cfi=(325) +cfn=(3990) +calls=1 604 +* 621 ++2 3 +cfi=(325) +cfn=(3890) +calls=1 691 +* 18 +* 5 +cfi=(325) +cfn=(3994) +calls=1 696 +* 8 +* 5 ++7 16 ++1 24 +cfi=(325) +cfn=(3888) +calls=4 669 +* 508 +* 8 ++2 12 +cfi=(327) +cfn=(3996) +calls=4 215 +* 152 +* 8 ++1 12 +cfi=(327) +cfn=(4000) +calls=4 221 +* 168 +* 8 ++2 20 +cob=(2) +cfi=(18) +cfn=(2664) +calls=4 -73 +* 912 ++1 12 +cfi=(259) +cfn=(4002) +calls=4 1495 +* 868 ++1 28 +cfn=(3956) +calls=4 -53 +* 23132 ++2 100 +cfi=(330) +cfn=(4014) Dune::EnableIfInterOperable<Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, bool>::type Dune::operator!=<Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, Dune::FieldMatrix<double, 1, 1> const, Dune::FieldMatrix<double, 1, 1> const&, long, Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, Dune::FieldMatrix<double, 1, 1> const, Dune::FieldMatrix<double, 1, 1> const&>(Dune::RandomAccessIteratorFacade<Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, Dune::FieldMatrix<double, 1, 1> const, Dune::FieldMatrix<double, 1, 1> const&, long> const&, Dune::RandomAccessIteratorFacade<Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, Dune::FieldMatrix<double, 1, 1> const, Dune::FieldMatrix<double, 1, 1> const&, long> const&) +calls=20 613 +* 680 +* 40 ++1 48 +cfi=(327) +cfn=(4018) +calls=16 +39 +* 208 +* 80 +cfi=(259) +cfn=(3980) +calls=16 1040 +* 192 +* 32 +cob=(2) +cfi=(18) +cfn=(2496) +calls=16 -78 +* 80 +* 32 +cob=(2) +cfi=(18) +cfn=(4020) +calls=16 -78 +* 6416 +* 128 +cfi=(325) +cfn=(3888) +calls=16 669 +* 2032 +* 48 +cfi=(327) +cfn=(4018) +calls=16 +39 +* 208 +* 80 +cfi=(327) +cfn=(3898) +calls=16 -5 +* 416 +* 80 +cfi=(329) +cfn=(4026) +calls=16 306 +* 7808 +-1 48 +cfi=(330) +cfn=(4030) Dune::RandomAccessIteratorFacade<Dune::Imp::base_array_unmanaged<Dune::FieldMatrix<double, 1, 1>, std::allocator<Dune::FieldMatrix<double, 1, 1> > >::RealIterator<Dune::FieldMatrix<double, 1, 1> const>, Dune::FieldMatrix<double, 1, 1> const, Dune::FieldMatrix<double, 1, 1> const&, long>::operator++() +calls=16 519 +* 368 +* 16 +-10 8 ++16 3 +cob=(2) +cfi=(18) +cfn=(4034) +calls=1 -83 +* 707 +* 1 +-35 3 +cob=(2) +cfi=(18) +cfn=(3378) +calls=1 -48 +* 151 +-1 3 +cfi=(259) +cfn=(4038) +calls=1 675 +* 402 +-1 3 +cob=(2) +cfi=(18) +cfn=(2754) +calls=1 -46 +* 8 ++41 8 + +fl=(330) +fn=(6606) +613 72 ++4 60 +cfi=(254) +cfn=(6608) +calls=12 165 +* 196 +* 12 ++3 24 + +fn=(7864) +613 6 ++4 5 +cfi=(254) +cfn=(7866) +calls=1 165 +* 21 +* 1 ++3 2 + +fn=(4014) +613 120 ++4 100 +cfi=(327) +cfn=(4016) +calls=20 130 +* 400 +* 20 ++3 40 + +fn=(6610) +498 40 ++2 24 +cfi=(254) +cfn=(6612) +calls=8 176 +* 600 ++1 16 + +fn=(6808) +613 96 ++4 80 +cfi=(254) +cfn=(6810) +calls=16 165 +* 280 +* 16 ++3 32 + +fn=(7458) +613 12 ++4 10 +cfi=(254) +cfn=(7460) +calls=2 165 +* 42 +* 2 ++3 4 + +fn=(3940) +519 110 ++2 66 +cfi=(254) +cfn=(3942) +calls=22 180 +* 264 ++1 22 ++1 44 + +fn=(6624) +519 40 ++2 24 +cfi=(254) +cfn=(6626) +calls=8 180 +* 96 ++1 8 ++1 16 + +fn=(6812) +498 40 ++2 24 +cfi=(254) +cfn=(6814) +calls=8 176 +* 600 ++1 16 + +fn=(3926) +613 264 ++4 220 +cfi=(254) +cfn=(3928) +calls=44 165 +* 770 +* 44 ++3 88 + +fn=(4030) +519 80 ++2 48 +cfi=(327) +cfn=(4032) +calls=16 143 +* 192 ++1 16 ++1 32 + +fn=(6824) +519 40 ++2 24 +cfi=(254) +cfn=(6826) +calls=8 180 +* 96 ++1 8 ++1 16 + +fn=(3930) +498 110 ++2 66 +cfi=(254) +cfn=(3932) +calls=22 176 +* 990 ++1 44 + +fn=(8178) +613 36 ++4 30 +cfi=(254) +cfn=(8180) +calls=6 165 +* 126 +* 6 ++3 12 + +fl=(263) /usr/include/c++/9/bits/stl_stack.h +fn=(2342) std::stack<bool, std::deque<bool, std::allocator<bool> > >::stack<std::deque<bool, std::allocator<bool> >, void>() +156 30 ++1 18 +cfi=(264) +cfn=(2344) +calls=6 912 +* 5718 +* 18 + +fl=(273) +fn=(2446) +329 133 +-93 19 ++96 38 ++3 373 ++1 38 + +fl=(392) +fn=(5180) +125 9 ++6 2 +cfi=(355) +cfn=(4496) +calls=1 +64 +* 1988 +* 8 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2595 +* 9 ++6 3 +cfi=(359) +cfn=(5182) +calls=1 1355 +* 977 +* 1 ++1 2 ++6 5 +cfi=(359) +cfn=(5184) +calls=1 1361 +* 80 +* 4 ++3 3 ++1 6 +cfi=(359) +cfn=(5186) +calls=1 549 +* 11033 +* 4 ++6 1 ++1 5 + +fn=(5204) +214 11 ++7 2 +cfi=(355) +cfn=(4496) +calls=1 -26 +* 1886 +* 8 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2209 +* 9 ++3 3 +cfi=(365) +cfn=(5206) +calls=1 2940 +* 1126 +* 1 ++1 2 ++3 5 ++1 1 ++1 1 ++1 10 ++1 32 ++3 2 +cfi=(355) +cfn=(4496) +calls=1 -40 +* 1831 +* 12 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2314 +* 4 ++5 1 ++1 1 ++3 2 +cfi=(355) +cfn=(4496) +calls=1 -49 +* 1831 +* 12 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2050 +* 4 ++5 1 ++1 1 +-19 4 ++34 8 ++7 5 +cfi=(342) +cfn=(5198) +calls=1 129 +* 51 +* 12 +cfi=(365) +cfn=(5208) +calls=1 3030 +* 1379418 +* 4 +cfi=(342) +cfn=(5306) +calls=1 103 +* 575 ++1 2 ++6 2 ++2 1 ++1 7 + +fl=(286) +fn=(2958) +74 380 ++1 285 + +fn=(3290) +74 4 ++1 3 + +fn=(4874) std::remove_reference<unsigned int&>::type&& std::move<unsigned int&>(unsigned int&) +99 24576 ++1 18432 + +fn=(5290) +99 8 ++1 6 + +fn=(5706) +74 49152 ++1 36864 + +fn=(5884) +138 30720 ++1 18432 +cfn=(5886) std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>* std::__addressof<std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true> >(std::__detail::_Hash_node<std::pair<UG::D2::multigrid::FaceNodes const, std::pair<UG::D2::element*, int> >, true>&) +calls=6144 -92 +* 43008 +* 12288 + +fn=(7706) Dune::FieldVector<double, 0>* std::__addressof<Dune::FieldVector<double, 0> >(Dune::FieldVector<double, 0>&) +47 8 ++1 6 + +fn=(8786) +182 18 ++11 6 +cfn=(8788) std::remove_reference<Dune::UGGrid<2>*&>::type&& std::move<Dune::UGGrid<2>*&>(Dune::UGGrid<2>*&) +calls=2 -94 +* 14 +* 4 ++1 6 +cfn=(8788) +calls=2 -95 +* 14 +* 6 ++1 6 +cfn=(8788) +calls=2 -96 +* 14 +* 6 ++1 12 + +fn=(3102) +74 73792 ++1 55344 + +fn=(7106) Dune::FieldVector<double, 1>* std::__addressof<Dune::FieldVector<double, 1> >(Dune::FieldVector<double, 1>&) +47 64 ++1 48 + +fn=(5286) std::remove_reference<std::shared_ptr<PPIF::PPIFContext>&>::type&& std::move<std::shared_ptr<PPIF::PPIFContext>&>(std::shared_ptr<PPIF::PPIFContext>&) +99 8 ++1 6 + +fn=(5704) +74 49152 ++1 36864 + +fn=(7240) Dune::FieldMatrix<double, 1, 1>* std::__addressof<Dune::FieldMatrix<double, 1, 1> >(Dune::FieldMatrix<double, 1, 1>&) +47 8 ++1 6 + +fn=(8002) +74 32 ++1 24 + +fn=(8318) +99 60 ++1 45 + +fn=(9016) +99 747352 ++1 560514 + +fn=(2956) +74 380 ++1 285 + +fn=(3066) +74 64 ++1 48 + +fn=(4950) +74 87808 ++1 65856 + +fn=(5712) +74 172032 ++1 129024 + +fn=(8760) +74 8 ++1 6 + +fn=(8762) +74 8 ++1 6 + +fn=(8788) +99 24 ++1 18 + +fn=(8938) +99 101671676 ++1 76253757 + +fn=(4946) +74 12544 ++1 9408 + +fn=(7330) +74 16 ++1 12 + +fn=(8322) +74 204 ++1 153 + +fn=(8738) +99 12 ++1 9 + +fn=(8804) +99 4 ++1 3 + +fn=(3026) +74 24736 ++1 18552 + +fn=(3100) +74 64 ++1 48 + +fn=(3106) +74 64 ++1 48 + +fn=(8956) +99 20302076 ++1 15226557 + +fn=(4664) +74 16376 ++1 12282 + +fn=(4982) +74 24576 ++1 18432 + +fn=(5404) +74 36 ++1 27 + +fn=(5754) +74 48640 ++1 36480 + +fn=(6322) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__addressof<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo&) +47 128 ++1 96 + +fn=(6484) std::integer_sequence<unsigned long, 0ul, 1ul, 2ul>&& std::forward<std::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >(std::remove_reference<std::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >::type&) +74 16 ++1 12 + +fn=(7616) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__addressof<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo&) +47 4 ++1 3 + +fn=(8382) +74 288 ++1 216 + +fn=(8800) std::remove_reference<std::shared_ptr<Dune::UGGrid<2> >&>::type&& std::move<std::shared_ptr<Dune::UGGrid<2> >&>(std::shared_ptr<Dune::UGGrid<2> >&) +99 4 ++1 3 + +fn=(8998) +99 4909912 ++1 3682434 + +fn=(2882) +74 928 ++1 696 + +fn=(4660) std::remove_reference<Dune::FieldVector<double, 2>&>::type&& std::move<Dune::FieldVector<double, 2>&>(Dune::FieldVector<double, 2>&) +99 8188 ++1 6141 + +fn=(4740) +74 24624 ++1 18468 + +fn=(4818) +74 57968 ++1 43476 + +fn=(5298) +182 18 ++11 6 +cfn=(5300) std::remove_reference<PPIF::PPIFContext*&>::type&& std::move<PPIF::PPIFContext*&>(PPIF::PPIFContext*&) +calls=2 -94 +* 14 +* 4 ++1 6 +cfn=(5300) +calls=2 -95 +* 14 +* 6 ++1 6 +cfn=(5300) +calls=2 -96 +* 14 +* 6 ++1 12 + +fn=(6036) +74 132 ++1 99 + +fn=(6482) Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}&& std::forward<Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}>(std::remove_reference<Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}>::type&) +74 16 ++1 12 + +fn=(6690) +74 32 ++1 24 + +fn=(7002) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__addressof<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo&) +47 24 ++1 18 + +fn=(8768) +99 12 ++1 9 + +fn=(9022) +99 4162560 ++1 3121920 + +fn=(4736) +99 8192 ++1 6144 + +fn=(4872) +182 18432 ++11 6144 +cfn=(4874) +calls=2048 -94 +* 14336 +* 4096 ++1 6144 +cfn=(4874) +calls=2048 -95 +* 14336 +* 6144 ++1 6144 +cfn=(4874) +calls=2048 -96 +* 14336 +* 6144 ++1 12288 + +fn=(4986) +74 24576 ++1 18432 + +fn=(5698) +99 50123048 ++1 37592286 + +fn=(6032) +99 96 ++1 72 + +fn=(7174) std::integer_sequence<unsigned long, 0ul, 1ul>&& std::forward<std::integer_sequence<unsigned long, 0ul, 1ul> >(std::remove_reference<std::integer_sequence<unsigned long, 0ul, 1ul> >::type&) +74 8 ++1 6 + +fn=(7742) std::integer_sequence<unsigned long, 0ul>&& std::forward<std::integer_sequence<unsigned long, 0ul> >(std::remove_reference<std::integer_sequence<unsigned long, 0ul> >::type&) +74 4 ++1 3 + +fn=(8688) +74 12 ++1 9 + +fn=(3024) +74 16 ++1 12 + +fn=(3110) +74 24640 ++1 18480 + +fn=(3138) +74 192 ++1 144 + +fn=(5240) std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >* std::__addressof<std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> > >(std::allocator<std::_Sp_counted_ptr_inplace<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>, (__gnu_cxx::_Lock_policy)2> >&) +47 12 ++1 9 + +fn=(5300) +99 24 ++1 18 + +fn=(5714) +74 172032 ++1 129024 + +fn=(7172) Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}&& std::forward<Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}>(std::remove_reference<Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}>::type&) +74 8 ++1 6 + +fn=(7740) Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}&& std::forward<Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}>(std::remove_reference<Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}>::type&) +74 4 ++1 3 + +fn=(7936) +74 8 ++1 6 + +fn=(8066) +74 112 ++1 84 + +fn=(8254) +74 112 ++1 84 + +fn=(8668) +74 24 ++1 18 + +fn=(9074) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >* std::__addressof<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >&) +47 84 ++1 63 + +fn=(2642) +99 272 ++1 204 + +fn=(2960) +74 380 ++1 285 + +fn=(3132) +47 288 ++1 216 + +fn=(4634) +74 8760 ++1 6570 + +fn=(4656) Dune::FieldVector<double, 2>* std::__addressof<Dune::FieldVector<double, 2> >(Dune::FieldVector<double, 2>&) +47 24876 ++1 18657 + +fn=(5810) +74 49152 ++1 36864 + +fn=(5886) +47 24576 ++1 18432 + +fn=(5988) std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >* std::__addressof<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >(std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >&) +47 20 ++1 15 + +fn=(6558) Dune::FieldMatrix<double, 2, 2>* std::__addressof<Dune::FieldMatrix<double, 2, 2> >(Dune::FieldMatrix<double, 2, 2>&) +47 16 ++1 12 + +fn=(6768) Dune::FieldMatrix<double, 1, 2>* std::__addressof<Dune::FieldMatrix<double, 1, 2> >(Dune::FieldMatrix<double, 1, 2>&) +47 56 ++1 42 + +fl=(397) +fn=(5312) +249 14 ++3 35 ++1 14 + +fl=(354) +fn=(4336) +570 36 ++6 24 +cfi=(367) +cfn=(4338) +calls=4 76 +* 36 +* 16 ++1 8 ++27 20 + +fn=(4274) +1045 6 ++2 4 +cfi=(353) +cfn=(4276) +calls=2 120 +* 400 +* 8 ++3 2 +cfi=(353) +cfn=(4284) +calls=2 630 +* 18 +* 2 ++1 10 +cfi=(353) +cfn=(4286) +calls=2 244 +* 719 +* 8 ++3 2 +cfi=(353) +cfn=(4292) +calls=2 649 +* 18 +* 2 ++2 2 ++1 4 + +fl=(383) +fn=(4438) +1991 4 ++3 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++2 2 +cfi=(357) +cfn=(4298) +calls=1 608 +* 1333 +* 4 ++3 11 ++1 30 ++1 5 ++1 5 ++1 5 ++1 5 +-5 8 ++11 1 ++1 2 + +fn=(4396) +1991 4 ++3 1 +cfi=(353) +cfn=(4284) +calls=1 630 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++1 1 +cfi=(353) +cfn=(4292) +calls=1 649 +* 9 +* 1 ++2 2 +cfi=(357) +cfn=(4298) +calls=1 608 +* 1335 +* 4 ++3 11 ++1 30 ++1 5 ++1 5 ++1 5 ++1 5 +-5 8 ++11 1 ++1 2 + +fn=(4494) +1755 9 ++14 2 +cfi=(355) +cfn=(4496) +calls=1 195 +* 1984 +* 8 +cob=(2) +cfi=(18) +cfn=(4498) +calls=1 0 +* 2323 +* 9 ++4 3 +cfi=(363) +cfn=(4522) +calls=1 400 +* 1126 +* 4 ++6 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 +* 4 ++4 5 +cfi=(353) +cfn=(4286) +calls=1 244 +* 361 +* 4 ++8 11 ++1 48 +-1 8 ++2 43 ++1 180 +-1 40 ++2 143 ++1 3 ++1 3 ++3 8 +cfn=(4528) ScanTypeOptions(int, char**, int (*) [4], int*, char*) +calls=1 1602 +* 344 +* 4 ++6 4 ++51 2 ++7 11 ++1 44 ++1 188 ++1 28 +-2 32 +-1 8 ++8 1 ++1 11 ++1 20 +-1 8 ++15 4 ++12 1 ++1 43 ++2 192 ++2 20 ++1 20 ++12 12 +-15 128 ++2 80 ++1 80 ++12 48 ++3 48 ++1 8 +-1 4 ++1 56 ++5 60 ++1 96 +-27 40 ++45 28 +cfi=(363) +cfn=(4530) +calls=1 201 +* 5217 +* 2 ++4 2 ++7 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 786 +* 1 ++1 2 ++4 4 ++4 4 ++1 2 ++1 2 ++1 2 +cfi=(353) +cfn=(4276) +calls=1 120 +* 200 ++1 3 +cfi=(353) +cfn=(4532) +calls=1 415 +* 159 +* 4 ++3 1 ++1 5 + +fn=(4528) +1602 12 ++8 11 ++1 44 ++1 144 +-1 32 +-1 8 ++5 3 ++1 4 +1718 2 ++3 11 ++2 36 ++1 20 +-3 8 ++7 3 ++2 1 ++1 5 + +fl=(293) +fn=(3882) +176 24 + +fn=(2888) +174 250976 + +fl=(393) +fn=(5986) std::__allocated_ptr<std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> > >::__allocated_ptr(std::allocator<std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2> >&, std::_Sp_counted_ptr_inplace<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, (__gnu_cxx::_Lock_policy)2>*) +52 35 ++1 15 +cfi=(286) +cfn=(5988) +calls=5 -6 +* 35 +* 25 ++1 15 + +fn=(6022) +70 25 ++2 20 ++2 15 + +fn=(5238) +52 21 ++1 9 +cfi=(286) +cfn=(5240) +calls=3 -6 +* 21 +* 15 ++1 9 + +fn=(5242) +85 18 +cfi=(394) +cfn=(5244) +calls=2 +66 +* 14 +* 4 + +fn=(6020) +78 25 ++2 10 ++1 5 ++1 10 + +fn=(5230) +95 12 ++2 8 +cfi=(266) +cfn=(5232) +calls=2 443 +* 573 +* 12 +cfn=(5238) +calls=2 -45 +* 50 ++1 6 + +fn=(5978) +95 30 ++2 20 +cfi=(266) +cfn=(5980) +calls=5 443 +* 1449 +* 30 +cfn=(5986) +calls=5 -45 +* 125 ++1 15 + +fn=(5990) +85 45 +cfi=(394) +cfn=(5992) +calls=5 +66 +* 35 +* 10 + +fn=(5274) +78 10 ++2 4 ++1 2 ++1 4 + +fn=(5276) +70 15 ++2 12 ++1 8 +cfi=(266) +cfn=(5514) +calls=1 469 +* 116 ++1 9 + +fl=(428) /home/joscha/software/dune/dune-geometry/dune/geometry/affinegeometry.hh +fn=(7322) void Dune::Impl::FieldMatrixHelper<double>::LTL<1>(Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 1, 1>&) +197 96 ++2 80 ++2 64 ++7 96 +cfi=(329) +cfn=(3934) +calls=16 +8 +* 496 +* 96 +cfi=(252) +cfn=(7140) +calls=16 378 +* 128 +* 32 ++1 96 ++1 96 +cfi=(329) +cfn=(7310) +calls=16 +11 +* 496 +* 96 +cfi=(252) +cfn=(7314) +calls=16 384 +* 128 +* 128 +cfi=(329) +cfn=(7310) +calls=16 +11 +* 496 +* 96 +cfi=(252) +cfn=(7314) +calls=16 384 +* 128 +* 144 +cfi=(329) +cfn=(3934) +calls=16 +6 +* 496 +* 96 +cfi=(252) +cfn=(7140) +calls=16 378 +* 128 +* 48 +-1 32 +-10 32 ++13 48 + +fn=(7928) void Dune::Impl::FieldMatrixHelper<double>::LTL<0>(Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 0, 0>&) +197 114 ++2 57 ++13 57 + +fn=(8034) Dune::AffineGeometry<double, 1, 2>::AffineGeometry(Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 1> > const&, Dune::FieldVector<double, 2> const&, Dune::FieldMatrix<double, 1, 2> const&) +519 112 ++2 280 +cfi=(328) +cfn=(8036) +calls=14 91 +* 294 ++2 98 +cfn=(8040) double Dune::Impl::FieldMatrixHelper<double>::rightInvA<1, 2>(Dune::FieldMatrix<double, 1, 2> const&, Dune::FieldMatrix<double, 2, 1>&) +calls=14 -89 +* 25130 +* 42 ++1 42 + +fn=(7992) double Dune::Impl::FieldMatrixHelper<double>::rightInvA<0, 1>(Dune::FieldMatrix<double, 0, 1> const&, Dune::FieldMatrix<double, 1, 0>&) +434 36 ++17 20 +cfn=(7994) void Dune::Impl::FieldMatrixHelper<double>::AAT_L<0, 1>(Dune::FieldMatrix<double, 0, 1> const&, Dune::FieldMatrix<double, 0, 0>&) +calls=4 134 +* 48 ++1 12 +cfn=(7922) double Dune::Impl::FieldMatrixHelper<double>::spdInvA<0>(Dune::FieldMatrix<double, 0, 0>&) +calls=4 330 +* 276 +* 8 ++1 24 +cfn=(7996) void Dune::Impl::FieldMatrixHelper<double>::ATBT<0, 1, 0>(Dune::FieldMatrix<double, 0, 1> const&, Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 1, 0>&) +calls=4 87 +* 80 ++1 4 ++2 20 + +fn=(8050) void Dune::Impl::FieldMatrixHelper<double>::ATBT<1, 2, 1>(Dune::FieldMatrix<double, 1, 2> const&, Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 2, 1>&) +87 98 ++2 98 ++2 140 ++2 168 +cfi=(329) +cfn=(8052) +calls=28 216 +* 1680 +* 168 +cfi=(252) +cfn=(7140) +calls=28 378 +* 224 +* 56 ++1 140 ++1 168 +cfi=(329) +cfn=(8044) +calls=28 221 +* 1708 +* 168 +cfi=(252) +cfn=(4596) +calls=28 196 +* 1036 +* 224 +cfi=(329) +cfn=(7310) +calls=28 221 +* 868 +* 168 +cfi=(252) +cfn=(7314) +calls=28 384 +* 224 +* 252 +cfi=(329) +cfn=(8052) +calls=28 216 +* 1680 +* 168 +cfi=(252) +cfn=(7140) +calls=28 378 +* 224 +* 84 +-1 56 +-3 56 +-2 56 ++9 42 + +fn=(7304) Dune::AffineGeometry<double, 1, 1>::AffineGeometry(Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 1> > const&, Dune::FieldVector<double, 1> const&, Dune::FieldMatrix<double, 1, 1> const&) +519 16 ++2 32 +cfi=(328) +cfn=(3884) +calls=2 324 +* 42 ++2 14 +cfn=(7306) double Dune::Impl::FieldMatrixHelper<double>::rightInvA<1, 1>(Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 1, 1>&) +calls=2 -89 +* 1954 +* 6 ++1 6 + +fn=(7306) +434 18 ++16 4 ++1 10 +cfn=(7308) void Dune::Impl::FieldMatrixHelper<double>::AAT_L<1, 1>(Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 1, 1>&) +calls=2 134 +* 364 ++1 6 +cfn=(7316) double Dune::Impl::FieldMatrixHelper<double>::spdInvA<1>(Dune::FieldMatrix<double, 1, 1>&) +calls=2 330 +* 1034 +* 4 ++1 12 +cfn=(7324) void Dune::Impl::FieldMatrixHelper<double>::ATBT<1, 1, 1>(Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 1, 1>&) +calls=2 87 +* 490 ++1 2 ++2 10 + +fn=(7320) double Dune::Impl::FieldMatrixHelper<double>::invL<1>(Dune::FieldMatrix<double, 1, 1>&) +276 80 ++2 32 ++1 80 ++2 96 +cfi=(329) +cfn=(3934) +calls=16 -65 +* 496 +* 96 +cfi=(252) +cfn=(7140) +calls=16 +97 +* 128 +* 16 ++1 80 ++1 96 ++1 64 +-5 32 ++14 16 ++1 32 + +fn=(7918) double Dune::Impl::FieldMatrixHelper<double>::rightInvA<0, 0>(Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 0, 0>&) +434 9 ++17 5 +cfn=(7920) void Dune::Impl::FieldMatrixHelper<double>::AAT_L<0, 0>(Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 0, 0>&) +calls=1 134 +* 12 ++1 3 +cfn=(7922) +calls=1 330 +* 69 +* 2 ++1 6 +cfn=(7930) void Dune::Impl::FieldMatrixHelper<double>::ATBT<0, 0, 0>(Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 0, 0>&) +calls=1 87 +* 13 ++1 1 ++2 5 + +fn=(7924) bool Dune::Impl::FieldMatrixHelper<double>::cholesky_L<0>(Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 0, 0>&, bool) +233 152 ++2 57 ++28 19 ++1 38 + +fn=(7986) Dune::AffineGeometry<double, 0, 1>::AffineGeometry(Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 0> > const&, Dune::FieldVector<double, 1> const&, Dune::FieldMatrix<double, 0, 1> const&) +519 32 ++2 48 +cfi=(328) +cfn=(7988) +calls=4 91 +* 72 ++2 28 +cfn=(7992) +calls=4 -89 +* 528 +* 12 ++1 12 + +fn=(8246) void Dune::Impl::FieldMatrixHelper<double>::AAT_L<0, 2>(Dune::FieldMatrix<double, 0, 2> const&, Dune::FieldMatrix<double, 0, 0>&) +134 84 ++10 42 ++10 42 + +fn=(6678) double Dune::Impl::FieldMatrixHelper<double>::rightInvA<2, 2>(Dune::FieldMatrix<double, 2, 2> const&, Dune::FieldMatrix<double, 2, 2>&) +434 36 ++6 16 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 24 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 28 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 24 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 24 ++1 12 ++1 16 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 28 +cfi=(329) +cfn=(6614) +calls=4 216 +* 244 +* 12 +cfi=(252) +cfn=(2252) +calls=4 192 +* 148 +* 8 ++1 16 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 28 +cfi=(329) +cfn=(6614) +calls=4 216 +* 244 +* 12 +cfi=(252) +cfn=(2252) +calls=4 192 +* 148 +* 8 ++1 16 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 36 +cfi=(329) +cfn=(6614) +calls=4 216 +* 244 +* 12 +cfi=(252) +cfn=(2252) +calls=4 192 +* 148 +* 8 ++1 16 +cfi=(329) +cfn=(6680) +calls=4 221 +* 244 +* 12 +cfi=(252) +cfn=(4596) +calls=4 196 +* 148 +* 36 +cfi=(329) +cfn=(6614) +calls=4 216 +* 244 +* 12 +cfi=(252) +cfn=(2252) +calls=4 192 +* 148 +* 8 ++1 12 +cfi=(404) +cfn=(5482) +calls=4 72 +* 36 +* 4 ++10 20 + +fn=(7316) +330 128 ++2 32 ++1 96 +cfn=(7318) bool Dune::Impl::FieldMatrixHelper<double>::cholesky_L<1>(Dune::FieldMatrix<double, 1, 1> const&, Dune::FieldMatrix<double, 1, 1>&, bool) +calls=16 233 +* 2544 ++1 48 +cfn=(7320) +calls=16 -58 +* 1344 +* 32 ++1 80 +cfn=(7322) +calls=16 197 +* 3872 ++1 16 ++1 80 + +fn=(7324) +87 14 ++2 10 ++2 10 ++2 12 +cfi=(329) +cfn=(3934) +calls=2 216 +* 62 +* 12 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 4 ++1 10 ++1 12 +cfi=(329) +cfn=(7310) +calls=2 221 +* 62 +* 12 +cfi=(252) +cfn=(7314) +calls=2 384 +* 16 +* 16 +cfi=(329) +cfn=(7310) +calls=2 221 +* 62 +* 12 +cfi=(252) +cfn=(7314) +calls=2 384 +* 16 +* 18 +cfi=(329) +cfn=(3934) +calls=2 216 +* 62 +* 12 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 6 +-1 4 +-3 4 +-2 4 ++9 6 + +fn=(7916) Dune::AffineGeometry<double, 0, 0>::AffineGeometry(Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 0> > const&, Dune::FieldVector<double, 0> const&, Dune::FieldMatrix<double, 0, 0> const&) +519 8 ++2 4 ++2 7 +cfn=(7918) +calls=1 -89 +* 125 +* 3 ++1 3 + +fn=(8040) +434 126 ++16 28 ++1 70 +cfn=(8042) void Dune::Impl::FieldMatrixHelper<double>::AAT_L<1, 2>(Dune::FieldMatrix<double, 1, 2> const&, Dune::FieldMatrix<double, 1, 1>&) +calls=14 134 +* 7476 ++1 42 +cfn=(7316) +calls=14 330 +* 7238 +* 28 ++1 84 +cfn=(8050) +calls=14 87 +* 9954 ++1 14 ++2 70 + +fn=(8248) void Dune::Impl::FieldMatrixHelper<double>::ATBT<0, 2, 0>(Dune::FieldMatrix<double, 0, 2> const&, Dune::FieldMatrix<double, 0, 0> const&, Dune::FieldMatrix<double, 2, 0>&) +87 98 ++2 98 ++2 84 +-2 56 ++9 42 + +fn=(7930) +87 7 ++2 3 ++9 3 + +fn=(7994) +134 24 ++10 12 ++10 12 + +fn=(6676) Dune::AffineGeometry<double, 2, 2>::AffineGeometry(Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 2> > const&, Dune::FieldVector<double, 2> const&, Dune::FieldMatrix<double, 2, 2> const&) +519 32 ++2 96 +cfi=(328) +cfn=(6562) +calls=4 91 +* 92 ++2 28 +cfn=(6678) +calls=4 -89 +* 5308 +* 12 ++1 12 + +fn=(7308) +134 12 ++10 10 ++2 14 ++2 12 +cfi=(329) +cfn=(3934) +calls=2 +68 +* 62 +* 12 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 2 ++1 12 +cfi=(329) +cfn=(7310) +calls=2 +72 +* 62 +* 6 +cfi=(252) +cfn=(7314) +calls=2 384 +* 16 +* 16 +cfi=(329) +cfn=(7310) +calls=2 +72 +* 62 +* 6 +cfi=(252) +cfn=(7314) +calls=2 384 +* 16 +* 8 ++1 6 +-4 4 +-2 4 ++10 6 + +fn=(7920) +134 6 ++10 3 ++10 3 + +fn=(7926) double Dune::Impl::FieldMatrixHelper<double>::invL<0>(Dune::FieldMatrix<double, 0, 0>&) +276 95 ++2 38 ++1 57 ++14 19 ++1 38 + +fn=(7922) +330 152 ++3 114 +cfn=(7924) +calls=19 233 +* 266 ++1 57 +cfn=(7926) +calls=19 -58 +* 247 +* 38 ++1 95 +cfn=(7928) +calls=19 197 +* 228 ++1 19 ++1 95 + +fn=(7996) +87 28 ++2 20 ++2 12 +-2 8 ++9 12 + +fn=(8244) double Dune::Impl::FieldMatrixHelper<double>::rightInvA<0, 2>(Dune::FieldMatrix<double, 0, 2> const&, Dune::FieldMatrix<double, 2, 0>&) +434 126 ++17 70 +cfn=(8246) +calls=14 134 +* 168 ++1 42 +cfn=(7922) +calls=14 330 +* 966 +* 28 ++1 84 +cfn=(8248) +calls=14 87 +* 378 ++1 14 ++2 70 + +fn=(7318) +233 128 ++2 80 ++2 96 +cfi=(329) +cfn=(3934) +calls=16 -21 +* 496 +* 96 +cfi=(252) +cfn=(7140) +calls=16 378 +* 128 +* 16 ++2 96 +cfi=(329) +cfn=(7310) +calls=16 -18 +* 496 +* 96 +cfi=(252) +cfn=(7314) +calls=16 384 +* 128 +* 32 ++1 64 ++5 32 ++4 64 ++1 48 +cob=(2) +cfi=(18) +cfn=(5650) +calls=16 0 +* 160 +* 48 ++2 80 ++1 80 +-18 32 ++28 16 ++1 32 + +fn=(8042) +134 84 ++10 70 ++2 98 ++2 84 +cfi=(329) +cfn=(3934) +calls=14 +68 +* 434 +* 84 +cfi=(252) +cfn=(7140) +calls=14 378 +* 112 +* 14 ++1 84 +cfi=(329) +cfn=(8044) +calls=14 +72 +* 854 +* 42 +cfi=(252) +cfn=(4596) +calls=14 +47 +* 518 +* 112 +cfi=(329) +cfn=(8044) +calls=14 +72 +* 854 +* 42 +cfi=(252) +cfn=(4596) +calls=14 +47 +* 518 +* 56 ++1 70 ++1 84 +cfi=(329) +cfn=(8044) +calls=14 +70 +* 854 +* 84 +cfi=(252) +cfn=(4596) +calls=14 +45 +* 518 +* 112 +cfi=(329) +cfn=(8044) +calls=14 +70 +* 854 +* 84 +cfi=(252) +cfn=(4596) +calls=14 +45 +* 518 +* 112 +-1 28 +-4 28 +-2 28 ++10 42 + +fn=(8238) Dune::AffineGeometry<double, 0, 2>::AffineGeometry(Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 0> > const&, Dune::FieldVector<double, 2> const&, Dune::FieldMatrix<double, 0, 2> const&) +519 112 ++2 196 +cfi=(328) +cfn=(8240) +calls=14 91 +* 252 ++2 98 +cfn=(8244) +calls=14 -89 +* 1946 +* 42 ++1 42 + +fl=(424) +fn=(6444) Dune::Geo::ReferenceElementImplementation<double, 2>::size(int, int, int) const +439 144 ++2 126 +cfn=(6416) Dune::Geo::ReferenceElementImplementation<double, 2>::size(int) const +calls=18 -19 +* 702 +* 36 ++1 252 +cfi=(259) +cfn=(6446) +calls=18 1058 +* 270 +* 90 +cfn=(6398) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::size(int) const +calls=18 720 +* 1476 ++1 36 + +fn=(7062) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::number(int, int) const +726 112 ++2 98 +cfn=(7060) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::size(int) const +calls=14 -8 +* 1148 +* 28 ++1 126 +cfi=(253) +cfn=(7052) +calls=14 189 +* 336 +* 98 ++1 56 + +fn=(7072) Dune::Geo::ReferenceElementImplementation<double, 1>::size(int) const +422 168 ++2 112 ++1 308 +cfi=(259) +cfn=(6972) +calls=28 915 +* 448 ++1 56 + +fn=(7300) Dune::Geo::ReferenceElementImplementation<double, 1>::CreateGeometries<0>::subRefElement(Dune::Geo::ReferenceElementImplementation<double, 1> const&, int, std::integral_constant<int, 0>) +792 18 ++3 10 +cfi=(425) +cfn=(7302) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 1> >::ReferenceElement(Dune::Geo::ReferenceElementImplementation<double, 1> const&) +calls=2 327 +* 22 +* 2 ++1 10 + +fn=(7648) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::deallocate(unsigned int*) +769 11 + +fn=(7124) unsigned int Dune::Geo::Impl::referenceCorners<double, 1>(unsigned int, int, Dune::FieldVector<double, 1>*) +115 24 ++2 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 -18 +* 20 +* 4 ++2 4 ++3 16 +cfi=(389) +cfn=(6372) +calls=2 +44 +* 76 +* 12 +cfn=(7125) unsigned int Dune::Geo::Impl::referenceCorners<double, 1>(unsigned int, int, Dune::FieldVector<double, 1>*)'2 +calls=2 -8 +* 128 +* 2 ++1 20 +cfi=(389) +cfn=(6372) +calls=2 +43 +* 76 +* 8 +cfi=(246) +cfn=(6288) +calls=2 20 +* 68 +* 4 ++1 12 +cfi=(389) +cfn=(6374) +calls=2 +9 +* 84 +* 4 ++2 24 +cfi=(265) +cfn=(7128) +calls=2 465 +* 318 ++1 14 ++1 26 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 4 +-1 4 ++2 6 ++14 16 + +fn=(7125) +115 24 ++2 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 -18 +* 20 +* 4 ++2 4 ++21 14 +cfi=(252) +cfn=(7126) +calls=2 325 +* 24 +* 6 ++1 2 ++2 16 + +fn=(7142) Dune::Geo::ReferenceElementImplementation<double, 1>::size(int, int, int) const +439 16 ++2 14 +cfn=(7072) +calls=2 -19 +* 78 +* 4 ++1 28 +cfi=(259) +cfn=(7144) +calls=2 1058 +* 30 +* 10 +cfn=(7060) +calls=2 720 +* 164 ++1 4 + +fn=(6362) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::initialize(unsigned int, int, unsigned int) +739 416 ++2 192 +cfi=(246) +cfn=(6364) +calls=32 51 +* 28628 +* 32 ++1 256 +cfi=(389) +cfn=(6366) +calls=32 438 +* 576 +* 96 ++3 350 ++1 518 +cfi=(253) +cfn=(6368) +calls=74 185 +* 1776 +* 74 +-1 148 ++2 236 ++1 378 +cfi=(253) +cfn=(6368) +calls=54 185 +* 1296 +* 594 +cfi=(246) +cfn=(6288) +calls=54 20 +* 6602 +* 486 +cfi=(253) +cfn=(6368) +calls=54 185 +* 1296 +* 54 +-1 108 ++4 192 +cfn=(6378) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::deallocate(unsigned int*) +calls=32 +18 +* 352 ++1 96 +cfn=(6380) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::allocate() +calls=32 +16 +* 8261 +* 64 ++1 236 ++1 540 +cfi=(253) +cfn=(6368) +calls=54 185 +* 1296 +* 702 +cfi=(253) +cfn=(6368) +calls=54 185 +* 1296 +* 918 +cfi=(246) +cfn=(6388) +calls=54 90 +* 88418 +* 54 +-1 108 ++4 288 ++2 576 +cfi=(253) +cfn=(6390) +calls=96 185 +* 2304 +* 192 +cfi=(426) +cfn=(6394) +calls=96 1099 +* 1920 ++1 672 +cfn=(6398) +calls=96 -40 +* 7872 +* 528 +cfn=(6398) +calls=88 -40 +* 7216 +* 920 ++1 528 +cfi=(253) +cfn=(6390) +calls=88 185 +* 2112 +* 792 +cfn=(6400) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::number(int, int) const +calls=88 -35 +* 12584 +* 440 +cfi=(426) +cfn=(6402) +calls=88 1163 +* 4752 +* 352 +cfi=(426) +cfn=(6410) +calls=88 +67 +* 4136 +* 264 +cfi=(426) +cfn=(6414) +calls=88 +62 +* 616 +-1 176 +-3 192 ++6 288 + +fn=(6570) Dune::Geo::ReferenceElementImplementation<double, 2>::type(int, int) const +493 280 ++2 280 +cfn=(6416) +calls=40 -73 +* 1560 +* 80 ++1 560 +cfi=(259) +cfn=(6446) +calls=40 1058 +* 600 +* 80 +cfn=(6572) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::type() const +calls=40 737 +* 320 ++1 80 + +fn=(6576) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 2, 2>(unsigned int, int, int, Dune::FieldVector<double, 2>*, Dune::FieldMatrix<double, 2, 2>*) +213 48 ++4 28 ++1 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 100 +* 40 +* 8 ++2 8 ++42 28 +cfi=(252) +cfn=(4134) +calls=4 121 +* 604 +* 20 ++1 28 +cfi=(328) +cfn=(6578) +calls=4 104 +* 4600 +* 36 ++1 40 ++1 48 +cfi=(329) +cfn=(6614) +calls=8 -50 +* 488 +* 48 +cfi=(252) +cfn=(2252) +calls=8 -74 +* 296 +* 16 +-1 16 ++2 4 ++2 20 + +fn=(6718) _ZZN4Dune3Geo30ReferenceElementImplementationIdLi2EE10initializeEjENKUlT_E_clISt17integral_constantImLm1EEEEDaS3_ +610 52 +cfn=(6720) Dune::Geo::ReferenceElementImplementation<double, 2>::CreateGeometries<1>::apply(Dune::Geo::ReferenceElementImplementation<double, 2> const&, std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +calls=4 798 +* 121141 +* 12 + +fn=(7180) Dune::Geo::ReferenceElementImplementation<double, 1>::CreateGeometries<0>::apply(Dune::Geo::ReferenceElementImplementation<double, 1> const&, std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +798 22 ++2 8 +cfn=(7072) +calls=2 422 +* 78 +* 2 ++1 6 +cfi=(236) +cfn=(6904) +calls=2 138 +* 36 +* 14 +cfi=(259) +cfn=(7182) +calls=2 507 +* 980 +* 6 +cfi=(236) +cfn=(7190) +calls=2 153 +* 36 ++1 6 +cfi=(236) +cfn=(3872) +calls=2 138 +* 36 +* 14 +cfi=(259) +cfn=(7202) +calls=2 507 +* 1175 +* 6 +cfi=(236) +cfn=(7214) +calls=2 153 +* 36 ++1 8 +cfi=(259) +cfn=(7244) +calls=2 1040 +* 24 +* 10 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 8 +cfn=(7246) Dune::Geo::ReferenceElementImplementation<double, 1>::type() const +calls=2 500 +* 216 +* 4 +cfi=(389) +cfn=(6574) +calls=2 649 +* 16 +* 12 +cfn=(7252) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 1, 1>(unsigned int, int, int, Dune::FieldVector<double, 1>*, Dune::FieldMatrix<double, 1, 1>*) +calls=2 213 +* 1310 ++2 6 +cfi=(295) +cfn=(7256) +calls=2 1320 +* 76 +* 12 +cfi=(292) +cfn=(7264) +calls=2 66 +* 1042 ++1 14 ++2 12 +cfi=(259) +cfn=(7244) +calls=2 1040 +* 24 +* 14 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 12 +cfn=(7300) +calls=2 -16 +* 62 +* 14 +cfi=(428) +cfn=(7304) +calls=2 519 +* 2070 ++1 6 +cfi=(295) +cfn=(7256) +calls=2 1320 +* 76 +* 10 +cfi=(259) +cfn=(7326) +calls=2 1184 +* 200 +-3 4 +-4 6 +cfi=(259) +cfn=(7334) +calls=2 675 +* 508 +-1 6 +cfi=(259) +cfn=(7352) +calls=2 675 +* 508 ++10 18 + +fn=(7516) Dune::Geo::ReferenceElements<double, (1)-(1)>::ReferenceElement Dune::Geo::ReferenceElementImplementation<double, 1>::CreateGeometries<1>::subRefElement<1>(Dune::Geo::ReferenceElementImplementation<double, 1> const&, int, std::integral_constant<int, 1>) +786 24 ++2 24 +cfn=(7248) Dune::Geo::ReferenceElementImplementation<double, 1>::type(int, int) const +calls=4 493 +* 384 +* 8 +cfi=(423) +cfn=(7518) Dune::Geo::ReferenceElements<double, 0>::general(Dune::GeometryType const&) +calls=4 196 +* 9264 +* 4 ++1 8 + +fn=(7746) _ZZN4Dune3Geo30ReferenceElementImplementationIdLi0EE10initializeEjENKUlT_E_clISt17integral_constantImLm0EEEEDaS3_ +610 13 +cfn=(7748) Dune::Geo::ReferenceElementImplementation<double, 0>::CreateGeometries<0>::apply(Dune::Geo::ReferenceElementImplementation<double, 0> const&, std::tuple<std::vector<Dune::AffineGeometry<double, 0, 0>, std::allocator<Dune::AffineGeometry<double, 0, 0> > > >&) +calls=1 798 +* 3725 +* 3 + +fn=(8088) _ZZN4Dune3Geo30ReferenceElementImplementationIdLi2EE10initializeEjENKUlT_E_clISt17integral_constantImLm2EEEEDaS3_ +610 52 +cfn=(8090) Dune::Geo::ReferenceElementImplementation<double, 2>::CreateGeometries<2>::apply(Dune::Geo::ReferenceElementImplementation<double, 2> const&, std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +calls=4 798 +* 26307 +* 12 + +fn=(6326) +689 288 ++1 192 +cfi=(389) +cfn=(6328) +calls=32 380 +* 416 +* 128 +cfi=(253) +cfn=(6330) +calls=32 94 +* 352 ++2 160 +cfi=(253) +cfn=(6332) +calls=32 134 +* 896 +* 160 +cfi=(253) +cfn=(6338) +calls=32 126 +* 864 +* 192 +cfi=(265) +cfn=(4158) +calls=32 +50 +* 2784 ++1 256 + +fn=(6430) unsigned int Dune::Geo::Impl::referenceCorners<double, 2>(unsigned int, int, Dune::FieldVector<double, 2>*) +115 48 ++2 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 -18 +* 40 +* 8 ++2 8 ++3 32 +cfi=(389) +cfn=(6372) +calls=4 +44 +* 152 +* 24 +cfn=(6431) unsigned int Dune::Geo::Impl::referenceCorners<double, 2>(unsigned int, int, Dune::FieldVector<double, 2>*)'2 +calls=4 -8 +* 2700 +* 4 ++1 40 +cfi=(389) +cfn=(6372) +calls=4 +43 +* 152 +* 16 +cfi=(246) +cfn=(6288) +calls=4 20 +* 724 +* 8 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 +9 +* 168 +* 8 ++2 28 +cfi=(265) +cfn=(6432) +calls=2 465 +* 320 ++1 20 ++1 56 +cfi=(252) +cfn=(2252) +calls=4 +63 +* 148 +* 8 +-1 8 ++2 6 ++4 14 +cfi=(252) +cfn=(4134) +calls=2 -13 +* 302 +* 18 ++1 22 +cfi=(252) +cfn=(2252) +calls=2 +57 +* 74 +* 4 ++1 6 ++8 32 + +fn=(6431) +115 96 ++2 32 ++1 24 +cfi=(389) +cfn=(6286) +calls=8 -18 +* 80 +* 16 ++2 16 ++3 32 +cfi=(389) +cfn=(6372) +calls=4 +44 +* 152 +* 24 +cfn=(6431) +calls=4 -8 +* 820 +* 4 ++1 40 +cfi=(389) +cfn=(6372) +calls=4 +43 +* 152 +* 16 +cfi=(246) +cfn=(6288) +calls=4 20 +* 136 +* 8 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 +9 +* 168 +* 8 ++2 56 +cfi=(265) +cfn=(6432) +calls=4 465 +* 636 ++1 28 ++1 56 +cfi=(252) +cfn=(2252) +calls=4 +63 +* 148 +* 8 +-1 8 ++2 12 ++11 28 +cfi=(252) +cfn=(4134) +calls=4 -20 +* 604 +* 20 ++1 4 ++2 64 + +fn=(6488) _ZZN4Dune3Geo30ReferenceElementImplementationIdLi2EE10initializeEjENKUlT_E_clISt17integral_constantImLm0EEEEDaS3_ +610 52 +cfn=(6490) Dune::Geo::ReferenceElementImplementation<double, 2>::CreateGeometries<0>::apply(Dune::Geo::ReferenceElementImplementation<double, 2> const&, std::tuple<std::vector<Dune::AffineGeometry<double, 2, 2>, std::allocator<Dune::AffineGeometry<double, 2, 2> > >, std::vector<Dune::AffineGeometry<double, 1, 2>, std::allocator<Dune::AffineGeometry<double, 1, 2> > >, std::vector<Dune::AffineGeometry<double, 0, 2>, std::allocator<Dune::AffineGeometry<double, 0, 2> > > >&) +calls=4 798 +* 24135 +* 12 + +fn=(7048) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::allocate() +768 48 +cfn=(7050) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::capacity() const +calls=6 +2 +* 222 +* 30 +cfn=(7050) +calls=6 +2 +* 222 +* 42 +cob=(2) +cfi=(18) +cfn=(6386) +calls=6 0 +* 350 +* 18 + +fn=(7370) Dune::Geo::ReferenceElementImplementation<double, 1>::CreateGeometries<1>::apply(Dune::Geo::ReferenceElementImplementation<double, 1> const&, std::tuple<std::vector<Dune::AffineGeometry<double, 1, 1>, std::allocator<Dune::AffineGeometry<double, 1, 1> > >, std::vector<Dune::AffineGeometry<double, 0, 1>, std::allocator<Dune::AffineGeometry<double, 0, 1> > > >&) +798 22 ++2 8 +cfn=(7072) +calls=2 422 +* 78 +* 2 ++1 6 +cfi=(236) +cfn=(6904) +calls=2 138 +* 36 +* 14 +cfi=(259) +cfn=(7182) +calls=2 507 +* 1086 +* 6 +cfi=(236) +cfn=(7190) +calls=2 153 +* 36 ++1 6 +cfi=(236) +cfn=(7372) +calls=2 138 +* 36 +* 14 +cfi=(259) +cfn=(7376) +calls=2 507 +* 1014 +* 6 +cfi=(236) +cfn=(7390) +calls=2 153 +* 36 ++1 8 +cfi=(259) +cfn=(7426) +calls=2 1040 +* 22 +* 10 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 8 +cfn=(7246) +calls=2 500 +* 216 +* 4 +cfi=(389) +cfn=(6574) +calls=2 649 +* 16 +* 12 +cfn=(7428) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 1, 0>(unsigned int, int, int, Dune::FieldVector<double, 1>*, Dune::FieldMatrix<double, 0, 1>*) +calls=2 213 +* 2002 ++2 6 +cfi=(295) +cfn=(7472) +calls=2 1320 +* 74 +* 12 +cfi=(292) +cfn=(7480) +calls=2 66 +* 842 ++1 20 ++2 24 +cfi=(259) +cfn=(7426) +calls=4 1040 +* 44 +* 28 +cfi=(259) +cfn=(7122) +calls=4 1040 +* 48 +* 24 +cfn=(7516) +calls=4 -22 +* 9716 +* 28 +cfi=(428) +cfn=(7986) +calls=4 519 +* 732 ++1 12 +cfi=(295) +cfn=(7472) +calls=4 1320 +* 148 +* 20 +cfi=(259) +cfn=(7998) +calls=4 1184 +* 396 +-3 8 +-4 6 +cfi=(259) +cfn=(8006) +calls=2 675 +* 506 +-1 6 +cfi=(259) +cfn=(7352) +calls=2 675 +* 508 ++10 18 + +fn=(7620) +689 9 ++1 6 +cfi=(389) +cfn=(6328) +calls=1 380 +* 13 +* 4 +cfi=(253) +cfn=(7622) +calls=1 94 +* 9 ++2 5 +cfi=(253) +cfn=(4150) +calls=1 134 +* 28 +* 5 +cfi=(253) +cfn=(4156) +calls=1 126 +* 27 +* 6 +cfi=(265) +cfn=(4158) +calls=1 +50 +* 71 ++1 8 + +fn=(7660) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::size(int) const +720 21 ++2 12 ++1 24 +cfi=(253) +cfn=(4594) +calls=3 189 +* 72 +* 24 +cfi=(253) +cfn=(4594) +calls=3 189 +* 72 +* 9 ++1 12 + +fn=(7164) unsigned int Dune::Geo::Impl::referenceIntegrationOuterNormals<double, 1>(unsigned int, int, Dune::FieldVector<double, 1>*) +328 20 ++3 8 ++3 12 +cfi=(246) +cfn=(6288) +calls=2 20 +* 362 +* 14 +cob=(2) +cfi=(18) +cfn=(6386) +calls=2 0 +* 286 +* 30 +cfi=(252) +cfn=(3886) +calls=4 -21 +* 40 +* 12 +-1 2 ++2 14 +cfn=(7166) unsigned int Dune::Geo::Impl::referenceOrigins<double, 1>(unsigned int, int, int, Dune::FieldVector<double, 1>*) +calls=2 166 +* 552 ++3 12 +cfn=(7168) unsigned int Dune::Geo::Impl::referenceIntegrationOuterNormals<double, 1>(unsigned int, int, Dune::FieldVector<double, 1> const*, Dune::FieldVector<double, 1>*) +calls=2 -60 +* 292 +* 2 ++1 12 +cfi=(246) +cfn=(6288) +calls=2 20 +* 362 +* 4 ++2 10 +cob=(2) +cfi=(18) +cfn=(6478) +calls=2 0 +* 184 ++2 2 ++1 12 + +fn=(6208) +416 100 +cfi=(259) +cfn=(4206) +calls=12 +68 +* 804 +* 52 +cfi=(259) +cfn=(4206) +calls=4 +68 +* 268 +* 16 +cfi=(295) +cfn=(6210) +calls=4 561 +* 1192 +* 72 +cfi=(259) +cfn=(6260) +calls=12 +68 +* 804 +* 60 + +fn=(6284) Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int) +567 40 ++2 8 +cfi=(389) +cfn=(6286) +calls=4 100 +* 40 +* 8 ++3 36 ++2 60 +cfi=(246) +cfn=(6288) +calls=12 20 +* 3116 +* 12 ++1 156 +cfi=(259) +cfn=(6290) +calls=12 934 +* 21233 ++1 144 ++1 416 +cfi=(259) +cfn=(6360) +calls=32 1040 +* 480 +* 192 +cfn=(6362) +calls=32 739 +* 196365 +-1 64 +-4 24 ++9 16 +cfn=(6416) +calls=4 422 +* 156 +* 4 ++1 24 +cfi=(259) +cfn=(4566) +calls=4 934 +* 4274 ++1 20 +cfi=(259) +cfn=(4890) +calls=4 1040 +* 48 +* 20 +cfn=(6430) +calls=4 115 +* 5250 ++3 28 ++2 112 +cfn=(6416) +calls=8 422 +* 312 +* 32 +cfi=(259) +cfn=(4566) +calls=8 934 +* 8646 ++1 48 +cfn=(6416) +calls=8 422 +* 312 +* 90 +cfn=(6416) +calls=18 422 +* 702 +* 104 ++2 126 +cfi=(252) +cfn=(4134) +calls=18 121 +* 2718 +* 252 +cfi=(259) +cfn=(4890) +calls=18 1040 +* 216 +* 90 ++1 108 +cfn=(6444) +calls=18 439 +* 3132 +* 18 ++1 198 ++1 378 +cfn=(6448) Dune::Geo::ReferenceElementImplementation<double, 2>::subEntity(int, int, int, int) const +calls=42 458 +* 9954 +* 168 +cfi=(259) +cfn=(4890) +calls=42 1040 +* 504 +* 630 +cfi=(259) +cfn=(4890) +calls=42 1040 +* 504 +* 126 +cfi=(254) +cfn=(6450) +calls=42 420 +* 16212 +-1 84 ++2 414 +cfi=(259) +cfn=(4890) +calls=18 1040 +* 216 +* 90 +cfi=(254) +cfn=(6464) +calls=18 -71 +* 4644 +-6 36 +-3 16 ++14 16 +cfn=(6466) double Dune::Geo::Impl::referenceVolume<double>(unsigned int, int) +calls=4 154 +* 1266 +* 12 ++5 24 +cfn=(6416) +calls=4 422 +* 156 +* 16 +cfi=(259) +cfn=(4566) +calls=4 934 +* 4819 ++1 20 +cfi=(259) +cfn=(4890) +calls=4 1040 +* 48 +* 20 +cfn=(6470) unsigned int Dune::Geo::Impl::referenceIntegrationOuterNormals<double, 2>(unsigned int, int, Dune::FieldVector<double, 2>*) +calls=4 328 +* 14007 ++4 28 +cfi=(427) /home/joscha/software/dune/dune-common/dune/common/hybridutilities.hh +cfn=(6480) void Dune::Hybrid::forEach<std::integer_sequence<unsigned long, 0ul, 1ul, 2ul>, Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}>(std::integer_sequence<unsigned long, 0ul, 1ul, 2ul>&&, Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}&&) +calls=4 267 +* 172095 ++1 32 + +fn=(6572) +737 320 + +fn=(7006) +689 54 ++1 36 +cfi=(389) +cfn=(6328) +calls=6 380 +* 78 +* 24 +cfi=(253) +cfn=(7008) +calls=6 94 +* 60 ++2 30 +cfi=(253) +cfn=(7010) +calls=6 134 +* 168 +* 30 +cfi=(253) +cfn=(7016) +calls=6 126 +* 162 +* 36 +cfi=(265) +cfn=(4158) +calls=6 +50 +* 474 ++1 48 + +fn=(7050) +770 120 +cfi=(253) +cfn=(7052) +calls=12 189 +* 288 +* 36 + +fn=(7248) +493 56 ++2 56 +cfn=(7072) +calls=8 -73 +* 312 +* 16 ++1 112 +cfi=(259) +cfn=(7144) +calls=8 1058 +* 120 +* 16 +cfn=(7250) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::type() const +calls=8 737 +* 64 ++1 16 + +fn=(7662) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::number(int, int) const +726 8 ++2 7 +cfn=(7660) +calls=1 -8 +* 82 +* 2 ++1 9 +cfi=(253) +cfn=(4594) +calls=1 189 +* 24 +* 7 ++1 4 + +fn=(7672) Dune::Geo::ReferenceElementImplementation<double, 0>::size(int) const +422 18 ++2 12 ++1 33 +cfi=(259) +cfn=(7586) +calls=3 915 +* 39 ++1 6 + +fn=(7828) Dune::Geo::ReferenceElementImplementation<double, 0>::type(int, int) const +493 7 ++2 7 +cfn=(7672) +calls=1 -73 +* 36 +* 2 ++1 14 +cfi=(259) +cfn=(7830) +calls=1 1058 +* 12 +* 2 +cfn=(7832) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::type() const +calls=1 737 +* 8 ++1 2 + +fn=(8148) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 2, 0>(unsigned int, int, int, Dune::FieldVector<double, 2>*, Dune::FieldMatrix<double, 0, 2>*) +213 48 ++4 28 ++1 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 100 +* 40 +* 8 ++2 8 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 -56 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -90 +* 168 +* 8 ++2 10 ++1 8 ++3 32 +cfn=(8149) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 2, 0>(unsigned int, int, int, Dune::FieldVector<double, 2>*, Dune::FieldMatrix<double, 0, 2>*)'2 +calls=2 -17 +* 2352 +* 2 ++1 44 +cfi=(265) +cfn=(6432) +calls=2 465 +* 320 ++1 32 +cfi=(265) +cfn=(8182) +calls=2 465 +* 320 ++1 20 ++1 64 +cfi=(252) +cfn=(2252) +calls=4 -42 +* 148 +* 8 +-1 8 ++3 10 ++4 24 +cfn=(8149) +calls=2 -27 +* 2352 +* 2 ++1 6 ++2 14 +cfi=(252) +cfn=(4134) +calls=2 121 +* 302 +* 18 ++1 22 +cfi=(252) +cfn=(2252) +calls=2 -52 +* 74 +* 4 ++1 14 +cfi=(328) +cfn=(8150) +calls=2 104 +* 730 ++1 6 ++23 20 + +fn=(8149) +213 96 ++4 56 ++1 32 ++1 24 +cfi=(389) +cfn=(6286) +calls=8 100 +* 80 +* 16 ++2 16 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 -56 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -90 +* 168 +* 8 ++2 20 ++1 16 ++3 64 +cfn=(8149) +calls=4 -17 +* 2340 +* 4 ++1 88 +cfi=(265) +cfn=(6432) +calls=4 465 +* 636 ++1 64 +cfi=(265) +cfn=(8182) +calls=4 465 +* 636 ++1 28 ++1 64 +cfi=(252) +cfn=(2252) +calls=4 -42 +* 148 +* 8 +-1 8 ++3 20 ++27 28 +cfi=(252) +cfn=(4134) +calls=4 121 +* 604 +* 20 ++1 28 +cfi=(328) +cfn=(8150) +calls=4 104 +* 1460 ++1 16 ++2 4 ++2 40 + +fn=(7166) +166 22 ++2 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 -69 +* 20 +* 4 ++1 10 ++2 4 ++2 12 +cfi=(389) +cfn=(6372) +calls=2 -7 +* 76 +* 2 ++1 12 +cfi=(389) +cfn=(6374) +calls=2 -41 +* 84 +* 4 ++2 10 ++1 22 +cfn=(7167) unsigned int Dune::Geo::Impl::referenceOrigins<double, 1>(unsigned int, int, int, Dune::FieldVector<double, 1>*)'2 +calls=2 -12 +* 130 +* 2 ++1 14 ++2 36 ++1 30 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 4 +-3 4 ++5 10 ++20 10 + +fn=(7167) +166 22 ++2 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 -69 +* 20 +* 4 ++1 10 ++2 4 ++29 14 +cfi=(252) +cfn=(7126) +calls=2 325 +* 24 +* 6 ++1 2 ++2 10 + +fn=(7168) +278 24 ++4 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 100 +* 20 +* 4 ++2 4 ++31 14 ++2 28 +cfi=(252) +cfn=(7126) +calls=4 +7 +* 48 +* 24 ++1 48 +cfi=(252) +cfn=(7140) +calls=4 +59 +* 32 +* 8 +-3 8 ++6 2 ++2 14 + +fn=(6448) +458 159953940 ++2 124408620 +cfn=(6416) +calls=17772660 -38 +* 693133740 +* 35545320 ++1 248817240 +cfi=(259) +cfn=(6446) +calls=17772660 1058 +* 266589900 +* 106635960 +cfn=(6400) +calls=17772660 726 +* 2541490380 ++1 35545320 + +fn=(6470) +328 40 ++3 16 ++3 24 +cfi=(246) +cfn=(6288) +calls=4 20 +* 1572 +* 32 +cob=(2) +cfi=(18) +cfn=(6386) +calls=4 0 +* 557 +* 84 +cfi=(252) +cfn=(6428) +calls=14 116 +* 140 +* 42 +-1 4 ++2 28 +cfn=(6472) unsigned int Dune::Geo::Impl::referenceOrigins<double, 2>(unsigned int, int, int, Dune::FieldVector<double, 2>*) +calls=4 166 +* 3468 ++3 24 +cfn=(6474) unsigned int Dune::Geo::Impl::referenceIntegrationOuterNormals<double, 2>(unsigned int, int, Dune::FieldVector<double, 2> const*, Dune::FieldVector<double, 2>*) +calls=4 -60 +* 5952 +* 4 ++1 24 +cfi=(246) +cfn=(6288) +calls=4 20 +* 1572 +* 8 ++2 20 +cob=(2) +cfi=(18) +cfn=(6478) +calls=4 0 +* 368 ++2 4 ++1 24 + +fn=(6472) +166 44 ++2 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 -69 +* 40 +* 8 ++1 20 ++2 8 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 -7 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -41 +* 168 +* 8 ++2 20 +cfn=(6473) unsigned int Dune::Geo::Impl::referenceOrigins<double, 2>(unsigned int, int, int, Dune::FieldVector<double, 2>*)'2 +calls=2 -11 +* 904 +* 4 ++1 24 +cfn=(6473) +calls=2 -12 +* 412 +* 2 ++1 14 ++2 44 ++1 32 +cfi=(252) +cfn=(2252) +calls=2 +10 +* 74 +* 4 +-3 4 ++5 10 ++4 20 +cfn=(6473) +calls=2 -22 +* 412 +* 2 ++1 6 ++7 22 +cfn=(6473) +calls=2 -30 +* 904 +* 6 ++8 20 + +fn=(6473) +166 132 ++2 48 ++1 36 +cfi=(389) +cfn=(6286) +calls=12 -69 +* 120 +* 24 ++1 60 ++2 24 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 -7 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -41 +* 168 +* 8 ++2 20 ++1 48 +cfn=(6473) +calls=4 -12 +* 824 +* 4 ++1 28 ++2 88 ++1 64 +cfi=(252) +cfn=(2252) +calls=4 +10 +* 148 +* 8 +-3 8 ++5 20 ++17 56 +cfi=(252) +cfn=(4134) +calls=8 -80 +* 1208 +* 40 ++1 8 ++2 60 + +fn=(6568) Dune::Geo::ReferenceElementImplementation<double, 2>::type() const +500 120 +cfn=(6570) +calls=12 -7 +* 1152 +* 24 + +fn=(6968) Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int) +567 20 ++2 4 +cfi=(389) +cfn=(6286) +calls=2 100 +* 20 +* 4 ++3 14 ++2 20 +cfi=(246) +cfn=(6288) +calls=4 20 +* 430 +* 4 ++1 52 +cfi=(259) +cfn=(6970) +calls=4 934 +* 6108 ++1 34 ++1 78 +cfi=(259) +cfn=(7038) +calls=6 1040 +* 90 +* 36 +cfn=(7040) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::initialize(unsigned int, int, unsigned int) +calls=6 739 +* 15394 +-1 12 +-4 8 ++9 8 +cfn=(7072) +calls=2 422 +* 78 +* 2 ++1 12 +cfi=(259) +cfn=(7074) +calls=2 934 +* 1984 ++1 10 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 10 +cfn=(7124) +calls=2 115 +* 1004 ++3 10 ++2 28 +cfn=(7072) +calls=2 422 +* 78 +* 8 +cfi=(259) +cfn=(7074) +calls=2 934 +* 2039 ++1 12 +cfn=(7072) +calls=2 422 +* 78 +* 10 +cfn=(7072) +calls=2 422 +* 78 +* 16 ++2 14 +cfi=(252) +cfn=(7126) +calls=2 325 +* 24 +* 28 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 4 ++1 12 +cfn=(7142) +calls=2 439 +* 348 +* 2 ++1 20 ++1 36 +cfn=(7146) Dune::Geo::ReferenceElementImplementation<double, 1>::subEntity(int, int, int, int) const +calls=4 458 +* 948 +* 16 +cfi=(259) +cfn=(7122) +calls=4 1040 +* 48 +* 60 +cfi=(259) +cfn=(7122) +calls=4 1040 +* 48 +* 12 +cfi=(254) +cfn=(7148) +calls=4 480 +* 540 +-1 8 ++2 46 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 10 +cfi=(254) +cfn=(7162) +calls=2 -71 +* 252 +-6 4 +-3 4 ++14 8 +cfn=(6466) +calls=2 154 +* 366 +* 6 ++5 12 +cfn=(7072) +calls=2 422 +* 78 +* 8 +cfi=(259) +cfn=(7074) +calls=2 934 +* 2270 ++1 10 +cfi=(259) +cfn=(7122) +calls=2 1040 +* 24 +* 10 +cfn=(7164) +calls=2 328 +* 2244 ++4 14 +cfi=(427) +cfn=(7170) void Dune::Hybrid::forEach<std::integer_sequence<unsigned long, 0ul, 1ul>, Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}>(std::integer_sequence<unsigned long, 0ul, 1ul>&&, Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}&&) +calls=2 267 +* 26987 ++1 16 + +fn=(7040) +739 78 ++2 36 +cfi=(246) +cfn=(6364) +calls=6 51 +* 1816 +* 6 ++1 48 +cfi=(389) +cfn=(6366) +calls=6 438 +* 108 +* 18 ++3 54 ++1 70 +cfi=(253) +cfn=(7042) +calls=10 185 +* 240 +* 10 +-1 20 ++2 40 ++1 56 +cfi=(253) +cfn=(7042) +calls=8 185 +* 192 +* 88 +cfi=(246) +cfn=(6288) +calls=8 20 +* 566 +* 72 +cfi=(253) +cfn=(7042) +calls=8 185 +* 192 +* 8 +-1 16 ++4 36 +cfn=(7046) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo::deallocate(unsigned int*) +calls=6 +18 +* 66 ++1 18 +cfn=(7048) +calls=6 +16 +* 932 +* 12 ++1 40 ++1 80 +cfi=(253) +cfn=(7042) +calls=8 185 +* 192 +* 104 +cfi=(253) +cfn=(7042) +calls=8 185 +* 192 +* 136 +cfi=(246) +cfn=(6388) +calls=8 90 +* 3986 +* 8 +-1 16 ++4 42 ++2 72 +cfi=(253) +cfn=(7054) +calls=12 185 +* 288 +* 24 +cfi=(426) +cfn=(7058) +calls=12 1099 +* 240 ++1 84 +cfn=(7060) +calls=12 -40 +* 984 +* 60 +cfn=(7060) +calls=10 -40 +* 820 +* 110 ++1 60 +cfi=(253) +cfn=(7054) +calls=10 185 +* 240 +* 90 +cfn=(7062) +calls=10 -35 +* 1430 +* 50 +cfi=(426) +cfn=(7064) +calls=10 1163 +* 540 +* 40 +cfi=(426) +cfn=(7068) +calls=10 +67 +* 470 +* 30 +cfi=(426) +cfn=(7070) +calls=10 +62 +* 70 +-1 20 +-3 24 ++6 54 + +fn=(7046) +769 66 + +fn=(7526) +416 17 +cfi=(259) +cfn=(7528) +calls=1 +68 +* 67 +* 7 +cfi=(259) +cfn=(7528) +calls=1 +68 +* 67 +* 4 +cfi=(295) +cfn=(7540) +calls=1 561 +* 104 +* 10 +cfi=(259) +cfn=(7558) +calls=1 +68 +* 67 +* 9 + +fn=(8236) Dune::Geo::ReferenceElements<double, (2)-(2)>::ReferenceElement Dune::Geo::ReferenceElementImplementation<double, 2>::CreateGeometries<2>::subRefElement<2>(Dune::Geo::ReferenceElementImplementation<double, 2> const&, int, std::integral_constant<int, 2>) +786 84 ++2 84 +cfn=(6570) +calls=14 493 +* 1344 +* 28 +cfi=(423) +cfn=(7518) +calls=14 196 +* 1330 +* 14 ++1 28 + +fn=(7146) +458 36 ++2 28 +cfn=(7072) +calls=4 -38 +* 156 +* 8 ++1 56 +cfi=(259) +cfn=(7144) +calls=4 1058 +* 60 +* 24 +cfn=(7062) +calls=4 726 +* 572 ++1 8 + +fn=(6380) +768 256 +cfn=(6382) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo::capacity() const +calls=32 +2 +* 1184 +* 160 +cfn=(6382) +calls=32 +2 +* 1184 +* 224 +cob=(2) +cfi=(18) +cfn=(6386) +calls=32 0 +* 5157 +* 96 + +fn=(6466) +154 42 ++2 35 +cfi=(246) +cfn=(6468) +calls=7 +19 +* 1543 +* 49 ++1 14 + +fn=(6886) Dune::Geo::ReferenceElements<double, (2)-(1)>::ReferenceElement Dune::Geo::ReferenceElementImplementation<double, 2>::CreateGeometries<1>::subRefElement<1>(Dune::Geo::ReferenceElementImplementation<double, 2> const&, int, std::integral_constant<int, 1>) +786 84 ++2 84 +cfn=(6570) +calls=14 493 +* 1344 +* 28 +cfi=(423) +cfn=(6888) Dune::Geo::ReferenceElements<double, 1>::general(Dune::GeometryType const&) +calls=14 196 +* 65461 +* 14 ++1 28 + +fn=(7178) _ZZN4Dune3Geo30ReferenceElementImplementationIdLi1EE10initializeEjENKUlT_E_clISt17integral_constantImLm0EEEEDaS3_ +610 26 +cfn=(7180) +calls=2 798 +* 8817 +* 6 + +fn=(7250) +737 64 + +fn=(7252) +213 24 ++4 14 ++1 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 100 +* 20 +* 4 ++2 4 ++42 14 +cfi=(252) +cfn=(7126) +calls=2 +62 +* 24 +* 6 ++1 14 +cfi=(328) +cfn=(7254) +calls=2 +71 +* 1030 +* 6 ++1 14 ++1 12 +cfi=(329) +cfn=(3934) +calls=2 -50 +* 62 +* 12 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 4 +-1 4 ++2 2 ++2 10 + +fn=(7646) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::initialize(unsigned int, int, unsigned int) +739 13 ++2 6 +cfi=(246) +cfn=(6364) +calls=1 51 +* 58 +* 1 ++1 8 +cfi=(389) +cfn=(6366) +calls=1 438 +* 18 +* 3 ++3 7 ++1 7 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 1 +-1 2 ++2 6 ++1 7 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 11 +cfi=(246) +cfn=(6288) +calls=1 20 +* 34 +* 9 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 1 +-1 2 ++4 6 +cfn=(7648) +calls=1 +18 +* 11 ++1 3 +cfn=(7650) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::allocate() +calls=1 +16 +* 315 +* 2 ++1 6 ++1 10 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 13 +cfi=(253) +cfn=(4584) +calls=1 185 +* 24 +* 17 +cfi=(246) +cfn=(6388) +calls=1 90 +* 206 +* 1 +-1 2 ++4 5 ++2 6 +cfi=(253) +cfn=(7654) +calls=1 185 +* 24 +* 2 +cfi=(426) +cfn=(7658) +calls=1 1099 +* 20 ++1 7 +cfn=(7660) +calls=1 -40 +* 82 +* 6 +cfn=(7660) +calls=1 -40 +* 82 +* 10 ++1 6 +cfi=(253) +cfn=(7654) +calls=1 185 +* 24 +* 9 +cfn=(7662) +calls=1 -35 +* 143 +* 5 +cfi=(426) +cfn=(7664) +calls=1 1163 +* 54 +* 4 +cfi=(426) +cfn=(7668) +calls=1 +67 +* 47 +* 3 +cfi=(426) +cfn=(7670) +calls=1 +62 +* 7 +-1 2 +-3 2 ++6 9 + +fn=(6382) +770 640 +cfi=(253) +cfn=(6384) +calls=64 189 +* 1536 +* 192 + +fn=(6672) Dune::Geo::ReferenceElementImplementation<double, 2>::CreateGeometries<0>::subRefElement(Dune::Geo::ReferenceElementImplementation<double, 2> const&, int, std::integral_constant<int, 0>) +792 36 ++3 20 +cfi=(425) +cfn=(6674) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 2> >::ReferenceElement(Dune::Geo::ReferenceElementImplementation<double, 2> const&) +calls=4 327 +* 44 +* 4 ++1 20 + +fn=(6720) +798 44 ++2 16 +cfn=(6416) +calls=4 422 +* 156 +* 4 ++1 12 +cfi=(236) +cfn=(4212) +calls=4 138 +* 72 +* 28 +cfi=(259) +cfn=(6492) +calls=4 507 +* 2466 +* 12 +cfi=(236) +cfn=(6500) +calls=4 153 +* 72 ++1 12 +cfi=(236) +cfn=(6722) +calls=4 138 +* 72 +* 28 +cfi=(259) +cfn=(6726) +calls=4 507 +* 3101 +* 12 +cfi=(236) +cfn=(6740) +calls=4 153 +* 72 ++1 16 +cfi=(259) +cfn=(6776) +calls=4 1040 +* 48 +* 20 +cfi=(259) +cfn=(4890) +calls=4 1040 +* 48 +* 16 +cfn=(6568) +calls=4 500 +* 432 +* 8 +cfi=(389) +cfn=(6574) +calls=4 649 +* 32 +* 24 +cfn=(6778) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 2, 1>(unsigned int, int, int, Dune::FieldVector<double, 2>*, Dune::FieldMatrix<double, 1, 2>*) +calls=4 213 +* 14096 ++2 12 +cfi=(295) +cfn=(6842) +calls=4 1320 +* 152 +* 24 +cfi=(292) +cfn=(6850) +calls=4 66 +* 1987 ++1 58 ++2 84 +cfi=(259) +cfn=(6776) +calls=14 1040 +* 168 +* 98 +cfi=(259) +cfn=(4890) +calls=14 1040 +* 168 +* 84 +cfn=(6886) +calls=14 -22 +* 67043 +* 98 +cfi=(428) +cfn=(8034) +calls=14 519 +* 25998 ++1 42 +cfi=(295) +cfn=(6842) +calls=14 1320 +* 532 +* 70 +cfi=(259) +cfn=(8062) +calls=14 1184 +* 1484 +-3 28 +-4 12 +cfi=(259) +cfn=(8070) +calls=4 675 +* 1016 +-1 12 +cfi=(259) +cfn=(6712) +calls=4 675 +* 1016 ++10 36 + +fn=(6778) +213 48 ++4 28 ++1 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 100 +* 40 +* 8 ++2 8 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 -56 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -90 +* 168 +* 8 ++2 24 +cfn=(6779) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 2, 1>(unsigned int, int, int, Dune::FieldVector<double, 2>*, Dune::FieldMatrix<double, 1, 2>*)'2 +calls=2 -13 +* 3174 +* 4 ++1 20 ++1 48 +cfi=(329) +cfn=(6816) +calls=4 -12 +* 244 +* 28 +cfi=(252) +cfn=(2252) +calls=4 -36 +* 148 +* 8 +-1 8 ++3 36 +cfn=(6779) +calls=2 -17 +* 2210 +* 2 ++1 44 +cfi=(265) +cfn=(6432) +calls=2 465 +* 318 ++1 44 +cfi=(265) +cfn=(6828) +calls=2 465 +* 318 ++1 14 ++1 32 +cfi=(252) +cfn=(2252) +calls=2 -42 +* 74 +* 4 +-1 4 ++3 10 ++4 24 +cfn=(6779) +calls=2 -27 +* 2210 +* 2 ++1 6 ++9 34 +cfn=(6779) +calls=2 -37 +* 3174 +* 2 ++1 20 ++2 36 ++1 52 +cfi=(252) +cfn=(2252) +calls=4 -62 +* 148 +* 76 +cfi=(329) +cfn=(6816) +calls=4 -38 +* 244 +* 24 +cfi=(252) +cfn=(2252) +calls=4 -62 +* 148 +* 8 +-1 8 ++2 60 +cfi=(329) +cfn=(6816) +calls=4 -39 +* 244 +* 28 +cfi=(252) +cfn=(2252) +calls=4 -63 +* 148 +* 8 +-4 8 ++6 8 ++12 20 + +fn=(6779) +213 144 ++4 84 ++1 48 ++1 36 +cfi=(389) +cfn=(6286) +calls=12 100 +* 120 +* 24 ++2 24 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 -56 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 -90 +* 168 +* 8 ++2 20 ++1 16 ++3 72 +cfn=(6779) +calls=4 -17 +* 3952 +* 4 ++1 88 +cfi=(265) +cfn=(6432) +calls=4 465 +* 636 ++1 88 +cfi=(265) +cfn=(6828) +calls=4 465 +* 636 ++1 28 ++1 64 +cfi=(252) +cfn=(2252) +calls=4 -42 +* 148 +* 8 +-1 8 ++3 20 ++27 56 +cfi=(252) +cfn=(4134) +calls=8 121 +* 1208 +* 40 ++1 56 +cfi=(328) +cfn=(6780) +calls=8 104 +* 6104 +* 40 ++1 44 ++1 24 +cfi=(329) +cfn=(6816) +calls=4 -50 +* 244 +* 24 +cfi=(252) +cfn=(2252) +calls=4 -74 +* 148 +* 8 +-1 8 ++2 8 ++2 60 + +fn=(7246) +500 40 +cfn=(7248) +calls=4 -7 +* 384 +* 8 + +fn=(7368) _ZZN4Dune3Geo30ReferenceElementImplementationIdLi1EE10initializeEjENKUlT_E_clISt17integral_constantImLm1EEEEDaS3_ +610 26 +cfn=(7370) +calls=2 798 +* 17954 +* 6 + +fn=(7726) unsigned int Dune::Geo::Impl::referenceCorners<double, 0>(unsigned int, int, Dune::FieldVector<double, 0>*) +115 12 ++2 4 ++1 3 +cfi=(389) +cfn=(6286) +calls=1 -18 +* 10 +* 2 ++2 2 ++21 7 +cfi=(252) +cfn=(7728) +calls=1 -20 +* 134 ++1 1 ++2 8 + +fn=(7748) +798 11 ++2 4 +cfn=(7672) +calls=1 422 +* 36 +* 1 ++1 3 +cfi=(236) +cfn=(7534) +calls=1 138 +* 18 +* 7 +cfi=(259) +cfn=(7750) +calls=1 507 +* 646 +* 3 +cfi=(236) +cfn=(7758) +calls=1 153 +* 18 ++1 3 +cfi=(236) +cfn=(7770) +calls=1 138 +* 18 +* 7 +cfi=(259) +cfn=(7774) +calls=1 507 +* 663 +* 3 +cfi=(236) +cfn=(7788) +calls=1 153 +* 18 ++1 4 +cfi=(259) +cfn=(7824) +calls=1 1040 +* 11 +* 5 +cfi=(259) +cfn=(7724) +calls=1 1040 +* 11 +* 4 +cfn=(7826) Dune::Geo::ReferenceElementImplementation<double, 0>::type() const +calls=1 500 +* 102 +* 2 +cfi=(389) +cfn=(6574) +calls=1 649 +* 8 +* 6 +cfn=(7834) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 0, 0>(unsigned int, int, int, Dune::FieldVector<double, 0>*, Dune::FieldMatrix<double, 0, 0>*) +calls=1 213 +* 563 ++2 3 +cfi=(295) +cfn=(7868) +calls=1 1320 +* 37 +* 6 +cfi=(292) +cfn=(7876) +calls=1 66 +* 603 ++1 7 ++2 6 +cfi=(259) +cfn=(7824) +calls=1 1040 +* 11 +* 7 +cfi=(259) +cfn=(7724) +calls=1 1040 +* 11 +* 6 +cfn=(7912) Dune::Geo::ReferenceElementImplementation<double, 0>::CreateGeometries<0>::subRefElement(Dune::Geo::ReferenceElementImplementation<double, 0> const&, int, std::integral_constant<int, 0>) +calls=1 -16 +* 31 +* 7 +cfi=(428) +cfn=(7916) +calls=1 519 +* 150 ++1 3 +cfi=(295) +cfn=(7868) +calls=1 1320 +* 37 +* 5 +cfi=(259) +cfn=(7932) +calls=1 1184 +* 97 +-3 2 +-4 3 +cfi=(259) +cfn=(7940) +calls=1 675 +* 253 +-1 3 +cfi=(259) +cfn=(7958) +calls=1 675 +* 253 ++10 9 + +fn=(7826) +500 10 +cfn=(7828) +calls=1 -7 +* 90 +* 2 + +fn=(8090) +798 44 ++2 16 +cfn=(6416) +calls=4 422 +* 156 +* 4 ++1 12 +cfi=(236) +cfn=(4212) +calls=4 138 +* 72 +* 28 +cfi=(259) +cfn=(6492) +calls=4 507 +* 2466 +* 12 +cfi=(236) +cfn=(6500) +calls=4 153 +* 72 ++1 12 +cfi=(236) +cfn=(8092) +calls=4 138 +* 72 +* 28 +cfi=(259) +cfn=(8096) +calls=4 507 +* 2058 +* 12 +cfi=(236) +cfn=(8110) +calls=4 153 +* 72 ++1 16 +cfi=(259) +cfn=(8146) +calls=4 1040 +* 44 +* 20 +cfi=(259) +cfn=(4890) +calls=4 1040 +* 48 +* 16 +cfn=(6568) +calls=4 500 +* 432 +* 8 +cfi=(389) +cfn=(6574) +calls=4 649 +* 32 +* 24 +cfn=(8148) +calls=4 213 +* 7506 ++2 12 +cfi=(295) +cfn=(8192) +calls=4 1320 +* 148 +* 24 +cfi=(292) +cfn=(8200) +calls=4 66 +* 2351 ++1 58 ++2 84 +cfi=(259) +cfn=(8146) +calls=14 1040 +* 154 +* 98 +cfi=(259) +cfn=(4890) +calls=14 1040 +* 168 +* 84 +cfn=(8236) +calls=14 -22 +* 2912 +* 98 +cfi=(428) +cfn=(8238) +calls=14 519 +* 2688 ++1 42 +cfi=(295) +cfn=(8192) +calls=14 1320 +* 518 +* 70 +cfi=(259) +cfn=(8250) +calls=14 1184 +* 1400 +-3 28 +-4 12 +cfi=(259) +cfn=(8258) +calls=4 675 +* 1012 +-1 12 +cfi=(259) +cfn=(6712) +calls=4 675 +* 1016 ++10 36 + +fn=(6378) +769 352 + +fn=(6398) +720 124410650 ++2 71091800 ++1 142183600 +cfi=(253) +cfn=(6384) +calls=17772950 189 +* 426550800 +* 142183600 +cfi=(253) +cfn=(6384) +calls=17772950 189 +* 426550800 +* 53318850 ++1 71091800 + +fn=(6416) +422 106636632 ++2 71091088 ++1 195500492 +cfi=(259) +cfn=(6292) +calls=17772772 915 +* 284364352 ++1 35545544 + +fn=(6474) +278 48 ++4 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 100 +* 40 +* 8 ++2 8 ++2 24 +cfi=(389) +cfn=(6372) +calls=4 167 +* 152 +* 4 ++1 24 +cfi=(389) +cfn=(6374) +calls=4 134 +* 168 +* 8 ++3 14 +cfn=(6475) unsigned int Dune::Geo::Impl::referenceIntegrationOuterNormals<double, 2>(unsigned int, int, Dune::FieldVector<double, 2> const*, Dune::FieldVector<double, 2>*)'2 +calls=2 -13 +* 980 +* 2 ++2 14 ++2 28 +cfi=(252) +cfn=(4134) +calls=4 121 +* 604 +* 48 ++1 76 +cfi=(252) +cfn=(2252) +calls=4 192 +* 148 +* 8 +-3 8 ++6 6 ++4 14 +cfi=(252) +cfn=(4134) +calls=2 121 +* 302 +* 10 ++1 14 +cfi=(252) +cfn=(2252) +calls=2 192 +* 74 +* 4 ++3 18 +cfn=(6475) +calls=2 -29 +* 980 +* 2 ++1 20 ++1 52 +cfi=(254) +cfn=(6476) +calls=4 592 +* 1772 +* 48 +cfi=(252) +cfn=(2252) +calls=4 192 +* 148 +* 4 +-1 8 ++3 6 ++13 28 + +fn=(6475) +278 48 ++4 16 ++1 12 +cfi=(389) +cfn=(6286) +calls=4 100 +* 40 +* 8 ++2 8 ++31 28 ++2 56 +cfi=(252) +cfn=(4134) +calls=8 121 +* 1208 +* 72 ++1 104 +cfi=(252) +cfn=(2252) +calls=8 192 +* 296 +* 16 +-3 16 ++6 4 ++2 28 + +fn=(6490) +798 44 ++2 16 +cfn=(6416) +calls=4 422 +* 156 +* 4 ++1 12 +cfi=(236) +cfn=(4212) +calls=4 138 +* 72 +* 28 +cfi=(259) +cfn=(6492) +calls=4 507 +* 2417 +* 12 +cfi=(236) +cfn=(6500) +calls=4 153 +* 72 ++1 12 +cfi=(236) +cfn=(6512) +calls=4 138 +* 72 +* 28 +cfi=(259) +cfn=(6516) +calls=4 507 +* 2787 +* 12 +cfi=(236) +cfn=(6530) +calls=4 153 +* 72 ++1 16 +cfi=(259) +cfn=(6566) +calls=4 1040 +* 48 +* 20 +cfi=(259) +cfn=(4890) +calls=4 1040 +* 48 +* 16 +cfn=(6568) +calls=4 500 +* 432 +* 8 +cfi=(389) +cfn=(6574) +calls=4 649 +* 32 +* 24 +cfn=(6576) +calls=4 213 +* 6452 ++2 12 +cfi=(295) +cfn=(6628) +calls=4 1320 +* 152 +* 24 +cfi=(292) +cfn=(6636) +calls=4 66 +* 2363 ++1 28 ++2 24 +cfi=(259) +cfn=(6566) +calls=4 1040 +* 48 +* 28 +cfi=(259) +cfn=(4890) +calls=4 1040 +* 48 +* 24 +cfn=(6672) +calls=4 -16 +* 124 +* 28 +cfi=(428) +cfn=(6676) +calls=4 519 +* 5580 ++1 12 +cfi=(295) +cfn=(6628) +calls=4 1320 +* 152 +* 20 +cfi=(259) +cfn=(6686) +calls=4 1184 +* 456 +-3 8 +-4 12 +cfi=(259) +cfn=(6694) +calls=4 675 +* 1016 +-1 12 +cfi=(259) +cfn=(6712) +calls=4 675 +* 1016 ++10 36 + +fn=(7428) +213 24 ++4 14 ++1 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 100 +* 20 +* 4 ++2 4 ++2 12 +cfi=(389) +cfn=(6372) +calls=2 -56 +* 76 +* 2 ++1 12 +cfi=(389) +cfn=(6374) +calls=2 -90 +* 84 +* 4 ++2 10 ++1 8 ++3 30 +cfn=(7429) unsigned int Dune::Geo::Impl::referenceEmbeddings<double, 1, 0>(unsigned int, int, int, Dune::FieldVector<double, 1>*, Dune::FieldMatrix<double, 0, 1>*)'2 +calls=2 -17 +* 888 +* 2 ++1 38 +cfi=(265) +cfn=(7128) +calls=2 465 +* 318 ++1 32 +cfi=(265) +cfn=(7462) +calls=2 465 +* 318 ++1 14 ++1 30 +cfi=(252) +cfn=(7140) +calls=2 378 +* 16 +* 4 +-1 4 ++3 10 ++33 10 + +fn=(7429) +213 24 ++4 14 ++1 8 ++1 6 +cfi=(389) +cfn=(6286) +calls=2 100 +* 20 +* 4 ++2 4 ++42 14 +cfi=(252) +cfn=(7126) +calls=2 +62 +* 24 +* 6 ++1 14 +cfi=(328) +cfn=(7430) +calls=2 104 +* 730 ++1 8 ++2 2 ++2 10 + +fn=(7582) Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int) +567 10 ++2 2 +cfi=(389) +cfn=(6286) +calls=1 100 +* 10 +* 2 ++3 5 ++2 5 +cfi=(246) +cfn=(6288) +calls=1 20 +* 34 +* 1 ++1 13 +cfi=(259) +cfn=(7584) +calls=1 934 +* 1351 ++1 7 ++1 13 +cfi=(259) +cfn=(7644) +calls=1 1040 +* 12 +* 6 +cfn=(7646) +calls=1 739 +* 1465 +-1 2 +-4 2 ++9 4 +cfn=(7672) +calls=1 422 +* 36 +* 1 ++1 6 +cfi=(259) +cfn=(7674) +calls=1 934 +* 1084 ++1 5 +cfi=(259) +cfn=(7724) +calls=1 1040 +* 11 +* 5 +cfn=(7726) +calls=1 115 +* 183 ++3 3 ++14 4 +cfn=(6466) +calls=1 154 +* 51 +* 3 ++10 7 +cfi=(427) +cfn=(7738) void Dune::Hybrid::forEach<std::integer_sequence<unsigned long, 0ul>, Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}>(std::integer_sequence<unsigned long, 0ul>&&, Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}&&) +calls=1 267 +* 3813 ++1 8 + +fn=(7650) +768 8 +cfn=(7652) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo::capacity() const +calls=1 +2 +* 37 +* 5 +cfn=(7652) +calls=1 +2 +* 37 +* 7 +cob=(2) +cfi=(18) +cfn=(6386) +calls=1 0 +* 218 +* 3 + +fn=(7912) +792 9 ++3 5 +cfi=(425) +cfn=(7914) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 0> >::ReferenceElement(Dune::Geo::ReferenceElementImplementation<double, 0> const&) +calls=1 327 +* 11 +* 1 ++1 5 + +fn=(6400) +726 142181984 ++2 124409236 +cfn=(6398) +calls=17772748 -8 +* 1457365336 +* 35545496 ++1 159954732 +cfi=(253) +cfn=(6384) +calls=17772748 189 +* 426545952 +* 124409236 ++1 71090992 + +fn=(6896) +416 42 +cfi=(259) +cfn=(6898) +calls=4 +68 +* 268 +* 20 +cfi=(259) +cfn=(6898) +calls=2 +68 +* 134 +* 8 +cfi=(295) +cfn=(6910) +calls=2 918 +* 402 +* 28 +cfi=(259) +cfn=(6944) +calls=4 +68 +* 268 +* 24 + +fn=(7060) +720 266 ++2 152 ++1 304 +cfi=(253) +cfn=(7052) +calls=38 189 +* 912 +* 304 +cfi=(253) +cfn=(7052) +calls=38 189 +* 912 +* 114 ++1 152 + +fn=(7652) +770 20 +cfi=(253) +cfn=(4594) +calls=2 189 +* 48 +* 6 + +fn=(7832) +737 8 + +fn=(7834) +213 12 ++4 7 ++1 4 ++1 3 +cfi=(389) +cfn=(6286) +calls=1 100 +* 10 +* 2 ++2 2 ++42 7 +cfi=(252) +cfn=(7728) +calls=1 121 +* 134 ++1 7 +cfi=(328) +cfn=(7836) +calls=1 104 +* 365 ++1 4 ++2 1 ++2 5 + +fl=(425) +fn=(7576) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 0> >::ReferenceElement() +275 4 ++1 2 ++1 3 + +fn=(7980) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 0> >::setImplementation(Dune::Geo::ReferenceElementImplementation<double, 0> const&) +331 5 ++2 3 ++1 3 + +fn=(6674) +327 20 ++1 12 ++1 12 + +fn=(8028) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 1> >::setImplementation(Dune::Geo::ReferenceElementImplementation<double, 1> const&) +331 10 ++2 6 ++1 6 + +fn=(7914) +327 5 ++1 3 ++1 3 + +fn=(8280) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 2> >::setImplementation(Dune::Geo::ReferenceElementImplementation<double, 2> const&) +331 20 ++2 12 ++1 12 + +fn=(6962) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 1> >::ReferenceElement() +275 8 ++1 4 ++1 6 + +fn=(7302) +327 10 ++1 6 ++1 6 + +fn=(6278) Dune::Geo::ReferenceElement<Dune::Geo::ReferenceElementImplementation<double, 2> >::ReferenceElement() +275 16 ++1 8 ++1 12 + +fn=(8286) +134 159953562 ++2 159953562 +cfi=(424) +cfn=(6448) +calls=17772618 458 +* 4212110466 ++1 35545236 + +fl=(247) +fn=(2230) +12 6 +cfn=(2232) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(2232) +12 10 +fi=(220) ++62 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(247) +-62 3 + +fl=(262) +fn=(2400) Dune::StreamWrap::StreamWrap(std::ostream&) +150 66 + +fn=(4540) +265 5 ++12 1 ++1 2 + +fn=(4536) +265 20 ++12 4 ++1 8 + +fn=(2402) +197 11 +cfi=(263) +cfn=(2342) +calls=1 -41 +* 964 ++2 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 204 +* 5 +cfn=(2400) +calls=1 -49 +* 11 +* 2 ++1 3 ++3 2 ++3 2 ++3 2 ++1 5 + +fn=(2406) +197 11 +cfi=(263) +cfn=(2342) +calls=1 -41 +* 964 ++2 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 204 +* 5 +cfn=(2400) +calls=1 -49 +* 11 +* 2 ++1 3 ++3 2 ++3 2 ++3 2 ++1 5 + +fn=(2340) +197 11 +cfi=(263) +cfn=(2342) +calls=1 -41 +* 964 ++2 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 204 +* 5 +cfn=(2400) +calls=1 -49 +* 11 +* 2 ++1 3 ++3 2 ++3 2 ++3 2 ++1 5 + +fn=(2410) +197 11 +cfi=(263) +cfn=(2342) +calls=1 -41 +* 964 ++2 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 204 +* 5 +cfn=(2400) +calls=1 -49 +* 11 +* 2 ++1 3 ++3 2 ++3 2 ++3 2 ++1 5 + +fn=(5164) +265 5 ++12 1 ++1 2 + +fn=(4538) +287 5 ++12 1 ++1 2 + +fn=(4542) +303 10 ++11 2 ++1 4 + +fn=(2404) +197 11 +cfi=(263) +cfn=(2342) +calls=1 -41 +* 964 ++2 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 204 +* 5 +cfn=(2400) +calls=1 -49 +* 11 +* 2 ++1 3 ++3 2 ++3 2 ++3 2 ++1 5 + +fn=(2408) +197 11 +cfi=(263) +cfn=(2342) +calls=1 -41 +* 964 ++2 2 +cob=(2) +cfi=(18) +cfn=(2378) +calls=1 0 +* 204 +* 5 +cfn=(2400) +calls=1 -49 +* 11 +* 2 ++1 3 ++3 2 ++3 2 ++3 2 ++1 5 + +fl=(294) +fn=(6664) +940 40 ++6 12 +cfi=(265) +cfn=(6666) +calls=4 280 +* 28 +* 16 +cfi=(265) +cfn=(6666) +calls=4 280 +* 28 +* 16 +cfi=(265) +cfn=(6666) +calls=4 280 +* 28 +* 24 +cfn=(6668) Dune::AffineGeometry<double, 2, 2>* std::__relocate_a_1<Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, std::allocator<Dune::AffineGeometry<double, 2, 2> > >(Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, Dune::AffineGeometry<double, 2, 2>*, std::allocator<Dune::AffineGeometry<double, 2, 2> >&) +calls=4 -28 +* 76 ++3 20 + +fn=(6882) Dune::AffineGeometry<double, 1, 2>* std::__relocate_a_1<Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, std::allocator<Dune::AffineGeometry<double, 1, 2> > >(Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, Dune::AffineGeometry<double, 1, 2>*, std::allocator<Dune::AffineGeometry<double, 1, 2> >&) +918 36 ++12 8 ++1 12 ++3 4 ++1 16 + +fn=(7508) +940 20 ++6 6 +cfi=(265) +cfn=(7510) +calls=2 280 +* 14 +* 8 +cfi=(265) +cfn=(7510) +calls=2 280 +* 14 +* 8 +cfi=(265) +cfn=(7510) +calls=2 280 +* 14 +* 12 +cfn=(7512) Dune::AffineGeometry<double, 0, 1>* std::__relocate_a_1<Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, std::allocator<Dune::AffineGeometry<double, 0, 1> > >(Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, Dune::AffineGeometry<double, 0, 1>*, std::allocator<Dune::AffineGeometry<double, 0, 1> >&) +calls=2 -28 +* 38 ++3 10 + +fn=(7624) +305 9 ++6 3 +cfi=(291) +cfn=(7626) +calls=1 1242 +* 7 +* 4 +cfi=(291) +cfn=(7626) +calls=1 1242 +* 7 +* 7 +cfn=(7628) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__uninitialized_copy_a<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo>&) +calls=1 -24 +* 51 ++2 4 + +fn=(7812) Dune::FieldMatrix<double, 0, 0>* std::__uninitialized_default_n<Dune::FieldMatrix<double, 0, 0>*, unsigned long>(Dune::FieldMatrix<double, 0, 0>*, unsigned long) +574 6 ++5 1 ++4 5 +cfn=(7814) Dune::FieldMatrix<double, 0, 0>* std::__uninitialized_default_n_1<true>::__uninit_default_n<Dune::FieldMatrix<double, 0, 0>*, unsigned long>(Dune::FieldMatrix<double, 0, 0>*, unsigned long) +calls=1 -40 +* 76 ++1 2 + +fn=(8364) +940 360 ++6 108 +cfi=(265) +cfn=(8366) +calls=36 280 +* 252 +* 144 +cfi=(265) +cfn=(8366) +calls=36 280 +* 252 +* 144 +cfi=(265) +cfn=(8366) +calls=36 280 +* 252 +* 216 +cfn=(8368) Dune::GeometryType* std::__relocate_a_1<Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType> >(Dune::GeometryType*, Dune::GeometryType*, Dune::GeometryType*, std::allocator<Dune::GeometryType>&) +calls=36 -28 +* 684 ++3 180 + +fn=(7118) Dune::FieldVector<double, 1>* std::__relocate_a_1<Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> > >(Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, Dune::FieldVector<double, 1>*, std::allocator<Dune::FieldVector<double, 1> >&) +918 54 ++12 12 ++1 18 ++3 6 ++1 24 + +fn=(4712) +643 21504 ++2 15360 +cfn=(4714) unsigned int* std::__uninitialized_default_n<unsigned int*, unsigned long>(unsigned int*, unsigned long) +calls=3072 -71 +* 338944 +* 6144 + +fn=(5576) UG::D2::node** std::__uninitialized_default_n<UG::D2::node**, unsigned long>(UG::D2::node**, unsigned long) +574 12294 ++5 2049 ++4 10245 +cfn=(5578) UG::D2::node** std::__uninitialized_default_n_1<true>::__uninit_default_n<UG::D2::node**, unsigned long>(UG::D2::node**, unsigned long) +calls=2049 -40 +* 211539 ++1 4098 + +fn=(5578) +543 18441 ++5 14343 +cfi=(265) +cfn=(5580) +calls=2049 802 +* 168510 ++1 10245 + +fn=(6086) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >* std::__relocate_a_1<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&) +918 72 ++12 16 ++1 45 ++1 21 +cfi=(286) +cfn=(9074) +calls=7 47 +* 49 +* 28 +cfi=(286) +cfn=(9074) +calls=7 47 +* 49 +* 42 +cfn=(9076) void std::__relocate_object_a<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > > >(std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >*, std::allocator<std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >&) +calls=7 -45 +* 1722 +-1 21 ++3 8 ++1 32 + +fn=(6348) +76 96 ++3 24 ++3 36 ++2 24 ++7 48 + +fn=(7416) Dune::FieldMatrix<double, 0, 1>* std::__uninitialized_default_n_1<true>::__uninit_default_n<Dune::FieldMatrix<double, 0, 1>*, unsigned long>(Dune::FieldMatrix<double, 0, 1>*, unsigned long) +543 18 ++5 12 +cfi=(265) +cfn=(7418) +calls=2 802 +* 122 ++1 10 + +fn=(7702) Dune::FieldVector<double, 0>* std::__uninitialized_default_n<Dune::FieldVector<double, 0>*, unsigned long>(Dune::FieldVector<double, 0>*, unsigned long) +574 12 ++5 2 ++4 10 +cfn=(7704) Dune::FieldVector<double, 0>* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::FieldVector<double, 0>*, unsigned long>(Dune::FieldVector<double, 0>*, unsigned long) +calls=2 -62 +* 118 ++1 4 + +fn=(7904) +940 10 ++6 3 +cfi=(265) +cfn=(7906) +calls=1 280 +* 7 +* 4 +cfi=(265) +cfn=(7906) +calls=1 280 +* 7 +* 4 +cfi=(265) +cfn=(7906) +calls=1 280 +* 7 +* 6 +cfn=(7908) Dune::AffineGeometry<double, 0, 0>* std::__relocate_a_1<Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, std::allocator<Dune::AffineGeometry<double, 0, 0> > >(Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, Dune::AffineGeometry<double, 0, 0>*, std::allocator<Dune::AffineGeometry<double, 0, 0> >&) +calls=1 -28 +* 19 ++3 5 + +fn=(8228) +940 40 ++6 12 +cfi=(265) +cfn=(8230) +calls=4 280 +* 28 +* 16 +cfi=(265) +cfn=(8230) +calls=4 280 +* 28 +* 16 +cfi=(265) +cfn=(8230) +calls=4 280 +* 28 +* 24 +cfn=(8232) Dune::AffineGeometry<double, 0, 2>* std::__relocate_a_1<Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, std::allocator<Dune::AffineGeometry<double, 0, 2> > >(Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, Dune::AffineGeometry<double, 0, 2>*, std::allocator<Dune::AffineGeometry<double, 0, 2> >&) +calls=4 -28 +* 76 ++3 20 + +fn=(7102) Dune::FieldVector<double, 1>* std::__uninitialized_default_n<Dune::FieldVector<double, 1>*, unsigned long>(Dune::FieldVector<double, 1>*, unsigned long) +574 60 ++5 10 ++4 50 +cfn=(7104) Dune::FieldVector<double, 1>* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::FieldVector<double, 1>*, unsigned long>(Dune::FieldVector<double, 1>*, unsigned long) +calls=10 -62 +* 914 ++1 20 + +fn=(4658) void std::__relocate_object_a<Dune::FieldVector<double, 2>, Dune::FieldVector<double, 2>, std::allocator<Dune::FieldVector<double, 2> > >(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> >&) +887 14329 ++7 6141 +cfi=(286) +cfn=(4660) +calls=2047 99 +* 14329 +* 12282 +cfi=(266) +cfn=(4662) +calls=2047 482 +* 137149 ++1 6141 +cfi=(286) +cfn=(4656) +calls=2047 47 +* 14329 +* 10235 +cfi=(266) +cfn=(4668) +calls=2047 495 +* 45034 ++1 6141 + +fn=(4786) std::enable_if<std::__is_bitwise_relocatable<unsigned char, void>::value, unsigned char*>::type std::__relocate_a_1<unsigned char, unsigned char>(unsigned char*, unsigned char*, unsigned char*, std::allocator<unsigned char>&) +906 192 ++3 72 ++1 48 ++1 66 +cob=(2) +cfi=(18) +cfn=(4834) +calls=11 0 +* 376 ++1 72 ++1 48 + +fn=(6316) +643 84 ++2 60 +cfn=(6318) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__uninitialized_default_n<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long) +calls=12 -71 +* 8564 +* 24 + +fn=(6344) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__uninitialized_copy_a<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo>&) +287 96 ++2 72 +cfi=(237) +cfn=(6346) +calls=12 115 +* 420 +* 24 + +fn=(6552) +643 28 ++2 20 +cfn=(6554) Dune::FieldMatrix<double, 2, 2>* std::__uninitialized_default_n<Dune::FieldMatrix<double, 2, 2>*, unsigned long>(Dune::FieldMatrix<double, 2, 2>*, unsigned long) +calls=4 -71 +* 508 +* 8 + +fn=(6762) +643 28 ++2 20 +cfn=(6764) Dune::FieldMatrix<double, 1, 2>* std::__uninitialized_default_n<Dune::FieldMatrix<double, 1, 2>*, unsigned long>(Dune::FieldMatrix<double, 1, 2>*, unsigned long) +calls=4 -71 +* 1116 +* 8 + +fn=(7414) Dune::FieldMatrix<double, 0, 1>* std::__uninitialized_default_n<Dune::FieldMatrix<double, 0, 1>*, unsigned long>(Dune::FieldMatrix<double, 0, 1>*, unsigned long) +574 12 ++5 2 ++4 10 +cfn=(7416) +calls=2 -40 +* 162 ++1 4 + +fn=(7610) +643 7 ++2 5 +cfn=(7612) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__uninitialized_default_n<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long) +calls=1 -71 +* 269 +* 2 + +fn=(7700) +643 14 ++2 10 +cfn=(7702) +calls=2 -71 +* 146 +* 4 + +fn=(9076) +887 49 ++7 21 +cfi=(286) +cfn=(6032) +calls=7 99 +* 49 +* 42 +cfi=(266) +cfn=(6068) +calls=7 482 +* 1008 ++1 21 +cfi=(286) +cfn=(9074) +calls=7 47 +* 49 +* 35 +cfi=(266) +cfn=(9078) +calls=7 495 +* 427 ++1 21 + +fn=(2922) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >* std::__relocate_a_1<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&) +918 306 ++12 68 ++1 156 ++1 54 +cfi=(286) +cfn=(3132) +calls=18 47 +* 126 +* 72 +cfi=(286) +cfn=(3132) +calls=18 47 +* 126 +* 108 +cfn=(3134) void std::__relocate_object_a<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >&) +calls=18 -45 +* 2844 +-1 54 ++3 34 ++1 136 + +fn=(7100) +643 70 ++2 50 +cfn=(7102) +calls=10 -71 +* 1054 +* 20 + +fn=(7114) +940 60 ++6 18 +cfi=(265) +cfn=(7116) +calls=6 280 +* 42 +* 24 +cfi=(265) +cfn=(7116) +calls=6 280 +* 42 +* 24 +cfi=(265) +cfn=(7116) +calls=6 280 +* 42 +* 36 +cfn=(7118) +calls=6 -28 +* 114 ++3 30 + +fn=(5120) +643 7 ++2 5 +cfn=(5122) int* std::__uninitialized_default_n<int*, unsigned long>(int*, unsigned long) +calls=1 -71 +* 8801 +* 2 + +fn=(6556) Dune::FieldMatrix<double, 2, 2>* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::FieldMatrix<double, 2, 2>*, unsigned long>(Dune::FieldMatrix<double, 2, 2>*, unsigned long) +521 24 ++2 8 ++3 16 ++1 12 +cfi=(286) +cfn=(6558) +calls=4 47 +* 28 +* 8 +cfi=(334) +cfn=(6560) +calls=4 74 +* 332 +-1 12 ++2 4 ++7 8 + +fn=(6766) Dune::FieldMatrix<double, 1, 2>* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::FieldMatrix<double, 1, 2>*, unsigned long>(Dune::FieldMatrix<double, 1, 2>*, unsigned long) +521 24 ++2 8 ++3 36 ++1 42 +cfi=(286) +cfn=(6768) +calls=14 47 +* 98 +* 28 +cfi=(334) +cfn=(6770) +calls=14 74 +* 770 +-1 42 ++2 4 ++7 8 + +fn=(6996) +643 28 ++2 20 +cfn=(6998) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__uninitialized_default_n<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long) +calls=4 -71 +* 1606 +* 8 + +fn=(7292) +940 20 ++6 6 +cfi=(265) +cfn=(7294) +calls=2 280 +* 14 +* 8 +cfi=(265) +cfn=(7294) +calls=2 280 +* 14 +* 8 +cfi=(265) +cfn=(7294) +calls=2 280 +* 14 +* 12 +cfn=(7296) Dune::AffineGeometry<double, 1, 1>* std::__relocate_a_1<Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, std::allocator<Dune::AffineGeometry<double, 1, 1> > >(Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, Dune::AffineGeometry<double, 1, 1>*, std::allocator<Dune::AffineGeometry<double, 1, 1> >&) +calls=2 -28 +* 38 ++3 10 + +fn=(7720) Dune::FieldVector<double, 0>* std::__relocate_a_1<Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> > >(Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, Dune::FieldVector<double, 0>*, std::allocator<Dune::FieldVector<double, 0> >&) +918 9 ++12 2 ++1 3 ++3 1 ++1 4 + +fn=(4650) Dune::FieldVector<double, 2>* std::__relocate_a_1<Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> > >(Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, Dune::FieldVector<double, 2>*, std::allocator<Dune::FieldVector<double, 2> >&) +918 360 ++12 80 ++1 6261 ++1 6141 +cfi=(286) +cfn=(4656) +calls=2047 47 +* 14329 +* 8188 +cfi=(286) +cfn=(4656) +calls=2047 47 +* 14329 +* 12282 +cfn=(4658) +calls=2047 -45 +* 266110 +-1 6141 ++3 40 ++1 160 + +fn=(5138) +940 10 ++6 3 +cfi=(265) +cfn=(5128) +calls=1 280 +* 7 +* 4 +cfi=(265) +cfn=(5128) +calls=1 280 +* 7 +* 4 +cfi=(265) +cfn=(5128) +calls=1 280 +* 7 +* 6 +cfn=(5140) std::enable_if<std::__is_bitwise_relocatable<int, void>::value, int*>::type std::__relocate_a_1<int, int>(int*, int*, int*, std::allocator<int>&) +calls=1 -40 +* 20 ++3 5 + +fn=(5574) +643 14343 ++2 10245 +cfn=(5576) +calls=2049 -71 +* 240225 +* 4098 + +fn=(6318) +574 72 ++5 12 ++4 60 +cfn=(6320) Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long>(Dune::Geo::ReferenceElementImplementation<double, 2>::SubEntityInfo*, unsigned long) +calls=12 -62 +* 8396 ++1 24 + +fn=(6878) +940 40 ++6 12 +cfi=(265) +cfn=(6880) +calls=4 280 +* 28 +* 16 +cfi=(265) +cfn=(6880) +calls=4 280 +* 28 +* 16 +cfi=(265) +cfn=(6880) +calls=4 280 +* 28 +* 24 +cfn=(6882) +calls=4 -28 +* 76 ++3 20 + +fn=(7026) +76 32 ++3 8 ++3 12 ++2 8 ++7 16 + +fn=(7612) +574 6 ++5 1 ++4 5 +cfn=(7614) Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long>(Dune::Geo::ReferenceElementImplementation<double, 0>::SubEntityInfo*, unsigned long) +calls=1 -62 +* 255 ++1 2 + +fn=(7704) +521 12 ++2 4 ++3 8 ++1 6 +cfi=(286) +cfn=(7706) +calls=2 47 +* 14 +* 4 +cfi=(334) +cfn=(7708) +calls=2 74 +* 58 +-1 6 ++2 2 ++7 4 + +fn=(8132) +643 28 ++2 20 +cfn=(8134) Dune::FieldMatrix<double, 0, 2>* std::__uninitialized_default_n<Dune::FieldMatrix<double, 0, 2>*, unsigned long>(Dune::FieldMatrix<double, 0, 2>*, unsigned long) +calls=4 -71 +* 410 +* 8 + +fn=(2918) +940 340 ++6 102 +cfi=(265) +cfn=(2920) +calls=34 280 +* 238 +* 136 +cfi=(265) +cfn=(2920) +calls=34 280 +* 238 +* 136 +cfi=(265) +cfn=(2920) +calls=34 280 +* 238 +* 204 +cfn=(2922) +calls=34 -28 +* 4084 ++3 170 + +fn=(7104) +521 60 ++2 20 ++3 52 ++1 48 +cfi=(286) +cfn=(7106) +calls=16 47 +* 112 +* 32 +cfi=(334) +cfn=(7108) +calls=16 74 +* 512 +-1 48 ++2 10 ++7 20 + +fn=(5416) +940 60 ++6 18 +cfi=(265) +cfn=(5418) +calls=6 280 +* 42 +* 24 +cfi=(265) +cfn=(5418) +calls=6 280 +* 42 +* 24 +cfi=(265) +cfn=(5418) +calls=6 280 +* 42 +* 36 +cfn=(5420) std::enable_if<std::__is_bitwise_relocatable<void*, void>::value, void**>::type std::__relocate_a_1<void*, void*>(void**, void**, void**, std::allocator<void*>&) +calls=6 -40 +* 162 ++3 30 + +fn=(6340) +305 108 ++6 36 +cfi=(291) +cfn=(6342) +calls=12 1242 +* 84 +* 48 +cfi=(291) +cfn=(6342) +calls=12 1242 +* 84 +* 84 +cfn=(6344) +calls=12 -24 +* 612 ++2 48 + +fn=(6422) Dune::FieldVector<double, 2>* std::__uninitialized_default_n<Dune::FieldVector<double, 2>*, unsigned long>(Dune::FieldVector<double, 2>*, unsigned long) +574 168 ++5 28 ++4 140 +cfn=(6424) Dune::FieldVector<double, 2>* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::FieldVector<double, 2>*, unsigned long>(Dune::FieldVector<double, 2>*, unsigned long) +calls=28 -62 +* 4186 ++1 56 + +fn=(6554) +574 24 ++5 4 ++4 20 +cfn=(6556) +calls=4 -62 +* 452 ++1 8 + +fn=(6668) +918 36 ++12 8 ++1 12 ++3 4 ++1 16 + +fn=(6764) +574 24 ++5 4 ++4 20 +cfn=(6766) +calls=4 -62 +* 1060 ++1 8 + +fn=(6998) +574 24 ++5 4 ++4 20 +cfn=(7000) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, unsigned long) +calls=4 -62 +* 1550 ++1 8 + +fn=(7022) Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo* std::__uninitialized_copy_a<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>(Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo const*, Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo*, std::allocator<Dune::Geo::ReferenceElementImplementation<double, 1>::SubEntityInfo>&) +287 32 ++2 24 +cfi=(237) +cfn=(7024) +calls=4 115 +* 140 +* 8 + +fn=(7234) +643 14 ++2 10 +cfn=(7236) Dune::FieldMatrix<double, 1, 1>* std::__uninitialized_default_n<Dune::FieldMatrix<double, 1, 1>*, unsigned long>(Dune::FieldMatrix<double, 1, 1>*, unsigned long) +calls=2 -71 +* 186 +* 4 + +fn=(7238) Dune::FieldMatrix<double, 1, 1>* std::__uninitialized_default_n_1<false>::__uninit_default_n<Dune::FieldMatrix<double, 1, 1>*, unsigned long>(Dune::FieldMatrix<double, 1, 1>*, unsigned long) +521 14 ++2 4 ++3 8 ++1 6 +cfi=(286) +cfn=(7240) +calls=2 47 +* 14 +* 4 +cfi=(334) +cfn=(7242) +calls=2 74 +* 90 +-1 6 ++2 4 ++7 8 + +fn=(7512) +918 18 ++12 4 ++1 6 ++3 2 ++1 8 + +fn=(7632) +76 8 ++3 2 ++3 3 ++2 2 ++7 4 + +fn=(7716) +940 10 ++6 3 +cfi=(265) +cfn=(7718) +calls=1 280 +* 7 +* 4 +cfi=(265) +cfn=(7718) +calls=1 280 +* 7 +* 4 +cfi=(265) +cfn=(7718) +calls=1 280 +* 7 +* 6 +cfn=(7720) +calls=1 -28 +* 19 ++3 5 + +fn=(3134) +887 126 ++7 54 +cfi=(286) +cfn=(2642) +calls=18 99 +* 126 +* 108 +cfi=(266) +cfn=(3136) +calls=18 482 +* 1494 ++1 54 +cfi=(286) +cfn=(3132) +calls=18 47 +* 126 +* 90 +cfi=(266) +cfn=(3142) +calls=18 495 +* 612 ++1 54 + +fn=(4646) +940 400 ++6 120 +cfi=(265) +cfn=(4648) +calls=40 280 +* 280 +* 160 +cfi=(265) +cfn=(4648) +calls=40 280 +* 280 +* 160 +cfi=(265) +cfn=(4648) +calls=40 280 +* 280 +* 240 +cfn=(4650) +calls=40 -28 +* 334421 ++3 200 + +fn=(4828) +940 520 ++6 156 +cfi=(265) +cfn=(4160) +calls=52 280 +* 364 +* 208 +cfi=(265) +cfn=(4160) +calls=52 280 +* 364 +* 208 +cfi=(265) +cfn=(4160) +calls=52 280 +* 364 +* 312 +cfn=(4830) std::enable_if<std::__is_bitwise_relocatable<unsigned int, void>::value, unsigned int*>::type std::__relocate_a_1<unsigned int, unsigned int>(unsigned int*, unsigned int*, unsigned int*, std::allocator<unsigned int>&) +calls=52 -40 +* 27844 ++3 260 + +fn=(5122) +574 6 ++5 1 ++4 5 +cfn=(5124) int* std::__uninitialized_default_n_1<true>::__uninit_default_n<int*, unsigned long>(int*, unsigned long) +calls=1 -40 +* 8787 ++1 2 + +fn=(5420) +906 48 ++3 24 ++1 12 ++1 14 +cob=(2) +cfi=(18) +cfn=(4834) +calls=2 0 +* 28 ++1 24 ++1 12 + +fn=(6420) +643 196 ++2 140 +cfn=(6422) +calls=28 -71 +* 4578 +* 56 + +fn=(7628) +287 8 ++2 6 +cfi=(237) +cfn=(7630) +calls=1 115 +* 35 +* 2 + +fn=(7810) +643 7 ++2 5 +cfn=(7812) +calls=1 -71 +* 90 +* 2 + +fn=(7908) +918 9 ++12 2 ++1 3 ++3 1 ++1 4 + +fn=(8136) Dune::FieldMatrix<double, 0, 2>* std::__uninitialized_default_n_1<true>::__uninit_default_n<Dune::FieldMatrix<double, 0, 2>*, unsigned long>(Dune::FieldMatrix<double, 0, 2>*, unsigned long) +543 36 ++5 24 +cfi=(265) +cfn=(8138) +calls=4 802 +* 274 ++1 20 + +fn=(8232) +918 36 ++12 8 ++1 12 ++3 4 ++1 16 + +fn=(8368) +918 324 ++12 72 ++1 108 ++3 36 ++1 144 + +fn=(4714) +574 18432 ++5 3072 ++4 15360 +cfn=(4716) unsigned int* std::__uninitialized_default_n_1<true>::__uninit_default_n<unsigned int*, unsigned long>(unsigned int*, unsigned long) +calls=3072 -40 +* 295936 ++1 6144 + +fn=(4716) +543 27648 ++5 21504 +cfi=(265) +cfn=(4718) +calls=3072 802 +* 231424 ++1 15360 + +fn=(4830) +906 416 ++3 208 ++1 104 ++1 168 +cob=(2) +cfi=(18) +cfn=(4834) +calls=24 0 +* 26636 ++1 208 ++1 104 + +fn=(5124) +543 9 ++5 7 +cfi=(265) +cfn=(5126) +calls=1 802 +* 8766 ++1 5 + +fn=(5140) +906 8 ++3 4 ++1 2 ++2 4 ++1 2 + +fn=(6082) +940 80 ++6 24 +cfi=(265) +cfn=(6084) +calls=8 280 +* 56 +* 32 +cfi=(265) +cfn=(6084) +calls=8 280 +* 56 +* 32 +cfi=(265) +cfn=(6084) +calls=8 280 +* 56 +* 48 +cfn=(6086) +calls=8 -28 +* 2105 ++3 40 + +fn=(6320) +521 84 ++2 24 ++3 88 ++1 96 +cfi=(286) +cfn=(6322) +calls=32 47 +* 224 +* 64 +cfi=(334) +cfn=(6324) +calls=32 74 +* 7648 +-1 96 ++2 24 ++7 48 + +fn=(7614) +521 7 ++2 2 ++3 4 ++1 3 +cfi=(286) +cfn=(7616) +calls=1 47 +* 7 +* 2 +cfi=(334) +cfn=(7618) +calls=1 74 +* 221 +-1 3 ++2 2 ++7 4 + +fn=(8134) +574 24 ++5 4 ++4 20 +cfn=(8136) +calls=4 -40 +* 354 ++1 8 + +fn=(4782) +940 240 ++6 72 +cfi=(265) +cfn=(4784) +calls=24 280 +* 168 +* 96 +cfi=(265) +cfn=(4784) +calls=24 280 +* 168 +* 96 +cfi=(265) +cfn=(4784) +calls=24 280 +* 168 +* 144 +cfn=(4786) +calls=24 -40 +* 874 ++3 120 + +fn=(6424) +521 168 ++2 56 ++3 212 ++1 234 +cfi=(286) +cfn=(4656) +calls=78 47 +* 546 +* 156 +cfi=(334) +cfn=(6426) +calls=78 74 +* 2496 +-1 234 ++2 28 ++7 56 + +fn=(7000) +521 28 ++2 8 ++3 20 ++1 18 +cfi=(286) +cfn=(7002) +calls=6 47 +* 42 +* 12 +cfi=(334) +cfn=(7004) +calls=6 74 +* 1380 +-1 18 ++2 8 ++7 16 + +fn=(7018) +305 36 ++6 12 +cfi=(291) +cfn=(7020) +calls=4 1242 +* 28 +* 16 +cfi=(291) +cfn=(7020) +calls=4 1242 +* 28 +* 28 +cfn=(7022) +calls=4 -24 +* 204 ++2 16 + +fn=(7236) +574 12 ++5 2 ++4 10 +cfn=(7238) +calls=2 -62 +* 158 ++1 4 + +fn=(7296) +918 18 ++12 4 ++1 6 ++3 2 ++1 8 + +fn=(7412) +643 14 ++2 10 +cfn=(7414) +calls=2 -71 +* 190 +* 4 + +fn=(7814) +543 9 ++5 6 +cfi=(265) +cfn=(7816) +calls=1 802 +* 56 ++1 5 + +fl=(245) +fn=(5092) +141 11 ++4 6 +cfi=(259) +cfn=(5094) +calls=1 934 +* 10038 ++2 1 ++2 3271 ++1 6534 +cfi=(259) +cfn=(5144) +calls=1089 1040 +* 13068 +* 1089 +-1 2178 ++3 5 +cfi=(287) +cfn=(5146) +calls=1 344 +* 41 +* 4 +cfi=(287) +cfn=(5152) +calls=1 353 +* 41 +* 6 +cfi=(235) +cfn=(5156) +calls=1 398 +* 13 +* 640 +cfi=(235) +cfn=(5156) +calls=128 398 +* 1664 +* 642 +cfi=(235) +cfn=(5158) +calls=128 356 +* 4992 +* 128 ++1 896 ++1 1536 +cfi=(253) +cfn=(5002) +calls=256 +35 +* 6144 +* 2304 +cfi=(253) +cfn=(5002) +calls=256 +35 +* 6144 +* 1536 +cfi=(259) +cfn=(5144) +calls=256 1040 +* 3072 +* 1664 ++1 768 +cfi=(253) +cfn=(5002) +calls=128 +34 +* 3072 +* 768 +cfi=(259) +cfn=(5144) +calls=128 1040 +* 1536 +* 128 +-2 512 +-1 384 +cfi=(235) +cfn=(5044) +calls=128 364 +* 4232 +* 128 ++6 5 +cfi=(259) +cfn=(5096) +calls=1 915 +* 13 +* 4356 +cfi=(259) +cfn=(5096) +calls=1089 915 +* 14157 +* 4360 ++1 5445 +cfi=(259) +cfn=(5144) +calls=1089 1040 +* 13068 +* 5445 ++1 1024 +cfi=(259) +cfn=(5144) +calls=128 1040 +* 1536 +* 128 +-2 2178 ++4 1 ++1 7 + +fn=(2224) __static_initialization_and_destruction_0(int, int) +180 10 +fi=(220) +74 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(245) +180 3 + +fn=(2222) +180 6 +cfn=(2224) +calls=1 * +* 119 +* 2 + +fn=(4912) +14 11 ++11 3 +cfi=(287) +cfn=(4914) +calls=1 733 +* 67 ++1 1 ++2 4 +cfi=(259) +cfn=(4560) +calls=1 915 +* 12 +* 6144 +cfi=(259) +cfn=(4560) +calls=2048 915 +* 24576 +* 8196 ++2 10240 +cfi=(259) +cfn=(4922) +calls=2048 1058 +* 22528 +* 6144 ++2 26624 ++3 12288 ++1 79872 +cfi=(259) +cfn=(4796) +calls=6144 1058 +* 73728 +* 36864 +cfi=(253) +cfn=(4924) +calls=6144 185 +* 147456 +* 6144 ++1 79872 +cfi=(259) +cfn=(4796) +calls=6144 1058 +* 73728 +* 36864 +cfi=(253) +cfn=(4924) +calls=6144 185 +* 147456 +* 12288 ++8 30720 +cfi=(287) +cfn=(4928) +calls=6144 509 +* 39587563 +* 12288 ++1 24576 ++1 15040 +cfi=(287) +cfn=(5040) +calls=3008 654 +* 1389255 +-15 12288 ++19 4096 +-23 4096 ++27 8 + +fl=(342) +fn=(5192) +127 16 +cfi=(343) +cfn=(5194) +calls=2 1118 +* 46 +* 6 + +fn=(6096) +103 96 +cfi=(343) +cfn=(6098) +calls=12 1169 +* 288 +* 36 + +fn=(5218) std::shared_ptr<PPIF::PPIFContext> std::allocate_shared<PPIF::PPIFContext, std::allocator<PPIF::PPIFContext>>(std::allocator<PPIF::PPIFContext> const&) +699 12 ++3 10 +cfn=(5220) std::shared_ptr<PPIF::PPIFContext>::shared_ptr<std::allocator<PPIF::PPIFContext>>(std::_Sp_alloc_shared_tag<std::allocator<PPIF::PPIFContext> >) +calls=2 358 +* 1679 ++1 6 + +fn=(4112) +307 9 +cfn=(4114) std::shared_ptr<InterfaceNetwork<Dune::UGGrid<2> > >::shared_ptr() +calls=1 127 +* 34 +* 3 + +fn=(5190) +307 9 +cfn=(5192) +calls=1 127 +* 34 +* 3 + +fn=(5966) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > std::allocate_shared<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const>, std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >>(std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > const&) +699 30 ++3 25 +cfn=(5968) std::shared_ptr<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >::shared_ptr<std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> >>(std::_Sp_alloc_shared_tag<std::allocator<Dune::UGGridLevelIndexSet<Dune::UGGrid<2> const> > >) +calls=5 358 +* 5404 ++1 15 + +fn=(8808) +103 8 +cfi=(343) +cfn=(8790) +calls=1 1169 +* 24 +* 3 + +fn=(4114) +127 8 +cfi=(343) +cfn=(4116) +calls=1 1118 +* 23 +* 3 + +fn=(5198) +129 33 +cfi=(343) +cfn=(5200) +calls=3 1167 +* 166 +* 9 + +fn=(5284) +333 14 ++2 8 +cfi=(286) +cfn=(5286) +calls=2 99 +* 14 +* 6 +cfi=(343) +cfn=(5288) +calls=2 1263 +* 414 ++1 2 ++1 8 + +fn=(5960) +714 45 ++4 15 +cfi=(236) +cfn=(5962) +calls=5 138 +* 90 +* 25 +cfn=(5966) +calls=5 -19 +* 5474 +* 15 +cfi=(236) +cfn=(6004) +calls=5 153 +* 90 ++1 40 + +fn=(4106) +127 16 +cfi=(343) +cfn=(4108) +calls=2 1118 +* 46 +* 6 + +fn=(5306) +103 48 +cfi=(343) +cfn=(5302) +calls=6 1169 +* 742 +* 18 + +fn=(5968) +358 30 ++1 25 +cfi=(343) +cfn=(5970) +calls=5 1343 +* 5334 ++1 15 + +fn=(5212) +714 18 ++4 6 +cfi=(236) +cfn=(5214) +calls=2 138 +* 36 +* 10 +cfn=(5218) +calls=2 -19 +* 1707 +* 6 +cfi=(236) +cfn=(5258) +calls=2 153 +* 36 ++1 16 + +fn=(8736) +349 7 ++2 4 +cfi=(286) +cfn=(8738) +calls=1 99 +* 7 +* 3 +cfi=(343) +cfn=(8740) +calls=1 1279 +* 10026 ++1 1 ++1 4 + +fn=(8798) +333 7 ++2 4 +cfi=(286) +cfn=(8800) +calls=1 99 +* 7 +* 3 +cfi=(343) +cfn=(8802) +calls=1 1263 +* 207 ++1 1 ++1 4 + +fn=(5220) +358 12 ++1 10 +cfi=(343) +cfn=(5222) +calls=2 1343 +* 1651 ++1 6 + +fn=(6072) +254 84 ++1 48 +cfi=(286) +cfn=(6032) +calls=12 99 +* 84 +* 36 +cfi=(343) +cfn=(6074) +calls=12 1176 +* 636 +* 60 + +fn=(8794) +129 11 +cfi=(343) +cfn=(8796) +calls=1 1167 +* 92 +* 3 + +fl=(406) +fn=(5648) +271 57344 ++3 50176 +cob=(2) +cfi=(18) +cfn=(5650) +calls=7168 0 +* 71680 +* 14336 ++1 50176 +cob=(2) +cfi=(18) +cfn=(5650) +calls=7168 0 +* 71680 +* 14336 ++1 43008 ++3 57344 ++1 14336 + +fl=(423) +fn=(6200) Dune::Geo::ReferenceElements<double, 2>::general(Dune::GeometryType const&) +196 44431545 ++2 8886309 +cfn=(6202) Dune::Geo::ReferenceElements<double, 2>::container() +calls=8886309 +35 +* 142661150 +* 44431545 +cfn=(8282) Dune::Geo::Impl::ReferenceElementContainer<double, 2>::operator()(Dune::GeometryType const&) const +calls=8886309 94 +* 586496394 ++1 17772618 + +fn=(6892) Dune::Geo::Impl::ReferenceElementContainer<double, 1>::ReferenceElementContainer() +85 6 ++1 3 +cfi=(253) +cfn=(6894) +calls=1 +8 +* 1228 +* 4 +cfi=(253) +cfn=(6956) +calls=1 +8 +* 94 ++1 7 ++2 10 +cfi=(253) +cfn=(6964) +calls=2 +96 +* 58 +* 10 +cfi=(424) +cfn=(6968) +calls=2 567 +* 62402 ++1 12 +cfi=(253) +cfn=(8024) +calls=2 +95 +* 48 +* 12 +cfi=(253) +cfn=(6964) +calls=2 +95 +* 58 +* 6 +cfi=(425) +cfn=(8028) +calls=2 331 +* 22 +-3 4 ++5 5 + +fn=(7518) +196 90 ++2 18 +cfn=(7520) Dune::Geo::ReferenceElements<double, 0>::container() +calls=18 +35 +* 9172 +* 90 +cfn=(7982) Dune::Geo::Impl::ReferenceElementContainer<double, 0>::operator()(Dune::GeometryType const&) const +calls=18 94 +* 1188 ++1 36 + +fn=(6202) +233 44431545 ++2 44431547 +cob=(2) +cfi=(18) +cfn=(2426) +calls=1 0 +* 35 +* 7 +cfn=(6204) Dune::Geo::Impl::ReferenceElementContainer<double, 2>::ReferenceElementContainer() +calls=1 85 +* 480064 +* 2 +cob=(2) +cfi=(18) +cfn=(2430) +calls=1 0 +* 18 +* 4 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 0 +* 74 ++1 17772618 ++1 35545236 + +fn=(6960) Dune::Geo::DeprecatedReferenceElement<double, 1>::DeprecatedReferenceElement() +40 16 +cfi=(425) +cfn=(6962) +calls=2 275 +* 18 +* 6 + +fn=(7520) +233 90 ++2 92 +cob=(2) +cfi=(18) +cfn=(2426) +calls=1 0 +* 35 +* 7 +cfn=(7522) Dune::Geo::Impl::ReferenceElementContainer<double, 0>::ReferenceElementContainer() +calls=1 85 +* 8742 +* 2 +cob=(2) +cfi=(18) +cfn=(2430) +calls=1 0 +* 18 +* 4 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 0 +* 74 ++1 36 ++1 72 + +fn=(6274) +59 32 +cfn=(6276) Dune::Geo::DeprecatedReferenceElement<double, 2>::DeprecatedReferenceElement() +calls=4 -19 +* 80 +* 12 + +fn=(7982) +94 126 ++2 54 +cfi=(389) +cfn=(4732) +calls=18 644 +* 162 +* 36 ++1 90 +cfi=(389) +cfn=(6574) +calls=18 649 +* 144 +* 72 +cfi=(253) +cfn=(7984) +calls=18 +92 +* 432 ++1 72 + +fn=(6888) +196 70 ++2 14 +cfn=(6890) Dune::Geo::ReferenceElements<double, 1>::container() +calls=14 +35 +* 64355 +* 70 +cfn=(8030) Dune::Geo::Impl::ReferenceElementContainer<double, 1>::operator()(Dune::GeometryType const&) const +calls=14 94 +* 924 ++1 28 + +fn=(6958) +59 16 +cfn=(6960) +calls=2 -19 +* 40 +* 6 + +fn=(7574) Dune::Geo::DeprecatedReferenceElement<double, 0>::DeprecatedReferenceElement() +40 8 +cfi=(425) +cfn=(7576) +calls=1 275 +* 9 +* 3 + +fn=(6198) +313 44431545 ++2 26658927 +cfn=(6200) +calls=8886309 196 +* 844679561 +* 8886309 ++1 17772618 + +fn=(6204) +85 6 ++1 3 +cfi=(253) +cfn=(6206) +calls=1 +8 +* 3416 +* 4 +cfi=(253) +cfn=(6272) +calls=1 +8 +* 170 ++1 11 ++2 20 +cfi=(253) +cfn=(6280) +calls=4 +96 +* 108 +* 20 +cfi=(424) +cfn=(6284) +calls=4 567 +* 475985 ++1 24 +cfi=(253) +cfn=(8276) +calls=4 +95 +* 96 +* 24 +cfi=(253) +cfn=(6280) +calls=4 +95 +* 108 +* 12 +cfi=(425) +cfn=(8280) +calls=4 331 +* 44 +-3 8 ++5 5 + +fn=(6890) +233 70 ++2 72 +cob=(2) +cfi=(18) +cfn=(2426) +calls=1 0 +* 35 +* 7 +cfn=(6892) +calls=1 85 +* 63989 +* 2 +cob=(2) +cfi=(18) +cfn=(2430) +calls=1 0 +* 18 +* 4 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 0 +* 74 ++1 28 ++1 56 + +fn=(7522) +85 6 ++1 3 +cfi=(253) +cfn=(7524) +calls=1 +8 +* 379 +* 4 +cfi=(253) +cfn=(7570) +calls=1 +8 +* 56 ++1 5 ++2 5 +cfi=(253) +cfn=(7578) +calls=1 +96 +* 29 +* 5 +cfi=(424) +cfn=(7582) +calls=1 567 +* 8164 ++1 6 +cfi=(253) +cfn=(7976) +calls=1 +95 +* 24 +* 6 +cfi=(253) +cfn=(7578) +calls=1 +95 +* 29 +* 3 +cfi=(425) +cfn=(7980) +calls=1 331 +* 11 +-3 2 ++5 5 + +fn=(8282) +94 62204163 ++2 26658927 +cfi=(389) +cfn=(4732) +calls=8886309 644 +* 79976781 +* 17772618 ++1 44431545 +cfi=(389) +cfn=(6574) +calls=8886309 649 +* 71090472 +* 35545236 +cfi=(253) +cfn=(8284) +calls=8886309 +92 +* 213271416 ++1 35545236 + +fn=(7572) +59 8 +cfn=(7574) +calls=1 -19 +* 20 +* 3 + +fn=(8030) +94 98 ++2 42 +cfi=(389) +cfn=(4732) +calls=14 644 +* 126 +* 28 ++1 70 +cfi=(389) +cfn=(6574) +calls=14 649 +* 112 +* 56 +cfi=(253) +cfn=(8032) +calls=14 +92 +* 336 ++1 56 + +fn=(6276) +40 32 +cfi=(425) +cfn=(6278) +calls=4 275 +* 36 +* 12 + +fl=(249) +fn=(2238) +12 6 +cfn=(2240) __static_initialization_and_destruction_0(int, int) +calls=1 * +* 119 +* 2 + +fn=(2240) +12 10 +fi=(220) ++62 2 +cob=(2) +cfi=(18) +cfn=(1662) +calls=1 -74 +* 25 +* 5 +cob=(2) +cfi=(18) +cfn=(2164) +calls=1 -74 +* 74 +fe=(249) +-62 3 + +fl=(416) +fn=(8390) decltype (entities({parm#1}, (Dune::Codim<Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >::dimension-(0)>)())) Dune::entities<Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >, 0>(Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > const&, Dune::Dim<0>) +818 99 ++4 55 +cfn=(8392) Dune::IteratorRange<decltype (({parm#1}.(begin<2>))())> Dune::entities<Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >, 2>(Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > const&, Dune::Codim<2>) +calls=11 -47 +* 7766 ++1 66 + +fn=(8488) Dune::IteratorRange<decltype (({parm#1}.(begin<0>))())> Dune::entities<Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >, 0>(Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > const&, Dune::Codim<0>) +775 72 ++5 40 +cfi=(415) +cfn=(8490) +calls=8 210 +* 1576 +* 40 +cfi=(415) +cfn=(8502) +calls=8 203 +* 25661580 +* 48 +cfi=(422) +cfn=(8516) +calls=8 34 +* 968 ++1 48 + +fn=(8388) +875 99 ++3 55 +cfn=(8390) +calls=11 -60 +* 7986 ++1 66 + +fn=(8542) decltype (entities({parm#1}, (Dune::Codim<Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >::dimension-(0)>)())) Dune::entities<Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >, 0>(Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > const&, Dune::Dim<0>) +818 36 ++4 20 +cfn=(8544) Dune::IteratorRange<decltype (({parm#1}.(begin<2>))())> Dune::entities<Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> >, 2>(Dune::GridView<Dune::UGGridLeafGridViewTraits<Dune::UGGrid<2> const> > const&, Dune::Codim<2>) +calls=4 -47 +* 6100480 ++1 24 + +fn=(8486) +833 72 ++3 40 +cfn=(8488) +calls=8 -61 +* 25664372 ++1 48 + +fn=(6120) Dune::IteratorRange<decltype (({parm#1}.(begin<0>))())> Dune::entities<Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> >, 0>(Dune::GridView<Dune::UGGridLevelGridViewTraits<Dune::UGGrid<2> const> > const&, Dune::Codim<0>) +775 441 ++5 245 +cfi=(415) +cfn=(6122) +calls=49 210 +* 9653 +* 245 +cfi=(415) +cfn=(6148) +calls=49 203 +* 17493 +* 294 +cfi=(422) +cfn=(6164) +calls=49 34 +* 5929 ++1 294 + +fn=(8392) +775 99 ++5 55 +cfi=(415) +cfn=(8394) +calls=11 210 +* 2167 +* 55 +cfi=(415) +cfn=(8418) +calls=11 203 +* 3927 +* 66 +cfi=(422) +cfn=(8432) +calls=11 34 +* 1331 ++1 66 + +fn=(8540) +875 36 ++3 20 +cfn=(8542) +calls=4 -60 +* 6100560 ++1 24 + +fn=(6118) +833 441 ++3 245 +cfn=(6120) +calls=49 -61 +* 34594 ++1 294 + +fn=(8544) +775 36 ++5 20 +cfi=(415) +cfn=(8546) +calls=4 210 +* 788 +* 20 +cfi=(415) +cfn=(8556) +calls=4 203 +* 6099084 +* 24 +cfi=(422) +cfn=(8570) +calls=4 34 +* 484 ++1 24 + +fl=(427) +fn=(7170) +267 20 ++2 6 +cfi=(286) +cfn=(7172) +calls=2 74 +* 14 +* 8 +cfi=(286) +cfn=(7174) +calls=2 74 +* 14 +* 4 +cfn=(7176) void Dune::Hybrid::Impl::forEach<Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}, unsigned long, 0ul, 1ul>(std::integer_sequence<unsigned long, 0ul, 1ul>, Dune::Geo::ReferenceElementImplementation<double, 1>::initialize(unsigned int)::{lambda(auto:1)#1}&&, Dune::PriorityTag<2ul>) +calls=2 -47 +* 26905 ++1 16 + +fn=(7744) void Dune::Hybrid::Impl::forEach<Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}, unsigned long, 0ul>(std::integer_sequence<unsigned long, 0ul>, Dune::Geo::ReferenceElementImplementation<double, 0>::initialize(unsigned int)::{lambda(auto:1)#1}&&, Dune::PriorityTag<2ul>) +222 8 ++2 3 +cfi=(424) +cfn=(7746) +calls=1 610 +* 3741 +* 7 +cfn=(7974) void Dune::Hybrid::Impl::evaluateFoldExpression<int>(std::initializer_list<int>&&) +calls=1 -12 +* 7 ++1 6 + +fn=(6480) +267 40 ++2 12 +cfi=(286) +cfn=(6482) +calls=4 74 +* 28 +* 16 +cfi=(286) +cfn=(6484) +calls=4 74 +* 28 +* 8 +cfn=(6486) void Dune::Hybrid::Impl::forEach<Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}, unsigned long, 0ul, 1ul, 2ul>(std::integer_sequence<unsigned long, 0ul, 1ul, 2ul>, Dune::Geo::ReferenceElementImplementation<double, 2>::initialize(unsigned int)::{lambda(auto:1)#1}&&, Dune::PriorityTag<2ul>) +calls=4 -47 +* 171931 ++1 32 + +fn=(7974) +212 28 ++1 21 + +fn=(7738) +267 10 ++2 3 +cfi=(286) +cfn=(7740) +calls=1 74 +* 7 +* 4 +cfi=(286) +cfn=(7742) +calls=1 74 +* 7 +* 2 +cfn=(7744) +calls=1 -47 +* 3772 ++1 8 + +fn=(7176) +222 16 ++2 6 +cfi=(424) +cfn=(7178) +calls=2 610 +* 8849 +* 8 +cfi=(424) +cfn=(7368) +calls=2 610 +* 17986 +* 14 +cfn=(7974) +calls=2 -12 +* 14 ++1 12 + +fn=(6486) +222 32 ++2 12 +cfi=(424) +cfn=(6488) +calls=4 610 +* 24199 +* 16 +cfi=(424) +cfn=(6718) +calls=4 610 +* 121205 +* 16 +cfi=(424) +cfn=(8088) +calls=4 610 +* 26371 +* 28 +cfn=(7974) +calls=4 -12 +* 28 ++1 24 + +ob=(6) +fl=(144) +fn=(448) +0 12 + +fl=(145) +fn=(454) +28 1 ++1 1 ++1 1 ++1 1 + +ob=(21) +fl=(208) +fn=(1552) +0 11 + +ob=(26) +fl=(213) +fn=(1602) +0 11 + +ob=(11) +fl=(175) +fn=(1204) 0x000000000000a220 +0 26 +cob=(3) +cfi=(169) +cfn=(740) +calls=2 34 +0 766 +0 2 +0 30 + +fn=(1050) 0x000000000001d7e0 +0 5 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 3770 +0 5 +0 5 +cfn=(1090) 0x000000000000c2e0 +calls=1 0 +0 1710 +0 3 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1412 +0 5 +0 6 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 3053 +0 5 +0 5 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1614 +0 5 +0 810 + +fn=(1008) 0x0000000000009ab0 +0 91 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1900 +0 5 +0 84 +cob=(3) +cfi=(169) +cfn=(740) +calls=5 34 +0 1923 +0 5 +0 22 + +fn=(1266) +0 5 +cob=(5) +cfi=(168) /build/glibc-t7JzpG/glibc-2.30/nptl/pthread_key_create.c +cfn=(724) pthread_key_create +calls=1 26 +0 39 +0 1 +0 4 + +fn=(974) +0 12 + +fn=(1090) +0 4 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1697 +0 5 +0 4 + +fn=(1238) 0x0000000000029190 +0 35 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1542 +0 5 +0 5 + +fn=(980) +0 14 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1870 +0 5 +0 5 +cfn=(992) 0x00000000000099e0 +calls=1 0 +0 400 +0 3 +cfn=(992) +calls=1 0 +0 400 +0 3 +cfn=(992) +calls=1 0 +0 400 +0 3 +cfn=(992) +calls=1 0 +0 408 +0 4 +cfn=(1006) 0x000000000000a3e0 +calls=1 0 +0 438 +0 4 +cfn=(1006) +calls=1 0 +0 438 +0 5 +cfn=(1008) +calls=1 0 +0 421 +0 5 +cfn=(1008) +calls=1 0 +0 417 +0 6 +cfn=(1006) +calls=1 0 +0 1958 +0 1 +cfn=(1050) +calls=1 0 +0 12413 +0 4 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 383 +0 1 +0 7 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 387 +0 1 +0 5 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 391 +0 1 +0 6 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 391 +0 1 +0 7 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 383 +0 1 +0 5 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 383 +0 1 +0 9 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 3014 +0 5 +0 3 +cfn=(1204) +calls=1 0 +0 412 +0 5 +cfn=(1204) +calls=1 0 +0 412 +0 5 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 383 +0 1 +0 7 +cfn=(1006) +calls=1 0 +0 442 +0 5 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 391 +0 1 +0 5 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 383 +0 1 +0 4 +cfn=(1238) +calls=1 0 +0 1587 +0 19 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 387 +0 1 +0 5 + +fn=(992) +0 32 +cob=(3) +cfi=(169) +cfn=(740) +calls=4 34 +0 1540 +0 4 +0 32 + +fn=(1006) +0 48 +cfn=(1008) +calls=4 0 +0 3192 +0 36 + +ob=(28) +fl=(215) +fn=(1622) +0 12 + +ob=(23) +fl=(210) +fn=(1572) +0 11 + +ob=(9) +fl=(167) +fn=(778) 0x0000000000249690 +0 8 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1612 +0 5 +0 16 +cfn=(790) 0x00000000002490e0 +calls=1 0 +0 379 +0 4 +cob=(5) +cfi=(156) +cfn=(512) +calls=1 356 +0 19 +0 1 +0 2 +cfn=(790) +calls=1 0 +0 399 +0 7 +cob=(5) +cfi=(156) +cfn=(512) +calls=1 356 +0 19 +0 1 +0 1 +cfn=(790) +calls=1 0 +0 399 +0 2 +cfn=(924) 0x000000000024b660 +calls=1 0 +0 315 +0 17 +cob=(3) +cfi=(173) +cfn=(854) +calls=1 40 +0 237 +0 1 +0 4 +cfn=(858) 0x0000000000251ef0 +calls=1 0 +0 419 +0 4 +cob=(5) +cfi=(156) +cfn=(512) +calls=1 356 +0 19 +0 1 +0 2 +cfn=(790) +calls=1 0 +0 382 +0 2 +cfn=(900) 0x000000000024b650 +calls=1 0 +0 315 +0 17 +cob=(3) +cfi=(173) +cfn=(854) +calls=1 40 +0 237 +0 1 +0 4 +cfn=(858) +calls=1 0 +0 416 +0 4 +cob=(5) +cfi=(156) +cfn=(512) +calls=1 356 +0 19 +0 1 +0 2 +cfn=(790) +calls=1 0 +0 3512 +0 2 +cfn=(824) 0x000000000024b640 +calls=1 0 +0 1738 +0 18 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1804 +0 5 +0 4 +cfn=(858) +calls=1 0 +0 1935 +0 5 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1568 +0 5 +0 1 + +fn=(790) +0 35 +cfn=(792) 0x000000000001f1e0 +calls=5 0 +0 3012 +0 55 +cob=(5) +cfi=(154) +cfn=(504) +calls=4 64 +0 116 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1602 +0 9 +0 85 +cfn=(816) 0x0000000000249060 +calls=5 0 +0 127 +0 30 + +fn=(726) +0 3 +cfn=(728) 0x00000000000204f0 +calls=1 0 +0 6402 +0 1 +cfn=(778) +calls=1 0 +0 15890 +0 13 + +fn=(858) +0 33 +cfn=(860) 0x000000000001f140 +calls=3 0 +0 2119 +0 12 +cfn=(860) +calls=3 0 +0 579 +0 27 + +fn=(956) +0 6 +cob=(5) +cfi=(168) +cfn=(724) +calls=1 26 +0 25 +0 1 + +fn=(714) +0 6 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1508 +0 5 + +fn=(860) +0 36 +cob=(3) +cfi=(150) +cfn=(554) +calls=5 3023 +0 924 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1704 +0 10 +0 24 + +fn=(924) +0 14 +cfn=(792) +calls=1 0 +0 251 +0 7 +cob=(3) +cfi=(172) +cfn=(836) +calls=1 33 +0 11 +0 1 +0 31 + +fn=(644) +0 42 +cfn=(666) 0x000000000001e220 +calls=1 0 +0 106 +0 17 + +fn=(728) +0 82 +cfn=(754) 0x000000000001fe40 +calls=5 0 +0 1985 +cfn=(734) 0x00000000000200d0 +calls=5 0 +0 3496 +0 4 +cfn=(768) 0x0000000000020470 +calls=1 0 +0 394 +cfn=(762) 0x000000000001fe90 +calls=1 0 +0 403 +0 38 + +fn=(734) +0 35 +cob=(3) +cfi=(169) +cfn=(740) +calls=4 34 +0 1548 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1874 +0 9 +0 30 + +fn=(900) +0 14 +cfn=(792) +calls=1 0 +0 251 +0 7 +cob=(3) +cfi=(172) +cfn=(836) +calls=1 33 +0 11 +0 1 +0 31 + +fn=(666) +0 106 + +fn=(816) +0 37 +cfn=(817) 0x0000000000249060'2 +calls=3 0 +0 48 +0 27 +cfn=(817) +calls=1 0 +0 4 +0 11 + +fn=(817) +0 26 +cfn=(817) +calls=2 0 +0 8 +0 26 + +fn=(754) +0 25 +cob=(3) +cfi=(169) +cfn=(740) +calls=5 34 +0 1935 +0 5 +0 20 + +fn=(762) +0 4 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 391 +0 1 +0 7 + +fn=(768) +0 4 +cob=(3) +cfi=(169) +cfn=(740) +calls=1 34 +0 383 +0 1 +0 6 + +fn=(792) +0 56 +cob=(3) +cfi=(150) +cfn=(494) +calls=7 3366 +0 1821 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1844 +0 12 +0 32 + +fn=(824) +0 14 +cfn=(792) +calls=1 0 +0 251 +0 7 +cob=(1) +cfi=(125) +cfn=(378) +calls=1 67 +0 1430 +0 5 +0 31 + +ob=(16) +fl=(203) +fn=(1502) +0 12 + +ob=(9) +fl=(167) +fn=(708) +0 12 + +ob=(18) +fl=(205) +fn=(1522) +0 11 + +ob=(5) +fl=(281) +fn=(2566) +25 12 ++3 12 ++1 12 +-3 12 ++4 24 ++2 36 ++3 36 ++17 36 ++2 12 ++1 12 + +fn=(2570) +62 12 ++3 12 +-2 12 ++2 12 ++3 36 ++23 24 ++1 12 + +fl=(156) +fn=(512) +356 6 +40 18 ++1 18 ++5 12 ++8 6 ++3 6 +-6 6 ++6 24 ++2 6 +358 12 +63 2 ++6 4 ++4 3 ++3 3 + +fl=(222) /build/glibc-t7JzpG/glibc-2.30/nptl/cleanup_compat.c +fn=(1724) _pthread_cleanup_pop +40 2 ++3 4 ++4 4 ++2 2 + +fn=(1684) _pthread_cleanup_push +26 2 ++3 2 ++1 2 ++1 4 ++2 2 ++1 2 + +fl=(168) +fn=(724) +26 4 ++2 12 ++2 4 ++2 8 +-2 6 ++2 20 +-4 24 ++6 12 ++4 12 ++6 4 +-3 4 ++3 4 + +fl=(221) +fn=(1682) __pthread_once_slow +68 1 +fi=(223) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/futex-internal.h +-15 2 +fe=(221) ++15 8 ++8 1 ++4 2 ++52 9 +-44 2 ++4 2 ++9 2 ++13 5 +cfi=(222) +cfn=(1684) +calls=1 -88 +* 7 ++2 1 +cob=(14) +cfi=(199) +cfn=(1686) +calls=1 0 +* 98013 ++2 3 +cfi=(222) +cfn=(1724) +calls=1 -78 +* 6 +fi=(223) +235 5 +fe=(221) +124 1 +fi=(223) +235 3 +fe=(221) + +fn=(1683) __pthread_once_slow'2 +68 1 +fi=(223) +-15 2 +fe=(221) ++15 8 ++8 1 ++4 2 ++52 9 +-44 2 ++4 2 ++9 2 ++13 5 +cfi=(222) +cfn=(1684) +calls=1 -88 +* 7 ++2 1 +cob=(14) +cfi=(199) +cfn=(1712) +calls=1 0 +* 3266 ++2 3 +cfi=(222) +cfn=(1724) +calls=1 -78 +* 6 +fi=(223) +235 5 +fe=(221) +124 1 +fi=(223) +235 3 +fe=(221) + +fn=(1680) +136 113 ++3 113 ++1 226 ++4 224 +-1 1 +cfn=(1682) +calls=1 -75 +* 98073 + +fn=(1681) +136 14 ++3 14 ++1 28 ++4 26 +-1 1 +cfn=(1683) +calls=1 -75 +* 3326 + +fl=(289) +fn=(2716) +25 3 ++1 18 ++1 3 + +fl=(132) /build/glibc-t7JzpG/glibc-2.30/nptl/pthread_mutex_conf.c +fn=(404) __pthread_tunables_init +42 2 ++1 2 +-1 3 ++1 2 +cob=(2) +cfi=(18) +cfn=(406) +calls=1 -43 +* 1640 ++2 5 + +fl=(191) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/pthread_getaffinity.c +fn=(1114) pthread_getaffinity_np@@GLIBC_2.3.4 +31 2 ++4 6 ++2 2 ++4 1 +-10 1 ++10 5 +cob=(2) +cfi=(18) +cfn=(1116) +calls=1 -41 +* 1449 ++2 1 ++1 2 + +fl=(190) /build/glibc-t7JzpG/glibc-2.30/nptl/pthread_self.c +fn=(1106) pthread_self@GLIBC_2.2.5 +24 1 ++1 1 ++1 1 + +fl=(324) +fn=(3838) +25 5 ++1 35 ++1 5 + +fl=(122) +fn=(366) +262 7 ++2 1 +fi=(123) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/pthread-pids.h +29 1 +fe=(122) +262 4 +fi=(123) +29 3 +fe=(122) +266 2 ++1 1 ++5 1 ++8 1 +-4 1 ++4 1 +-8 3 ++8 1 ++10 3 ++4 1 +-1 1 +fi=(449) /build/glibc-t7JzpG/glibc-2.30/nptl/../include/list.h +46 1 +-2 1 ++4 1 +fe=(122) +298 2 ++4 3 ++8 3 +-1 18 ++1 1 +-2 1 ++2 1 +-2 1 ++2 1 +cfi=(124) /build/glibc-t7JzpG/glibc-2.30/nptl/../sysdeps/unix/sysv/linux/sigaction.c +cfn=(370) __libc_sigaction +calls=1 43 +* 51 ++7 3 +-2 1 ++1 1 +-1 1 ++2 1 +cfi=(124) +cfn=(370) +calls=1 43 +* 51 ++14 3 +-4 1 ++4 1 +-4 1 ++4 2 ++8 3 +cob=(2) +cfi=(18) +cfn=(372) +calls=1 0 +* 1737 ++3 4 ++2 1 ++2 2 ++5 2 +-5 4 ++5 1 +cob=(2) +cfi=(18) +cfn=(386) +calls=1 0 +* 1560 +* 3 ++1 3 ++4 4 ++7 2 ++1 3 ++5 6 ++1 1 +-1 1 ++1 3 ++1 1 ++1 1 +-1 1 ++2 4 ++5 2 ++2 1 +-2 1 ++3 1 ++2 1 +-5 1 ++4 3 ++3 1 ++3 1 +-3 1 ++3 2 ++8 1 +-8 1 ++8 2 +-8 2 ++8 1 +cob=(2) +cfi=(18) +cfn=(392) +calls=1 0 +* 2170 ++4 1 +-6 1 ++9 1 +cfi=(132) +cfn=(404) +calls=1 42 +* 1654 ++2 8 + +fl=(154) +fn=(504) +64 6 ++3 18 ++2 6 ++2 12 +-7 12 ++11 12 ++2 15 ++3 20 ++1 15 ++75 6 ++3 6 ++2 6 ++3 6 ++2 6 ++1 18 +-83 2 ++11 4 ++4 1 ++3 2 ++13 2 ++2 3 ++1 2 + +fl=(124) +fn=(370) +43 12 ++5 4 ++2 2 ++1 2 ++7 2 +-7 8 +-1 2 ++3 2 +-2 10 ++7 2 +-5 2 ++5 2 +-7 2 ++2 2 +-2 2 ++2 6 ++5 4 +-7 8 ++7 12 ++4 4 ++8 12 + +fl=(195) /build/glibc-t7JzpG/glibc-2.30/nptl/pthread_attr_init.c +fn=(1194) pthread_attr_init@@GLIBC_2.2.5 +33 2 ++9 1 +-9 1 ++9 4 ++5 1 +cob=(2) +cfi=(18) +cfn=(1196) +calls=1 -47 +* 1472 +* 2 ++3 3 + +fl=(134) +fn=(418) +105 2 ++5 1 +-5 1 ++5 1 +-5 3 ++5 3 +cob=(2) +cfi=(18) +cfn=(406) +calls=1 0 +* 21 ++2 4 +cob=(2) +cfi=(18) +cfn=(406) +calls=1 0 +* 21 ++2 4 +cob=(2) +cfi=(18) +cfn=(406) +calls=1 0 +* 21 ++2 4 +cob=(2) +cfi=(18) +cfn=(406) +calls=1 0 +* 21 ++2 4 +cob=(2) +cfi=(18) +cfn=(406) +calls=1 0 +* 21 ++4 3 ++1 1 ++1 6 + +fl=(133) +fn=(412) +0 12 + +ob=(13) +fl=(198) +fn=(1288) +0 12 + +ob=(20) +fl=(207) +fn=(1542) +0 11 + +ob=(25) +fl=(212) +fn=(1592) +0 11 + +totals: 22494912406 diff --git a/src/geofaultnetworks/results/rock/plot.tex b/src/geofaultnetworks/results/rock/plot.tex new file mode 100644 index 0000000..3053ad8 --- /dev/null +++ b/src/geofaultnetworks/results/rock/plot.tex @@ -0,0 +1,25 @@ +\documentclass[a4paper]{article} + +\usepackage{tikz} + + +\begin{document} + \def\scale{6} + \begin{minipage}[t]{0.45\linewidth} + \flushleft + \input{levelinterfacenetwork_0.tikz}\\ + \vspace{2em} + \input{levelinterfacenetwork_1.tikz}\\ + \vspace{2em} + \input{levelinterfacenetwork_2.tikz}\\ + \vfill + \end{minipage} + \hspace{3em} + \begin{minipage}[t]{0.45\linewidth} + \flushright + \input{levelinterfacenetwork_3.tikz}\\ + \vspace{2em} + \input{levelinterfacenetwork_4.tikz} + \vfill + \end{minipage} +\end{document} \ No newline at end of file diff --git a/src/geofaultnetworks/rockfaultnetwork.cc b/src/geofaultnetworks/rockfaultnetwork.cc new file mode 100644 index 0000000..cf0c2c3 --- /dev/null +++ b/src/geofaultnetworks/rockfaultnetwork.cc @@ -0,0 +1,376 @@ +#include <config.h> + +#include <cmath> +#include <iostream> +#include <sstream> +#include <fstream> +#include <string> + +/* +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-parameter" +#include <dune/grid/uggrid/ugwrapper.hh> +#pragma GCC diagnostic pop +*/ + +// dune-common includes +#include <dune/common/fvector.hh> +#include <dune/common/fmatrix.hh> +#include <dune/common/shared_ptr.hh> +#include <dune/common/parametertree.hh> +#include <dune/common/parametertreeparser.hh> +#include <dune/common/timer.hh> + +// dune-istl includes +#include <dune/istl/matrix.hh> +#include <dune/istl/bcrsmatrix.hh> + +// dune-fufem includes +#include <dune/fufem/assemblers/localassemblers/l2functionalassembler.hh> + +// dune-grid includes +#include <dune/grid/uggrid.hh> +#include <dune/grid/io/file/vtk/vtkwriter.hh> + +// dune-solver includes +#include <dune/solvers/norms/energynorm.hh> +#include <dune/solvers/norms/twonorm.hh> + +// dune-faultnetworks includes +#include <dune/faultnetworks/utils/debugutils.hh> +#include <dune/faultnetworks/utils/matrixreader.hh> +#include <dune/faultnetworks/utils/vectorreader.hh> +#include <dune/faultnetworks/utils/levelinterfacenetworkwriter.hh> + +#include <dune/faultnetworks/preconditioners/multilevelpatchpreconditioner.hh> +#include <dune/faultnetworks/solvers/osccgsolver.hh> + +#include <dune/faultnetworks/assemblers/intersectionjumpmassassembler.hh> +#include <dune/faultnetworks/assemblers/osclocalassembler.hh> + +#include <dune/faultnetworks/oscrhs.hh> +#include <dune/faultnetworks/oscdata.hh> +#include <dune/faultnetworks/oscdatahierarchy.hh> + +#include <dune/faultnetworks/faultp1nodalbasis.hh> +#include <dune/faultnetworks/interfacenetwork.hh> +#include <dune/faultnetworks/levelinterfacenetwork.hh> +#include <dune/faultnetworks/levelinterfacenetworkproblem.hh> +#include <dune/faultnetworks/dgmgtransfer.hh> + +#include <dune/faultnetworks/faultfactories/rockfaultfactory.hh> + +#include <dune/solvers/solvers/loopsolver.hh> + +int main(int argc, char** argv) { try +{ + MPIHelper::instance(argc, argv); + + const int dim = 2; + //typedef double ctype; + + + typedef typename Dune::FieldVector<double, dim> WorldVectorType; + typedef typename Dune::BlockVector<Dune::FieldVector<double,1>> VectorType; + typedef typename Dune::BitSetVector<1> BitVector; + typedef typename Dune::BCRSMatrix<Dune::FieldMatrix<double, 1, 1>> MatrixType; + + + #if HAVE_UG + typedef typename Dune::UGGrid<dim> GridType; + #else + #error No UG! + #endif + + typedef typename GridType::LevelGridView GV; + typedef FaultP1NodalBasis<GV, double> DGBasis; + typedef typename DGBasis::LocalFiniteElement DGFE; + + typedef OscLocalAssembler<GridType, DGFE, DGFE> LocalOscAssembler; + typedef IntersectionJumpMassAssembler<GV, DGFE, DGFE> LocalInterfaceAssembler; + + // parse parameter file + ParameterTree parameterSet; + if (argc==2) + ParameterTreeParser::readINITree(argv[1], parameterSet); + else + ParameterTreeParser::readINITree("rockfaultnetwork.parset", parameterSet); + + const std::string path = parameterSet.get<std::string>("path"); + const std::string resultPath = parameterSet.get<std::string>("resultPath"); + + int problemCount = 0; + while (parameterSet.hasSub("problem" + std::to_string(problemCount))) { + + ParameterTree& problemParameters = parameterSet.sub("problem" + std::to_string(problemCount)); + + const std::string oscDataFile = problemParameters.get<std::string>("oscDataFile"); + + const int coarseResolution = problemParameters.get<int>("coarseResolution"); + const int fineResolution = problemParameters.get<int>("fineResolution"); + const int exactResolution = problemParameters.get<int>("exactResolution"); + + const double c = problemParameters.get<double>("penaltyFactor"); + + const int maxIterations = problemParameters.get<int>("maxIterations"); + const double solverTolerance = problemParameters.get<double>("tol"); + const bool nestedIteration = problemParameters.get<bool>("nestedIteration"); + + const int fineGridN = std::pow(2, fineResolution); + + std::ofstream out(resultPath + oscDataFile + "_" + std::to_string(coarseResolution) + "_" + std::to_string(fineResolution) + "_" + std::to_string(exactResolution) + ".log"); + std::streambuf *coutbuf = std::cout.rdbuf(); //save old buf + std::cout.rdbuf(out.rdbuf()); //redirect std::cout to out.txt + + + std::cout << std::endl; + std::cout << "Parameter file read successfully!" << std::endl; + + typedef Dune::Matrix<Dune::FieldMatrix<double,1,1>, std::allocator<Dune::FieldMatrix<double,1,1>>> OscMatrixType; + OscMatrixType matrix; + + // interface integral jump penalty, B: + OscMatrixType B(2,2); + B[0][0] = 1; + B[1][1] = 1; + B[0][1] = -1; + B[1][0] = -1; + + MatrixReader<OscMatrixType> matrixReader(path + oscDataFile); + matrixReader.read(matrix); + + const int oscGridN = matrix.N(); + const int oscGridLevelIdx = std::max(std::round(std::log2(oscGridN)) - coarseResolution, 0.0); + + if (oscGridN>fineGridN) + DUNE_THROW(Dune::Exception, "Provided oscData too large!"); + + std::cout << "OscData file read successfully!" << std::endl << std::endl; + + const int fineLevelIdx = fineResolution - coarseResolution; + const int exactLevelIdx = exactResolution - coarseResolution; + + // build multilevel fault network + const auto& networkParset = parameterSet.sub("network"); + const unsigned int randomSeed = networkParset.get<unsigned int>("randomSeed"); + const double maxAngle = networkParset.get<double>("maxAngle"); + + std::cout << "Creating interface network..." << std::flush; + + std::srand(randomSeed); + RockFaultFactory<GridType> faultFactory(coarseResolution, exactLevelIdx, maxAngle); + const auto& interfaceNetwork = faultFactory.interfaceNetwork(); + + std::cout << "done!" << std::endl; + + if (problemCount==0) { + std::vector<int> writeLevels(exactLevelIdx+1); // {0, 1, 2}; + for (size_t i=0; i<writeLevels.size(); i++) { + writeLevels[i] = i; + } + + for (size_t i=0; i<writeLevels.size(); i++) { + int writeLevel = writeLevels[i]; + bool writeGrid = false; //coarseResolution+writeLevel<7; + + LevelInterfaceNetworkWriter networkWriter(resultPath + "levelinterfacenetwork_" + std::to_string(writeLevel) + ".tikz"); + networkWriter.write(interfaceNetwork.levelInterfaceNetwork(writeLevel), writeGrid); + } + } + + const GridType& grid = faultFactory.grid(); + + OscData<GridType, OscMatrixType> oscData(grid, oscGridLevelIdx); + oscData.set(matrix); + OscDataHierarchy<GridType, OscMatrixType> oscDataHierarchy(oscData); + + Timer totalTimer; + totalTimer.reset(); + totalTimer.start(); + + + // ---------------------------------------------------------------- + // --- compute initial iterate --- + // ---------------------------------------------------------------- + VectorType coarseSol; + std::shared_ptr<DGBasis> coarseBasis; + + OscRhs<WorldVectorType, Dune::FieldVector<double,1>> f; + L2FunctionalAssembler<GridType, DGFE> l2FunctionalAssembler(f); + + std::cout << std::endl; + std::cout << "Computing initial iterate!" << std::endl; + + if (!nestedIteration) { + const LevelInterfaceNetwork<GV>& coarseLevelInterfaceNetwork = interfaceNetwork.levelInterfaceNetwork(0); + LevelInterfaceNetworkProblem<DGBasis, MatrixType, VectorType> coarseGlobalAssembler(coarseLevelInterfaceNetwork); + LocalOscAssembler coarseLocalAssembler(oscDataHierarchy[0]->data(), oscDataHierarchy[0]->mapper()); + + std::vector<std::shared_ptr<LocalInterfaceAssembler>> coarseLocalInterfaceAssemblers(coarseLevelInterfaceNetwork.size()); + for (size_t i=0; i<coarseLocalInterfaceAssemblers.size(); i++) { + const int k = coarseResolution + coarseLevelInterfaceNetwork.getIntersectionsLevels().at(i); + const double pen = (1+1.0/c) * std::pow(1.0+c, k) * std::pow(2.0, k); + coarseLocalInterfaceAssemblers[i] = std::make_shared<LocalInterfaceAssembler>(B, 2, pen); + } + + coarseGlobalAssembler.assemble(coarseLocalAssembler, coarseLocalInterfaceAssemblers, l2FunctionalAssembler); + coarseGlobalAssembler.solve(); + + coarseSol = coarseGlobalAssembler.getSol(); + coarseBasis = coarseGlobalAssembler.basis(); + } else { + //TODO + const LevelInterfaceNetwork<GV>& nLevelInterfaceNetwork = interfaceNetwork.levelInterfaceNetwork(fineLevelIdx-1); + coarseBasis = std::make_shared<DGBasis>(nLevelInterfaceNetwork); + + coarseSol.resize(coarseBasis->size()); + + std::stringstream solFilename; + solFilename << resultPath << "solutions/level_" << std::to_string(fineLevelIdx-1); + + std::ifstream file(solFilename.str().c_str(), std::ios::in|std::ios::binary); + if (not(file)) + DUNE_THROW(SolverError, "Couldn't open file " << solFilename.str() << " for reading"); + + Dune::MatrixVector::Generic::readBinary(file, coarseSol); + + file.close(); + } + + // ---------------------------------------------------------------- + // --- compute exact solution --- + // ---------------------------------------------------------------- + std::cout << std::endl; + std::cout << "Computing exact solution!" << std::endl; + + const LevelInterfaceNetwork<GV>& exactLevelInterfaceNetwork = interfaceNetwork.levelInterfaceNetwork(exactLevelIdx); + LevelInterfaceNetworkProblem<DGBasis, MatrixType, VectorType> exactGlobalAssembler(exactLevelInterfaceNetwork); + LocalOscAssembler exactLocalAssembler(oscDataHierarchy[exactLevelIdx]->data(), oscDataHierarchy[exactLevelIdx]->mapper()); + + std::vector<std::shared_ptr<LocalInterfaceAssembler>> exactLocalInterfaceAssemblers(exactLevelInterfaceNetwork.size()); + for (size_t i=0; i<exactLocalInterfaceAssemblers.size(); i++) { + const int k = coarseResolution + exactLevelInterfaceNetwork.getIntersectionsLevels().at(i); + const double pen = (1+1.0/c) * std::pow(1.0+c, k) * std::pow(2.0, k); + exactLocalInterfaceAssemblers[i] = std::make_shared<LocalInterfaceAssembler>(B, 2, pen); + } + + exactGlobalAssembler.assemble(exactLocalAssembler, exactLocalInterfaceAssemblers, l2FunctionalAssembler); + exactGlobalAssembler.solve(); + + const VectorType& exactSol = exactGlobalAssembler.getSol(); + std::shared_ptr<DGBasis> exactBasis = exactGlobalAssembler.basis(); + + EnergyNorm<MatrixType, VectorType> exactEnergyNorm(exactGlobalAssembler.matrix()); + + // ---------------------------------------------------------------- + // --- set up cg solver --- + // ---------------------------------------------------------------- + std::cout << std::endl; + std::cout << "---------------------------------------------" << std::endl; + std::cout << "Setting up the fine level CG solver:" << std::endl; + std::cout << "---------------------------------------------" << std::endl << std::endl; + + const LevelInterfaceNetwork<GV>& fineLevelInterfaceNetwork = interfaceNetwork.levelInterfaceNetwork(fineLevelIdx); + + LevelInterfaceNetworkProblem<DGBasis, MatrixType, VectorType> fineGlobalAssembler(fineLevelInterfaceNetwork); + LocalOscAssembler fineLocalAssembler(oscDataHierarchy[fineLevelIdx]->data(), oscDataHierarchy[fineLevelIdx]->mapper()); + + std::vector<std::shared_ptr<LocalInterfaceAssembler>> fineLocalInterfaceAssemblers(fineLevelInterfaceNetwork.size()); + for (size_t i=0; i<fineLocalInterfaceAssemblers.size(); i++) { + const int k = coarseResolution + fineLevelInterfaceNetwork.getIntersectionsLevels().at(i); + const double pen = (1+1.0/c) * std::pow(1.0+c, k) * std::pow(2.0, k); + fineLocalInterfaceAssemblers[i] = std::make_shared<LocalInterfaceAssembler>(B, 2, pen); + } + + fineGlobalAssembler.assemble(fineLocalAssembler, fineLocalInterfaceAssemblers, l2FunctionalAssembler); + fineGlobalAssembler.solve(); + + const VectorType& fineSol = fineGlobalAssembler.getSol(); + const VectorType& fineRhs = fineGlobalAssembler.rhs(); + std::shared_ptr<DGBasis> fineBasis = fineGlobalAssembler.basis(); + + EnergyNorm<MatrixType, VectorType> fineEnergyNorm(fineGlobalAssembler.matrix()); + + std::cout << "Setting up the preconditioner!" << std::endl; + + BitVector activeLevels(fineLevelIdx+1, true); + + std::vector<std::shared_ptr<LocalOscAssembler>> localAssemblers; + std::vector<std::vector<std::shared_ptr<LocalInterfaceAssembler>>> localIntersectionAssemblers; + + localAssemblers.resize(activeLevels.size()); + localIntersectionAssemblers.resize(activeLevels.size()); + + for (size_t i=0; i<activeLevels.size(); i++) { + localAssemblers[i] = std::make_shared<LocalOscAssembler>(oscDataHierarchy[i]->data(), oscDataHierarchy[i]->mapper()); + + const LevelInterfaceNetwork<GV>& levelInterfaceNetwork = interfaceNetwork.levelInterfaceNetwork(i); + std::vector<std::shared_ptr<LocalInterfaceAssembler>>& levelLocalIntersectionAssemblers = localIntersectionAssemblers[i]; + levelLocalIntersectionAssemblers.resize(levelInterfaceNetwork.size()); + for (size_t j=0; j<levelLocalIntersectionAssemblers.size(); j++) { + const int k = coarseResolution + levelInterfaceNetwork.getIntersectionsLevels().at(j); + const double pen = (1+1.0/c) * std::pow(1.0+c, k) * std::pow(2.0, k); + levelLocalIntersectionAssemblers[j] = std::make_shared<LocalInterfaceAssembler>(B, 2, pen); + } + } + + const auto& preconditionerParset = parameterSet.sub("preconditioner"); + using MultilevelPatchPreconditioner = MultilevelPatchPreconditioner<DGBasis, LocalOscAssembler, LocalInterfaceAssembler, MatrixType, VectorType>; + + MultilevelPatchPreconditioner preconditioner(interfaceNetwork, activeLevels, localAssemblers, localIntersectionAssemblers, preconditionerParset); + /*for (size_t i=0; i<preconditioner.size()-1; i++) { + auto& levelFaultPreconditioner = *preconditioner.levelPatchPreconditioner(i); + + levelFaultPreconditioner.setPatchDepth(patchDepth); + levelFaultPreconditioner.setBoundaryMode(LevelPatchPreconditioner::BoundaryMode::homogeneous); + }*/ + preconditioner.build(); + + std::cout << "Setup complete, starting preconditioned cg iteration!" << std::endl; + std::cout << std::endl << std::endl; + + // set initial iterate + VectorType initialX; + DGMGTransfer<DGBasis> coarseFineTransfer(*coarseBasis, *fineBasis); + coarseFineTransfer.prolong(coarseSol, initialX); + + VectorType rhs(fineRhs); + + DGMGTransfer<DGBasis> discMGTransfer(*fineBasis, *exactBasis); + + // solve + OscCGSolver<MatrixType, VectorType, DGBasis> + solver(*fineBasis, &fineGlobalAssembler.matrix(), &initialX, &rhs, &preconditioner, + maxIterations, solverTolerance, &exactEnergyNorm, + Solver::FULL, &exactSol, &fineSol, discMGTransfer, 1.0, true); //((oscGridN+0.0)/fineGridN) + + /*VectorType x = initialX; + preconditioner.setProblem(fineGlobalAssembler.matrix(), x, rhs); + + Dune::Solvers::LoopSolver<VectorType> + solver (preconditioner, maxIterations, solverTolerance, + fineEnergyNorm, + Solver::FULL, + true, &fineSol); */ + + + //solver.historyBuffer_ = resultPath + "solutions/level_" + std::to_string(fineCantorLevel) + ".vec"; + + solver.check(); + solver.preprocess(); + solver.solve(); + + std::cout << std::endl; + std::cout << "Total time: " << totalTimer.elapsed() << " seconds." << std::endl; + + std::cout.rdbuf(coutbuf); //reset to standard output again + + std::cout << "Problem " << problemCount << " done!" << std::endl; + problemCount++; + } +} catch (Dune::Exception e) { + + std::cout << e << std::endl; + +} +} diff --git a/src/geofaultnetworks/rockfaultnetwork.parset b/src/geofaultnetworks/rockfaultnetwork.parset new file mode 100644 index 0000000..a977724 --- /dev/null +++ b/src/geofaultnetworks/rockfaultnetwork.parset @@ -0,0 +1,31 @@ +path = ../data/ +resultPath = ../geofaultnetworks/results/rock/ + +[network] +randomSeed = 5 +maxAngle = 2.0 + +[preconditioner] +patch = SUPPORT # CELL , SUPPORT +mode = ADDITIVE # ADDITIVE , MULTIPLICATIVE +multDirection = SYMMETRIC # SYMMETRIC , FORWARD , BACKWARD +patchDepth = 1 + +########################################### + +[problem0] +oscDataFile = oscDataLaplace4.mat + +# level resolution in 2^(-...) +coarseResolution = 5 +fineResolution = 8 +exactResolution = 9 + +penaltyFactor = 1 + +# cg solver +nestedIteration = 0 +tol = 1e-12 +maxIterations = 8 + +########################################### -- GitLab