-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathassemble.c
1866 lines (1657 loc) · 58.4 KB
/
assemble.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****************************************************************************
*
* This code is Public Domain.
*
* ========================================================================
*
* Description: assemble a module.
*
****************************************************************************/
#ifdef __GNUC__
#define _BITS_FLOATN_COMMON_H
#endif
#include <ctype.h>
#include <time.h>
#include "globals.h"
#include "memalloc.h"
#include "input.h"
#include "parser.h"
#include "reswords.h"
#include "tokenize.h"
#include "condasm.h"
#include "segment.h"
#include "assume.h"
#include "proc.h"
#include "expreval.h"
#include "hll.h"
#include "context.h"
#include "types.h"
#include "label.h"
#include "macro.h"
#include "extern.h"
#include "fixup.h"
#include "omf.h"
#include "fastpass.h"
#include "listing.h"
#include "msgtext.h"
#include "myassert.h"
#include "linnum.h"
#include "cpumodel.h"
#include "lqueue.h"
#include "orgfixup.h"
#include "macrolib.h"
//#include "simd.h"
#if DLLIMPORT
#include "mangle.h"
#endif
#if COFF_SUPPORT
#include "coff.h"
#endif
#if ELF_SUPPORT
#include "elf.h"
#endif
#if BIN_SUPPORT
#include "bin.h"
#endif
#if MACHO_SUPPORT
#include "macho64.h"
#endif
#if 1 //def __SW_BD
#include <setjmp.h>
jmp_buf jmpenv;
#endif
#ifdef __SW_BD
#define EXPQUAL __stdcall
#else
#define EXPQUAL
#endif
#define USELSLINE 1 /* must match switch in listing.c! */
//#define ASM_EXT "asm"
#ifdef __UNIX__
#define OBJ_EXT "o"
#else
#define OBJ_EXT "obj"
#endif
#define LST_EXT "lst"
#define ERR_EXT "err"
#define BIN_EXT "BIN"
#define EXE_EXT "EXE"
extern int_32 LastCodeBufSize;
extern char *DefaultDir[NUM_FILE_TYPES];
extern const char *ModelToken[];
#if FASTMEM==0
extern void FreeLibQueue();
#endif
#include "Colors.h"
#ifdef _WIN32
#include "winconsole.h"
#endif
/* parameters for output formats. order must match enum oformat */
static const struct format_options formatoptions[] = {
#if BIN_SUPPORT
{ bin_init, BIN_DISALLOWED, "BIN" },
#endif
{ omf_init, OMF_DISALLOWED, "OMF" },
#if COFF_SUPPORT
{ coff_init, COFF32_DISALLOWED, "COFF" },
#endif
#if ELF_SUPPORT
{ elf_init, ELF32_DISALLOWED, "ELF" },
#endif
#if MACHO_SUPPORT
{ macho_init, MACHO32_DISALLOWED, "MACHO" },
#endif
};
struct module_info ModuleInfo;
unsigned int Parse_Pass; /* assembly pass */
//unsigned int GeneratedCode; /* v2.10: moved to ModuleInfo */
struct qdesc LinnumQueue; /* queue of line_num_info items */
bool write_to_file; /* write object module */
#if 0
/* for OW, it would be good to remove the CharUpperA() emulation
* implemented in apiemu.c. Unfortunately, OW isn't happy with
* a local, simple version of _strupr() - it still wants to
* import CharUpperA.
*/
char * _strupr( char *src )
{
char *dst;
for ( dst = src; *dst; dst++ )
if ( *dst >= 'a' && *dst <= 'z' )
*dst &= ~0x20;
return( src );
}
#endif
#if COFF_SUPPORT || PE_SUPPORT
/* struct to help convert section names in COFF, ELF, PE */
struct conv_section {
uint_8 len;
uint_8 flags; /* see below */
const char *src;
const char *dst;
};
enum cvs_flags {
CSF_GRPCHK = 1
};
enum conv_section_index {
CSI_TEXT = 0,
CSI_DATA,
CSI_CONST,
CSI_BSS
};
/* order must match enum conv_section_index above */
static const struct conv_section cst[] = {
{ 5, CSF_GRPCHK, "_TEXT", ".text" },
{ 5, CSF_GRPCHK, "_DATA", ".data" },
{ 5, CSF_GRPCHK, "CONST", ".rdata" },
{ 4, 0, "_BSS", ".bss" }
};
/* order must match enum conv_section_index above */
static const enum seg_type stt[] = {
SEGTYPE_CODE, SEGTYPE_DATA, SEGTYPE_DATA, SEGTYPE_BSS
};
static void CheckBOM(FILE *f)
{
unsigned long bom;
fread(&bom, 3, 1, f);
if ((bom & 0xFFFFFF) != 0xBFBBEF)
rewind(f);
}
extern void RewindToWin64()
{
if (!(Options.output_format == OFORMAT_BIN && Options.sub_format == SFORMAT_NONE))
{
if (Options.output_format != OFORMAT_BIN)
Options.output_format = OFORMAT_COFF;
else
Options.langtype = LANG_FASTCALL;
Options.sub_format = SFORMAT_64BIT;
}
}
/*
* translate section names (COFF+PE):
* _TEXT -> .text
* _DATA -> .data
* CONST -> .rdata
* _BSS -> .bss
*/
char *ConvertSectionName( const struct asym *sym, enum seg_type *pst, char *buffer )
/**********************************************************************************/
{
int i;
for ( i = 0; i < sizeof( cst ) / sizeof( cst[0] ); i++ ) {
if ( memcmp( sym->name, cst[i].src, cst[i].len ) == 0 ) {
if ( sym->name[cst[i].len] == NULLC || ( sym->name[cst[i].len] == '$' && ( cst[i].flags & CSF_GRPCHK ) ) ) {
if ( pst ) {
if ( i == CSI_BSS && ( (struct dsym *)sym)->e.seginfo->bytes_written != 0 )
; /* don't set segment type to BSS if the segment contains initialized data */
else
*pst = stt[i];
}
if ( sym->name[cst[i].len] == NULLC ) {
#if DJGPP_SUPPORT
/* DJGPP won't be happy with .rdata segment name */
if( ModuleInfo.sub_format == SFORMAT_DJGPP && i == CSI_CONST )
return( ".const" );
#endif
return( (char *)cst[i].dst );
}
strcpy( buffer, cst[i].dst );
strcat( buffer, sym->name+cst[i].len );
return( buffer );
}
}
}
return( sym->name );
}
#endif
/* Write a byte to the segment buffer.
* in OMF, the segment buffer is flushed when the max. record size is reached.
*/
void OutputByte( unsigned char byte )
/***********************************/
{
if( write_to_file == TRUE ) {
uint_32 idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
#ifdef DEBUG_OUT
if ( CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc ) {
;//_asm int 3;
}
#endif
/**/myassert( CurrSeg->e.seginfo->current_loc >= CurrSeg->e.seginfo->start_loc );
if( Options.output_format == OFORMAT_OMF && idx >= MAX_LEDATA_THRESHOLD ) {
omf_FlushCurrSeg();
idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
}
//DebugMsg(("OutputByte: buff=%p, idx=%" I32_SPEC "X, byte=%X, codebuff[0]=%X\n", CurrSeg->e.seginfo->CodeBuffer, idx, byte, *CurrSeg->e.seginfo->CodeBuffer ));
CurrSeg->e.seginfo->CodeBuffer[idx] = byte;
}
#if 1
/* check this in pass 1 only */
else if( CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc ) {
DebugMsg(("OutputByte: segment start loc changed from %" I32_SPEC "Xh to %" I32_SPEC "Xh\n",
CurrSeg->e.seginfo->start_loc,
CurrSeg->e.seginfo->current_loc));
CurrSeg->e.seginfo->start_loc = CurrSeg->e.seginfo->current_loc;
}
#endif
CurrSeg->e.seginfo->current_loc++;
CurrSeg->e.seginfo->bytes_written++;
CurrSeg->e.seginfo->written = TRUE;
if( CurrSeg->e.seginfo->current_loc > CurrSeg->sym.max_offset )
CurrSeg->sym.max_offset = CurrSeg->e.seginfo->current_loc;
}
/* Added 2.14: to accelerate bulk writing of incbin data */
void OutputBinBytes(unsigned char* pBytes, uint_32 len)
{
int i;
if (write_to_file == TRUE) {
uint_32 idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
#ifdef DEBUG_OUT
if (CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc) {
;//_asm int 3;
}
#endif
/**/myassert(CurrSeg->e.seginfo->current_loc >= CurrSeg->e.seginfo->start_loc);
if (Options.output_format == OFORMAT_OMF && idx >= MAX_LEDATA_THRESHOLD) {
omf_FlushCurrSeg();
idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
}
//DebugMsg(("OutputByte: buff=%p, idx=%" I32_SPEC "X, byte=%X, codebuff[0]=%X\n", CurrSeg->e.seginfo->CodeBuffer, idx, byte, *CurrSeg->e.seginfo->CodeBuffer ));
for (i = 0; i < len; i++)
{
CurrSeg->e.seginfo->CodeBuffer[idx++] = *(pBytes++);
}
}
#if 1
/* check this in pass 1 only */
else if (CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc) {
DebugMsg(("OutputByte: segment start loc changed from %" I32_SPEC "Xh to %" I32_SPEC "Xh\n",
CurrSeg->e.seginfo->start_loc,
CurrSeg->e.seginfo->current_loc));
CurrSeg->e.seginfo->start_loc = CurrSeg->e.seginfo->current_loc;
}
#endif
CurrSeg->e.seginfo->current_loc+=len;
CurrSeg->e.seginfo->bytes_written+=len;
CurrSeg->e.seginfo->written = TRUE;
if (CurrSeg->e.seginfo->current_loc > CurrSeg->sym.max_offset)
CurrSeg->sym.max_offset = CurrSeg->e.seginfo->current_loc;
}
#if 0 /* v2.03: OutputCodeByte is obsolete */
void OutputCodeByte( unsigned char byte )
/***************************************/
{
// if ( ModuleInfo.CommentDataInCode )
// omf_OutSelect( FALSE );
OutputByte( byte );
}
#endif
void FillDataBytes( unsigned char byte, int len )
/***********************************************/
{
if ( ModuleInfo.CommentDataInCode )
omf_OutSelect( TRUE );
for( ; len; len-- )
OutputByte( byte );
}
void OutputSegmentBytes(struct dsym* segg, const unsigned char *pbytes, int len, struct fixup *fixup)
/***************************************************************************/
{
if (write_to_file == TRUE) {
uint_32 idx = segg->e.seginfo->current_loc - segg->e.seginfo->start_loc;
#if 0 /* def DEBUG_OUT */
if (CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc)
_asm int 3;
#endif
/**/myassert(segg->e.seginfo->current_loc >= segg->e.seginfo->start_loc);
if (Options.output_format == OFORMAT_OMF && ((idx + len) > MAX_LEDATA_THRESHOLD)) {
omf_FlushCurrSeg();
idx = segg->e.seginfo->current_loc - segg->e.seginfo->start_loc;
}
if (fixup)
store_fixup(fixup, segg, (int_32 *)pbytes);
//DebugMsg(("OutputBytes: buff=%p, idx=%" I32_SPEC "X, byte=%X\n", CurrSeg->e.seginfo->CodeBuffer, idx, *pbytes ));
memcpy(&segg->e.seginfo->CodeBuffer[idx], pbytes, len);
}
#if 1
/* check this in pass 1 only */
else if (segg->e.seginfo->current_loc < segg->e.seginfo->start_loc) {
DebugMsg(("OutputBytes: segment start loc changed from %" I32_SPEC "Xh to %" I32_SPEC "Xh\n",
segg->e.seginfo->start_loc,
segg->e.seginfo->current_loc));
segg->e.seginfo->start_loc = segg->e.seginfo->current_loc;
}
#endif
segg->e.seginfo->current_loc += len;
segg->e.seginfo->bytes_written += len;
segg->e.seginfo->written = TRUE;
if (segg->e.seginfo->current_loc > segg->sym.max_offset)
segg->sym.max_offset = segg->e.seginfo->current_loc;
}
/*
* this function is to output (small, <= 8) amounts of bytes which must
* not be separated ( for omf, because of fixups )
*/
void OutputBytes( const unsigned char *pbytes, int len, struct fixup *fixup )
/***************************************************************************/
{
if( write_to_file == TRUE ) {
uint_32 idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
#if 0 /* def DEBUG_OUT */
if ( CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc )
_asm int 3;
#endif
/**/myassert( CurrSeg->e.seginfo->current_loc >= CurrSeg->e.seginfo->start_loc );
if( Options.output_format == OFORMAT_OMF && ((idx + len) > MAX_LEDATA_THRESHOLD ) ) {
omf_FlushCurrSeg();
idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
}
if ( fixup )
store_fixup( fixup, CurrSeg, (int_32 *)pbytes );
//DebugMsg(("OutputBytes: buff=%p, idx=%" I32_SPEC "X, byte=%X\n", CurrSeg->e.seginfo->CodeBuffer, idx, *pbytes ));
memcpy( &CurrSeg->e.seginfo->CodeBuffer[idx], pbytes, len );
}
#if 1
/* check this in pass 1 only */
else if( CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc ) {
DebugMsg(("OutputBytes: segment start loc changed from %" I32_SPEC "Xh to %" I32_SPEC "Xh\n",
CurrSeg->e.seginfo->start_loc,
CurrSeg->e.seginfo->current_loc));
CurrSeg->e.seginfo->start_loc = CurrSeg->e.seginfo->current_loc;
}
#endif
CurrSeg->e.seginfo->current_loc += len;
CurrSeg->e.seginfo->bytes_written += len;
CurrSeg->e.seginfo->written = TRUE;
if( CurrSeg->e.seginfo->current_loc > CurrSeg->sym.max_offset )
CurrSeg->sym.max_offset = CurrSeg->e.seginfo->current_loc;
}
/* Used to output a string to current segment in wide-char format with interleaved zeros */
void OutputInterleavedBytes(const unsigned char *pbytes, int len, struct fixup *fixup)
{
int i = 0;
char *pOut = NULL;
if (write_to_file == TRUE) {
uint_32 idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
#if 0 /* def DEBUG_OUT */
if (CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc)
_asm int 3;
#endif
/**/myassert(CurrSeg->e.seginfo->current_loc >= CurrSeg->e.seginfo->start_loc);
if (Options.output_format == OFORMAT_OMF && ((idx + len) > MAX_LEDATA_THRESHOLD)) {
omf_FlushCurrSeg();
idx = CurrSeg->e.seginfo->current_loc - CurrSeg->e.seginfo->start_loc;
}
if (fixup)
store_fixup(fixup, CurrSeg, (int_32 *)pbytes);
pOut = &CurrSeg->e.seginfo->CodeBuffer[idx];
for (i = 0; i < len*2; i++)
{
if (i % 2 == 1)
*pOut++ = 0;
else
*pOut++ = *pbytes++;
}
}
#if 1
/* check this in pass 1 only */
else if (CurrSeg->e.seginfo->current_loc < CurrSeg->e.seginfo->start_loc) {
DebugMsg(("OutputBytes: segment start loc changed from %" I32_SPEC "Xh to %" I32_SPEC "Xh\n",
CurrSeg->e.seginfo->start_loc,
CurrSeg->e.seginfo->current_loc));
CurrSeg->e.seginfo->start_loc = CurrSeg->e.seginfo->current_loc;
}
#endif
CurrSeg->e.seginfo->current_loc += len*2;
CurrSeg->e.seginfo->bytes_written += len*2;
CurrSeg->e.seginfo->written = TRUE;
if (CurrSeg->e.seginfo->current_loc > CurrSeg->sym.max_offset)
CurrSeg->sym.max_offset = CurrSeg->e.seginfo->current_loc;
}
/* set current offset in a segment (usually CurrSeg) without to write anything */
ret_code SetCurrOffset( struct dsym *seg, uint_32 value, bool relative, bool select_data )
/****************************************************************************************/
{
if( relative )
value += seg->e.seginfo->current_loc;
if ( Options.output_format == OFORMAT_OMF ) {
if ( seg == CurrSeg ) {
if ( write_to_file == TRUE )
omf_FlushCurrSeg();
/* for debugging, tell if data is located in code sections*/
if( select_data )
if ( ModuleInfo.CommentDataInCode )
omf_OutSelect( TRUE );
LastCodeBufSize = value;
}
seg->e.seginfo->start_loc = value;
/* for -bin, if there's an ORG (relative==false) and no initialized data
* has been set yet, set start_loc!
* v1.96: this is now also done for COFF and ELF
*/
/* else if ( Options.output_format == OFORMAT_BIN && relative == FALSE ) { */
} else {
if ( write_to_file == FALSE ) {
if ( relative ) {
#if 0 /* don't include "preceding" uninitialized data */
if( seg->e.seginfo->current_loc < seg->e.seginfo->start_loc )
seg->e.seginfo->start_loc = seg->e.seginfo->current_loc;
#endif
} else {
if ( seg->e.seginfo->bytes_written == 0 )
seg->e.seginfo->start_loc = value;
}
}
}
seg->e.seginfo->current_loc = value;
seg->e.seginfo->written = FALSE;
if( seg->e.seginfo->current_loc > seg->sym.max_offset )
seg->sym.max_offset = seg->e.seginfo->current_loc;
return( NOT_ERROR );
}
/* write object module */
static ret_code WriteModule( struct module_info *modinfo )
/********************************************************/
{
struct dsym *curr;
DebugMsg(("WriteModule enter\n"));
/* final checks */
/* check limit of segments */
for( curr = SymTables[TAB_SEG].head; curr; curr = curr->next ) {
if ( curr->e.seginfo->Ofssize == USE16 && curr->sym.max_offset > 0x10000 ) {
if ( Options.output_format == OFORMAT_OMF )
EmitErr( SEGMENT_EXCEEDS_64K_LIMIT, curr->sym.name );
else
EmitWarn( 2, SEGMENT_EXCEEDS_64K_LIMIT, curr->sym.name );
}
}
modinfo->g.WriteModule( modinfo );
#if DLLIMPORT
/* is the -Fd option given with a file name? */
if ( Options.names[OPTN_LNKDEF_FN] ) {
FILE *ld;
ld = fopen( Options.names[OPTN_LNKDEF_FN], "w" );
if ( ld == NULL ) {
return( EmitErr( CANNOT_OPEN_FILE, Options.names[OPTN_LNKDEF_FN], ErrnoStr() ) );
}
for ( curr = SymTables[TAB_EXT].head; curr != NULL ; curr = curr->next ) {
DebugMsg(("WriteModule: ext=%s, isproc=%u, weak=%u\n", curr->sym.name, curr->sym.isproc, curr->sym.weak ));
if ( curr->sym.isproc && ( curr->sym.weak == FALSE || curr->sym.iat_used ) &&
curr->sym.dll && *(curr->sym.dll->name) != NULLC ) {
int size;
Mangle( &curr->sym, StringBufferEnd );
size = sprintf( CurrSource, "import '%s' %s.%s\n", StringBufferEnd, curr->sym.dll->name, curr->sym.name );
if ( fwrite( CurrSource, 1, size, ld ) != size )
WriteError();
}
}
fclose( ld );
}
#endif
DebugMsg(("WriteModule exit\n"));
return( NOT_ERROR );
}
#define is_valid_first_char( ch ) ( isalpha(ch) || ch=='_' || ch=='@' || ch=='$' || ch=='?' || ch=='.' )
/* check name of text macros defined via -D option */
static int is_valid_identifier( char *id )
/****************************************/
{
/* special handling of first char of an id: it can't be a digit,
but can be a dot (don't care about ModuleInfo.dotname!). */
if( is_valid_first_char( *id ) == 0 )
return( ERROR );
id++;
for( ; *id != NULLC; id++ ) {
if ( is_valid_id_char( *id ) == FALSE )
return( ERROR );
}
/* don't allow a single dot! */
if ( *(id-1) == '.' )
return( ERROR );
return( NOT_ERROR );
}
/* add text macros defined with the -D cmdline switch */
static void add_cmdline_tmacros( void )
/****************************************/
{
struct qitem *p;
char *name;
char *value;
int len;
struct asym *sym;
DebugMsg(("add_cmdline_tmacros enter\n"));
for ( p = Options.queues[OPTQ_MACRO]; p; p = p->next ) {
DebugMsg(("add_cmdline_tmacros: found >%s<\n", p->value));
name = p->value;
value = strchr( name, '=' );
if( value == NULL ) {
/* v2.06: ensure that 'value' doesn't point to r/o space */
//value = "";
value = name + strlen( name ); /* use the terminating NULL */
} else {
len = value - name;
name = (char *)myalloca( len + 1 );
memcpy( name, p->value, len );
*(name + len) = NULLC;
value++;
}
/* there's no check whether the name is a reserved word!
*/
if( is_valid_identifier( name ) == ERROR ) {
DebugMsg(("add_cmdline_tmacros: name >%s< invalid\n", name ));
EmitErr( SYNTAX_ERROR_EX, name );
} else {
sym = SymSearch( name );
if ( sym == NULL ) {
sym = SymCreate( name );
sym->state = SYM_TMACRO;
}
if ( sym->state == SYM_TMACRO ) {
sym->isdefined = TRUE;
sym->predefined = TRUE;
sym->string_ptr = value;
} else
EmitErr( SYMBOL_ALREADY_DEFINED, name );
}
}
return;
}
/* add the include paths set by -I option */
static void add_incpaths( void )
/******************************/
{
struct qitem *p;
DebugMsg(("add_incpaths: enter\n"));
for ( p = Options.queues[OPTQ_INCPATH]; p; p = p->next ) {
AddStringToIncludePath( p->value );
}
}
/* this is called for every pass.
* symbol table and ModuleInfo are initialized.
*/
static void CmdlParamsInit( int pass )
/************************************/
{
DebugMsg(("CmdlParamsInit(%u) enter\n", pass));
#if BUILD_TARGET
if ( pass == PASS_1 ) {
struct asym *sym;
char *tmp;
char *p;
_strupr( Options.build_target );
tmp = myalloca( strlen( Options.build_target ) + 5 ); /* null + 4 uscores */
strcpy( tmp, uscores );
strcat( tmp, Options.build_target );
strcat( tmp, uscores );
/* define target */
sym = CreateVariable( tmp, 0 );
sym->predefined = TRUE;
p = NULL;
if( _stricmp( Options.build_target, "DOS" ) == 0 ) {
p = "__MSDOS__";
} else if( _stricmp( Options.build_target, "NETWARE" ) == 0 ) {
if( ( ModuleInfo.curr_cpu & P_CPU_MASK ) >= P_386 ) {
p = "__NETWARE_386__";
} else {
/* do nothing ... __NETWARE__ already defined */
}
} else if( _stricmp( Options.build_target, "WINDOWS" ) == 0 ) {
if( ( ModuleInfo.curr_cpu & P_CPU_MASK ) >= P_386 ) {
p = "__WINDOWS_386__";
} else {
/* do nothing ... __WINDOWS__ already defined */
}
} else if( _stricmp( Options.build_target, "QNX" ) == 0 ) {
p = "__UNIX__";
} else if( _stricmp( Options.build_target, "LINUX" ) == 0 ) {
p = "__UNIX__";
}
if ( p ) {
sym = CreateVariable( p, 0 );
sym->predefined = TRUE;
}
}
#endif
if ( pass == PASS_1 ) {
char *env;
/* v2.06: this is done in ModulePassInit now */
//SetCPU( Options.cpu );
add_cmdline_tmacros();
add_incpaths();
if ( Options.ignore_include == FALSE )
if ( env = getenv( "INCLUDE" ) )
AddStringToIncludePath( env );
}
DebugMsg(("CmdlParamsInit exit\n"));
return;
}
void WritePreprocessedLine( const char *string )
/**********************************************/
/* print out preprocessed source lines
*/
{
static bool PrintEmptyLine = TRUE;
const char *p;
#if 0 /* v2.08: removed, obsolete */
/* filter some macro specific directives */
if ( tokenarray[0].token == T_DIRECTIVE &&
( tokenarray[0].tokval == T_ENDM ||
tokenarray[0].tokval == T_EXITM))
return;
/* don't print generated code - with one exception:
if the code was generated as a result of structure initialization,
then do!
*/
if ( GeneratedCode )
return;
#endif
if ( Token_Count > 0 ) {
/* v2.08: don't print a leading % (this char is no longer filtered) */
for ( p = string; isspace( *p ); p++ );
printf("%s\n", *p == '%' ? p+1 : string );
PrintEmptyLine = TRUE;
} else if ( PrintEmptyLine ) {
PrintEmptyLine = FALSE;
printf("\n");
}
}
/* set Masm v5.1 compatibility options */
void SetMasm510( bool value )
/***************************/
{
ModuleInfo.m510 = value;
ModuleInfo.oldstructs = value;
/* ModuleInfo.oldmacros = value; not implemented yet */
ModuleInfo.dotname = value;
ModuleInfo.setif2 = value;
if ( value ) {
if ( ModuleInfo.model == MODEL_NONE ) {
/* if no model is specified, set OFFSET:SEGMENT */
ModuleInfo.offsettype = OT_SEGMENT;
if ( ModuleInfo.langtype == LANG_NONE ) {
ModuleInfo.scoped = FALSE;
ModuleInfo.procs_private = TRUE;
}
}
}
return;
}
/* called for each pass */
static void ModulePassInit( void )
/********************************/
{
enum cpu_info cpu = Options.cpu;
enum model_type model = Options.model;
#if DLLIMPORT
struct dsym *curr;
#endif
DebugMsg(( "ModulePassInit() enter\n" ));
/* set default values not affected by the masm 5.1 compat switch */
ModuleInfo.procs_private = FALSE;
ModuleInfo.procs_export = FALSE;
ModuleInfo.offsettype = OT_GROUP;
ModuleInfo.scoped = TRUE;
#if FASTPASS
/* v2.03: don't generate the code if fastpass is active */
/* v2.08: query UseSavedState instead of StoreState */
if ( UseSavedState == FALSE ) {
#endif
ModuleInfo.langtype = Options.langtype;
ModuleInfo.fctype = Options.fctype;
#if AMD64_SUPPORT
if (Options.output_format == OFORMAT_ELF)
{
ModuleInfo.fctype = FCT_WIN64;
Options.fctype = FCT_WIN64; /* SYSV proc/invoke tables use the same ordinal as FCT_WIN64 so set it now, instead of FCT_MSC */
}
#endif
#if AMD64_SUPPORT
if ( ModuleInfo.sub_format == SFORMAT_64BIT )
{
/* v2.06: force cpu to be at least P_64, without side effect to Options.cpu */
if ( ( cpu & P_CPU_MASK ) < P_64 ) /* enforce cpu to be 64-bit */
cpu = P_64;
/* ignore -m switch for 64-bit formats.
* there's no other model than FLAT possible.
*/
model = MODEL_FLAT;
if (ModuleInfo.langtype == LANG_NONE && Options.output_format == OFORMAT_COFF)
ModuleInfo.langtype = LANG_FASTCALL;
if (ModuleInfo.langtype == LANG_NONE && Options.output_format == OFORMAT_ELF)
ModuleInfo.langtype = LANG_SYSVCALL;
if (ModuleInfo.langtype == LANG_NONE && Options.output_format == OFORMAT_MAC)
ModuleInfo.langtype = LANG_SYSVCALL;
} else
#endif
/* if model FLAT is to be set, ensure that cpu is compat. */
if ( model == MODEL_FLAT && ( cpu & P_CPU_MASK ) < P_386 ) /* cpu < 386? */
cpu = P_386;
SetCPU( cpu );
/* table ModelToken starts with MODEL_TINY, which is index 1" */
if ( model != MODEL_NONE )
AddLineQueueX( "%r %s", T_DOT_MODEL, ModelToken[model - 1] );
#if FASTPASS
}
#endif
SetMasm510( Options.masm51_compat );
ModuleInfo.defOfssize = USE16;
ModuleInfo.ljmp = TRUE;
ModuleInfo.list = Options.write_listing;
ModuleInfo.cref = TRUE;
ModuleInfo.listif = Options.listif;
ModuleInfo.list_generated_code = Options.list_generated_code;
ModuleInfo.list_macro = Options.list_macro;
ModuleInfo.case_sensitive = Options.case_sensitive;
ModuleInfo.convert_uppercase = Options.convert_uppercase;
SymSetCmpFunc();
ModuleInfo.segorder = SEGORDER_SEQ;
ModuleInfo.radix = 10;
ModuleInfo.fieldalign = Options.fieldalign;
ModuleInfo.procalign = 0;
#if DLLIMPORT
/* if OPTION DLLIMPORT was used, reset all iat_used flags */
if ( ModuleInfo.g.DllQueue )
for ( curr = SymTables[TAB_EXT].head; curr; curr = curr->next )
curr->sym.iat_used = FALSE;
#endif
}
#if 0 /* v2.07: removed */
/* scan - and clear - global queue (EXTERNDEFs).
* items which have been defined within the module
* will become public.
* PROTOs aren't included in the global queue.
* They will become public when - and if - the PROC directive
* for the symbol is met.
*/
static void scan_globals( void )
/******************************/
{
struct qnode *curr;
struct qnode *next;
struct asym *sym;
/* turn EXTERNDEFs into PUBLICs if defined in the module.
* PROCs are handled differently - so ignore these entries here!
*/
/* obsolete since v2.07.
* it's simpler and better to make the symbol public if it turns
* from SYM_EXTERNAL to SYM_INTERNAL.
* the other case, that is, the EXTERNDEF comes AFTER the definition,
* is handled in ExterndefDirective()
*/
DebugMsg(("scan_globals: GlobalQueue=%X\n", ModuleInfo.g.GlobalQueue));
for ( curr = ModuleInfo.g.GlobalQueue.head; curr; curr = next ) {
next = curr->next;
sym = (struct asym *)curr->elmt;
DebugMsg(("scan_globals: %s state=%u used=%u public=%u\n", sym->name, sym->state, sym->used, sym->public ));
if( sym->state == SYM_INTERNAL && sym->public == FALSE && sym->isproc == FALSE ) {
/* add it to the public queue */
sym->public = TRUE;
QEnqueue( &ModuleInfo.g.PubQueue, curr );
DebugMsg(("scan_globals: %s added to public queue\n", sym->name ));
continue; /* don't free this item! */
}
LclFree( curr );
}
/* the queue is empty now */
ModuleInfo.g.GlobalQueue.head = NULL;
}
#endif
/* checks after pass one has been finished without errors */
static void PassOneChecks( void )
/*******************************/
{
struct dsym *curr;
struct dsym *next;
struct qnode *q;
struct qnode *qn;
#ifdef DEBUG_OUT
int cntUnusedExt = 0;
#endif
/* check for open structures and segments has been done inside the
* END directive handling already
* v2.10: now done for PROCs as well, since procedures
* must be closed BEFORE segments are to be closed.
*/
HllCheckOpen();
CondCheckOpen();
/* Don't require END directive for bin output */
if( ModuleInfo.EndDirFound == FALSE && Options.output_format != OFORMAT_BIN)
EmitError( END_DIRECTIVE_REQUIRED );
/* v2.04: check the publics queue.
* - only internal symbols can be public.
* - weak external symbols are filtered ( since v2.11 )
* - anything else is an error
* v2.11: moved here ( from inside the "#if FASTPASS"-block )
* because the loop will now filter weak externals [ this
* was previously done in GetPublicSymbols() ]
*/
for( q = ModuleInfo.g.PubQueue.head, qn = (struct qnode *)&ModuleInfo.g.PubQueue ; q; q = q->next ) {
if ( q->sym->state == SYM_INTERNAL )
qn = q;
else if ( q->sym->state == SYM_EXTERNAL && q->sym->weak == TRUE ) {
DebugMsg(("PassOneChecks: public for weak external skipped: %s\n", q->sym->name ));
qn->next = q->next;
LclFree( q );
q = qn;
} else {
DebugMsg(("PassOneChecks: invalid public attribute for %s [state=%u weak=%u]\n", q->sym->name, q->sym->state, q->sym->weak ));
#if FASTPASS
SkipSavedState();
#endif
break;
}
}
#if FASTPASS
if ( SymTables[TAB_UNDEF].head ) {
/* to force a full second pass in case of missing symbols,
* activate the next line. It was implemented to have proper
* error displays if a forward reference wasn't found.
* However, v1.95 final won't need this anymore, because both
* filename + lineno for every line is known now in pass 2.
*/
/* SkipSavedState(); */
}
/* check if there's an undefined segment reference.
* This segment was an argument to a group definition then.
* Just do a full second pass, the GROUP directive will report
* the error.
*/
for( curr = SymTables[TAB_SEG].head; curr; curr = curr->next ) {
if( curr->sym.segment == NULL ) {
DebugMsg(("PassOneChecks: undefined segment %s\n", curr->sym.name ));
SkipSavedState();
break;
}
}
#if COFF_SUPPORT
/* if there's an item in the safeseh list which is not an
* internal proc, make a full second pass to emit a proper
* error msg at the .SAFESEH directive
*/
for ( q = ModuleInfo.g.SafeSEHQueue.head; q; q = q->next ) {
if ( q->sym->state != SYM_INTERNAL || q->sym->isproc == FALSE ) {
SkipSavedState();
break;
}
}
#endif
/* scan ALIASes for COFF/ELF */
if ( Options.output_format == OFORMAT_COFF || Options.output_format == OFORMAT_ELF ) {
for( curr = SymTables[TAB_ALIAS].head ; curr != NULL ;curr = curr->next ) {
struct asym *sym;
sym = curr->sym.substitute;
/* check if symbol is external or public */
if ( sym == NULL ||
( sym->state != SYM_EXTERNAL &&
( sym->state != SYM_INTERNAL || sym->ispublic == FALSE ))) {
SkipSavedState();
break;
}
/* make sure it becomes a strong external */
if ( sym->state == SYM_EXTERNAL )
sym->used = TRUE;
}
}
#endif /* FASTPASS */
/* scan the EXTERN/EXTERNDEF items */
for( curr = SymTables[TAB_EXT].head ; curr; curr = next )