ack/util/ceg/ce_back/obj_back/memory.c

68 lines
1.5 KiB
C
Raw Normal View History

1987-11-20 10:41:03 +00:00
#include <out.h>
#include <system.h>
#include "data.h"
#include "hash.h"
char *realloc();
1987-11-25 13:54:01 +00:00
/* The routines allocate more space for the segments and update the
* global variables. Each time the space asked for is multiplied with 2.
*/
1987-11-20 10:41:03 +00:00
mem_text()
{
/* print( "text_area too small %d %d \n", text_area, text); */
text_area = realloc( text_area, sizeof( char) * 2 * size_text);
text = text_area + size_text;
size_text = 2 * size_text;
}
mem_data()
{
/* print( "data_area too small\n"); */
data_area = realloc( data_area, sizeof( char) * 2 * size_data);
data = data_area + size_data;
size_data = 2 * size_data;
}
mem_symbol_hash()
{
/* print( "symbol_table out of memory\n"); */
size_symbol = 2 * size_symbol;
symbol_table = (struct outname *) realloc( (char *) symbol_table,
sizeof( struct outname) * size_symbol);
/* print( "hash out of memory\n"); */
Hashitems = (struct Hashitem *) realloc( (char *) Hashitems,
sizeof( struct Hashitem)*(size_symbol+1));
}
mem_relo()
{
/* print( "reloc_table out of memory\n"); */
reloc_info = (struct outrelo *) realloc( (char *) reloc_info,
sizeof( struct outrelo) * 2 * size_reloc);
relo = reloc_info + size_reloc;
size_reloc = 2 * size_reloc;
}
mem_string()
{
1987-11-25 13:54:01 +00:00
int i = string - string_area;
1987-11-20 10:41:03 +00:00
/* print( "string_area out of memory %d %d \n", string_area, string);*/
size_string = 2 * size_string;
string_area = realloc( string_area, sizeof( char) * size_string);
string = string_area + i;
}