- Timestamp:
- Aug 5, 2010, 2:31:09 PM (15 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- d9f51c
- Parents:
- 007839
- git-author:
- Tillmann Crueger <crueger@…> (08/05/10 12:35:29)
- git-committer:
- Tillmann Crueger <crueger@…> (08/05/10 14:31:09)
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Helpers/MemDebug.cpp
r007839 r097902 72 72 // all allocated memory blocks 73 73 struct entry_t { 74 typedef unsigned int checksum_t; 74 75 // we seperate the tracking info from the rest 75 76 // A checksum will be calculated for this part of … … 90 91 } info; 91 92 bool isIgnored; 92 ch archecksum;93 checksum_t checksum; 93 94 entry_t *prev; 94 95 entry_t *next; … … 117 118 // calculates a simple checksum for the info block 118 119 // the checksum is used to find memory corruptions 119 inline charcalcChecksum(entry_t::info_t *info){120 inline entry_t::checksum_t calcChecksum(entry_t::info_t *info){ 120 121 char *buffer = (char*)info; 121 charchecksum =0;122 entry_t::checksum_t checksum =0; 122 123 for(size_t i=0;i<sizeof(entry_t::info_t);i++){ 123 124 checksum+=buffer[i]; … … 154 155 cout << "Chunk reserved at: " << pos->info.file << ":" << pos->info.line << endl; 155 156 #endif 157 } 158 } 159 160 void dumpMemory(std::ostream &ost){ 161 ost << "Maximum allocated Memory: " << max << " bytes" << endl; 162 ost << "Maximum allocated Memory: " << max << " bytes" << endl; 163 ost << "Currently allocated Memory: " << state <<" bytes" << endl; 164 ost << allocs << " allocated chunks total" << endl; 165 bool corrupted=false; 166 for(entry_t *pos=begin;pos;pos=pos->next){ 167 ost << "\nChunk of " << pos->info.nbytes << " bytes" << " still available" << endl; 168 # ifdef __GNUC__ 169 ost << "Chunk reserved at: " << pos->info.function 170 << " (" << pos->info.file << ":" << pos->info.line << ")" << endl; 171 # else 172 ost << "Chunk reserved at: " << pos->info.file << ":" << pos->info.line << endl; 173 # endif 174 ost << "Chunk address: " << pos->info.location << endl; 175 entry_t::checksum_t checksum = calcChecksum(&pos->info); 176 ost << "Checksum of chunk: " << checksum << endl; 177 ost << "Checksum at allocation time: " << pos->checksum << endl; 178 if(checksum!=pos->checksum){ 179 ost << "!!!Chunk was corrupted!!!" << endl; 180 corrupted=true; 181 } 182 } 183 if(corrupted){ 184 ost << "\n!!!Memory corruption detected!!!" << endl; 156 185 } 157 186 } -
src/Helpers/MemDebug.hpp
r007839 r097902 61 61 */ 62 62 void getState(); 63 void dumpMemory(std::ostream&); 63 64 64 65 void _ignore(void*); … … 105 106 inline void getState(){} 106 107 108 inline void dumpMemory(std::ostream&){}; 109 107 110 template <typename T> 108 111 inline T *ignore(T* ptr){ -
src/builder.cpp
r007839 r097902 110 110 } 111 111 112 void dumpMemory(){ 113 ofstream ost("molecuilder.memdump"); 114 Memory::dumpMemory(ost); 115 } 116 112 117 int main(int argc, char **argv) 113 118 { 114 119 // while we are non interactive, we want to abort from asserts 115 //ASSERT_DO(Assert::Abort); 120 ASSERT_DO(Assert::Abort); 121 ASSERT_HOOK(dumpMemory); 116 122 string line; 117 123 char **Arguments = NULL; … … 145 151 // handle remaining arguments by CommandLineParser 146 152 if (argc>1) { 147 // In the interactive mode, we can leave the user the choice in case of error148 ASSERT_DO(Assert::Abort);149 153 MapOfActions::getInstance().AddOptionsToParser(); 150 154 map <std::string, std::string> ShortFormToActionMap = MapOfActions::getInstance().getShortFormToActionMap();
Note:
See TracChangeset
for help on using the changeset viewer.