青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

微塵--KeepMoving

為了忘卻的記憶
posts - 3, comments - 2, trackbacks - 0, articles - 13
  C++博客 :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

原文來(lái)自 CodeGuru

http://www.codeguru.com/cpp/w-p/win32/tutorials/article.php/c9535/ 

Learn how heap management is done in a debug build
Rating:

Marius Bancila (view profile)
April 4, 2005

Environment:  Visual C++ 6.0

 

When you compile a debug build of your program with Visual Studio and run it in debugger, you can see that the memory allocated or deallocated has funny values, such as 0xCDCDCDCD or 0xDDDDDDDD. This is the result of the work Microsoft has put in to detect memory corruption and leaks in the Win32 platform. In this article, I will explain how memory allocation/deallocation is done via new/delete or malloc/free.


 

First, I will explain what all these values that you see, like CD, DD, and so forth, mean.

Value Name Description
0xCD Clean Memory Allocated memory via malloc or new but never written by the application.
0xDD Dead Memory Memory that has been released with delete or free. It is used to detect writing through dangling pointers.
0xFD Fence Memory Also known as "no mans land." This is used to wrap the allocated memory (like surrounding it with fences) and is used to detect indexing arrays out of bounds.
0xAB (Allocated Block?) Memory allocated by LocalAlloc().
0xBAADF00D Bad Food Memory allocated by LocalAlloc() with LMEM_FIXED, but not yet written to.
0xCC   When the code is compiled with the /GZ option, uninitialized variables are automatically assigned to this value (at byte level).

If you take a look at DBGHEAP.C, you can see how some of these values are defined:

static unsigned char _bNoMansLandFill = 0xFD;   /* fill no-man's land with this */static unsigned char _bDeadLandFill   = 0xDD;   /* fill free objects with this */static unsigned char _bCleanLandFill  = 0xCD;   /* fill new objects with this */

Before going any further, take a look at the memory management function that I will refer in this article.

Function Description
malloc C/C++ function that allocates a block of memory from the heap. The implementation of the C++ operator new is based on malloc.
_malloc_dbg Debug version of malloc; only available in the debug versions of the run-time libraries. _malloc_dbg is a debug version of the malloc function. When _DEBUG is not defined, each call to _malloc_dbg is reduced to a call to malloc. Both malloc and _malloc_dbg allocate a block of memory in the base heap, but _malloc_dbg offers several debugging features: buffers on either side of the user portion of the block to test for leaks, a block type parameter to track specific allocation types, and filename/linenumber information to determine the origin of allocation requests.
free C/C++ function that frees an allocated block. The implementation of C++ operator delete is based on free.
_free_dbg Debug version of free; only available in the debug versions of the run-time libraries. The _free_dbg function is a debug version of the free function. When _DEBUG is not defined, each call to _free_dbg is reduced to a call to free. Both free and _free_dbg free a memory block in the base heap, but _free_dbg accommodates two debugging features: the ability to keep freed blocks in the heap's linked list to simulate low memory conditions and a block type parameter to free specific allocation types.
LocalAlloc
GlobalAlloc
Win32 API to allocate the specified number of bytes from the heap. Windows memory management does not provide a separate local heap and global heap.
LocalFree
GlobalFree
Win32 API free the specified local memory object and invalidates its handle.
HeapAlloc Win32 API allocates a block of memory from a heap. The allocated memory is not movable.
HeapFree Win32 API frees a memory block allocated from a heap by the HeapAlloc or HeapReAlloc function.

There are many other functions that deal with memory management. For a complete view please refer to MSDN.

Note: Because this article is about memory management in a debug build, all the references to malloc and free in the following are actually references to their debug versions, _malloc_dbg and _free_dbg.

Compile the following code and run it in the debugger, walking step by step into it to see how memory is allocated and deallocated.

int main(int argc, char* argv[]){   char *buffer = new char[12];   delete [] buffer;   return 0;}

Here, 12 bytes are dynamically allocated, but the CRT allocates more than that by wrapping the allocated block with bookkeeping information. For each allocated block, the CRT keeps information in a structure called _CrtMemBlockHeader, which is declared in DBGINT.H:

#define nNoMansLandSize 4
typedef struct _CrtMemBlockHeader
{        
   struct _CrtMemBlockHeader * pBlockHeaderNext;        
   struct _CrtMemBlockHeader * pBlockHeaderPrev;        
   char
* szFileName;
   int
nLine;
   size_t                      nDataSize;        
   int                         nBlockUse;        
   long
lRequest;
   unsigned
char gap[nNoMansLandSize]; /* followed by: * unsigned char data[nDataSize]; * unsigned char anotherGap[nNoMansLandSize]; */
} _CrtMemBlockHeader;

It stores the following information:

