1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2010 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* http://www.opensource.org/licenses/cpl1.0.txt *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#if defined(_UWIN) && defined(_BLD_ast)
void _STUB_vmtrace(){}
#else
#include "vmhdr.h"
/* Turn on tracing for regions
**
** Written by Kiem-Phong Vo, kpv@research.att.com, 01/16/94.
*/
static int Trfile = -1;
static char Trbuf[128];
#if __STD_C
static char* trstrcpy(char* to, const char* from, int endc)
#else
static char* trstrcpy(to, from, endc)
char* to;
const char* from;
int endc;
#endif
{ reg int n;
n = strlen(from);
memcpy(to,from,n);
to += n;
if((*to = endc) )
to += 1;
return to;
}
/* convert a long value to an ascii representation */
#if __STD_C
static char* tritoa(Vmulong_t v, int type)
#else
static char* tritoa(v, type)
Vmulong_t v; /* value to convert */
int type; /* =0 base-16, >0: unsigned base-10, <0: signed base-10 */
#endif
{
char* s;
s = &Trbuf[sizeof(Trbuf) - 1];
*s-- = '\0';
if(type == 0) /* base-16 */
{ reg char* digit = "0123456789abcdef";
do
{ *s-- = digit[v&0xf];
v >>= 4;
} while(v);
}
else if(type > 0) /* unsigned base-10 */
{ do
{ *s-- = (char)('0' + (v%10));
v /= 10;
} while(v);
}
else /* signed base-10 */
{ int sign = ((long)v < 0);
if(sign)
v = (Vmulong_t)(-((long)v));
do
{ *s-- = (char)('0' + (v%10));
v /= 10;
} while(v);
if(sign)
*s-- = '-';
}
return s+1;
}
/* generate a trace of some call */
#if __STD_C
static void trtrace(Vmalloc_t* vm,
Vmuchar_t* oldaddr, Vmuchar_t* newaddr, size_t size, size_t align )
#else
static void trtrace(vm, oldaddr, newaddr, size, align)
Vmalloc_t* vm; /* region call was made from */
Vmuchar_t* oldaddr; /* old data address */
Vmuchar_t* newaddr; /* new data address */
size_t size; /* size of piece */
size_t align; /* alignment */
#endif
{
char buf[1024], *bufp, *endbuf;
Vmdata_t* vd = vm->data;
const char* file = 0;
int line = 0;
const Void_t* func = 0;
int comma;
int n;
int m;
int type;
#define SLOP 64
if(oldaddr == (Vmuchar_t*)(-1)) /* printing busy blocks */
{ type = 0;
oldaddr = NIL(Vmuchar_t*);
}
else
{ type = vd->mode&VM_METHODS;
VMFLF(vm,file,line,func);
}
if(Trfile < 0)
return;
bufp = buf; endbuf = buf+sizeof(buf);
bufp = trstrcpy(bufp, tritoa(oldaddr ? VLONG(oldaddr) : 0L, 0), ':');
bufp = trstrcpy(bufp, tritoa(newaddr ? VLONG(newaddr) : 0L, 0), ':');
bufp = trstrcpy(bufp, tritoa((Vmulong_t)size, 1), ':');
bufp = trstrcpy(bufp, tritoa((Vmulong_t)align, 1), ':');
bufp = trstrcpy(bufp, tritoa(VLONG(vm), 0), ':');
if(type&VM_MTBEST)
bufp = trstrcpy(bufp, "b", ':');
else if(type&VM_MTLAST)
bufp = trstrcpy(bufp, "l", ':');
else if(type&VM_MTPOOL)
bufp = trstrcpy(bufp, "p", ':');
else if(type&VM_MTPROFILE)
bufp = trstrcpy(bufp, "s", ':');
else if(type&VM_MTDEBUG)
bufp = trstrcpy(bufp, "d", ':');
else bufp = trstrcpy(bufp, "u", ':');
comma = 0;
if(file && file[0] && line > 0)
{ if((bufp + strlen(file) + SLOP) >= endbuf)
{ char* f;
for(f = bufp + strlen(file); f > file; --f)
if(f[-1] == '/' || f[-1] == '\\')
break;
file = f;
}
bufp = trstrcpy(bufp, "file", '=');
n = endbuf - bufp - SLOP - 3;
m = strlen(file);
if(m > n)
{ file += (m - n);
bufp = trstrcpy(bufp, "..", '.');
}
bufp = trstrcpy(bufp, file, ',');
bufp = trstrcpy(bufp, "line", '=');
bufp = trstrcpy(bufp, tritoa((Vmulong_t)line,1), 0);
comma = 1;
}
if(func)
{ if(comma)
*bufp++ = ',';
bufp = trstrcpy(bufp, "func", '=');
#if _PACKAGE_ast
bufp = trstrcpy(bufp, (const char*)func, 0);
#else
bufp = trstrcpy(bufp, tritoa((Vmulong_t)func,0), 0);
#endif
comma = 1;
}
if(comma)
*bufp++ = ':';
*bufp++ = '\n';
*bufp = '\0';
write(Trfile,buf,(bufp-buf));
}
#if DEBUG
#if __STD_C
void _vmmessage(const char* s1, long n1, const char* s2, long n2)
#else
void _vmmessage(s1, n1, s2, n2)
const char* s1;
long n1;
const char* s2;
long n2;
#endif
{
char buf[1024], *bufp;
bufp = buf;
bufp = trstrcpy(bufp, "vmalloc", ':');
if (s1)
{
bufp = trstrcpy(bufp, s1, ':');
if (n1)
bufp = trstrcpy(bufp, tritoa(n1, 1), ':');
}
if (s2)
{
bufp = trstrcpy(bufp, s2, ':');
if (n2)
bufp = trstrcpy(bufp, tritoa(n2, 0), ':');
}
bufp = trstrcpy(bufp, tritoa((long)getpid(), 1), ':');
*bufp++ = '\n';
write(2,buf,(bufp-buf));
}
#endif
#if __STD_C
int vmtrace(int file)
#else
int vmtrace(file)
int file;
#endif
{
int fd;
_Vmstrcpy = trstrcpy;
_Vmitoa = tritoa;
_Vmtrace = trtrace;
fd = Trfile;
Trfile = file;
return fd;
}
#if __STD_C
int vmtrbusy(Vmalloc_t* vm)
#else
int vmtrbusy(vm)
Vmalloc_t* vm;
#endif
{
Seg_t* seg;
Vmdata_t* vd = vm->data;
if(Trfile < 0 || !(vd->mode&(VM_MTBEST|VM_MTDEBUG|VM_MTPROFILE)))
return -1;
for(seg = vd->seg; seg; seg = seg->next)
{ Block_t *b, *endb;
Vmuchar_t* data;
size_t s;
for(b = SEGBLOCK(seg), endb = BLOCK(seg->baddr); b < endb; )
{ if(ISJUNK(SIZE(b)) || !ISBUSY(SIZE(b)))
continue;
data = DATA(b);
if(vd->mode&VM_MTDEBUG)
{ data = DB2DEBUG(data);
s = DBSIZE(data);
}
else if(vd->mode&VM_MTPROFILE)
s = PFSIZE(data);
else s = SIZE(b)&~BITS;
trtrace(vm, (Vmuchar_t*)(-1), data, s, 0);
b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
}
}
return 0;
}
#endif
|