2025-10-01 11:25:38 -07:00
|
|
|
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
|
/* Copyright 1996-2018 The NASM Authors - All Rights Reserved */
|
2009-06-28 17:13:04 -07:00
|
|
|
|
2025-10-01 11:25:38 -07:00
|
|
|
/*
|
2009-06-28 17:13:04 -07:00
|
|
|
* labels.h header file for labels.c
|
2002-04-30 20:51:32 +00:00
|
|
|
*/
|
|
|
|
|
|
2007-10-11 00:05:31 -07:00
|
|
|
#ifndef LABELS_H
|
|
|
|
|
#define LABELS_H
|
|
|
|
|
|
2017-03-07 19:44:21 -08:00
|
|
|
#include "compiler.h"
|
|
|
|
|
|
2018-06-01 18:02:54 -07:00
|
|
|
enum label_type {
|
2019-09-12 20:26:23 -04:00
|
|
|
LBL_none = -1, /* No label */
|
2019-09-12 20:21:03 -04:00
|
|
|
LBL_LOCAL = 0, /* Must be zero */
|
2018-06-01 18:02:54 -07:00
|
|
|
LBL_STATIC,
|
2019-09-12 20:21:03 -04:00
|
|
|
LBL_GLOBAL,
|
2018-06-01 18:02:54 -07:00
|
|
|
LBL_EXTERN,
|
2019-09-12 20:21:03 -04:00
|
|
|
LBL_REQUIRED, /* Like extern but emit even if unused */
|
2018-06-01 18:02:54 -07:00
|
|
|
LBL_COMMON,
|
|
|
|
|
LBL_SPECIAL, /* Magic symbols like ..start */
|
|
|
|
|
LBL_BACKEND /* Backend-defined symbols like ..got */
|
|
|
|
|
};
|
2002-04-30 21:00:33 +00:00
|
|
|
|
2019-09-12 20:21:03 -04:00
|
|
|
enum label_type lookup_label(const char *label, int32_t *segment, int64_t *offset);
|
|
|
|
|
static inline bool is_extern(enum label_type type)
|
|
|
|
|
{
|
|
|
|
|
return type == LBL_EXTERN || type == LBL_REQUIRED;
|
|
|
|
|
}
|
2018-06-01 18:02:54 -07:00
|
|
|
void define_label(const char *label, int32_t segment, int64_t offset,
|
|
|
|
|
bool normal);
|
|
|
|
|
void backend_label(const char *label, int32_t segment, int64_t offset);
|
|
|
|
|
bool declare_label(const char *label, enum label_type type,
|
|
|
|
|
const char *special);
|
2025-10-07 18:46:39 -07:00
|
|
|
void set_label_mangle(enum directive which, const char *what);
|
2005-01-15 22:15:51 +00:00
|
|
|
int init_labels(void);
|
|
|
|
|
void cleanup_labels(void);
|
2018-06-01 18:02:54 -07:00
|
|
|
const char *local_scope(const char *label);
|
2007-10-11 00:05:31 -07:00
|
|
|
|
2017-03-07 19:44:21 -08:00
|
|
|
extern uint64_t global_offset_changed;
|
|
|
|
|
|
2007-10-11 00:05:31 -07:00
|
|
|
#endif /* LABELS_H */
|