Field Description
pBlockHeaderNext A pointer to the next block allocated, but next means the previous allocated block because the list is seen as a stack, with the latest allocated block at the top.
pBlockHeaderPrev A pointer to the previous block allocated; this means the block that was allocated after the current block.
szFileName A pointer to the name of the file in which the call to malloc was made, if known.
nLine The line in the source file indicated by szFileName at which the call to malloc was made, if known.
nDataSize Number of bytes requested
nBlockUse 0 - Freed block, but not released back to the Win32 heap
1 - Normal block (allocated with new/malloc)
2 - CRT blocks, allocated by CRT for its own use
lRequest Counter incremented with each allocation
gap A zone of 4 bytes (in the current implementation) filled with 0xFD, fencing the data block, of nDataSize bytes. Another block filled with 0xFD of the same size follows the data.

Most of the work of heap block allocation and deallocation are made by HeapAlloc() and HeapFree(). When you request 12 bytes to be allocated on the heap, malloc() will call HeapAlloc(), requesting 36 more bytes.

blockSize = sizeof(_CrtMemBlockHeader) + nSize + nNoMansLandSize;

malloc requests space for the 12 bytes we need (nSize), plus 32 bytes for the _CrtMemBlockHeader structure and another nNoMansLandSize bytes (4 bytes) to fence the data zone and close the gap.

But, HeapAlloc() will allocate even more bytes: 8 bytes below the requested block (that is, at a lower address) and 32 above it (that is, at a bigger address). It also initializes the requested block to 0xBAADF00D (bad food).

Then, malloc() fills the _CrtMemBlockHeader block with information and initializes the data block with 0xCD and no mans land with 0xFD.

Here is a table that shows how memory looks after the call to HeapAlloc() and after malloc() returns. For a complete situation, see the last table. (Note: All values are in hex.)

Address after HeapAlloc() after malloc()
00320FD8
00320FDC
00320FE0
00320FE4
00320FE8
00320FEC
00320FF0
00320FF4
00320FF8
00320FFC
00321000
00321004
00321008
0032100C
00321010
00321014
00321018
0032101C
00321020
00321024
00321028
0032102C
09 00 09 01
E8 07 18 00
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
0D F0 AD BA
AB AB AB AB
AB AB AB AB
00 00 00 00
00 00 00 00
79 00 09 00
EE 04 EE 00
40 05 32 00
40 05 32 00
09 00 09 01
E8 07 18 00
98 07 32 00
00 00 00 00
00 00 00 00
00 00 00 00
0C 00 00 00
01 00 00 00
2E 00 00 00
FD FD FD FD
CD CD CD CD
CD CD CD CD
CD CD CD CD
FD FD FD FD
AB AB AB AB
AB AB AB AB
00 00 00 00
00 00 00 00
79 00 09 00
EE 04 EE 00
40 05 32 00
40 05 32 00

Colors:

  • Green: win32 bookkeeping info
  • Blue: block size requested by malloc and filled with bad food
  • Magenta: _CrtMemBlockHeader block
  • Red: no mans land
  • Black: requested data block

In this example, after the call to malloc() returns, buffer will point to memory address 0x00321000.

When you call delete/free, the CRT will set the block it requested from HeapAlloc() to 0xDD, indicating this is a free zone. Normally after this, free() will call HeapFree() to give back the block to the Win32 heap, in which case the block will be overwritten with 0xFEEEEEEE, to indicate Win32 heap free memory.

You can avoid this by using the CRTDBG_DELAY_FREE_MEM_DF flag to _CrtSetDbgFlag(). It prevents memory from actually being freed, as for simulating low-memory conditions. When this bit is on, freed blocks are kept in the debug heap's linked list but are marked as _FREE_BLOCK. This is useful if you want to detect dangling pointers errors, which can be done by verifying if the freed block is written with 0xDD pattern or something else. Use _CrtCheckMemory() to verify the heap.s integrity.

The next table shows how the memory looks during the free(), before HeapFree() is called and afterwards.

Address Before HeapFree() After HeapFree()
00320FD8
00320FDC
00320FE0
00320FE4
00320FE8
00320FEC
00320FF0
00320FF4
00320FF8
00320FFC
00321000
00321004
00321008
0032100C
00321010
00321014
00321018
0032101C
00321020
00321024
00321028
0032102C
09 00 09 01
5E 07 18 00
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
DD DD DD DD
AB AB AB AB
AB AB AB AB
00 00 00 00
00 00 00 00
79 00 09 00
EE 04 EE 00
40 05 32 00
40 05 32 00
82 00 09 01
5E 04 18 00
E0 2B 32 00
78 01 32 00
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE
EE FE EE FE

Colors:

  • Green: win32 bookkeeping info
  • Blue: CRT block filled with dead memory
  • Gray: memory given back to win32 heap

The two tables above are put in a single, more detailed, table below:

