├── HeapDiff
├── HeapDiff.sln
├── HeapDiff
│ ├── HeapDiff.vcxproj
│ ├── HeapDiff.vcxproj.filters
│ └── Source.cpp
└── Pintool
│ └── MemHeapTool.cpp
├── LICENSE
└── README.md
/HeapDiff/HeapDiff.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 14
4 | VisualStudioVersion = 14.0.24720.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HeapDiff", "HeapDiff\HeapDiff.vcxproj", "{45DE9DF6-7278-412E-AB5F-05A58BB95A0C}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|x64 = Debug|x64
11 | Debug|x86 = Debug|x86
12 | Release|x64 = Release|x64
13 | Release|x86 = Release|x86
14 | EndGlobalSection
15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Debug|x64.ActiveCfg = Debug|x64
17 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Debug|x64.Build.0 = Debug|x64
18 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Debug|x86.ActiveCfg = Debug|Win32
19 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Debug|x86.Build.0 = Debug|Win32
20 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Release|x64.ActiveCfg = Release|x64
21 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Release|x64.Build.0 = Release|x64
22 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Release|x86.ActiveCfg = Release|Win32
23 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}.Release|x86.Build.0 = Release|Win32
24 | EndGlobalSection
25 | GlobalSection(SolutionProperties) = preSolution
26 | HideSolutionNode = FALSE
27 | EndGlobalSection
28 | EndGlobal
29 |
--------------------------------------------------------------------------------
/HeapDiff/HeapDiff/HeapDiff.vcxproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | Win32
7 |
8 |
9 | Release
10 | Win32
11 |
12 |
13 | Debug
14 | x64
15 |
16 |
17 | Release
18 | x64
19 |
20 |
21 |
22 | {45DE9DF6-7278-412E-AB5F-05A58BB95A0C}
23 | Win32Proj
24 | HeapDiff
25 | 8.1
26 |
27 |
28 |
29 | Application
30 | true
31 | v140
32 | Unicode
33 |
34 |
35 | Application
36 | false
37 | v140
38 | true
39 | Unicode
40 |
41 |
42 | Application
43 | true
44 | v140
45 | Unicode
46 |
47 |
48 | Application
49 | false
50 | v140
51 | true
52 | Unicode
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | true
74 |
75 |
76 | true
77 |
78 |
79 | false
80 |
81 |
82 | false
83 |
84 |
85 |
86 |
87 |
88 | Level3
89 | Disabled
90 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
91 | true
92 |
93 |
94 | Console
95 | true
96 |
97 |
98 |
99 |
100 |
101 |
102 | Level3
103 | Disabled
104 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions)
105 | true
106 |
107 |
108 | Console
109 | true
110 |
111 |
112 |
113 |
114 | Level3
115 |
116 |
117 | MaxSpeed
118 | true
119 | true
120 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
121 | true
122 |
123 |
124 | Console
125 | true
126 | true
127 | true
128 |
129 |
130 |
131 |
132 | Level3
133 |
134 |
135 | MaxSpeed
136 | true
137 | true
138 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
139 | true
140 |
141 |
142 | Console
143 | true
144 | true
145 | true
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
--------------------------------------------------------------------------------
/HeapDiff/HeapDiff/HeapDiff.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
7 |
8 |
9 | {93995380-89BD-4b04-88EB-625FBE52EBFB}
10 | h;hh;hpp;hxx;hm;inl;inc;xsd
11 |
12 |
13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
15 |
16 |
17 |
18 |
19 | Source Files
20 |
21 |
22 |
--------------------------------------------------------------------------------
/HeapDiff/HeapDiff/Source.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include