1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2009 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * labels.c label handling for the Netwide Assembler
50 * A local label is one that begins with exactly one period. Things
51 * that begin with _two_ periods are NASM-specific things.
53 * If TASM compatibility is enabled, a local label can also begin with
54 * @@, so @@local is a TASM compatible local label. Note that we only
55 * check for the first @ symbol, although TASM requires both.
58 (tasm_compatible_mode ? \
59 (((l)[0] == '.' || (l)[0] == '@') && (l)[1] != '.') : \
60 ((l)[0] == '.' && (l)[1] != '.'))
61 #define islocalchar(c) \
62 (tasm_compatible_mode ? \
63 ((c) == '.' || (c) == '@') : \
66 #define LABEL_BLOCK 128 /* no. of labels/block */
67 #define LBLK_SIZE (LABEL_BLOCK * sizeof(union label))
69 #define END_LIST -3 /* don't clash with NO_SEG! */
71 #define BOGUS_VALUE -4
73 #define PERMTS_SIZE 16384 /* size of text blocks */
74 #if (PERMTS_SIZE < IDLEN_MAX)
75 #error "IPERMTS_SIZE must be greater than or equal to IDLEN_MAX"
78 /* values for label.defn.is_global */
84 #define NOT_DEFINED_YET 0
86 #define LOCAL_SYMBOL (DEFINED_BIT)
87 #define GLOBAL_PLACEHOLDER (GLOBAL_BIT)
88 #define GLOBAL_SYMBOL (DEFINED_BIT | GLOBAL_BIT)
90 union label
{ /* actual label structures */
94 char *label
, *special
;
95 int is_global
, is_norm
;
104 struct permts
{ /* permanent text storage */
105 struct permts
*next
; /* for the linked list */
106 int size
, usage
; /* size and used space in ... */
107 char data
[PERMTS_SIZE
]; /* ... the data block itself */
110 extern int64_t global_offset_changed
; /* defined in nasm.c */
112 static struct hash_table ltab
; /* labels hash table */
113 static union label
*ldata
; /* all label data blocks */
114 static union label
*lfree
; /* labels free block */
115 static struct permts
*perm_head
; /* start of perm. text storage */
116 static struct permts
*perm_tail
; /* end of perm. text storage */
118 static void init_block(union label
*blk
);
119 static char *perm_copy(const char *string
);
121 static char *prevlabel
;
123 static bool initialized
= false;
125 char lprefix
[PREFIX_MAX
] = { 0 };
126 char lpostfix
[PREFIX_MAX
] = { 0 };
129 * Internal routine: finds the `union label' corresponding to the
130 * given label name. Creates a new one, if it isn't found, and if
133 static union label
*find_label(char *label
, int create
)
137 union label
*lptr
, **lpp
;
138 char label_str
[IDLEN_MAX
];
139 struct hash_insert ip
;
141 if (islocal(label
)) {
143 prevlen
= strlen(prev
);
145 if (prevlen
+ len
>= IDLEN_MAX
) {
146 nasm_error(ERR_NONFATAL
, "identifier length exceed %i bytes",
150 memcpy(label_str
, prev
, prevlen
);
151 memcpy(label_str
+prevlen
, label
, len
+1);
158 lpp
= (union label
**) hash_find(<ab
, label
, &ip
);
159 lptr
= lpp
? *lpp
: NULL
;
164 /* Create a new label... */
165 if (lfree
->admin
.movingon
== END_BLOCK
) {
167 * must allocate a new block
169 lfree
->admin
.next
= (union label
*)nasm_malloc(LBLK_SIZE
);
170 lfree
= lfree
->admin
.next
;
174 lfree
->admin
.movingon
= BOGUS_VALUE
;
175 lfree
->defn
.label
= perm_copy(label
);
176 lfree
->defn
.special
= NULL
;
177 lfree
->defn
.is_global
= NOT_DEFINED_YET
;
179 hash_add(&ip
, lfree
->defn
.label
, lfree
);
183 bool lookup_label(char *label
, int32_t *segment
, int64_t *offset
)
190 lptr
= find_label(label
, 0);
191 if (lptr
&& (lptr
->defn
.is_global
& DEFINED_BIT
)) {
192 *segment
= lptr
->defn
.segment
;
193 *offset
= lptr
->defn
.offset
;
200 bool is_extern(char *label
)
207 lptr
= find_label(label
, 0);
208 return (lptr
&& (lptr
->defn
.is_global
& EXTERN_BIT
));
211 void redefine_label(char *label
, int32_t segment
, int64_t offset
, char *special
,
212 bool is_norm
, bool isextrn
)
217 /* This routine possibly ought to check for phase errors. Most assemblers
218 * check for phase errors at this point. I don't know whether phase errors
219 * are even possible, nor whether they are checked somewhere else
222 (void)special
; /* Don't warn that this parameter is unused */
223 (void)is_norm
; /* Don't warn that this parameter is unused */
224 (void)isextrn
; /* Don't warn that this parameter is unused */
228 if (!strncmp(label
, "debugdump", 9))
230 nasm_error(ERR_DEBUG
, "redefine_label (%s, %"PRIx32
", %"PRIx64
", %s, %d, %d)",
231 label
, segment
, offset
, special
, is_norm
, isextrn
);
234 lptr
= find_label(label
, 1);
236 nasm_error(ERR_PANIC
, "can't find label `%s' on pass two", label
);
238 if (!islocal(label
)) {
239 if (!islocalchar(*label
) && lptr
->defn
.is_norm
)
240 prevlabel
= lptr
->defn
.label
;
243 if (lptr
->defn
.offset
!= offset
)
244 global_offset_changed
++;
246 lptr
->defn
.offset
= offset
;
247 lptr
->defn
.segment
= segment
;
250 exi
= !!(lptr
->defn
.is_global
& GLOBAL_BIT
);
254 slen
= strlen(lprefix
);
255 slen
+= strlen(lptr
->defn
.label
);
256 slen
+= strlen(lpostfix
);
257 slen
++; /* room for that null char */
258 xsymbol
= nasm_malloc(slen
);
259 snprintf(xsymbol
, slen
, "%s%s%s", lprefix
, lptr
->defn
.label
,
262 ofmt
->symdef(xsymbol
, segment
, offset
, exi
,
263 special
? special
: lptr
->defn
.special
);
264 ofmt
->current_dfmt
->debug_deflabel(xsymbol
, segment
, offset
, exi
,
265 special
? special
: lptr
->defn
.special
);
266 /** nasm_free(xsymbol); ! outobj.c stores the pointer; ouch!!! **/
268 if ((lptr
->defn
.is_global
& (GLOBAL_BIT
| EXTERN_BIT
)) != EXTERN_BIT
) {
269 ofmt
->symdef(lptr
->defn
.label
, segment
, offset
, exi
,
270 special
? special
: lptr
->defn
.special
);
271 ofmt
->current_dfmt
->debug_deflabel(label
, segment
, offset
, exi
,
272 special
? special
: lptr
->defn
.special
);
275 } /* if (pass0 == 1) */
278 void define_label(char *label
, int32_t segment
, int64_t offset
, char *special
,
279 bool is_norm
, bool isextrn
)
286 if (!strncmp(label
, "debugdump", 9))
288 nasm_error(ERR_DEBUG
, "define_label (%s, %"PRIx32
", %"PRIx64
", %s, %d, %d)",
289 label
, segment
, offset
, special
, is_norm
, isextrn
);
291 lptr
= find_label(label
, 1);
294 if (lptr
->defn
.is_global
& DEFINED_BIT
) {
295 nasm_error(ERR_NONFATAL
, "symbol `%s' redefined", label
);
298 lptr
->defn
.is_global
|= DEFINED_BIT
;
300 lptr
->defn
.is_global
|= EXTERN_BIT
;
302 if (!islocalchar(label
[0]) && is_norm
) {
303 /* not local, but not special either */
304 prevlabel
= lptr
->defn
.label
;
305 } else if (islocal(label
) && !*prevlabel
) {
306 nasm_error(ERR_NONFATAL
, "attempt to define a local label before any"
307 " non-local labels");
310 lptr
->defn
.segment
= segment
;
311 lptr
->defn
.offset
= offset
;
312 lptr
->defn
.is_norm
= (!islocalchar(label
[0]) && is_norm
);
314 if (pass0
== 1 || (!is_norm
&& !isextrn
&& (segment
> 0) && (segment
& 1))) {
315 exi
= !!(lptr
->defn
.is_global
& GLOBAL_BIT
);
319 slen
= strlen(lprefix
);
320 slen
+= strlen(lptr
->defn
.label
);
321 slen
+= strlen(lpostfix
);
322 slen
++; /* room for that null char */
323 xsymbol
= nasm_malloc(slen
);
324 snprintf(xsymbol
, slen
, "%s%s%s", lprefix
, lptr
->defn
.label
,
327 ofmt
->symdef(xsymbol
, segment
, offset
, exi
,
328 special
? special
: lptr
->defn
.special
);
329 ofmt
->current_dfmt
->debug_deflabel(xsymbol
, segment
, offset
, exi
,
330 special
? special
: lptr
->defn
.special
);
331 /** nasm_free(xsymbol); ! outobj.c stores the pointer; ouch!!! **/
333 if ((lptr
->defn
.is_global
& (GLOBAL_BIT
| EXTERN_BIT
)) != EXTERN_BIT
) {
334 ofmt
->symdef(lptr
->defn
.label
, segment
, offset
, exi
,
335 special
? special
: lptr
->defn
.special
);
336 ofmt
->current_dfmt
->debug_deflabel(label
, segment
, offset
, exi
,
337 special
? special
: lptr
->defn
.special
);
340 } /* if (pass0 == 1) */
343 void define_common(char *label
, int32_t segment
, int32_t size
, char *special
)
347 lptr
= find_label(label
, 1);
350 if ((lptr
->defn
.is_global
& DEFINED_BIT
) &&
351 (passn
== 1 || !(lptr
->defn
.is_global
& COMMON_BIT
))) {
352 nasm_error(ERR_NONFATAL
, "symbol `%s' redefined", label
);
355 lptr
->defn
.is_global
|= DEFINED_BIT
|COMMON_BIT
;
357 if (!islocalchar(label
[0])) {
358 prevlabel
= lptr
->defn
.label
;
360 nasm_error(ERR_NONFATAL
, "attempt to define a local label as a "
365 lptr
->defn
.segment
= segment
;
366 lptr
->defn
.offset
= 0;
371 ofmt
->symdef(lptr
->defn
.label
, segment
, size
, 2,
372 special
? special
: lptr
->defn
.special
);
373 ofmt
->current_dfmt
->debug_deflabel(lptr
->defn
.label
, segment
, size
, 2,
374 special
? special
: lptr
->defn
.special
);
377 void declare_as_global(char *label
, char *special
)
381 if (islocal(label
)) {
382 nasm_error(ERR_NONFATAL
, "attempt to declare local symbol `%s' as"
386 lptr
= find_label(label
, 1);
389 switch (lptr
->defn
.is_global
& TYPE_MASK
) {
390 case NOT_DEFINED_YET
:
391 lptr
->defn
.is_global
= GLOBAL_PLACEHOLDER
;
392 lptr
->defn
.special
= special
? perm_copy(special
) : NULL
;
394 case GLOBAL_PLACEHOLDER
: /* already done: silently ignore */
398 if (!(lptr
->defn
.is_global
& EXTERN_BIT
)) {
399 nasm_error(ERR_WARNING
, "symbol `%s': GLOBAL directive "
400 "after symbol definition is an experimental feature", label
);
401 lptr
->defn
.is_global
= GLOBAL_SYMBOL
;
407 int init_labels(void)
409 hash_init(<ab
, HASH_LARGE
);
411 ldata
= lfree
= (union label
*)nasm_malloc(LBLK_SIZE
);
414 perm_head
= perm_tail
=
415 (struct permts
*)nasm_malloc(sizeof(struct permts
));
417 perm_head
->next
= NULL
;
418 perm_head
->size
= PERMTS_SIZE
;
419 perm_head
->usage
= 0;
428 void cleanup_labels(void)
430 union label
*lptr
, *lhold
;
436 lptr
= lhold
= ldata
;
438 lptr
= &lptr
[LABEL_BLOCK
-1];
439 lptr
= lptr
->admin
.next
;
445 perm_tail
= perm_head
;
446 perm_head
= perm_head
->next
;
447 nasm_free(perm_tail
);
451 static void init_block(union label
*blk
)
455 for (j
= 0; j
< LABEL_BLOCK
- 1; j
++)
456 blk
[j
].admin
.movingon
= END_LIST
;
457 blk
[LABEL_BLOCK
- 1].admin
.movingon
= END_BLOCK
;
458 blk
[LABEL_BLOCK
- 1].admin
.next
= NULL
;
461 static char *perm_copy(const char *string
)
464 int len
= strlen(string
)+1;
466 nasm_assert(len
<= PERMTS_SIZE
);
468 if (perm_tail
->size
- perm_tail
->usage
< len
) {
470 (struct permts
*)nasm_malloc(sizeof(struct permts
));
471 perm_tail
= perm_tail
->next
;
472 perm_tail
->next
= NULL
;
473 perm_tail
->size
= PERMTS_SIZE
;
474 perm_tail
->usage
= 0;
476 p
= perm_tail
->data
+ perm_tail
->usage
;
477 memcpy(p
, string
, len
);
478 perm_tail
->usage
+= len
;
483 char *local_scope(char *label
)
485 return islocal(label
) ? prevlabel
: "";
489 * Notes regarding bug involving redefinition of external segments.
491 * Up to and including v0.97, the following code didn't work. From 0.97
492 * developers release 2 onwards, it will generate an error.
495 * newlabel EQU extlabel + 1
497 * The results of allowing this code through are that two import records
498 * are generated, one for 'extlabel' and one for 'newlabel'.
500 * The reason for this is an inadequacy in the defined interface between
501 * the label manager and the output formats. The problem lies in how the
502 * output format driver tells that a label is an external label for which
503 * a label import record must be produced. Most (all except bin?) produce
504 * the record if the segment number of the label is not one of the internal
505 * segments that the output driver is producing.
507 * A simple fix to this would be to make the output formats keep track of
508 * which symbols they've produced import records for, and make them not
509 * produce import records for segments that are already defined.
511 * The best way, which is slightly harder but reduces duplication of code
512 * and should therefore make the entire system smaller and more stable is
513 * to change the interface between assembler, define_label(), and
514 * the output module. The changes that are needed are:
516 * The semantics of the 'isextern' flag passed to define_label() need
517 * examining. This information may or may not tell us what we need to
518 * know (ie should we be generating an import record at this point for this
519 * label). If these aren't the semantics, the semantics should be changed
522 * The output module interface needs changing, so that the `isextern' flag
523 * is passed to the module, so that it can be easily tested for.