date and time created 82/01/18 19:20:03 by linton
[unix-history] / usr / src / usr.bin / pascal / pdx / mappings.h
CommitLineData
c1a4ba75
ML
1/* Copyright (c) 1982 Regents of the University of California */
2
3static char sccsid[] = "@(#)mappings.h 1.1 %G%";
4
5/*
6 * Mappings definitions.
7 *
8 * The mappings module is the interface between the object code and
9 * source file representations of the program.
10 *
11 * This module is strongly tied to the object module, and needs the
12 * most of the data defined in "object.h".
13 */
14
15ADDRESS objaddr(); /* get the object address corresponding to a line */
16
17char *srcfilename(); /* get the nearest source file <= a given address */
18LINENO srcline(); /* get the nearest source line <= a given address */
19LINENO linelookup(); /* look for a line number with exactly given address */
20
21newfunc(); /* record the appearance of a new function */
22SYM *whatblock(); /* find the function associated with an address */
23clrfunctab(); /* re-initialize function table */