File: ctangle.c

package info (click to toggle)
cwebx 3.04-7
  • links: PTS
  • area: main
  • in suites: sarge, woody
  • size: 836 kB
  • ctags: 362
  • sloc: ansic: 1,867; pascal: 227; makefile: 147; sh: 6
file content (996 lines) | stat: -rw-r--r-- 26,047 bytes parent folder | download | duplicates (4)
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
#define version_string "3.04"
#define banner "This is CTANGLE (Version x" version_string ")\n"
#define max_toks 150000L
#define max_texts 2500
#define max_files 50
#define stack_size_max 50
#define max_indent 1000
#define variant text
#define line_output flags['l']
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <limits.h>
#include "common.h"
#define max_bytes 50000L
#define max_modules 1000
#define max_idents 5000
#define max_sections 4000
#define hash_size 353
#define buf_size 100
#define longest_name 1000
#define long_buf_size (buf_size+longest_name)
#define local static
#define array_size(a)((int)(sizeof(a)/sizeof(a[0])))
#define false (boolean)0
#define true (boolean)1
#define ctangle 0
#define cweave 1
#define and_and 04
#define lt_lt 020
#define gt_gt 021
#define plus_plus 013
#define minus_minus 01
#define minus_gt 031
#define not_eq 032
#define lt_eq 034
#define gt_eq 035
#define eq_eq 036
#define or_or 037
#define find_char()(loc<=limit||get_line())
#define id_index(p)((sixteen_bits)((p)-id_table))
#define id_at(i)(&id_table[i])
#define mod_index(p)((sixteen_bits)((p)-mod_table))
#define mod_at(i)(&mod_table[i])
#define name_begin(p)((p)->byte_start)
#define length(p)((int)(strlen(name_begin(p))))
#define name_end(p)(name_begin(p)+length(p))
#define complete_name(p)((p)->byte_start[-1]=='\0')
#define print_mod(p) \
printf(": <%s%s>",name_begin(p),complete_name(p)?"":"...")
#define spotless 0
#define harmless_message 1
#define error_message 2
#define fatal_message 3
#define mark_harmless() \
if(history==spotless)history=harmless_message;else
#define mark_error()(history=error_message)
#define overflow(t)fatal("\n! Sorry, %s capacity exceeded",t)
#define confusion(s)fatal("\n! This can't happen: %s",s)
#define show_banner flags['b']
#define show_happiness flags['h']
#define show_progress flags['p']
#define show_stats flags['s']
#define C_plus_plus flags['+']
#define compatibility_mode flags['c']
#define update_terminal()fflush(stdout)
#define new_line()putchar('\n')
#define term_write(string,leng)printf("%.*s",(int)(leng),string)
#define tok_begin(p)(p)->tok_start
#define tok_end(p)((p)+1)->tok_start
#define text_table_end (&text_table[max_texts])
#define tok_mem_end (&tok_mem[max_toks])
#define store_byte(c) \
if(tok_ptr==tok_mem_end)overflow("token");else*tok_ptr++=c
#define macro_flag (text_table_end-1)
#define header_flag text_table_end
#define next_sec(m)((m)->text_link)
#define equiv equiv_or_xref
#define verb_quote 0x2
#define join 0x3
#define cur_repl cur_state.repl_field
#define cur_byte cur_state.byte_field
#define cur_end cur_state.end_field
#define cur_sec cur_state.sec_nr_field
#define cur_ind cur_state.indent_field
#define cur_state stack[0]
#define stack_end (&stack[stack_size_max])
#define stack_empty()(stack_ptr== &stack[0])
#define C_printf(format,x)fprintf(C_file,format,x)
#define C_putc(c)putc(c,C_file)
#define put_indent() \
(indent_buffer[ind_i=cur_ind]='\0',C_printf("%s",indent_buffer))
#define append_white(c) \
if(ind_i>=max_indent)overflow("indent buffer"); \
else indent_buffer[ind_i++]=isspace(c)?c:' '
#define trans_limit 9
#define trans_of(c)c_trans[(unsigned char)(c)-0x80]
#define translation_exists(c)(trans_of(c)[0]!='\0')
#define comp_op(op) \
(C_printf(out_state==operator&&line_output?" %s":"%s",op) \
,out_state=operator)
#define code_of(c)ccode[(unsigned char)(c)]
#define compress(char2,code) \
if(*loc==char2)return++loc,code
#define preproc_directive 0
#define section_body 1
#define report(k,c,m) \
printf("%lu %ss (out of %lu)\n",(unsigned long)(c),k,(unsigned long)(m))
/*3:*//*10:*/
#line 122 "common.inc"
boolean names_match(id_pointer,char*,int,int);
void init_id_name(id_pointer,int);
void init_module_name(mod_pointer);/*:10*//*15:*/
#line 116 "ctangle.w"
typedef struct text
{eight_bits*tok_start;
struct text*text_link;
}text,*text_pointer;/*:15*//*30:*/
#line 442 "ctangle.w"
typedef struct
{text_pointer repl_field;
eight_bits*byte_field;
eight_bits*end_field;
sixteen_bits sec_nr_field;
sixteen_bits indent_field;
}output_state,*stack_pointer;/*:30*//*36:*/
#line 561 "ctangle.w"
enum{identifier=0x80,section_start,section_end,line_mark};/*:36*//*44:*/
#line 747 "ctangle.w"
enum{no_space,num_or_id,operator,literal};/*:44*//*54:*/
#line 936 "ctangle.w"
enum
{ignore=0x80,
id_code,constant,
verbatim,
at_sign_image,
join_code,
ord,
control_text,
include_preproc,
char_trans,
format,
definition,
header,
begin_C,
module_name,
new_section
};/*:54*//*24:*/
#line 301 "ctangle.w"
void phase_two(void);
void output(text_pointer);
void output_preproc_directives(void);
void C_newline(void);
void out_char(eight_bits);/*:24*//*80:*/
#line 1604 "ctangle.w"
boolean mark_line(void);/*:80*//*89:*/
#line 1770 "ctangle.w"
void phase_one(void);/*:89*//*16:*/
#line 136 "ctangle.w"
text text_table[max_texts];
text_pointer text_ptr= &text_table[0];
eight_bits tok_mem[max_toks];
eight_bits*tok_ptr= &tok_mem[0];/*:16*//*20:*/
#line 197 "ctangle.w"
text_pointer text_root=NULL;
text_pointer*last_unnamed= &text_root;/*:20*//*23:*/
#line 291 "ctangle.w"
boolean atp_seen=false;/*:23*//*26:*/
#line 343 "ctangle.w"
mod_pointer output_file[max_files];
int output_file_count=0;/*:26*//*31:*/
#line 466 "ctangle.w"
output_state stack[stack_size_max];
stack_pointer stack_ptr;/*:31*//*32:*/
#line 486 "ctangle.w"
char indent_buffer[max_indent];

