ack/util/ego/ra/ra_items.h
George Koehler 17bc9cdef7 More void, fewer clang warnings in util/ego
Most warnings are for functions implicitly returning int.  Change most
of these functions to return void.  (Traditional K&R C had no void
type, but C89 has it.)

Add prototypes to most function declarations in headers.  This is
easy, because ego declares most of its extern functions, and the
comments listed most parameters.  There were a few outdated or missing
declarations, and a few .c files that failed to include an .h with the
declarations.

Add prototypes to a few function definitions in .c files.  Most
functions still have traditional K&R definitions.  Most STATIC
functions still don't have prototypes, because they have no earlier
declaration where I would have added the prototype.

Change some prototypes in util/ego/share/alloc.h.  Functions newmap()
and oldmap() handle an array of pointers to something; change the
array's type from `short **` to `void **`.  Callers use casts to go
between `void **` and the correct type, like `line_p *`.  Function
oldtable() takes a `short *`, not a `short **`; I added the wrong type
in 5bbbaf4.

Make a few other changes to silence warnings.  There are a few places
where clang wants extra parentheses in the code.

Edit util/ego/ra/build.lua to add the missing dependency on ra*.h; I
needed this to prevent crashes from ra.
2019-11-01 15:27:16 -04:00

41 lines
1.1 KiB
C

/* $Id$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* R E G I S T E R A L L O C A T I O N
*
* R A _ I T E M S . H
*/
short item_type(line_p l); /*
* Determine the type of item (constant,local
* variable etc.) accessed by l.
*/
bool is_item(line_p l); /*
* See if l accesses an item
*/
item_p item_of(offset off, item_p items[]);
/*
* Determine the descriptor of the item
* accessed by l; return 0 if not found
*/
void fill_item(item_p item, line_p l);
/*
* Compute the type and obj/off attributes
* of the item accessed by l and put them
* in the given item descriptor.
*/
bool same_item(item_p a, item_p b);
/*
* See if a and b are the same items.
*/
void build_itemlist(proc_p p, item_p items[], int *nrinstr_out);
/*
* Determine all items accessed by procedure p
* and put them in the items lists. All items
* of type T must be put in list items[T].
* Also determine the number of instructions
* of p.
*/