1 /* nasmlib.c library routines for the Netwide Assembler
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the licence given in the file "Licence"
6 * distributed in the NASM archive.
16 #include "insns.h" /* For MAX_KEYWORD */
18 static efunc nasm_malloc_error
;
24 void nasm_set_malloc_error(efunc error
)
26 nasm_malloc_error
= error
;
28 logfp
= fopen("malloc.log", "w");
29 setvbuf(logfp
, NULL
, _IOLBF
, BUFSIZ
);
30 fprintf(logfp
, "null pointer is %p\n", NULL
);
35 void *nasm_malloc_log(char *file
, int line
, size_t size
)
37 void *nasm_malloc(size_t size
)
40 void *p
= malloc(size
);
42 nasm_malloc_error(ERR_FATAL
| ERR_NOFILE
, "out of memory");
45 fprintf(logfp
, "%s %d malloc(%ld) returns %p\n",
46 file
, line
, (long)size
, p
);
52 void *nasm_realloc_log(char *file
, int line
, void *q
, size_t size
)
54 void *nasm_realloc(void *q
, size_t size
)
57 void *p
= q
? realloc(q
, size
) : malloc(size
);
59 nasm_malloc_error(ERR_FATAL
| ERR_NOFILE
, "out of memory");
62 fprintf(logfp
, "%s %d realloc(%p,%ld) returns %p\n",
63 file
, line
, q
, (long)size
, p
);
65 fprintf(logfp
, "%s %d malloc(%ld) returns %p\n",
66 file
, line
, (long)size
, p
);
72 void nasm_free_log(char *file
, int line
, void *q
)
74 void nasm_free(void *q
)
80 fprintf(logfp
, "%s %d free(%p)\n", file
, line
, q
);
86 char *nasm_strdup_log(char *file
, int line
, const char *s
)
88 char *nasm_strdup(const char *s
)
92 int size
= strlen(s
) + 1;
96 nasm_malloc_error(ERR_FATAL
| ERR_NOFILE
, "out of memory");
99 fprintf(logfp
, "%s %d strdup(%ld) returns %p\n",
100 file
, line
, (long)size
, p
);
107 char *nasm_strndup_log(char *file
, int line
, char *s
, size_t len
)
109 char *nasm_strndup(char *s
, size_t len
)
117 nasm_malloc_error(ERR_FATAL
| ERR_NOFILE
, "out of memory");
120 fprintf(logfp
, "%s %d strndup(%ld) returns %p\n",
121 file
, line
, (long)size
, p
);
128 #if !defined(stricmp) && !defined(strcasecmp)
129 int nasm_stricmp(const char *s1
, const char *s2
)
131 while (*s1
&& tolower(*s1
) == tolower(*s2
))
135 else if (tolower(*s1
) < tolower(*s2
))
142 #if !defined(strnicmp) && !defined(strncasecmp)
143 int nasm_strnicmp(const char *s1
, const char *s2
, int n
)
145 while (n
> 0 && *s1
&& tolower(*s1
) == tolower(*s2
))
147 if ((!*s1
&& !*s2
) || n
== 0)
149 else if (tolower(*s1
) < tolower(*s2
))
156 #define lib_isnumchar(c) ( isalnum(c) || (c) == '$')
157 #define numvalue(c) ((c)>='a' ? (c)-'a'+10 : (c)>='A' ? (c)-'A'+10 : (c)-'0')
159 long readnum(char *str
, int *error
)
163 unsigned long result
, checklimit
;
171 r
++; /* find start of number */
174 * If the number came from make_tok_num (as a result of an %assign), it
175 * might have a '-' built into it (rather than in a preceeding token).
184 while (lib_isnumchar(*q
))
185 q
++; /* find end of number */
188 * If it begins 0x, 0X or $, or ends in H, it's in hex. if it
189 * ends in Q, it's octal. if it ends in B, it's binary.
190 * Otherwise, it's ordinary decimal.
192 if (*r
== '0' && (r
[1] == 'x' || r
[1] == 'X'))
196 else if (q
[-1] == 'H' || q
[-1] == 'h')
198 else if (q
[-1] == 'Q' || q
[-1] == 'q' || q
[-1] == 'O' || q
[-1] == 'o')
200 else if (q
[-1] == 'B' || q
[-1] == 'b')
206 * If this number has been found for us by something other than
207 * the ordinary scanners, then it might be malformed by having
208 * nothing between the prefix and the suffix. Check this case
217 * `checklimit' must be 2**32 / radix. We can't do that in
218 * 32-bit arithmetic, which we're (probably) using, so we
219 * cheat: since we know that all radices we use are even, we
220 * can divide 2**31 by radix/2 instead.
222 checklimit
= 0x80000000UL
/ (radix
>> 1);
225 * Calculate the highest allowable value for the last digit
226 * of a 32 bit constant... in radix 10, it is 6, otherwise it is 0
228 last
= (radix
== 10 ? 6 : 0);
231 while (*r
&& r
< q
) {
232 if (*r
< '0' || (*r
> '9' && *r
< 'A')
233 || (digit
= numvalue(*r
)) >= radix
) {
237 if (result
> checklimit
|| (result
== checklimit
&& digit
>= last
)) {
241 result
= radix
* result
+ digit
;
246 nasm_malloc_error(ERR_WARNING
| ERR_PASS1
| ERR_WARN_NOV
,
247 "numeric constant %s does not fit in 32 bits",
250 return result
* sign
;
253 long readstrnum(char *str
, int length
, int *warn
)
261 for (i
= 0; i
< length
; i
++) {
262 if (charconst
& 0xff000000UL
) {
265 charconst
= (charconst
<< 8) + (unsigned char)*--str
;
270 static long next_seg
;
279 return (next_seg
+= 2) - 2;
282 void fwriteshort(int data
, FILE * fp
)
284 fputc((int)(data
& 255), fp
);
285 fputc((int)((data
>> 8) & 255), fp
);
288 void fwritelong(long data
, FILE * fp
)
290 fputc((int)(data
& 255), fp
);
291 fputc((int)((data
>> 8) & 255), fp
);
292 fputc((int)((data
>> 16) & 255), fp
);
293 fputc((int)((data
>> 24) & 255), fp
);
296 void standard_extension(char *inname
, char *outname
, char *extension
,
301 if (*outname
) /* file name already exists, */
302 return; /* so do nothing */
306 *p
++ = *q
++; /* copy, and find end of string */
307 *p
= '\0'; /* terminate it */
308 while (p
> outname
&& *--p
!= '.') ; /* find final period (or whatever) */
311 p
++; /* go back to end if none found */
312 if (!strcmp(p
, extension
)) { /* is the extension already there? */
314 error(ERR_WARNING
| ERR_NOFILE
,
315 "file name already ends in `%s': "
316 "output will be in `nasm.out'", extension
);
318 error(ERR_WARNING
| ERR_NOFILE
,
319 "file name already has no extension: "
320 "output will be in `nasm.out'");
321 strcpy(outname
, "nasm.out");
323 strcpy(p
, extension
);
326 #define LEAFSIZ (sizeof(RAA)-sizeof(RAA_UNION)+sizeof(RAA_LEAF))
327 #define BRANCHSIZ (sizeof(RAA)-sizeof(RAA_UNION)+sizeof(RAA_BRANCH))
329 #define LAYERSIZ(r) ( (r)->layers==0 ? RAA_BLKSIZE : RAA_LAYERSIZE )
331 static struct RAA
*real_raa_init(int layers
)
337 r
= nasm_malloc(LEAFSIZ
);
339 memset(r
->u
.l
.data
, 0, sizeof(r
->u
.l
.data
));
342 r
= nasm_malloc(BRANCHSIZ
);
344 for (i
= 0; i
< RAA_LAYERSIZE
; i
++)
345 r
->u
.b
.data
[i
] = NULL
;
346 r
->stepsize
= RAA_BLKSIZE
;
348 r
->stepsize
*= RAA_LAYERSIZE
;
353 struct RAA
*raa_init(void)
355 return real_raa_init(0);
358 void raa_free(struct RAA
*r
)
364 for (p
= r
->u
.b
.data
; p
- r
->u
.b
.data
< RAA_LAYERSIZE
; p
++)
370 long raa_read(struct RAA
*r
, long posn
)
372 if (posn
>= r
->stepsize
* LAYERSIZ(r
))
373 return 0; /* Return 0 for undefined entries */
374 while (r
->layers
> 0) {
376 l
= ldiv(posn
, r
->stepsize
);
377 r
= r
->u
.b
.data
[l
.quot
];
380 return 0; /* Return 0 for undefined entries */
382 return r
->u
.l
.data
[posn
];
385 struct RAA
*raa_write(struct RAA
*r
, long posn
, long value
)
390 nasm_malloc_error(ERR_PANIC
, "negative position in raa_write");
392 while (r
->stepsize
* LAYERSIZ(r
) <= posn
) {
399 s
= nasm_malloc(BRANCHSIZ
);
400 for (i
= 0; i
< RAA_LAYERSIZE
; i
++)
401 s
->u
.b
.data
[i
] = NULL
;
402 s
->layers
= r
->layers
+ 1;
403 s
->stepsize
= LAYERSIZ(r
) * r
->stepsize
;
410 while (r
->layers
> 0) {
413 l
= ldiv(posn
, r
->stepsize
);
414 s
= &r
->u
.b
.data
[l
.quot
];
416 *s
= real_raa_init(r
->layers
- 1);
421 r
->u
.l
.data
[posn
] = value
;
426 #define SAA_MAXLEN 8192
428 struct SAA
*saa_init(long elem_len
)
432 if (elem_len
> SAA_MAXLEN
)
433 nasm_malloc_error(ERR_PANIC
| ERR_NOFILE
,
434 "SAA with huge elements");
436 s
= nasm_malloc(sizeof(struct SAA
));
437 s
->posn
= s
->start
= 0L;
438 s
->elem_len
= elem_len
;
439 s
->length
= SAA_MAXLEN
- (SAA_MAXLEN
% elem_len
);
440 s
->data
= nasm_malloc(s
->length
);
447 void saa_free(struct SAA
*s
)
459 void *saa_wstruct(struct SAA
*s
)
463 if (s
->end
->length
- s
->end
->posn
< s
->elem_len
) {
464 s
->end
->next
= nasm_malloc(sizeof(struct SAA
));
465 s
->end
->next
->start
= s
->end
->start
+ s
->end
->posn
;
466 s
->end
= s
->end
->next
;
467 s
->end
->length
= s
->length
;
470 s
->end
->data
= nasm_malloc(s
->length
);
473 p
= s
->end
->data
+ s
->end
->posn
;
474 s
->end
->posn
+= s
->elem_len
;
478 void saa_wbytes(struct SAA
*s
, const void *data
, long len
)
480 const char *d
= data
;
483 long l
= s
->end
->length
- s
->end
->posn
;
488 memcpy(s
->end
->data
+ s
->end
->posn
, d
, l
);
491 memset(s
->end
->data
+ s
->end
->posn
, 0, l
);
496 s
->end
->next
= nasm_malloc(sizeof(struct SAA
));
497 s
->end
->next
->start
= s
->end
->start
+ s
->end
->posn
;
498 s
->end
= s
->end
->next
;
499 s
->end
->length
= s
->length
;
502 s
->end
->data
= nasm_malloc(s
->length
);
507 void saa_rewind(struct SAA
*s
)
513 void *saa_rstruct(struct SAA
*s
)
520 if (s
->rptr
->posn
- s
->rpos
< s
->elem_len
) {
521 s
->rptr
= s
->rptr
->next
;
523 return NULL
; /* end of array */
527 p
= s
->rptr
->data
+ s
->rpos
;
528 s
->rpos
+= s
->elem_len
;
532 void *saa_rbytes(struct SAA
*s
, long *len
)
539 p
= s
->rptr
->data
+ s
->rpos
;
540 *len
= s
->rptr
->posn
- s
->rpos
;
541 s
->rptr
= s
->rptr
->next
;
546 void saa_rnbytes(struct SAA
*s
, void *data
, long len
)
556 l
= s
->rptr
->posn
- s
->rpos
;
560 memcpy(d
, s
->rptr
->data
+ s
->rpos
, l
);
566 s
->rptr
= s
->rptr
->next
;
572 void saa_fread(struct SAA
*s
, long posn
, void *data
, long len
)
578 if (!s
->rptr
|| posn
< s
->rptr
->start
)
581 while (posn
>= p
->start
+ p
->posn
) {
584 return; /* what else can we do?! */
587 pos
= posn
- p
->start
;
589 long l
= p
->posn
- pos
;
592 memcpy(cdata
, p
->data
+ pos
, l
);
603 void saa_fwrite(struct SAA
*s
, long posn
, void *data
, long len
)
609 if (!s
->rptr
|| posn
< s
->rptr
->start
)
612 while (posn
>= p
->start
+ p
->posn
) {
615 return; /* what else can we do?! */
618 pos
= posn
- p
->start
;
620 long l
= p
->posn
- pos
;
623 memcpy(p
->data
+ pos
, cdata
, l
);
634 void saa_fpwrite(struct SAA
*s
, FILE * fp
)
640 while ((data
= saa_rbytes(s
, &len
)))
641 fwrite(data
, 1, len
, fp
);
645 * Register, instruction, condition-code and prefix keywords used
649 static const char *special_names
[] = {
650 "byte", "dword", "far", "long", "near", "nosplit", "qword",
651 "short", "strict", "to", "tword", "word"
653 static const char *prefix_names
[] = {
654 "a16", "a32", "lock", "o16", "o32", "rep", "repe", "repne",
655 "repnz", "repz", "times"
659 * Standard scanner routine used by parser.c and some output
660 * formats. It keeps a succession of temporary-storage strings in
661 * stdscan_tempstorage, which can be cleared using stdscan_reset.
663 static char **stdscan_tempstorage
= NULL
;
664 static int stdscan_tempsize
= 0, stdscan_templen
= 0;
665 #define STDSCAN_TEMP_DELTA 256
667 static void stdscan_pop(void)
669 nasm_free(stdscan_tempstorage
[--stdscan_templen
]);
672 void stdscan_reset(void)
674 while (stdscan_templen
> 0)
679 * Unimportant cleanup is done to avoid confusing people who are trying
680 * to debug real memory leaks
682 void nasmlib_cleanup(void)
685 nasm_free(stdscan_tempstorage
);
688 static char *stdscan_copy(char *p
, int len
)
692 text
= nasm_malloc(len
+ 1);
693 strncpy(text
, p
, len
);
696 if (stdscan_templen
>= stdscan_tempsize
) {
697 stdscan_tempsize
+= STDSCAN_TEMP_DELTA
;
698 stdscan_tempstorage
= nasm_realloc(stdscan_tempstorage
,
702 stdscan_tempstorage
[stdscan_templen
++] = text
;
707 char *stdscan_bufptr
= NULL
;
708 int stdscan(void *private_data
, struct tokenval
*tv
)
710 char ourcopy
[MAX_KEYWORD
+ 1], *r
, *s
;
712 (void)private_data
; /* Don't warn that this parameter is unused */
714 while (isspace(*stdscan_bufptr
))
716 if (!*stdscan_bufptr
)
717 return tv
->t_type
= 0;
719 /* we have a token; either an id, a number or a char */
720 if (isidstart(*stdscan_bufptr
) ||
721 (*stdscan_bufptr
== '$' && isidstart(stdscan_bufptr
[1]))) {
722 /* now we've got an identifier */
726 if (*stdscan_bufptr
== '$') {
731 r
= stdscan_bufptr
++;
732 /* read the entire buffer to advance the buffer pointer but... */
733 while (isidchar(*stdscan_bufptr
))
736 /* ... copy only up to IDLEN_MAX-1 characters */
737 tv
->t_charptr
= stdscan_copy(r
, stdscan_bufptr
- r
< IDLEN_MAX
?
738 stdscan_bufptr
- r
: IDLEN_MAX
- 1);
740 if (is_sym
|| stdscan_bufptr
- r
> MAX_KEYWORD
)
741 return tv
->t_type
= TOKEN_ID
; /* bypass all other checks */
743 for (s
= tv
->t_charptr
, r
= ourcopy
; *s
; s
++)
746 /* right, so we have an identifier sitting in temp storage. now,
747 * is it actually a register or instruction name, or what? */
748 if ((tv
->t_integer
= bsi(ourcopy
, reg_names
,
749 elements(reg_names
))) >= 0) {
750 tv
->t_integer
+= EXPR_REG_START
;
751 return tv
->t_type
= TOKEN_REG
;
752 } else if ((tv
->t_integer
= bsi(ourcopy
, insn_names
,
753 elements(insn_names
))) >= 0) {
754 return tv
->t_type
= TOKEN_INSN
;
756 for (i
= 0; i
< elements(icn
); i
++)
757 if (!strncmp(ourcopy
, icn
[i
], strlen(icn
[i
]))) {
758 char *p
= ourcopy
+ strlen(icn
[i
]);
759 tv
->t_integer
= ico
[i
];
760 if ((tv
->t_inttwo
= bsi(p
, conditions
,
761 elements(conditions
))) >= 0)
762 return tv
->t_type
= TOKEN_INSN
;
764 if ((tv
->t_integer
= bsi(ourcopy
, prefix_names
,
765 elements(prefix_names
))) >= 0) {
766 tv
->t_integer
+= PREFIX_ENUM_START
;
767 return tv
->t_type
= TOKEN_PREFIX
;
769 if ((tv
->t_integer
= bsi(ourcopy
, special_names
,
770 elements(special_names
))) >= 0)
771 return tv
->t_type
= TOKEN_SPECIAL
;
772 if (!nasm_stricmp(ourcopy
, "seg"))
773 return tv
->t_type
= TOKEN_SEG
;
774 if (!nasm_stricmp(ourcopy
, "wrt"))
775 return tv
->t_type
= TOKEN_WRT
;
776 return tv
->t_type
= TOKEN_ID
;
777 } else if (*stdscan_bufptr
== '$' && !isnumchar(stdscan_bufptr
[1])) {
779 * It's a $ sign with no following hex number; this must
780 * mean it's a Here token ($), evaluating to the current
781 * assembly location, or a Base token ($$), evaluating to
782 * the base of the current segment.
785 if (*stdscan_bufptr
== '$') {
787 return tv
->t_type
= TOKEN_BASE
;
789 return tv
->t_type
= TOKEN_HERE
;
790 } else if (isnumstart(*stdscan_bufptr
)) { /* now we've got a number */
793 r
= stdscan_bufptr
++;
794 while (isnumchar(*stdscan_bufptr
))
797 if (*stdscan_bufptr
== '.') {
799 * a floating point constant
802 while (isnumchar(*stdscan_bufptr
) ||
803 ((stdscan_bufptr
[-1] == 'e'
804 || stdscan_bufptr
[-1] == 'E')
805 && (*stdscan_bufptr
== '-' || *stdscan_bufptr
== '+'))) {
808 tv
->t_charptr
= stdscan_copy(r
, stdscan_bufptr
- r
);
809 return tv
->t_type
= TOKEN_FLOAT
;
811 r
= stdscan_copy(r
, stdscan_bufptr
- r
);
812 tv
->t_integer
= readnum(r
, &rn_error
);
815 return tv
->t_type
= TOKEN_ERRNUM
; /* some malformation occurred */
816 tv
->t_charptr
= NULL
;
817 return tv
->t_type
= TOKEN_NUM
;
818 } else if (*stdscan_bufptr
== '\'' || *stdscan_bufptr
== '"') { /* a char constant */
819 char quote
= *stdscan_bufptr
++, *r
;
821 r
= tv
->t_charptr
= stdscan_bufptr
;
822 while (*stdscan_bufptr
&& *stdscan_bufptr
!= quote
)
824 tv
->t_inttwo
= stdscan_bufptr
- r
; /* store full version */
825 if (!*stdscan_bufptr
)
826 return tv
->t_type
= TOKEN_ERRNUM
; /* unmatched quotes */
827 stdscan_bufptr
++; /* skip over final quote */
828 tv
->t_integer
= readstrnum(r
, tv
->t_inttwo
, &rn_warn
);
829 /* FIXME: rn_warn is not checked! */
830 return tv
->t_type
= TOKEN_NUM
;
831 } else if (*stdscan_bufptr
== ';') { /* a comment has happened - stay */
832 return tv
->t_type
= 0;
833 } else if (stdscan_bufptr
[0] == '>' && stdscan_bufptr
[1] == '>') {
835 return tv
->t_type
= TOKEN_SHR
;
836 } else if (stdscan_bufptr
[0] == '<' && stdscan_bufptr
[1] == '<') {
838 return tv
->t_type
= TOKEN_SHL
;
839 } else if (stdscan_bufptr
[0] == '/' && stdscan_bufptr
[1] == '/') {
841 return tv
->t_type
= TOKEN_SDIV
;
842 } else if (stdscan_bufptr
[0] == '%' && stdscan_bufptr
[1] == '%') {
844 return tv
->t_type
= TOKEN_SMOD
;
845 } else if (stdscan_bufptr
[0] == '=' && stdscan_bufptr
[1] == '=') {
847 return tv
->t_type
= TOKEN_EQ
;
848 } else if (stdscan_bufptr
[0] == '<' && stdscan_bufptr
[1] == '>') {
850 return tv
->t_type
= TOKEN_NE
;
851 } else if (stdscan_bufptr
[0] == '!' && stdscan_bufptr
[1] == '=') {
853 return tv
->t_type
= TOKEN_NE
;
854 } else if (stdscan_bufptr
[0] == '<' && stdscan_bufptr
[1] == '=') {
856 return tv
->t_type
= TOKEN_LE
;
857 } else if (stdscan_bufptr
[0] == '>' && stdscan_bufptr
[1] == '=') {
859 return tv
->t_type
= TOKEN_GE
;
860 } else if (stdscan_bufptr
[0] == '&' && stdscan_bufptr
[1] == '&') {
862 return tv
->t_type
= TOKEN_DBL_AND
;
863 } else if (stdscan_bufptr
[0] == '^' && stdscan_bufptr
[1] == '^') {
865 return tv
->t_type
= TOKEN_DBL_XOR
;
866 } else if (stdscan_bufptr
[0] == '|' && stdscan_bufptr
[1] == '|') {
868 return tv
->t_type
= TOKEN_DBL_OR
;
869 } else /* just an ordinary char */
870 return tv
->t_type
= (unsigned char)(*stdscan_bufptr
++);
874 * Return TRUE if the argument is a simple scalar. (Or a far-
875 * absolute, which counts.)
877 int is_simple(expr
* vect
)
879 while (vect
->type
&& !vect
->value
)
883 if (vect
->type
!= EXPR_SIMPLE
)
887 } while (vect
->type
&& !vect
->value
);
888 if (vect
->type
&& vect
->type
< EXPR_SEGBASE
+ SEG_ABS
)
894 * Return TRUE if the argument is a simple scalar, _NOT_ a far-
897 int is_really_simple(expr
* vect
)
899 while (vect
->type
&& !vect
->value
)
903 if (vect
->type
!= EXPR_SIMPLE
)
907 } while (vect
->type
&& !vect
->value
);
914 * Return TRUE if the argument is relocatable (i.e. a simple
915 * scalar, plus at most one segment-base, plus possibly a WRT).
917 int is_reloc(expr
* vect
)
919 while (vect
->type
&& !vect
->value
) /* skip initial value-0 terms */
921 if (!vect
->type
) /* trivially return TRUE if nothing */
922 return 1; /* is present apart from value-0s */
923 if (vect
->type
< EXPR_SIMPLE
) /* FALSE if a register is present */
925 if (vect
->type
== EXPR_SIMPLE
) { /* skip over a pure number term... */
928 } while (vect
->type
&& !vect
->value
);
929 if (!vect
->type
) /* ...returning TRUE if that's all */
932 if (vect
->type
== EXPR_WRT
) { /* skip over a WRT term... */
935 } while (vect
->type
&& !vect
->value
);
936 if (!vect
->type
) /* ...returning TRUE if that's all */
939 if (vect
->value
!= 0 && vect
->value
!= 1)
940 return 0; /* segment base multiplier non-unity */
941 do { /* skip over _one_ seg-base term... */
943 } while (vect
->type
&& !vect
->value
);
944 if (!vect
->type
) /* ...returning TRUE if that's all */
946 return 0; /* And return FALSE if there's more */
950 * Return TRUE if the argument contains an `unknown' part.
952 int is_unknown(expr
* vect
)
954 while (vect
->type
&& vect
->type
< EXPR_UNKNOWN
)
956 return (vect
->type
== EXPR_UNKNOWN
);
960 * Return TRUE if the argument contains nothing but an `unknown'
963 int is_just_unknown(expr
* vect
)
965 while (vect
->type
&& !vect
->value
)
967 return (vect
->type
== EXPR_UNKNOWN
);
971 * Return the scalar part of a relocatable vector. (Including
972 * simple scalar vectors - those qualify as relocatable.)
974 long reloc_value(expr
* vect
)
976 while (vect
->type
&& !vect
->value
)
980 if (vect
->type
== EXPR_SIMPLE
)
987 * Return the segment number of a relocatable vector, or NO_SEG for
990 long reloc_seg(expr
* vect
)
992 while (vect
->type
&& (vect
->type
== EXPR_WRT
|| !vect
->value
))
994 if (vect
->type
== EXPR_SIMPLE
) {
997 } while (vect
->type
&& (vect
->type
== EXPR_WRT
|| !vect
->value
));
1002 return vect
->type
- EXPR_SEGBASE
;
1006 * Return the WRT segment number of a relocatable vector, or NO_SEG
1007 * if no WRT part is present.
1009 long reloc_wrt(expr
* vect
)
1011 while (vect
->type
&& vect
->type
< EXPR_WRT
)
1013 if (vect
->type
== EXPR_WRT
) {
1022 int bsi(char *string
, const char **array
, int size
)
1024 int i
= -1, j
= size
; /* always, i < index < j */
1025 while (j
- i
>= 2) {
1026 int k
= (i
+ j
) / 2;
1027 int l
= strcmp(string
, array
[k
]);
1028 if (l
< 0) /* it's in the first half */
1030 else if (l
> 0) /* it's in the second half */
1032 else /* we've got it :) */
1035 return -1; /* we haven't got it :( */
1038 static char *file_name
= NULL
;
1039 static long line_number
= 0;
1041 char *src_set_fname(char *newname
)
1043 char *oldname
= file_name
;
1044 file_name
= newname
;
1048 long src_set_linnum(long newline
)
1050 long oldline
= line_number
;
1051 line_number
= newline
;
1055 long src_get_linnum(void)
1060 int src_get(long *xline
, char **xname
)
1062 if (!file_name
|| !*xname
|| strcmp(*xname
, file_name
)) {
1064 *xname
= file_name
? nasm_strdup(file_name
) : NULL
;
1065 *xline
= line_number
;
1068 if (*xline
!= line_number
) {
1069 long tmp
= line_number
- *xline
;
1070 *xline
= line_number
;
1076 void nasm_quote(char **str
)
1078 int ln
= strlen(*str
);
1081 if (ln
> 1 && (*str
)[ln
- 1] == q
&& (q
== '"' || q
== '\''))
1084 if (strchr(*str
, q
))
1086 p
= nasm_malloc(ln
+ 3);
1087 strcpy(p
+ 1, *str
);
1089 p
[ln
+ 1] = p
[0] = q
;
1094 char *nasm_strcat(char *one
, char *two
)
1097 int l1
= strlen(one
);
1098 rslt
= nasm_malloc(l1
+ strlen(two
) + 1);
1100 strcpy(rslt
+ l1
, two
);
1104 void null_debug_init(struct ofmt
*of
, void *id
, FILE * fp
, efunc error
)
1107 void null_debug_linenum(const char *filename
, long linenumber
, long segto
)
1110 void null_debug_deflabel(char *name
, long segment
, long offset
,
1111 int is_global
, char *special
)
1114 void null_debug_routine(const char *directive
, const char *params
)
1117 void null_debug_typevalue(long type
)
1120 void null_debug_output(int type
, void *param
)
1123 void null_debug_cleanup(void)
1127 struct dfmt null_debug_form
= {
1128 "Null debug format",
1132 null_debug_deflabel
,
1134 null_debug_typevalue
,
1139 struct dfmt
*null_debug_arr
[2] = { &null_debug_form
, NULL
};