Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/MemDebug.cpp

    rf0f1cc r097902  
    7272  // all allocated memory blocks
    7373  struct entry_t {
     74    typedef unsigned int checksum_t;
    7475    // we seperate the tracking info from the rest
    7576    // A checksum will be calculated for this part of
     
    9091    } info;
    9192    bool isIgnored;
    92     char checksum;
     93    checksum_t checksum;
    9394    entry_t *prev;
    9495    entry_t *next;
     
    117118  // calculates a simple checksum for the info block
    118119  // the checksum is used to find memory corruptions
    119   inline char calcChecksum(entry_t::info_t *info){
     120  inline entry_t::checksum_t calcChecksum(entry_t::info_t *info){
    120121    char *buffer = (char*)info;
    121     char checksum =0;
     122    entry_t::checksum_t checksum =0;
    122123    for(size_t i=0;i<sizeof(entry_t::info_t);i++){
    123124      checksum+=buffer[i];
     
    154155      cout << "Chunk reserved at: " << pos->info.file << ":" << pos->info.line << endl;
    155156#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;
    156185    }
    157186  }
Note: See TracChangeset for help on using the changeset viewer.