Address (hex) Offset HeapAlloc malloc Free before HeapFree Free after HeapFree Description
00320FD8 -40 01090009 01090009 01090009 01090082 Win32 Heap info
00320FDC -36 001807E8 001807E8 0018075E 0018045E Win32 Heap info
00320FE0 -32 BAADF00D 00320798 DDDDDDDD 00322BE0 pBlockHeaderNext
00320FE4 -28 BAADF00D 00000000 DDDDDDDD 00320178 pBlockHeaderPrev
00320FE8 -24 BAADF00D 00000000 DDDDDDDD FEEEEEEE szFileName
00320FEC -20 BAADF00D 00000000 DDDDDDDD FEEEEEEE nLine
00320FF0 -16 BAADF00D 0000000C DDDDDDDD FEEEEEEE nDataSize
00320FF4 -12 BAADF00D 00000001 DDDDDDDD FEEEEEEE nBlockUse
00320FF8 -8 BAADF00D 0000002E DDDDDDDD FEEEEEEE lRequest
00320FFC -4 BAADF00D FDFDFDFD DDDDDDDD FEEEEEEE gap (no mans land)
00321000 0 BAADF00D CDCDCDCD DDDDDDDD FEEEEEEE Data requested
00321004 +4 BAADF00D CDCDCDCD DDDDDDDD FEEEEEEE Data requested
00321008 +8 BAADF00D CDCDCDCD DDDDDDDD FEEEEEEE Data requested
0032100C +12 BAADF00D FDFDFDFD DDDDDDDD FEEEEEEE No mans land
00321010 +16 ABABABAB ABABABAB ABABABAB FEEEEEEE Win32 Heap info
00321014 +20 ABABABAB ABABABAB ABABABAB FEEEEEEE Win32 Heap info
00321018 +24 00000000 00000000 00000000 FEEEEEEE Win32 Heap info
0032101C +28 00000000 00000000 00000000 FEEEEEEE Win32 Heap info
00321020 +32 00090079 00090079 00090079 FEEEEEEE Win32 Heap info
00321024 +36 00EE04EE 00EE04EE 00EE04EE FEEEEEEE Win32 Heap info
00321028 +40 00320540 00320540 00320540 FEEEEEEE Win32 Heap info
0032102C +44 00320540 00320540 00320540 FEEEEEEE Win32 Heap info

About the Author
Marius Bancila is a Microsoft MVP for VC++. He works as a software developer for a major software company in the automotive field. He is mainly focused on building desktop applications with MFC. Other areas of interest are the .NET framework and WinFX - the new API for Windows Vista. He considers that CodeGuru is the best place on internet to spend time on.

Feedback

# re: (轉(zhuǎn))Inside CRT: Debug Heap Manage  回復(fù)  更多評(píng)論   

2008-02-22 20:44 by 微塵
看了這篇文章后,多少明白些Debug下的內(nèi)存分配機(jī)制,印象最深的是終于明白 內(nèi)存泄漏后,有些內(nèi)存值為啥老是 0xCD了, 哈哈, 汗自己!

