2002-04-30 20:51:32 +00:00
|
|
|
/* labels.h header file for labels.c
|
|
|
|
*
|
|
|
|
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
|
|
|
* Julian Hall. All rights reserved. The software is
|
2007-12-29 09:44:23 -05:00
|
|
|
* redistributable under the license given in the file "LICENSE"
|
2002-04-30 20:51:32 +00:00
|
|
|
* distributed in the NASM archive.
|
|
|
|
*/
|
|
|
|
|
2007-10-11 00:05:31 -07:00
|
|
|
#ifndef LABELS_H
|
|
|
|
#define LABELS_H
|
|
|
|
|
2007-04-13 16:47:53 +00:00
|
|
|
extern char lprefix[PREFIX_MAX];
|
|
|
|
extern char lpostfix[PREFIX_MAX];
|
2002-04-30 21:00:33 +00:00
|
|
|
|
2007-11-05 17:19:32 -08:00
|
|
|
bool lookup_label(char *label, int32_t *segment, int64_t *offset);
|
2007-10-11 00:05:31 -07:00
|
|
|
bool is_extern(char *label);
|
2007-11-05 17:19:32 -08:00
|
|
|
void define_label(char *label, int32_t segment, int64_t offset, char *special,
|
2007-10-11 00:05:31 -07:00
|
|
|
bool is_norm, bool isextrn, struct ofmt *ofmt,
|
2005-01-15 22:15:51 +00:00
|
|
|
efunc error);
|
2007-11-05 17:19:32 -08:00
|
|
|
void redefine_label(char *label, int32_t segment, int64_t offset, char *special,
|
2007-10-11 00:05:31 -07:00
|
|
|
bool is_norm, bool isextrn, struct ofmt *ofmt,
|
2005-01-15 22:15:51 +00:00
|
|
|
efunc error);
|
2007-04-13 16:47:53 +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);
|
2007-04-13 16:47:53 +00:00
|
|
|
void declare_as_global(char *label, char *special, efunc error);
|
2005-01-15 22:15:51 +00:00
|
|
|
int init_labels(void);
|
|
|
|
void cleanup_labels(void);
|
2008-03-12 22:39:03 -07:00
|
|
|
char *local_scope(char *label);
|
2007-10-11 00:05:31 -07:00
|
|
|
|
|
|
|
#endif /* LABELS_H */
|