sixteen_bits ind_i;/*:32*//*35:*/
#line 543 "ctangle.w"
int cur_val;/*:35*//*43:*/
#line 723 "ctangle.w"
eight_bits out_state;
boolean protect;/*:43*//*47:*/
#line 819 "ctangle.w"
char c_trans[UCHAR_MAX+1-0x80][trans_limit+1];/*:47*//*55:*/
#line 962 "ctangle.w"
eight_bits ccode[UCHAR_MAX+1];/*:55*//*60:*/
#line 1100 "ctangle.w"
id_pointer cur_id;
mod_pointer cur_mod;/*:60*//*70:*/
#line 1342 "ctangle.w"
text_pointer cur_text;
eight_bits next_control;/*:70*/
#line 79 "ctangle.w"


int main(int argc,char* *argv)
{program=ctangle;
line_output=true;
common_init(argc,argv);/*17:*/
#line 144 "ctangle.w"
tok_begin(text_ptr)=tok_ptr;/*:17*//*48:*/
#line 827 "ctangle.w"
if(compatibility_mode)
{unsigned char c=UCHAR_MAX;
do sprintf(trans_of(c),"X%X",c);while(--c>=0x80);
}/*:48*//*56:*/
#line 970 "ctangle.w"
{unsigned char c=0;
do ccode[c]=isspace(c)?new_section:ignore;while(c++ !=UCHAR_MAX);
ccode['v']=ccode['V']='|';
ccode['=']=verbatim;
ccode['@']=at_sign_image;
ccode['&']=join_code;
ccode['\'']=ord;
ccode['^']=ccode['?']=ccode['.']=ccode[':']=ccode['#']=
ccode['t']=ccode['T']=ccode['q']=ccode['Q']=control_text;
ccode['p']=ccode['P']=include_preproc;
ccode['l']=ccode['L']=char_trans;
ccode['f']=ccode['F']=ccode['s']=ccode['S']=format;
ccode['d']=ccode['D']=definition;
ccode['h']=ccode['H']=header;
ccode['c']=ccode['C']=begin_C;
ccode['<']=ccode['(']=module_name;
ccode['~']=ccode['*']=new_section;
if(compatibility_mode)/*57:*/
#line 1000 "ctangle.w"
{ccode['h']=ccode['H']=include_preproc;
ccode['p']=ccode['P']=begin_C;
ccode['#']=ignore;
}/*:57*/
#line 989 "ctangle.w"
}/*:56*/
#line 86 "ctangle.w"
if(show_banner)print(banner);
phase_one();
phase_two();
wrap_up();
return 0;
}/*:3*//*18:*/
#line 153 "ctangle.w"
void store_two_bytes(sixteen_bits x)
{if(tok_ptr+2>tok_mem_end)overflow("token");
*tok_ptr++=x>>8;
*tok_ptr++=x&0xFF;
}/*:18*//*21:*/
#line 211 "ctangle.w"
boolean names_match(id_pointer x,char*q,int l,int dummy)
{char*p=name_begin(x);while(--l>=0)if(*p++ != *q++)return false;
return*p=='\0';
}

