blob: 6d6775a48dbbcf5000b51d98e0734ce09e671914 [file] [log] [blame]
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001#include "Python.h"
2#include "code.h"
3#include "structmember.h"
4
5#define NAME_CHARS \
6 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz"
7
8/* all_name_chars(s): true iff all chars in s are valid NAME_CHARS */
9
10static int
11all_name_chars(unsigned char *s)
12{
13 static char ok_name_char[256];
14 static unsigned char *name_chars = (unsigned char *)NAME_CHARS;
15
16 if (ok_name_char[*name_chars] == 0) {
17 unsigned char *p;
18 for (p = name_chars; *p; p++)
19 ok_name_char[*p] = 1;
20 }
21 while (*s) {
22 if (ok_name_char[*s++] == 0)
23 return 0;
24 }
25 return 1;
26}
27
28static void
29intern_strings(PyObject *tuple)
30{
Martin v. Löwis18e16552006-02-15 17:27:45 +000031 Py_ssize_t i;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000032
33 for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
34 PyObject *v = PyTuple_GET_ITEM(tuple, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +000035 if (v == NULL || !PyString_CheckExact(v)) {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000036 Py_FatalError("non-string found in code slot");
37 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +000038 PyString_InternInPlace(&PyTuple_GET_ITEM(tuple, i));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000039 }
40}
41
42
43PyCodeObject *
44PyCode_New(int argcount, int nlocals, int stacksize, int flags,
45 PyObject *code, PyObject *consts, PyObject *names,
46 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
47 PyObject *filename, PyObject *name, int firstlineno,
48 PyObject *lnotab)
49{
50 PyCodeObject *co;
Martin v. Löwis18e16552006-02-15 17:27:45 +000051 Py_ssize_t i;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000052 /* Check argument types */
53 if (argcount < 0 || nlocals < 0 ||
54 code == NULL ||
55 consts == NULL || !PyTuple_Check(consts) ||
56 names == NULL || !PyTuple_Check(names) ||
57 varnames == NULL || !PyTuple_Check(varnames) ||
58 freevars == NULL || !PyTuple_Check(freevars) ||
59 cellvars == NULL || !PyTuple_Check(cellvars) ||
Gregory P. Smithdd96db62008-06-09 04:58:54 +000060 name == NULL || !PyString_Check(name) ||
61 filename == NULL || !PyString_Check(filename) ||
62 lnotab == NULL || !PyString_Check(lnotab) ||
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000063 !PyObject_CheckReadBuffer(code)) {
64 PyErr_BadInternalCall();
65 return NULL;
66 }
67 intern_strings(names);
68 intern_strings(varnames);
69 intern_strings(freevars);
70 intern_strings(cellvars);
71 /* Intern selected string constants */
72 for (i = PyTuple_Size(consts); --i >= 0; ) {
73 PyObject *v = PyTuple_GetItem(consts, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +000074 if (!PyString_Check(v))
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000075 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +000076 if (!all_name_chars((unsigned char *)PyString_AS_STRING(v)))
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000077 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +000078 PyString_InternInPlace(&PyTuple_GET_ITEM(consts, i));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000079 }
80 co = PyObject_NEW(PyCodeObject, &PyCode_Type);
81 if (co != NULL) {
82 co->co_argcount = argcount;
83 co->co_nlocals = nlocals;
84 co->co_stacksize = stacksize;
85 co->co_flags = flags;
86 Py_INCREF(code);
87 co->co_code = code;
88 Py_INCREF(consts);
89 co->co_consts = consts;
90 Py_INCREF(names);
91 co->co_names = names;
92 Py_INCREF(varnames);
93 co->co_varnames = varnames;
94 Py_INCREF(freevars);
95 co->co_freevars = freevars;
96 Py_INCREF(cellvars);
97 co->co_cellvars = cellvars;
98 Py_INCREF(filename);
99 co->co_filename = filename;
100 Py_INCREF(name);
101 co->co_name = name;
102 co->co_firstlineno = firstlineno;
103 Py_INCREF(lnotab);
104 co->co_lnotab = lnotab;
Richard Jones7c88dcc2006-05-23 10:37:38 +0000105 co->co_zombieframe = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000106 }
107 return co;
108}
109
Jeffrey Yasskin1aa47002009-05-08 21:51:06 +0000110PyCodeObject *
111PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno)
112{
113 static PyObject *emptystring = NULL;
114 static PyObject *nulltuple = NULL;
115 PyObject *filename_ob = NULL;
116 PyObject *funcname_ob = NULL;
117 PyCodeObject *result = NULL;
118 if (emptystring == NULL) {
119 emptystring = PyString_FromString("");
120 if (emptystring == NULL)
121 goto failed;
122 }
123 if (nulltuple == NULL) {
124 nulltuple = PyTuple_New(0);
125 if (nulltuple == NULL)
126 goto failed;
127 }
128 funcname_ob = PyString_FromString(funcname);
129 if (funcname_ob == NULL)
130 goto failed;
131 filename_ob = PyString_FromString(filename);
132 if (filename_ob == NULL)
133 goto failed;
134
135 result = PyCode_New(0, /* argcount */
136 0, /* nlocals */
137 0, /* stacksize */
138 0, /* flags */
139 emptystring, /* code */
140 nulltuple, /* consts */
141 nulltuple, /* names */
142 nulltuple, /* varnames */
143 nulltuple, /* freevars */
144 nulltuple, /* cellvars */
145 filename_ob, /* filename */
146 funcname_ob, /* name */
147 firstlineno, /* firstlineno */
148 emptystring /* lnotab */
149 );
150
151failed:
152 Py_XDECREF(funcname_ob);
153 Py_XDECREF(filename_ob);
154 return result;
155}
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000156
157#define OFF(x) offsetof(PyCodeObject, x)
158
159static PyMemberDef code_memberlist[] = {
160 {"co_argcount", T_INT, OFF(co_argcount), READONLY},
161 {"co_nlocals", T_INT, OFF(co_nlocals), READONLY},
162 {"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
163 {"co_flags", T_INT, OFF(co_flags), READONLY},
164 {"co_code", T_OBJECT, OFF(co_code), READONLY},
165 {"co_consts", T_OBJECT, OFF(co_consts), READONLY},
166 {"co_names", T_OBJECT, OFF(co_names), READONLY},
167 {"co_varnames", T_OBJECT, OFF(co_varnames), READONLY},
168 {"co_freevars", T_OBJECT, OFF(co_freevars), READONLY},
169 {"co_cellvars", T_OBJECT, OFF(co_cellvars), READONLY},
170 {"co_filename", T_OBJECT, OFF(co_filename), READONLY},
171 {"co_name", T_OBJECT, OFF(co_name), READONLY},
172 {"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY},
173 {"co_lnotab", T_OBJECT, OFF(co_lnotab), READONLY},
174 {NULL} /* Sentinel */
175};
176
177/* Helper for code_new: return a shallow copy of a tuple that is
178 guaranteed to contain exact strings, by converting string subclasses
179 to exact strings and complaining if a non-string is found. */
180static PyObject*
181validate_and_copy_tuple(PyObject *tup)
182{
183 PyObject *newtuple;
184 PyObject *item;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000185 Py_ssize_t i, len;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000186
187 len = PyTuple_GET_SIZE(tup);
188 newtuple = PyTuple_New(len);
189 if (newtuple == NULL)
190 return NULL;
191
192 for (i = 0; i < len; i++) {
193 item = PyTuple_GET_ITEM(tup, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000194 if (PyString_CheckExact(item)) {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000195 Py_INCREF(item);
196 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000197 else if (!PyString_Check(item)) {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000198 PyErr_Format(
199 PyExc_TypeError,
200 "name tuples must contain only "
201 "strings, not '%.500s'",
202 item->ob_type->tp_name);
203 Py_DECREF(newtuple);
204 return NULL;
205 }
206 else {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000207 item = PyString_FromStringAndSize(
208 PyString_AS_STRING(item),
209 PyString_GET_SIZE(item));
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000210 if (item == NULL) {
211 Py_DECREF(newtuple);
212 return NULL;
213 }
214 }
215 PyTuple_SET_ITEM(newtuple, i, item);
216 }
217
218 return newtuple;
219}
220
221PyDoc_STRVAR(code_doc,
222"code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\
223 varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\
224\n\
225Create a code object. Not for the faint of heart.");
226
227static PyObject *
228code_new(PyTypeObject *type, PyObject *args, PyObject *kw)
229{
230 int argcount;
231 int nlocals;
232 int stacksize;
233 int flags;
234 PyObject *co = NULL;
235 PyObject *code;
236 PyObject *consts;
237 PyObject *names, *ournames = NULL;
238 PyObject *varnames, *ourvarnames = NULL;
239 PyObject *freevars = NULL, *ourfreevars = NULL;
240 PyObject *cellvars = NULL, *ourcellvars = NULL;
241 PyObject *filename;
242 PyObject *name;
243 int firstlineno;
244 PyObject *lnotab;
245
246 if (!PyArg_ParseTuple(args, "iiiiSO!O!O!SSiS|O!O!:code",
247 &argcount, &nlocals, &stacksize, &flags,
248 &code,
249 &PyTuple_Type, &consts,
250 &PyTuple_Type, &names,
251 &PyTuple_Type, &varnames,
252 &filename, &name,
253 &firstlineno, &lnotab,
254 &PyTuple_Type, &freevars,
255 &PyTuple_Type, &cellvars))
256 return NULL;
257
258 if (argcount < 0) {
259 PyErr_SetString(
260 PyExc_ValueError,
261 "code: argcount must not be negative");
262 goto cleanup;
263 }
264
265 if (nlocals < 0) {
266 PyErr_SetString(
267 PyExc_ValueError,
268 "code: nlocals must not be negative");
269 goto cleanup;
270 }
271
272 ournames = validate_and_copy_tuple(names);
273 if (ournames == NULL)
274 goto cleanup;
275 ourvarnames = validate_and_copy_tuple(varnames);
276 if (ourvarnames == NULL)
277 goto cleanup;
278 if (freevars)
279 ourfreevars = validate_and_copy_tuple(freevars);
280 else
281 ourfreevars = PyTuple_New(0);
282 if (ourfreevars == NULL)
283 goto cleanup;
284 if (cellvars)
285 ourcellvars = validate_and_copy_tuple(cellvars);
286 else
287 ourcellvars = PyTuple_New(0);
288 if (ourcellvars == NULL)
289 goto cleanup;
290
291 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags,
292 code, consts, ournames, ourvarnames,
293 ourfreevars, ourcellvars, filename,
294 name, firstlineno, lnotab);
295 cleanup:
296 Py_XDECREF(ournames);
297 Py_XDECREF(ourvarnames);
298 Py_XDECREF(ourfreevars);
299 Py_XDECREF(ourcellvars);
300 return co;
301}
302
303static void
304code_dealloc(PyCodeObject *co)
305{
306 Py_XDECREF(co->co_code);
307 Py_XDECREF(co->co_consts);
308 Py_XDECREF(co->co_names);
309 Py_XDECREF(co->co_varnames);
310 Py_XDECREF(co->co_freevars);
311 Py_XDECREF(co->co_cellvars);
312 Py_XDECREF(co->co_filename);
313 Py_XDECREF(co->co_name);
314 Py_XDECREF(co->co_lnotab);
Richard Jones7c88dcc2006-05-23 10:37:38 +0000315 if (co->co_zombieframe != NULL)
316 PyObject_GC_Del(co->co_zombieframe);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000317 PyObject_DEL(co);
318}
319
320static PyObject *
321code_repr(PyCodeObject *co)
322{
323 char buf[500];
324 int lineno = -1;
325 char *filename = "???";
326 char *name = "???";
327
328 if (co->co_firstlineno != 0)
329 lineno = co->co_firstlineno;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000330 if (co->co_filename && PyString_Check(co->co_filename))
331 filename = PyString_AS_STRING(co->co_filename);
332 if (co->co_name && PyString_Check(co->co_name))
333 name = PyString_AS_STRING(co->co_name);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000334 PyOS_snprintf(buf, sizeof(buf),
335 "<code object %.100s at %p, file \"%.300s\", line %d>",
336 name, co, filename, lineno);
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000337 return PyString_FromString(buf);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000338}
339
340static int
341code_compare(PyCodeObject *co, PyCodeObject *cp)
342{
343 int cmp;
344 cmp = PyObject_Compare(co->co_name, cp->co_name);
345 if (cmp) return cmp;
346 cmp = co->co_argcount - cp->co_argcount;
347 if (cmp) goto normalize;
348 cmp = co->co_nlocals - cp->co_nlocals;
349 if (cmp) goto normalize;
350 cmp = co->co_flags - cp->co_flags;
351 if (cmp) goto normalize;
352 cmp = co->co_firstlineno - cp->co_firstlineno;
353 if (cmp) goto normalize;
354 cmp = PyObject_Compare(co->co_code, cp->co_code);
355 if (cmp) return cmp;
356 cmp = PyObject_Compare(co->co_consts, cp->co_consts);
357 if (cmp) return cmp;
358 cmp = PyObject_Compare(co->co_names, cp->co_names);
359 if (cmp) return cmp;
360 cmp = PyObject_Compare(co->co_varnames, cp->co_varnames);
361 if (cmp) return cmp;
362 cmp = PyObject_Compare(co->co_freevars, cp->co_freevars);
363 if (cmp) return cmp;
364 cmp = PyObject_Compare(co->co_cellvars, cp->co_cellvars);
365 return cmp;
366
367 normalize:
368 if (cmp > 0)
369 return 1;
370 else if (cmp < 0)
371 return -1;
372 else
373 return 0;
374}
375
Steven Bethard6a644f92008-03-18 22:08:20 +0000376static PyObject *
377code_richcompare(PyObject *self, PyObject *other, int op)
378{
379 PyCodeObject *co, *cp;
380 int eq;
381 PyObject *res;
382
383 if ((op != Py_EQ && op != Py_NE) ||
384 !PyCode_Check(self) ||
385 !PyCode_Check(other)) {
386
Georg Brandld5b635f2008-03-25 08:29:14 +0000387 /* Py3K warning if types are not equal and comparison
Benjamin Petersonf19a7b92008-04-27 18:40:21 +0000388 isn't == or != */
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000389 if (PyErr_WarnPy3k("code inequality comparisons not supported "
Benjamin Petersonf19a7b92008-04-27 18:40:21 +0000390 "in 3.x", 1) < 0) {
Steven Bethard6a644f92008-03-18 22:08:20 +0000391 return NULL;
392 }
393
394 Py_INCREF(Py_NotImplemented);
395 return Py_NotImplemented;
396 }
397
398 co = (PyCodeObject *)self;
399 cp = (PyCodeObject *)other;
400
401 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
402 if (eq <= 0) goto unequal;
403 eq = co->co_argcount == cp->co_argcount;
404 if (!eq) goto unequal;
405 eq = co->co_nlocals == cp->co_nlocals;
406 if (!eq) goto unequal;
407 eq = co->co_flags == cp->co_flags;
408 if (!eq) goto unequal;
409 eq = co->co_firstlineno == cp->co_firstlineno;
410 if (!eq) goto unequal;
411 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
412 if (eq <= 0) goto unequal;
413 eq = PyObject_RichCompareBool(co->co_consts, cp->co_consts, Py_EQ);
414 if (eq <= 0) goto unequal;
415 eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ);
416 if (eq <= 0) goto unequal;
417 eq = PyObject_RichCompareBool(co->co_varnames, cp->co_varnames, Py_EQ);
418 if (eq <= 0) goto unequal;
419 eq = PyObject_RichCompareBool(co->co_freevars, cp->co_freevars, Py_EQ);
420 if (eq <= 0) goto unequal;
421 eq = PyObject_RichCompareBool(co->co_cellvars, cp->co_cellvars, Py_EQ);
422 if (eq <= 0) goto unequal;
423
424 if (op == Py_EQ)
425 res = Py_True;
426 else
427 res = Py_False;
428 goto done;
429
430 unequal:
431 if (eq < 0)
432 return NULL;
433 if (op == Py_NE)
434 res = Py_True;
435 else
436 res = Py_False;
437
438 done:
439 Py_INCREF(res);
440 return res;
441}
442
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000443static long
444code_hash(PyCodeObject *co)
445{
446 long h, h0, h1, h2, h3, h4, h5, h6;
447 h0 = PyObject_Hash(co->co_name);
448 if (h0 == -1) return -1;
449 h1 = PyObject_Hash(co->co_code);
450 if (h1 == -1) return -1;
451 h2 = PyObject_Hash(co->co_consts);
452 if (h2 == -1) return -1;
453 h3 = PyObject_Hash(co->co_names);
454 if (h3 == -1) return -1;
455 h4 = PyObject_Hash(co->co_varnames);
456 if (h4 == -1) return -1;
457 h5 = PyObject_Hash(co->co_freevars);
458 if (h5 == -1) return -1;
459 h6 = PyObject_Hash(co->co_cellvars);
460 if (h6 == -1) return -1;
461 h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^
462 co->co_argcount ^ co->co_nlocals ^ co->co_flags;
463 if (h == -1) h = -2;
464 return h;
465}
466
467/* XXX code objects need to participate in GC? */
468
469PyTypeObject PyCode_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +0000470 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000471 "code",
472 sizeof(PyCodeObject),
473 0,
474 (destructor)code_dealloc, /* tp_dealloc */
475 0, /* tp_print */
476 0, /* tp_getattr */
477 0, /* tp_setattr */
478 (cmpfunc)code_compare, /* tp_compare */
479 (reprfunc)code_repr, /* tp_repr */
480 0, /* tp_as_number */
481 0, /* tp_as_sequence */
482 0, /* tp_as_mapping */
483 (hashfunc)code_hash, /* tp_hash */
484 0, /* tp_call */
485 0, /* tp_str */
486 PyObject_GenericGetAttr, /* tp_getattro */
487 0, /* tp_setattro */
488 0, /* tp_as_buffer */
489 Py_TPFLAGS_DEFAULT, /* tp_flags */
490 code_doc, /* tp_doc */
491 0, /* tp_traverse */
492 0, /* tp_clear */
Steven Bethard6a644f92008-03-18 22:08:20 +0000493 code_richcompare, /* tp_richcompare */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000494 0, /* tp_weaklistoffset */
495 0, /* tp_iter */
496 0, /* tp_iternext */
497 0, /* tp_methods */
498 code_memberlist, /* tp_members */
499 0, /* tp_getset */
500 0, /* tp_base */
501 0, /* tp_dict */
502 0, /* tp_descr_get */
503 0, /* tp_descr_set */
504 0, /* tp_dictoffset */
505 0, /* tp_init */
506 0, /* tp_alloc */
507 code_new, /* tp_new */
508};
509
Jeffrey Yasskin655d8352009-05-23 23:23:01 +0000510/* Use co_lnotab to compute the line number from a bytecode index, addrq. See
511 lnotab_notes.txt for the details of the lnotab representation.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000512*/
513
514int
515PyCode_Addr2Line(PyCodeObject *co, int addrq)
516{
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000517 int size = PyString_Size(co->co_lnotab) / 2;
518 unsigned char *p = (unsigned char*)PyString_AsString(co->co_lnotab);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000519 int line = co->co_firstlineno;
520 int addr = 0;
521 while (--size >= 0) {
522 addr += *p++;
523 if (addr > addrq)
524 break;
525 line += *p++;
526 }
527 return line;
528}
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000529
Jeffrey Yasskin655d8352009-05-23 23:23:01 +0000530/* Update *bounds to describe the first and one-past-the-last instructions in
531 the same line as lasti. Return the number of that line. */
532int
533_PyCode_CheckLineNumber(PyCodeObject* co, int lasti, PyAddrPair *bounds)
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000534{
535 int size, addr, line;
536 unsigned char* p;
537
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000538 p = (unsigned char*)PyString_AS_STRING(co->co_lnotab);
539 size = PyString_GET_SIZE(co->co_lnotab) / 2;
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000540
541 addr = 0;
542 line = co->co_firstlineno;
543 assert(line > 0);
544
545 /* possible optimization: if f->f_lasti == instr_ub
546 (likely to be a common case) then we already know
547 instr_lb -- if we stored the matching value of p
548 somwhere we could skip the first while loop. */
549
Jeffrey Yasskin655d8352009-05-23 23:23:01 +0000550 /* See lnotab_notes.txt for the description of
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000551 co_lnotab. A point to remember: increments to p
Jeffrey Yasskin655d8352009-05-23 23:23:01 +0000552 come in (addr, line) pairs. */
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000553
Neal Norwitz7e49c6e2006-07-12 05:27:46 +0000554 bounds->ap_lower = 0;
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000555 while (size > 0) {
556 if (addr + *p > lasti)
557 break;
558 addr += *p++;
559 if (*p)
560 bounds->ap_lower = addr;
561 line += *p++;
562 --size;
563 }
564
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000565 if (size > 0) {
566 while (--size >= 0) {
567 addr += *p++;
568 if (*p++)
569 break;
570 }
571 bounds->ap_upper = addr;
572 }
573 else {
574 bounds->ap_upper = INT_MAX;
575 }
576
577 return line;
578}