只有注冊(cè)用戶(hù)登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問(wèn)   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久久精品欧美丰满| 亚洲第一主播视频| 国产亚洲欧美色| 国产精品亚洲综合一区在线观看 | 国内免费精品永久在线视频| 国产精品欧美久久久久无广告| 欧美日韩亚洲高清一区二区| 欧美三级午夜理伦三级中文幕| 欧美亚洲第一区| 国产精品自拍三区| 在线观看av不卡| 亚洲最新合集| 久久99在线观看| 欧美成人免费全部| 夜夜嗨av一区二区三区四季av| 亚洲综合欧美日韩| 久久成人人人人精品欧| 欧美成人激情在线| 国产精品乱码人人做人人爱| 激情欧美丁香| 一区二区免费看| 久久欧美肥婆一二区| 亚洲狠狠丁香婷婷综合久久久| 一区二区高清视频| 久久婷婷亚洲| 国产精品一区二区男女羞羞无遮挡| 精品二区久久| 午夜精品视频一区| 亚洲经典视频在线观看| 午夜老司机精品| 欧美日韩在线不卡| 亚洲国产精品悠悠久久琪琪| 欧美一级一区| 妖精成人www高清在线观看| 久久人91精品久久久久久不卡| 亚洲精品久久久一区二区三区| 国产精品都在这里| 亚洲电影免费观看高清完整版| 亚洲色图自拍| 欧美激情中文不卡| 欧美一区中文字幕| 国产精品日韩欧美一区| 亚洲毛片在线观看.| 久久全球大尺度高清视频| 一区二区三区欧美在线观看| 欧美xx69| 亚洲国产黄色片| 久久只精品国产| 欧美尤物一区| 国产精品一区二区你懂的| 亚洲一区二区免费视频| 亚洲美女网站| 欧美精品久久久久久久久久| 亚洲精华国产欧美| 欧美成人精品一区| 久久综合九色综合网站| 尤物九九久久国产精品的分类| 久久精品国产综合| 欧美一区影院| 一区二区三区自拍| 久久日韩精品| 六月天综合网| 一区二区日韩欧美| 日韩一区二区精品| 欧美日韩中文字幕在线| 一本色道久久精品| 一个色综合导航| 国产精品一区在线观看| 久久国内精品自在自线400部| 亚洲欧美久久久久一区二区三区| 国产精品毛片va一区二区三区 | 亚洲综合精品| 国产三区二区一区久久 | 亚洲精品一区二区在线| 欧美日韩精品系列| 亚洲一区在线免费| 亚洲制服av| 国内久久精品| 亚洲欧洲一区二区在线播放| 欧美日韩综合久久| 久久岛国电影| 欧美xxx成人| 亚洲欧美日韩一区| 欧美在线免费观看| 亚洲精品国精品久久99热| 亚洲精品一二| 国产日韩欧美| 欧美国产欧美亚洲国产日韩mv天天看完整| 免费成人黄色| 午夜国产欧美理论在线播放 | 久久精视频免费在线久久完整在线看| 欧美一区二区视频在线观看| 亚洲欧洲精品一区| 国产精品久久久久aaaa樱花| 久久国产精彩视频| 蜜臀a∨国产成人精品| 亚洲影院在线观看| 欧美伊人久久大香线蕉综合69| 亚洲激情在线| 亚洲欧美国内爽妇网| 在线欧美三区| 99精品免费| 亚洲风情在线资源站| 亚洲一区欧美| 亚洲精品中文在线| 欧美在线一二三区| 亚洲午夜精品福利| 免费不卡在线视频| 久久精品国产999大香线蕉| 欧美激情中文字幕一区二区| 久久久久久97三级| 国产精品老牛| 亚洲美女视频网| 亚洲国产视频直播| 午夜免费日韩视频| 亚洲欧美日韩国产综合| 欧美丰满少妇xxxbbb| 另类av导航| 国产一区二区按摩在线观看| 一区二区三区视频在线看| 亚洲日本免费电影| 久久影院午夜片一区| 久久精品女人| 国产日韩欧美在线一区| 亚洲桃花岛网站| 亚洲一区二区三区国产| 欧美久久视频| 亚洲精品黄色| 日韩一级免费| 欧美欧美在线| 最新亚洲激情| 一区二区三区国产精品| 欧美国产视频在线观看| 免费观看成人www动漫视频| 国产一区二区三区在线播放免费观看| 亚洲一区二区视频| 亚洲欧美激情一区| 国产精品成人av性教育| 亚洲精品资源美女情侣酒店| 亚洲美女淫视频| 欧美精品在线免费播放| 亚洲精品在线看| 亚洲一区二区三区高清不卡| 国产精品国产三级国产专区53| 日韩网站在线看片你懂的| 中文精品一区二区三区| 国产精品久久久久久五月尺| 午夜精品久久久久99热蜜桃导演| 久久国产精品黑丝| 黄色成人小视频| 欧美1级日本1级| 99re6热在线精品视频播放速度| 亚洲午夜精品福利| 国产欧美日韩亚洲精品| 久久久五月婷婷| 亚洲精品乱码久久久久久蜜桃麻豆| 中国女人久久久| 国产日韩欧美亚洲一区| 亚洲综合色自拍一区| 久久av红桃一区二区小说| 久久久久国产精品人| 在线成人国产| 欧美人与禽猛交乱配视频| 亚洲午夜精品一区二区| 久久久久久久网| 亚洲看片免费| 国产伦精品一区二区三区四区免费 | 亚洲人体影院| 亚洲在线一区| 激情小说另类小说亚洲欧美 | 亚洲欧美www| 老司机午夜精品视频| 99这里有精品| 国产综合第一页| 欧美日韩亚洲系列| 久久久www成人免费无遮挡大片| 亚洲国产精品高清久久久| 亚洲欧美日韩国产成人精品影院| 好看的日韩视频| 欧美午夜精品久久久久久久| 久久久久www| 亚洲午夜激情网站| 欧美激情亚洲自拍| 久久国产精品久久久久久久久久| 亚洲黄色一区| 国产一区二区三区精品欧美日韩一区二区三区 | 日韩一级大片在线| 国内成人自拍视频| 国产精品久久综合| 欧美日本国产视频| 久久亚洲一区二区三区四区| 亚洲综合精品| 一级日韩一区在线观看| 亚洲成人自拍视频| 亚洲影院污污.| 男女精品网站| 久久久xxx| 亚洲欧美日韩精品久久奇米色影视| 亚洲国产一区二区三区在线播| 国产一级揄自揄精品视频|