void init_module_name(mod_pointer node)
{node->equiv=NULL;}

void init_id_name(id_pointer dummy,int ilk){}/*:21*//*25:*/
#line 314 "ctangle.w"
void phase_two(void)
{phase=2;
if(text_root==NULL&&output_file_count==0)
{print("\n! No program text was specified.");mark_harmless();}

else
{if(show_progress)
{print("\nWriting the output file%s"
,(text_root!=NULL)+output_file_count>1?"s":"");
if(text_root!=NULL)printf(" (%s):",C_file_name);
update_terminal();
}
if(text_root==NULL)C_file=NULL;
else
{open_output_file();cur_line=1;
if(!atp_seen)output_preproc_directives();
output(text_root);
}/*27:*/
#line 355 "ctangle.w"
{int i;
char output_file_name[longest_name+1];
for(i=0;i<output_file_count;i++)
{mod_pointer output_module=output_file[i];/*28:*/
#line 384 "ctangle.w"
{char*p=output_file_name,*q=name_begin(output_module);
while(*q!='\0')
if((*p++= *q++)=='@')
if(*q++ !='@')
{print("\n! Illegal control code in file name");

print_mod(output_module);err_print("");
}
*p='\0';
}/*:28*/
#line 360 "ctangle.w"
if(C_file!=NULL)fclose(C_file);
if(output_module->equiv==NULL)
{print("\n! Module not present");

print_mod(output_module);err_print("");
}
else if((C_file=fopen(output_file_name,"w"))==NULL)
{print("\n! Cannot open \"%s\" as output file",output_file_name);

err_print("");
}
else
{if(show_progress)print("\n(%s):",output_file_name);
cur_line=1;
output(output_module->equiv);
}
}
}/*:27*/
#line 333 "ctangle.w"
print_progress("\nDone.\n");
}
}/*:25*//*33:*/
#line 499 "ctangle.w"
void push_level(mod_pointer p)
{if(stack_ptr==stack_end)overflow("output stack");
*stack_ptr++=cur_state;
cur_repl=p->equiv;
cur_byte=tok_begin(cur_repl);cur_end=tok_end(cur_repl);
cur_ind=ind_i;
}/*:33*//*34:*/
#line 516 "ctangle.w"
void continue_or_pop_level(void)
{if(cur_repl->text_link!=NULL)

{cur_repl=next_sec(cur_repl);
cur_byte=tok_begin(cur_repl);cur_end=tok_end(cur_repl);
}
else if(--stack_ptr> &stack[0])cur_state= *stack_ptr;

ind_i=cur_ind;
}/*:34*//*37:*/
#line 576 "ctangle.w"
void output(text_pointer repl)
{stack_ptr= &stack[1];
cur_repl=repl;cur_byte=tok_begin(cur_repl);cur_end=tok_end(cur_repl);
cur_ind=ind_i=0;
do
if(cur_byte==cur_end)
{cur_val=cur_sec;
continue_or_pop_level();
out_char(section_end);
}
else/*38:*/
#line 601 "ctangle.w"
{int a= *cur_byte++;
if(a<0x80)out_char(a);
else if(a>=0xF8)
if(a<0xFA)out_char(a==0xF8? *cur_byte++:line_mark);
else{C_newline();output_preproc_directives();}
else
{cur_val=(((a-=0x80)%0x28)<<8)+ *cur_byte++;
switch(a/0x28)
{case 0:out_char(identifier);break;
case 1:/*39:*/
#line 623 "ctangle.w"
{mod_pointer mod_name=mod_at(cur_val);
if(mod_name->equiv!=NULL)push_level(mod_name);
else
{print("\n! Module not present");print_mod(mod_name);err_print("");

}
}/*:39*/
#line 610 "ctangle.w"
break;
case 2:cur_sec=cur_val;out_char(section_start);

}
}
}/*:38*/
#line 589 "ctangle.w"
while(!stack_empty());
C_newline();
}/*:37*//*40:*/
#line 644 "ctangle.w"
void output_preproc_directives(void)
{text_pointer repl,l;
eight_bits*p,*end;
protect=true;
for(repl= &text_table[0];repl<text_ptr;repl++)
if((l=repl->text_link)==macro_flag||l==header_flag)
{p=tok_begin(repl);end=tok_end(repl);
C_printf("#%se ",l==macro_flag?"defin":"includ");
out_state=no_space;
while(p<end)/*41:*/
#line 670 "ctangle.w"
{int a= *p++;
if(a<0x80)out_char(a);
else if(a>=0xF8)
if(a==0xF8)out_char(*p++);
else confusion("`@p' within macro");
else
{cur_val=(((a-=0x80)%0x28)<<8)+ *p++;
if(a<0x28)out_char(identifier);
else confusion("module within macro");
}
}/*:41*/
#line 656 "ctangle.w"
C_newline();
}
protect=false;
}/*:40*//*42:*/
#line 692 "ctangle.w"
void C_newline(void)
{C_putc('\n');
if(!line_output)put_indent();
if(cur_line%100==0&&show_progress)
{if(cur_line%500!=0)print(".");
else print(cur_line%2500==0?"%u\n":"%u",cur_line);
update_terminal();
}
++cur_line;
}/*:42*//*45:*/
#line 764 "ctangle.w"
void out_char(eight_bits c)
{if(out_state==literal)
if(c==verb_quote)out_state=num_or_id;
else C_putc(c);
else if(isalnum(c)&&c<0x80||c=='_')

{if(out_state==num_or_id&&line_output)C_putc(' ');
C_putc(c);out_state=num_or_id;
if(!line_output)append_white(c);
}
else switch(c)
{case verb_quote:
if(out_state==num_or_id&&line_output)C_putc(' ');
out_state=literal;break;
case join:out_state=no_space;break;
case '\n':/*46:*/
#line 803 "ctangle.w"
{if(protect){C_putc(' ');C_putc('\\');}
C_newline();
if(out_state!=literal)out_state=no_space;
}/*:46*/
#line 779 "ctangle.w"
break;
case identifier:/*49:*/
#line 838 "ctangle.w"
{char*p=name_begin(id_at(cur_val));int l=0;
if(out_state==num_or_id&&line_output)C_putc(' ');
do
if((unsigned char)(*p)<0x80){C_putc(*p);++l;}
else
{char*q=trans_of(*p);do{C_putc(*q);++l;}while(* ++q!='\0');}
while(* ++p!='\0');
out_state=num_or_id;
if(!line_output)do append_white(' ');while(--l>0);
}/*:49*/
#line 780 "ctangle.w"
break;
case section_start:
if(line_output)C_printf("/*%d:*/",cur_val);else C_newline();
out_state=no_space;break;
case section_end:
if(line_output)C_printf("/*:%d*/",cur_val);else C_newline();
out_state=no_space;break;
case line_mark:/*50:*/
#line 854 "ctangle.w"
{sixteen_bits a;
a=(*cur_byte++)<<8;a+= *cur_byte++;
C_newline();C_printf("#line %u \"",a);
a=(*cur_byte++)<<8;a+= *cur_byte++;
C_printf("%s\"",name_begin(id_at(a)));
C_newline();out_state=no_space;
}/*:50*/
#line 787 "ctangle.w"
break;/*51:*/
#line 877 "ctangle.w"
case '+':case '-':case '*':case '/':case '%':case '?':
case '<':case '>':case '&':case '|':
if(out_state==operator&&line_output)C_putc(' ');
case '=':C_putc(c);out_state=operator;break;/*:51*//*52:*/
#line 892 "ctangle.w"
case plus_plus:comp_op("++");break;
case minus_minus:comp_op("--");break;
case minus_gt:comp_op("->");break;
case gt_gt:comp_op(">>");break;
case eq_eq:comp_op("==");break;
case lt_lt:comp_op("<<");break;
case gt_eq:comp_op(">=");break;
case lt_eq:comp_op("<=");break;
case not_eq:comp_op("!=");break;
case and_and:comp_op("&&");break;
case or_or:comp_op("||");break;/*:52*/
#line 790 "ctangle.w"
default:C_putc(c);out_state=no_space;
if(!line_output)append_white(c);
}
}/*:45*//*58:*/
#line 1012 "ctangle.w"
eight_bits skip_ahead(void)
{eight_bits c;
while(find_char())
{limit[1]='@';
while(*loc++ !='@'){}
if(loc<=limit&&(c=code_of(*loc++))!=ignore)return c;
}
return new_section;
}/*:58*//*59:*/
#line 1051 "ctangle.w"
boolean skip_comment(boolean one_liner)
{char c;
do
{if(loc>=limit)
if(one_liner)return false;
else if(get_line())return true;
else
{err_print("! Input ended in mid-comment");return false;}

if((c= *loc++)=='/'&& *loc=='*')
err_print("! `/*' inside comment, did you forget `*/' before? ");

if(c=='@')
{eight_bits cc=code_of(*loc++);
if(cc==new_section)
{err_print("! Section ended in mid-comment");loc-=2;return false;}

if(cc==module_name){/*68:*/
#line 1291 "ctangle.w"
{boolean file_module=loc[-1]=='(';

cur_mod=get_module_name();
if(file_module&&cur_mod!=NULL)/*29:*/
#line 398 "ctangle.w"
{int i=0;
while(i<output_file_count)
if(output_file[i]==cur_mod)break;else++i;
if(i==output_file_count)
if(output_file_count==max_files)overflow("output files");
else output_file[output_file_count++]=cur_mod;
}/*:29*/
#line 1296 "ctangle.w"
}/*:68*/
#line 1068 "ctangle.w"
continue;}
}
if(!line_output)
{store_byte(c);
if(c=='@'&&(c=loc[-1])!='@')store_byte(c);
}
}while(c!='*'|| *loc!='/'||one_liner);
++loc;if(!line_output)store_byte('/');
return false;
}/*:59*//*61:*/
#line 1115 "ctangle.w"
eight_bits get_next(void)
{static boolean preprocessing=false;
static boolean comment_continues=false;
eight_bits c;
restart:/*62:*/
#line 1152 "ctangle.w"
{if(loc>=limit)
{if(preprocessing&&limit>buffer&&limit[-1]!='\\')
preprocessing=false;
return get_line()?'\n':new_section;
}
if(comment_continues
||(c= *loc++)=='/'&&(*loc=='*'||C_plus_plus&& *loc=='/'))/*63:*/
#line 1184 "ctangle.w"
{boolean one_liner=false;
if(!comment_continues)
{if(!line_output){store_byte('/');store_byte(*loc);}
one_liner= *loc++ =='/';

}
else if(preprocessing)
{print("\nWarning: Multi-line comment in preprocessor line");

preprocessing=false;mark_harmless();
}
if(comment_continues=skip_comment(one_liner))

return '\n';
else goto restart;
}/*:63*/
#line 1162 "ctangle.w"
if(isspace(c))
if(line_output)
if(preprocessing)return ' ';else goto restart;

else return c;

if(c=='#'&&loc==buffer+1)preprocessing=true;
}/*:62*/
#line 1123 "ctangle.w"
if(c=='L'&&(*loc=='\''|| *loc=='\"'))
{get_string();return constant;}
if(c<0x80?isalpha(c)||c=='_':translation_exists(c))
{/*65:*/
#line 1233 "ctangle.w"
{id_first= --loc;
do c= * ++loc;
while(c<0x80?isalnum(c)||c=='_':translation_exists(c));
cur_id=
loc==id_first+1&&(eight_bits)(*id_first)<0x80
?NULL:id_lookup(id_first,loc,0);
}/*:65*/
#line 1126 "ctangle.w"
return id_code;}
if(c>=0x80){err_print("! Illegal 8-bit character");goto restart;}

if(isdigit(c)||c=='.'&&isdigit((eight_bits)*loc))
{/*66:*/
#line 1250 "ctangle.w"
{if(*(id_first=loc-1)=='0'&&tolower((eight_bits)*loc)=='x')

do c= * ++loc;while(isxdigit(c));
else
{while(isdigit(c))c= *loc++;
if(c=='.')do c= *loc++;while(isdigit(c));
if(tolower(c)=='e')
{if((c= *loc)=='+'||c=='-')c= * ++loc;
while(isdigit(c))c= * ++loc;
}
else--loc;
}
while(isalpha(c))c= * ++loc;

id_loc=loc;
}/*:66*/
#line 1130 "ctangle.w"
return constant;}
switch(c)
{case '\'':case '"':get_string();return constant;
case '@':/*67:*/
#line 1275 "ctangle.w"
{eight_bits cc=code_of(*loc++);
switch(cc)
{case ignore:goto restart;
case control_text:get_control_text();goto restart;
case verbatim:if(get_control_text())goto restart;else break;
case ord:/*69:*/
#line 1302 "ctangle.w"
id_first=loc;
while(*loc!='\'')
{if(*loc++ =='\\')loc++;
if(loc>=limit){err_print("! ASCII constant didn't end");break;}

}
id_loc=loc++;/*:69*/
#line 1280 "ctangle.w"
break;
case module_name:/*68:*/
#line 1291 "ctangle.w"
{boolean file_module=loc[-1]=='(';

cur_mod=get_module_name();
if(file_module&&cur_mod!=NULL)/*29:*/
#line 398 "ctangle.w"
{int i=0;
while(i<output_file_count)
if(output_file[i]==cur_mod)break;else++i;
if(i==output_file_count)
if(output_file_count==max_files)overflow("output files");
else output_file[output_file_count++]=cur_mod;
}/*:29*/
#line 1296 "ctangle.w"
}/*:68*/
#line 1283 "ctangle.w"
}
return cc;
}/*:67*//*64:*/
#line 1217 "ctangle.w"
case '+':compress('+',plus_plus);break;
case '-':compress('-',minus_minus);compress('>',minus_gt);break;
case '=':compress('=',eq_eq);break;
case '>':compress('=',gt_eq);compress('>',gt_gt);break;
case '<':compress('=',lt_eq);compress('<',lt_lt);break;
case '&':compress('&',and_and);break;
case '|':compress('|',or_or);break;
case '!':compress('=',not_eq);break;/*:64*/
#line 1137 "ctangle.w"
}
return c;
}/*:61*//*71:*/
#line 1367 "ctangle.w"
void scan_repl(eight_bits context)
{eight_bits a;
eight_bits*keep=tok_ptr;
int brace_level=0,par_level=0;
if(context==section_body)/*81:*/
#line 1612 "ctangle.w"
{if(mark_line()){a=new_section;goto done;}}/*:81*/
#line 1373 "ctangle.w"
do/*72:*/
#line 1388 "ctangle.w"
{switch(a=get_next())
{/*75:*/
#line 1459 "ctangle.w"
case id_code:/*76:*/
#line 1496 "ctangle.w"
if(cur_id==NULL)store_byte(*id_first);
else store_two_bytes(0x8000+id_index(cur_id));/*:76*/
#line 1460 "ctangle.w"
keep=tok_ptr;continue;
case module_name:if(context==preproc_directive)goto done;
if(cur_mod!=NULL)
{sixteen_bits n=mod_index(cur_mod);/*77:*/
#line 1508 "ctangle.w"
{char*p=loc;
while(*p==' '&&p<limit)++p;
if(*p=='+')++p;
if(*p=='=')
err_print
("! Illegal defining occurrence of module name; did you forget `@ '?");

}/*:77*/
#line 1465 "ctangle.w"
if(line_output)tok_ptr=keep;
store_two_bytes(0xA800+n);keep=tok_ptr;/*81:*/
#line 1612 "ctangle.w"
{if(mark_line()){a=new_section;goto done;}}/*:81*/
#line 1469 "ctangle.w"

}
continue;
case constant:case verbatim:/*78:*/
#line 1530 "ctangle.w"
if(id_loc==id_first+1)store_byte(*id_first);
else
{store_byte(verb_quote);
do
if(*id_first==verb_quote)
{++id_first;store_byte('\\');store_byte('0'+(verb_quote>>6));
store_byte('0'+((verb_quote>>3)&7));store_byte('0'+(verb_quote&7));
}
else
{if((eight_bits)(*id_first)>=0x80)store_byte(0xF8);

store_byte(*id_first++);
}
while(id_first<id_loc);
store_byte(verb_quote);
if(context==section_body&&print_where)/*81:*/
#line 1612 "ctangle.w"
{if(mark_line()){a=new_section;goto done;}}/*:81*/
#line 1547 "ctangle.w"
}/*:78*/
#line 1473 "ctangle.w"
keep=tok_ptr;
continue;
case ord:/*79:*/
#line 1559 "ctangle.w"
{int c= *id_first++;
if(c=='@'&& *id_first++ !='@')
{err_print("! Double `@' should be used in ASCII constant");

--id_first;
}
if(c=='\\')
{c= *id_first++;
switch(c)
{case 't':c='\011';break;
case 'n':c='\012';break;
case 'b':c='\010';break;
case 'f':c='\014';break;
case 'v':c='\013';break;
case 'r':c='\015';break;
case '0':c='\0';break;
case '\\':c='\134';break;
case '\'':c='\047';break;
case '\"':c='\042';break;
default:err_print("! Unrecognised escape sequence");

}
}
else
{
}
if(id_first!=id_loc)
if(id_loc>id_first)
err_print("! ASCII constant should be single character");

else{err_print("! Empty ASCII constant");c=0;}

store_byte(verb_quote);
if(c>=100)store_byte('0'+c/100);if(c>=10)store_byte('0'+(c/10)%10);
store_byte('0'+c%10);
store_byte(verb_quote);
}/*:79*/
#line 1476 "ctangle.w"
keep=tok_ptr;continue;
case include_preproc:
if(context==preproc_directive)
err_print("! `@p' is forbidden in preprocessor directive");

else
{if(line_output)tok_ptr=keep;
store_byte(0xFA);atp_seen=true;keep=tok_ptr;/*81:*/
#line 1612 "ctangle.w"
{if(mark_line()){a=new_section;goto done;}}/*:81*/
#line 1485 "ctangle.w"
}
continue;
case char_trans:
err_print("! `@l' is only allowed in limbo");

continue;/*:75*/
#line 1394 "ctangle.w"
case format:case definition:case header:case begin_C:
if(context==preproc_directive)goto done;
err_print
("! `@f', `@d', `@h', and `@c' are ignored in section body");

continue;
case new_section:goto done;/*73:*/
#line 1420 "ctangle.w"
case '(':++par_level;break;
case ')':
if(par_level<=0)
{err_print("! Unmatched closing parenthesis");continue;}

--par_level;break;
case '{':++brace_level;break;
case '}':
if(brace_level<=0)
{err_print("! Unmatched closing brace");continue;}
--brace_level;break;/*:73*/
#line 1402 "ctangle.w"
case '\n':store_byte('\n');
if(context==section_body&&print_where)
{tok_ptr=keep;/*81:*/
#line 1612 "ctangle.w"
{if(mark_line()){a=new_section;goto done;}}/*:81*/
#line 1406 "ctangle.w"
}
continue;
case join_code:a=join;
}
store_byte(a);keep=tok_ptr;
}/*:72*/
#line 1375 "ctangle.w"
while(true);
done:tok_ptr=keep;
next_control=a;
if(par_level>0||brace_level>0)/*74:*/
#line 1439 "ctangle.w"
{char*p,*s;int l;
if(par_level>0)l=par_level,s="parenthes",p=l>1?"es":"is";
else l=brace_level,s="brace",p=l>1?"s":"";
print("\n! There %s %d unclosed %s%s"
,par_level+brace_level>1?"are":"is",l,s,p);

if(par_level>0&&brace_level>0)
print(" and %d unclosed brace%s"
,brace_level,brace_level>1?"s":"");
print(" in the previous ");
err_print(context==preproc_directive?"macro":"section");
while(--par_level>=0)store_byte(')');
while(--brace_level>=0)store_byte('}');
}/*:74*//*19:*/
#line 166 "ctangle.w"
{cur_text=text_ptr++;
if(text_ptr>=text_table_end)overflow("text");
tok_begin(text_ptr)=tok_ptr;
}/*:19*/
#line 1381 "ctangle.w"
}/*:71*//*82:*/
#line 1627 "ctangle.w"
boolean mark_line(void)
{while(loc>=limit)
if(!get_line())return true;
print_where=false;
if(line_output)
{store_byte(0xF9);
id_first=changing?change.name:cur_file_name;
store_two_bytes(changing?change_line:cur_line);
store_two_bytes(id_index(id_lookup(id_first,NULL,0)));
}
return false;
}/*:82*//*83:*/
#line 1648 "ctangle.w"
void scan_section(void)
{++section_count;
if(loc[-1]=='*')print_section_progress();/*84:*/
#line 1668 "ctangle.w"
{next_control=ignore;
do
{if(next_control<definition)
{if((next_control=skip_ahead())==module_name)
{loc-=2;get_next();}

}
else if(next_control==definition)
{/*85:*/
#line 1694 "ctangle.w"
{do next_control=get_next();
while(line_output?next_control=='\n'
:next_control<0x80&&isspace(next_control));
if(next_control!=id_code)
{err_print("! Macro definition ignored, must start with identifier");

continue;
}/*76:*/
#line 1496 "ctangle.w"
if(cur_id==NULL)store_byte(*id_first);
else store_two_bytes(0x8000+id_index(cur_id));/*:76*/
#line 1703 "ctangle.w"
if(isspace((eight_bits)*loc))store_byte(' ');

}/*:85*/
#line 1677 "ctangle.w"
scan_repl(preproc_directive);
cur_text->text_link=macro_flag;
}
else
{scan_repl(preproc_directive);cur_text->text_link=header_flag;}
if(next_control==module_name)/*86:*/
#line 1718 "ctangle.w"
{eight_bits t=get_next();
if(t=='+')t=get_next();
if(t!='='&&t!=eq_eq)
{next_control=ignore;
if(t!='|'&&!compatibility_mode)
err_print("! `=' sign missing, module name ignored");

}
}/*:86*/
#line 1684 "ctangle.w"
}while(next_control<begin_C);
}/*:84*//*87:*/
#line 1733 "ctangle.w"
{mod_pointer p;
switch(next_control)
{default:return;
case begin_C:p=NULL;break;
case module_name:p=cur_mod;
}
store_two_bytes(0xD000+section_count);
scan_repl(section_body);/*88:*/
#line 1753 "ctangle.w"
{if(p==NULL)
{*last_unnamed=cur_text;last_unnamed= &cur_text->text_link;}
else
{text_pointer*q= &p->equiv;
while(*q!=NULL)q= &(*q)->text_link;
*q=cur_text;
}
cur_text->text_link=NULL;

}/*:88*/
#line 1744 "ctangle.w"
}/*:87*/
#line 1653 "ctangle.w"
}/*:83*//*90:*/
#line 1777 "ctangle.w"
void phase_one(void)
{phase=1;section_count=0;reset_input();
while((next_control=skip_ahead())!=new_section)
if(next_control==char_trans)/*91:*/
#line 1791 "ctangle.w"
{int c;
while(loc<limit&&isspace((eight_bits)*loc))++loc;
if(!(isxdigit((eight_bits)loc[0])&&
isxdigit((eight_bits)loc[1])&&
isspace((eight_bits)loc[2])))
err_print("! Two-digit hex number and space should follow `@l'");

else if(sscanf(loc,"%x",&c),c<0x80)
err_print("! You cannot translate characters < 0x80");

else
{char*p=trans_of(c);int i=0;
loc+=3;
while(find_char()&&isspace((eight_bits)*loc))++loc;
if(!input_has_ended)
while(isalnum((eight_bits)*loc)|| *loc=='_')
if(++i<=trans_limit)*p++= *loc++;else break;
if(i>0)*p='\0';/*92:*/
#line 1824 "ctangle.w"
if(i==0)err_print("! Translation string absent after `@l'");

else if(i>trans_limit)err_print("! Translation string too long");
else if(!isspace((eight_bits)*loc))
err_print("! Translation string not terminated by space");/*:92*/
#line 1810 "ctangle.w"
}
}/*:91*/
#line 1781 "ctangle.w"
while(!input_has_ended)scan_section();
check_complete();
}/*:90*//*93:*/
#line 1838 "ctangle.w"
#ifdef STAT
void print_stats(void)
{print("\nMemory usage statistics:\n");
report("identifier",id_index(id_ptr),max_idents);
report("module name",mod_index(mod_ptr),max_modules);
report("byte",byte_ptr-byte_mem,max_bytes);
report("replacement text",text_ptr-text_table,max_texts);
report("token",tok_ptr-tok_mem,max_toks);
}
#endif/*:93*/