nasm/labels.c

488 lines
15 KiB
C
Raw Normal View History

2002-04-30 20:51:32 +00:00
/* labels.c label handling for the Netwide Assembler
*
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
* Julian Hall. All rights reserved. The software is
* redistributable under the license given in the file "LICENSE"
2002-04-30 20:51:32 +00:00
* distributed in the NASM archive.
*/
#include "compiler.h"
2002-04-30 20:51:32 +00:00
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <inttypes.h>
2002-04-30 20:51:32 +00:00
#include "nasm.h"
#include "nasmlib.h"
#include "hashtbl.h"
2002-04-30 20:51:32 +00:00
/*
* A local label is one that begins with exactly one period. Things
* that begin with _two_ periods are NASM-specific things.
2002-04-30 21:00:33 +00:00
*
* If TASM compatibility is enabled, a local label can also begin with
* @@, so @@local is a TASM compatible local label. Note that we only
* check for the first @ symbol, although TASM requires both.
2002-04-30 20:51:32 +00:00
*/
2002-04-30 21:00:33 +00:00
#define islocal(l) \
(tasm_compatible_mode ? \
(((l)[0] == '.' || (l)[0] == '@') && (l)[1] != '.') : \
((l)[0] == '.' && (l)[1] != '.'))
#define islocalchar(c) \
(tasm_compatible_mode ? \
((c) == '.' || (c) == '@') : \
((c) == '.'))
2002-04-30 20:51:32 +00:00
#define LABEL_BLOCK 128 /* no. of labels/block */
2002-04-30 20:51:32 +00:00
#define LBLK_SIZE (LABEL_BLOCK*sizeof(union label))
2005-01-15 22:15:51 +00:00
#define END_LIST -3 /* don't clash with NO_SEG! */
2002-04-30 20:51:32 +00:00
#define END_BLOCK -2
#define BOGUS_VALUE -4
2005-01-15 22:15:51 +00:00
#define PERMTS_SIZE 4096 /* size of text blocks */
#if (PERMTS_SIZE > IDLEN_MAX)
2005-01-15 22:15:51 +00:00
#error "IPERMTS_SIZE must be less than or equal to IDLEN_MAX"
#endif
2002-04-30 20:51:32 +00:00
/* values for label.defn.is_global */
2002-04-30 20:52:49 +00:00
#define DEFINED_BIT 1
#define GLOBAL_BIT 2
#define EXTERN_BIT 4
2002-04-30 20:51:32 +00:00
#define NOT_DEFINED_YET 0
2002-04-30 20:52:49 +00:00
#define TYPE_MASK 3
#define LOCAL_SYMBOL (DEFINED_BIT)
#define GLOBAL_PLACEHOLDER (GLOBAL_BIT)
#define GLOBAL_SYMBOL (DEFINED_BIT|GLOBAL_BIT)
2002-04-30 20:51:32 +00:00
2005-01-15 22:15:51 +00:00
union label { /* actual label structures */
2002-04-30 20:51:32 +00:00
struct {
2007-11-06 01:19:32 +00:00
int32_t segment;
int64_t offset;
char *label, *special;
2002-04-30 20:59:21 +00:00
int is_global, is_norm;
2002-04-30 20:51:32 +00:00
} defn;
struct {
2007-11-06 01:19:32 +00:00
int32_t movingon;
int64_t dummy;
2002-04-30 20:59:21 +00:00
union label *next;
2002-04-30 20:51:32 +00:00
} admin;
};
2005-01-15 22:15:51 +00:00
struct permts { /* permanent text storage */
struct permts *next; /* for the linked list */
int size, usage; /* size and used space in ... */
char data[PERMTS_SIZE]; /* ... the data block itself */
2002-04-30 20:51:32 +00:00
};
extern bool global_offset_changed; /* defined in nasm.c */
2002-04-30 20:59:21 +00:00
static struct hash_table ltab; /* labels hash table */
static union label *ldata; /* all label data blocks */
static union label *lfree; /* labels free block */
2005-01-15 22:15:51 +00:00
static struct permts *perm_head; /* start of perm. text storage */
static struct permts *perm_tail; /* end of perm. text storage */
2002-04-30 20:51:32 +00:00
2005-01-15 22:15:51 +00:00
static void init_block(union label *blk);
static char *perm_copy(const char *string);
2002-04-30 20:51:32 +00:00
static char *prevlabel;
2002-04-30 20:51:32 +00:00
static bool initialized = false;
2002-04-30 20:52:49 +00:00
char lprefix[PREFIX_MAX] = { 0 };
char lpostfix[PREFIX_MAX] = { 0 };
2002-04-30 21:00:33 +00:00
2002-04-30 20:51:32 +00:00
/*
* Internal routine: finds the `union label' corresponding to the
* given label name. Creates a new one, if it isn't found, and if
* `create' is true.
2002-04-30 20:51:32 +00:00
*/
static union label *find_label(char *label, int create)
2002-04-30 20:53:55 +00:00
{
char *prev;
int prevlen, len;
union label *lptr, **lpp;
char label_str[IDLEN_MAX];
struct hash_insert ip;
2002-04-30 20:51:32 +00:00
if (islocal(label)) {
2002-04-30 20:59:21 +00:00
prev = prevlabel;
prevlen = strlen(prev);
len = strlen(label);
if (prevlen+len >= IDLEN_MAX)
return NULL; /* Error... */
memcpy(label_str, prev, prevlen);
memcpy(label_str+prevlen, label, len+1);
label = label_str;
} else {
2002-04-30 20:59:21 +00:00
prev = "";
prevlen = 0;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:59:21 +00:00
lpp = (union label **) hash_find(&ltab, label, &ip);
lptr = lpp ? *lpp : NULL;
if (lptr || !create)
return lptr;
/* Create a new label... */
if (lfree->admin.movingon == END_BLOCK) {
/*
* must allocate a new block
*/
lfree->admin.next =
(union label *)nasm_malloc(LBLK_SIZE);
lfree = lfree->admin.next;
init_block(lfree);
}
lfree->admin.movingon = BOGUS_VALUE;
lfree->defn.label = perm_copy(label);
lfree->defn.special = NULL;
lfree->defn.is_global = NOT_DEFINED_YET;
hash_add(&ip, lfree->defn.label, lfree);
return lfree++;
2002-04-30 20:51:32 +00:00
}
2007-11-06 01:19:32 +00:00
bool lookup_label(char *label, int32_t *segment, int64_t *offset)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:51:32 +00:00
union label *lptr;
if (!initialized)
return false;
2002-04-30 20:52:49 +00:00
2005-01-15 22:15:51 +00:00
lptr = find_label(label, 0);
2002-04-30 20:52:49 +00:00
if (lptr && (lptr->defn.is_global & DEFINED_BIT)) {
2002-04-30 20:59:21 +00:00
*segment = lptr->defn.segment;
*offset = lptr->defn.offset;
return true;
2005-01-15 22:15:51 +00:00
} else
return false;
2002-04-30 20:51:32 +00:00
}
bool is_extern(char *label)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:52:49 +00:00
union label *lptr;
if (!initialized)
return false;
2002-04-30 20:52:49 +00:00
2005-01-15 22:15:51 +00:00
lptr = find_label(label, 0);
return (lptr && (lptr->defn.is_global & EXTERN_BIT));
2002-04-30 20:52:49 +00:00
}
2007-11-06 01:19:32 +00:00
void redefine_label(char *label, int32_t segment, int64_t offset, char *special,
bool is_norm, bool isextrn, struct ofmt *ofmt,
2005-01-15 22:15:51 +00:00
efunc error)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:51:32 +00:00
union label *lptr;
2002-04-30 21:00:33 +00:00
int exi;
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/* This routine possibly ought to check for phase errors. Most assemblers
* check for phase errors at this point. I don't know whether phase errors
* are even possible, nor whether they are checked somewhere else
*/
2005-01-15 22:15:51 +00:00
(void)segment; /* Don't warn that this parameter is unused */
(void)special; /* Don't warn that this parameter is unused */
(void)is_norm; /* Don't warn that this parameter is unused */
(void)isextrn; /* Don't warn that this parameter is unused */
(void)ofmt; /* Don't warn that this parameter is unused */
2002-04-30 20:53:55 +00:00
#ifdef DEBUG
2002-04-30 20:59:21 +00:00
#if DEBUG<3
2002-04-30 20:53:55 +00:00
if (!strncmp(label, "debugdump", 9))
2002-04-30 20:59:21 +00:00
#endif
error(ERR_DEBUG, "redefine_label (%s, %ld, %08lx, %s, %d, %d)",
2005-01-15 22:15:51 +00:00
label, segment, offset, special, is_norm, isextrn);
2002-04-30 20:53:55 +00:00
#endif
2005-01-15 22:15:51 +00:00
lptr = find_label(label, 1);
2002-04-30 20:59:21 +00:00
if (!lptr)
2005-01-15 22:15:51 +00:00
error(ERR_PANIC, "can't find label `%s' on pass two", label);
2002-04-30 20:51:32 +00:00
if (!islocal(label)) {
2005-01-15 22:15:51 +00:00
if (!islocalchar(*label) && lptr->defn.is_norm)
2002-04-30 20:59:21 +00:00
prevlabel = lptr->defn.label;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:59:21 +00:00
global_offset_changed |= (lptr->defn.offset != offset);
lptr->defn.offset = offset;
2005-01-15 22:15:51 +00:00
if (pass0 == 1) {
exi = !!(lptr->defn.is_global & GLOBAL_BIT);
if (exi) {
char *xsymbol;
2005-01-15 22:15:51 +00:00
int slen;
slen = strlen(lprefix);
slen += strlen(lptr->defn.label);
slen += strlen(lpostfix);
slen++; /* room for that null char */
2005-01-15 22:15:51 +00:00
xsymbol = nasm_malloc(slen);
snprintf(xsymbol, slen, "%s%s%s", lprefix, lptr->defn.label,
lpostfix);
ofmt->symdef(xsymbol, segment, offset, exi,
special ? special : lptr->defn.special);
ofmt->current_dfmt->debug_deflabel(xsymbol, segment, offset,
exi,
special ? special : lptr->
defn.special);
2002-04-30 21:00:33 +00:00
/** nasm_free(xsymbol); ! outobj.c stores the pointer; ouch!!! **/
2005-01-15 22:15:51 +00:00
} else {
if ((lptr->defn.is_global & (GLOBAL_BIT | EXTERN_BIT)) !=
EXTERN_BIT) {
ofmt->symdef(lptr->defn.label, segment, offset, exi,
special ? special : lptr->defn.special);
ofmt->current_dfmt->debug_deflabel(label, segment, offset,
exi,
special ? special :
lptr->defn.special);
}
}
2002-04-30 21:00:33 +00:00
}
2005-01-15 22:15:51 +00:00
/* if (pass0 == 1) */
2002-04-30 20:51:32 +00:00
}
2007-11-06 01:19:32 +00:00
void define_label(char *label, int32_t segment, int64_t offset, char *special,
bool is_norm, bool isextrn, struct ofmt *ofmt, efunc error)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:51:32 +00:00
union label *lptr;
2002-04-30 21:00:33 +00:00
int exi;
2002-04-30 20:51:32 +00:00
2002-04-30 20:53:55 +00:00
#ifdef DEBUG
2002-04-30 20:59:21 +00:00
#if DEBUG<3
2002-04-30 20:53:55 +00:00
if (!strncmp(label, "debugdump", 9))
2002-04-30 20:59:21 +00:00
#endif
error(ERR_DEBUG, "define_label (%s, %ld, %08lx, %s, %d, %d)",
2005-01-15 22:15:51 +00:00
label, segment, offset, special, is_norm, isextrn);
2002-04-30 20:53:55 +00:00
#endif
2005-01-15 22:15:51 +00:00
lptr = find_label(label, 1);
2002-04-30 20:52:49 +00:00
if (lptr->defn.is_global & DEFINED_BIT) {
2002-04-30 20:59:21 +00:00
error(ERR_NONFATAL, "symbol `%s' redefined", label);
return;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:52:49 +00:00
lptr->defn.is_global |= DEFINED_BIT;
if (isextrn)
2005-01-15 22:15:51 +00:00
lptr->defn.is_global |= EXTERN_BIT;
2002-04-30 20:51:32 +00:00
2005-01-15 22:15:51 +00:00
if (!islocalchar(label[0]) && is_norm) /* not local, but not special either */
prevlabel = lptr->defn.label;
2002-04-30 21:00:33 +00:00
else if (islocal(label) && !*prevlabel) {
2005-01-15 22:15:51 +00:00
error(ERR_NONFATAL, "attempt to define a local label before any"
" non-local labels");
}
2002-04-30 20:51:32 +00:00
lptr->defn.segment = segment;
lptr->defn.offset = offset;
2002-04-30 21:00:33 +00:00
lptr->defn.is_norm = (!islocalchar(label[0]) && is_norm);
if (pass0 == 1 || (!is_norm && !isextrn && (segment > 0) && (segment & 1))) {
2005-01-15 22:15:51 +00:00
exi = !!(lptr->defn.is_global & GLOBAL_BIT);
if (exi) {
char *xsymbol;
2005-01-15 22:15:51 +00:00
int slen;
slen = strlen(lprefix);
slen += strlen(lptr->defn.label);
slen += strlen(lpostfix);
slen++; /* room for that null char */
xsymbol = nasm_malloc(slen);
snprintf(xsymbol, slen, "%s%s%s", lprefix, lptr->defn.label,
lpostfix);
ofmt->symdef(xsymbol, segment, offset, exi,
special ? special : lptr->defn.special);
ofmt->current_dfmt->debug_deflabel(xsymbol, segment, offset,
exi,
special ? special : lptr->
defn.special);
2002-04-30 21:00:33 +00:00
/** nasm_free(xsymbol); ! outobj.c stores the pointer; ouch!!! **/
2005-01-15 22:15:51 +00:00
} else {
if ((lptr->defn.is_global & (GLOBAL_BIT | EXTERN_BIT)) !=
EXTERN_BIT) {
ofmt->symdef(lptr->defn.label, segment, offset, exi,
special ? special : lptr->defn.special);
ofmt->current_dfmt->debug_deflabel(label, segment, offset,
exi,
special ? special :
lptr->defn.special);
}
}
} /* if (pass0 == 1) */
2002-04-30 20:51:32 +00:00
}
void define_common(char *label, int32_t segment, int32_t size, char *special,
2005-01-15 22:15:51 +00:00
struct ofmt *ofmt, efunc error)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:51:32 +00:00
union label *lptr;
2005-01-15 22:15:51 +00:00
lptr = find_label(label, 1);
2002-04-30 20:52:49 +00:00
if (lptr->defn.is_global & DEFINED_BIT) {
2002-04-30 20:59:21 +00:00
error(ERR_NONFATAL, "symbol `%s' redefined", label);
return;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:52:49 +00:00
lptr->defn.is_global |= DEFINED_BIT;
2002-04-30 20:51:32 +00:00
2005-01-15 22:15:51 +00:00
if (!islocalchar(label[0])) /* not local, but not special either */
2002-04-30 20:59:21 +00:00
prevlabel = lptr->defn.label;
2002-04-30 20:51:32 +00:00
else
2002-04-30 20:59:21 +00:00
error(ERR_NONFATAL, "attempt to define a local label as a "
"common variable");
2002-04-30 20:51:32 +00:00
lptr->defn.segment = segment;
lptr->defn.offset = 0;
2005-01-15 22:15:51 +00:00
ofmt->symdef(lptr->defn.label, segment, size, 2,
special ? special : lptr->defn.special);
2002-04-30 20:53:55 +00:00
ofmt->current_dfmt->debug_deflabel(lptr->defn.label, segment, size, 2,
2005-01-15 22:15:51 +00:00
special ? special : lptr->defn.
special);
2002-04-30 20:51:32 +00:00
}
void declare_as_global(char *label, char *special, efunc error)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:51:32 +00:00
union label *lptr;
if (islocal(label)) {
2002-04-30 20:59:21 +00:00
error(ERR_NONFATAL, "attempt to declare local symbol `%s' as"
" global", label);
return;
2002-04-30 20:51:32 +00:00
}
2005-01-15 22:15:51 +00:00
lptr = find_label(label, 1);
2002-04-30 20:52:49 +00:00
switch (lptr->defn.is_global & TYPE_MASK) {
2005-01-15 22:15:51 +00:00
case NOT_DEFINED_YET:
2002-04-30 20:59:21 +00:00
lptr->defn.is_global = GLOBAL_PLACEHOLDER;
lptr->defn.special = special ? perm_copy(special) : NULL;
2002-04-30 20:59:21 +00:00
break;
2005-01-15 22:15:51 +00:00
case GLOBAL_PLACEHOLDER: /* already done: silently ignore */
case GLOBAL_SYMBOL:
2002-04-30 20:59:21 +00:00
break;
2005-01-15 22:15:51 +00:00
case LOCAL_SYMBOL:
2002-04-30 20:59:21 +00:00
if (!lptr->defn.is_global & EXTERN_BIT)
error(ERR_NONFATAL, "symbol `%s': GLOBAL directive must"
" appear before symbol definition", label);
break;
2002-04-30 20:51:32 +00:00
}
}
2005-01-15 22:15:51 +00:00
int init_labels(void)
2002-04-30 20:53:55 +00:00
{
hash_init(&ltab, HASH_LARGE);
ldata = lfree = (union label *)nasm_malloc(LBLK_SIZE);
init_block(lfree);
2002-04-30 20:51:32 +00:00
2005-01-15 22:15:51 +00:00
perm_head =
perm_tail = (struct permts *)nasm_malloc(sizeof(struct permts));
2002-04-30 20:53:55 +00:00
2002-04-30 20:51:32 +00:00
perm_head->next = NULL;
perm_head->size = PERMTS_SIZE;
perm_head->usage = 0;
prevlabel = "";
initialized = true;
2002-04-30 20:52:49 +00:00
2002-04-30 20:51:32 +00:00
return 0;
}
2005-01-15 22:15:51 +00:00
void cleanup_labels(void)
2002-04-30 20:53:55 +00:00
{
union label *lptr, *lhold;
2002-04-30 20:51:32 +00:00
initialized = false;
2002-04-30 20:52:49 +00:00
hash_free(&ltab);
2002-04-30 20:51:32 +00:00
lptr = lhold = ldata;
while (lptr) {
lptr = &lptr[LABEL_BLOCK-1];
lptr = lptr->admin.next;
nasm_free(lhold);
lhold = lptr;
2002-04-30 20:51:32 +00:00
}
while (perm_head) {
2002-04-30 20:59:21 +00:00
perm_tail = perm_head;
perm_head = perm_head->next;
2005-01-15 22:15:51 +00:00
nasm_free(perm_tail);
2002-04-30 20:51:32 +00:00
}
}
2005-01-15 22:15:51 +00:00
static void init_block(union label *blk)
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:51:32 +00:00
int j;
2005-01-15 22:15:51 +00:00
for (j = 0; j < LABEL_BLOCK - 1; j++)
blk[j].admin.movingon = END_LIST;
blk[LABEL_BLOCK - 1].admin.movingon = END_BLOCK;
blk[LABEL_BLOCK - 1].admin.next = NULL;
2002-04-30 20:51:32 +00:00
}
static char *perm_copy(const char *string)
2002-04-30 20:53:55 +00:00
{
char *p;
int len = strlen(string)+1;
2002-04-30 20:51:32 +00:00
if (perm_tail->size - perm_tail->usage < len) {
2005-01-15 22:15:51 +00:00
perm_tail->next =
(struct permts *)nasm_malloc(sizeof(struct permts));
2002-04-30 20:59:21 +00:00
perm_tail = perm_tail->next;
perm_tail->next = NULL;
perm_tail->size = PERMTS_SIZE;
perm_tail->usage = 0;
2002-04-30 20:51:32 +00:00
}
p = perm_tail->data + perm_tail->usage;
memcpy(p, string, len);
perm_tail->usage += len;
2002-04-30 20:51:32 +00:00
return p;
}
2002-04-30 20:53:55 +00:00
char *local_scope(char *label)
{
return islocal(label) ? prevlabel : "";
}
2002-04-30 20:53:55 +00:00
/*
* Notes regarding bug involving redefinition of external segments.
*
* Up to and including v0.97, the following code didn't work. From 0.97
* developers release 2 onwards, it will generate an error.
*
* EXTERN extlabel
* newlabel EQU extlabel + 1
*
* The results of allowing this code through are that two import records
* are generated, one for 'extlabel' and one for 'newlabel'.
*
* The reason for this is an inadequacy in the defined interface between
* the label manager and the output formats. The problem lies in how the
* output format driver tells that a label is an external label for which
* a label import record must be produced. Most (all except bin?) produce
* the record if the segment number of the label is not one of the internal
* segments that the output driver is producing.
*
* A simple fix to this would be to make the output formats keep track of
* which symbols they've produced import records for, and make them not
* produce import records for segments that are already defined.
*
* The best way, which is slightly harder but reduces duplication of code
* and should therefore make the entire system smaller and more stable is
* to change the interface between assembler, define_label(), and
* the output module. The changes that are needed are:
*
* The semantics of the 'isextern' flag passed to define_label() need
* examining. This information may or may not tell us what we need to
* know (ie should we be generating an import record at this point for this
* label). If these aren't the semantics, the semantics should be changed
* to this.
*
* The output module interface needs changing, so that the `isextern' flag
* is passed to the module, so that it can be easily tested for.
*/