-
Notifications
You must be signed in to change notification settings - Fork 42
/
cmdoptions.tab.cpp
2757 lines (2337 loc) · 88.3 KB
/
cmdoptions.tab.cpp
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
/* A Bison parser, made by GNU Bison 2.7. */
/* Skeleton implementation for Bison LALR(1) parsers in C++
Copyright (C) 2002-2012 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* First part of user declarations. */
/* Line 279 of lalr1.cc */
#line 49 "../../s/cmdoptions.y"
#include <stdio.h>
#include <string.h>
#include "cmdoptionsscanner.h"
#include "version.h"
void ShowHelp();
void ShowCmdHelp(int);
void ShowBifHelp(int);
void ShowCommonHelp(int,bool);
/* Line 279 of lalr1.cc */
#line 49 "cmdoptions.tab.cpp"
#include "cmdoptions.tab.hpp"
/* User implementation prologue. */
/* Line 285 of lalr1.cc */
#line 57 "cmdoptions.tab.cpp"
/* Unqualified %code blocks. */
/* Line 286 of lalr1.cc */
#line 45 "../../s/cmdoptions.y"
static int yylex(CO::BisonParser::semantic_type * yylval, CO::BisonParser::location_type* loc, CO::FlexScanner &scanner);
/* Line 286 of lalr1.cc */
#line 66 "cmdoptions.tab.cpp"
# ifndef YY_NULL
# if defined __cplusplus && 201103L <= __cplusplus
# define YY_NULL nullptr
# else
# define YY_NULL 0
# endif
# endif
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
# define YY_(msgid) dgettext ("bison-runtime", msgid)
# endif
# endif
# ifndef YY_
# define YY_(msgid) msgid
# endif
#endif
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
# ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT(Current, Rhs, N) \
do \
if (N) \
{ \
(Current).begin = YYRHSLOC (Rhs, 1).begin; \
(Current).end = YYRHSLOC (Rhs, N).end; \
} \
else \
{ \
(Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
} \
while (/*CONSTCOND*/ false)
# endif
/* Suppress unused-variable warnings by "using" E. */
#define YYUSE(e) ((void) (e))
/* Enable debugging if requested. */
#if YYDEBUG
/* A pseudo ostream that takes yydebug_ into account. */
# define YYCDEBUG if (yydebug_) (*yycdebug_)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug_) \
{ \
*yycdebug_ << Title << ' '; \
yy_symbol_print_ ((Type), (Value), (Location)); \
*yycdebug_ << std::endl; \
} \
} while (false)
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug_) \
yy_reduce_print_ (Rule); \
} while (false)
# define YY_STACK_PRINT() \
do { \
if (yydebug_) \
yystack_print_ (); \
} while (false)
#else /* !YYDEBUG */
# define YYCDEBUG if (false) std::cerr
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) YYUSE(Type)
# define YY_REDUCE_PRINT(Rule) static_cast<void>(0)
# define YY_STACK_PRINT() static_cast<void>(0)
#endif /* !YYDEBUG */
#define yyerrok (yyerrstatus_ = 0)
#define yyclearin (yychar = yyempty_)
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYRECOVERING() (!!yyerrstatus_)
/* Line 353 of lalr1.cc */
#line 24 "../../s/cmdoptions.y"
namespace CO {
/* Line 353 of lalr1.cc */
#line 162 "cmdoptions.tab.cpp"
/// Build a parser object.
BisonParser::BisonParser (CO::FlexScanner& scanner_yyarg, Options& options_yyarg)
:
#if YYDEBUG
yydebug_ (false),
yycdebug_ (&std::cerr),
#endif
scanner (scanner_yyarg),
options (options_yyarg)
{
}
BisonParser::~BisonParser ()
{
}
#if YYDEBUG
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
inline void
BisonParser::yy_symbol_value_print_ (int yytype,
const semantic_type* yyvaluep, const location_type* yylocationp)
{
YYUSE (yylocationp);
YYUSE (yyvaluep);
std::ostream& yyo = debug_stream ();
std::ostream& yyoutput = yyo;
YYUSE (yyoutput);
switch (yytype)
{
default:
break;
}
}
void
BisonParser::yy_symbol_print_ (int yytype,
const semantic_type* yyvaluep, const location_type* yylocationp)
{
*yycdebug_ << (yytype < yyntokens_ ? "token" : "nterm")
<< ' ' << yytname_[yytype] << " ("
<< *yylocationp << ": ";
yy_symbol_value_print_ (yytype, yyvaluep, yylocationp);
*yycdebug_ << ')';
}
#endif
void
BisonParser::yydestruct_ (const char* yymsg,
int yytype, semantic_type* yyvaluep, location_type* yylocationp)
{
YYUSE (yylocationp);
YYUSE (yymsg);
YYUSE (yyvaluep);
if (yymsg)
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
switch (yytype)
{
default:
break;
}
}
void
BisonParser::yypop_ (unsigned int n)
{
yystate_stack_.pop (n);
yysemantic_stack_.pop (n);
yylocation_stack_.pop (n);
}
#if YYDEBUG
std::ostream&
BisonParser::debug_stream () const
{
return *yycdebug_;
}
void
BisonParser::set_debug_stream (std::ostream& o)
{
yycdebug_ = &o;
}
BisonParser::debug_level_type
BisonParser::debug_level () const
{
return yydebug_;
}
void
BisonParser::set_debug_level (debug_level_type l)
{
yydebug_ = l;
}
#endif
inline bool
BisonParser::yy_pact_value_is_default_ (int yyvalue)
{
return yyvalue == yypact_ninf_;
}
inline bool
BisonParser::yy_table_value_is_error_ (int yyvalue)
{
return yyvalue == yytable_ninf_;
}
int
BisonParser::parse ()
{
/// Lookahead and lookahead in internal form.
int yychar = yyempty_;
int yytoken = 0;
// State.
int yyn;
int yylen = 0;
int yystate = 0;
// Error handling.
int yynerrs_ = 0;
int yyerrstatus_ = 0;
/// Semantic value of the lookahead.
static semantic_type yyval_default;
semantic_type yylval = yyval_default;
/// Location of the lookahead.
location_type yylloc;
/// The locations where the error started and ended.
location_type yyerror_range[3];
/// $$.
semantic_type yyval;
/// @$.
location_type yyloc;
int yyresult;
// FIXME: This shoud be completely indented. It is not yet to
// avoid gratuitous conflicts when merging into the master branch.
try
{
YYCDEBUG << "Starting parse" << std::endl;
/* Initialize the stacks. The initial state will be pushed in
yynewstate, since the latter expects the semantical and the
location values to have been already stored, initialize these
stacks with a primary value. */
yystate_stack_ = state_stack_type (0);
yysemantic_stack_ = semantic_stack_type (0);
yylocation_stack_ = location_stack_type (0);
yysemantic_stack_.push (yylval);
yylocation_stack_.push (yylloc);
/* New state. */
yynewstate:
yystate_stack_.push (yystate);
YYCDEBUG << "Entering state " << yystate << std::endl;
/* Accept? */
if (yystate == yyfinal_)
goto yyacceptlab;
goto yybackup;
/* Backup. */
yybackup:
/* Try to take a decision without lookahead. */
yyn = yypact_[yystate];
if (yy_pact_value_is_default_ (yyn))
goto yydefault;
/* Read a lookahead token. */
if (yychar == yyempty_)
{
YYCDEBUG << "Reading a token: ";
yychar = yylex (&yylval, &yylloc, scanner);
}
/* Convert token to internal form. */
if (yychar <= yyeof_)
{
yychar = yytoken = yyeof_;
YYCDEBUG << "Now at end of input." << std::endl;
}
else
{
yytoken = yytranslate_ (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yytoken)
goto yydefault;
/* Reduce or error. */
yyn = yytable_[yyn];
if (yyn <= 0)
{
if (yy_table_value_is_error_ (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the token being shifted. */
yychar = yyempty_;
yysemantic_stack_.push (yylval);
yylocation_stack_.push (yylloc);
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus_)
--yyerrstatus_;
yystate = yyn;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact_[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- Do a reduction. |
`-----------------------------*/
yyreduce:
yylen = yyr2_[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'. Otherwise, use the top of the stack.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. */
if (yylen)
yyval = yysemantic_stack_[yylen - 1];
else
yyval = yysemantic_stack_[0];
// Compute the default @$.
{
BIF::slice<location_type, location_stack_type> slice (yylocation_stack_, yylen);
YYLLOC_DEFAULT (yyloc, slice, yylen);
}
// Perform the reduction.
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 5:
/* Line 670 of lalr1.cc */
#line 111 "../../s/cmdoptions.y"
{ options.SetBifFilename((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 8:
/* Line 670 of lalr1.cc */
#line 114 "../../s/cmdoptions.y"
{ options.GetOutputFileNames().push_back((yysemantic_stack_[(3) - (3)].cstring)); }
break;
case 9:
/* Line 670 of lalr1.cc */
#line 115 "../../s/cmdoptions.y"
{ options.GetOutputFileNames().push_back((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 10:
/* Line 670 of lalr1.cc */
#line 116 "../../s/cmdoptions.y"
{ options.SetDevicePartName((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 16:
/* Line 670 of lalr1.cc */
#line 122 "../../s/cmdoptions.y"
{ options.SetEfuseHashFileName((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 17:
/* Line 670 of lalr1.cc */
#line 123 "../../s/cmdoptions.y"
{ options.SetGenerateHashes(true); }
break;
case 18:
/* Line 670 of lalr1.cc */
#line 124 "../../s/cmdoptions.y"
{ options.SetNonBootingFlag(true); }
break;
case 19:
/* Line 670 of lalr1.cc */
#line 125 "../../s/cmdoptions.y"
{ options.SetLegacyFlag(true); }
break;
case 20:
/* Line 670 of lalr1.cc */
#line 126 "../../s/cmdoptions.y"
{ options.SetPadHeaderTable(true); }
break;
case 21:
/* Line 670 of lalr1.cc */
#line 127 "../../s/cmdoptions.y"
{ options.SetPadHeaderTable((bool)(strcmp((yysemantic_stack_[(3) - (3)].cstring),"0"))); }
break;
case 22:
/* Line 670 of lalr1.cc */
#line 128 "../../s/cmdoptions.y"
{ options.SetPadHeaderTable((bool)(strcmp((yysemantic_stack_[(2) - (2)].cstring),"0"))); }
break;
case 26:
/* Line 670 of lalr1.cc */
#line 132 "../../s/cmdoptions.y"
{ options.SetSpkSigFileName((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 27:
/* Line 670 of lalr1.cc */
#line 133 "../../s/cmdoptions.y"
{ options.SetDevicePackageName((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 29:
/* Line 670 of lalr1.cc */
#line 135 "../../s/cmdoptions.y"
{ options.SetArchType(Arch::ZYNQMP); }
break;
case 30:
/* Line 670 of lalr1.cc */
#line 136 "../../s/cmdoptions.y"
{ options.SetNoAuthBlocksFlag(true); }
break;
case 32:
/* Line 670 of lalr1.cc */
#line 138 "../../s/cmdoptions.y"
{ LOG_ERROR("'-debug' option is no more supported. Please use '-log' option"); }
break;
case 34:
/* Line 670 of lalr1.cc */
#line 140 "../../s/cmdoptions.y"
{ options.SetZynqmpes1Flag(true); }
break;
case 35:
/* Line 670 of lalr1.cc */
#line 141 "../../s/cmdoptions.y"
{ LOG_ERROR("The option '-securedebugimage' is deprecated. Use '-authenticatedjtag' instead."); }
break;
case 40:
/* Line 670 of lalr1.cc */
#line 146 "../../s/cmdoptions.y"
{ options.SetDumpDirectory((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 41:
/* Line 670 of lalr1.cc */
#line 147 "../../s/cmdoptions.y"
{ options.SetKDFTestVectorFile((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 42:
/* Line 670 of lalr1.cc */
#line 148 "../../s/cmdoptions.y"
{ options.SetAuthOptimization();}
break;
case 43:
/* Line 670 of lalr1.cc */
#line 149 "../../s/cmdoptions.y"
{ options.SetOverlayCDOFileName((yysemantic_stack_[(2) - (2)].cstring)); }
break;
case 49:
/* Line 670 of lalr1.cc */
#line 157 "../../s/cmdoptions.y"
{ options.SetSplitType(File::MCS); }
break;
case 50:
/* Line 670 of lalr1.cc */
#line 158 "../../s/cmdoptions.y"
{ options.SetSplitType(File::BIN); }
break;
case 51:
/* Line 670 of lalr1.cc */
#line 161 "../../s/cmdoptions.y"
{ options.SetDoFill(true); }
break;
case 52:
/* Line 670 of lalr1.cc */
#line 162 "../../s/cmdoptions.y"
{ options.SetDoFill(true);
if ((yysemantic_stack_[(2) - (2)].number) >= 0 && (yysemantic_stack_[(2) - (2)].number) <= 255)
options.SetOutputFillByte((uint8_t)(yysemantic_stack_[(2) - (2)].number));
else
LOG_ERROR("'-fill' - Fill byte must be 8 bits"); }
break;
case 53:
/* Line 670 of lalr1.cc */
#line 169 "../../s/cmdoptions.y"
{ options.SetOutType(File::MCS); }
break;
case 54:
/* Line 670 of lalr1.cc */
#line 170 "../../s/cmdoptions.y"
{ options.SetOutType(File::BIN); }
break;
case 55:
/* Line 670 of lalr1.cc */
#line 173 "../../s/cmdoptions.y"
{ ShowHelp(); exit(0); }
break;
case 56:
/* Line 670 of lalr1.cc */
#line 174 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HBIFHELP); exit(0); }
break;
case 57:
/* Line 670 of lalr1.cc */
#line 175 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HARCH); exit(0); }
break;
case 58:
/* Line 670 of lalr1.cc */
#line 176 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HIMAGE); exit(0); }
break;
case 59:
/* Line 670 of lalr1.cc */
#line 177 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HFILL); exit(0); }
break;
case 60:
/* Line 670 of lalr1.cc */
#line 178 "../../s/cmdoptions.y"
{ ShowCommonHelp(CO::BisonParser::token::H_SPLIT,true); exit(0); }
break;
case 61:
/* Line 670 of lalr1.cc */
#line 179 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HO); exit(0); }
break;
case 62:
/* Line 670 of lalr1.cc */
#line 180 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HP); exit(0); }
break;
case 63:
/* Line 670 of lalr1.cc */
#line 181 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HW); exit(0); }
break;
case 64:
/* Line 670 of lalr1.cc */
#line 182 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HEFUSEPPKBITS); exit(0); }
break;
case 65:
/* Line 670 of lalr1.cc */
#line 183 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HGENHASHES); exit(0); }
break;
case 66:
/* Line 670 of lalr1.cc */
#line 184 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HLEGACY); exit(0); }
break;
case 67:
/* Line 670 of lalr1.cc */
#line 185 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HPADHDR); exit(0); }
break;
case 68:
/* Line 670 of lalr1.cc */
#line 186 "../../s/cmdoptions.y"
{ ShowCommonHelp(CO::BisonParser::token::H_SPKSIGN,true); exit(0); }
break;
case 69:
/* Line 670 of lalr1.cc */
#line 187 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HPACKAGE); exit(0); }
break;
case 70:
/* Line 670 of lalr1.cc */
#line 188 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HENCRYPT); exit(0); }
break;
case 71:
/* Line 670 of lalr1.cc */
#line 189 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HGENKEYS); exit(0); }
break;
case 72:
/* Line 670 of lalr1.cc */
#line 190 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HDQSPI); exit(0); }
break;
case 73:
/* Line 670 of lalr1.cc */
#line 191 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HLOG); exit(0); }
break;
case 74:
/* Line 670 of lalr1.cc */
#line 192 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HZYNQMPES1); exit(0); }
break;
case 75:
/* Line 670 of lalr1.cc */
#line 193 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HPROCESSBIT); exit(0); }
break;
case 76:
/* Line 670 of lalr1.cc */
#line 194 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HNONBOOTING); exit(0); }
break;
case 77:
/* Line 670 of lalr1.cc */
#line 195 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HENCRDUMP); exit(0); }
break;
case 78:
/* Line 670 of lalr1.cc */
#line 196 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HVERIFY); exit(0); }
break;
case 79:
/* Line 670 of lalr1.cc */
#line 197 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HVERIFYKDF); exit(0); }
break;
case 80:
/* Line 670 of lalr1.cc */
#line 198 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HREAD); exit(0); }
break;
case 81:
/* Line 670 of lalr1.cc */
#line 199 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HSECUREDEBUG); exit(0); }
break;
case 82:
/* Line 670 of lalr1.cc */
#line 200 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HDUMP); exit(0); }
break;
case 83:
/* Line 670 of lalr1.cc */
#line 201 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HDUMPDIR); exit(0); }
break;
case 84:
/* Line 670 of lalr1.cc */
#line 202 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HOVLCDO); exit(0); }
break;
case 85:
/* Line 670 of lalr1.cc */
#line 203 "../../s/cmdoptions.y"
{ ShowCmdHelp(CO::BisonParser::token::HOUTTYPE); exit(0); }
break;
case 86:
/* Line 670 of lalr1.cc */
#line 206 "../../s/cmdoptions.y"
{ ShowBifHelp(0); exit(0); }
break;
case 87:
/* Line 670 of lalr1.cc */
#line 207 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_INIT); exit(0); }
break;
case 88:
/* Line 670 of lalr1.cc */
#line 208 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_UDFBH); exit(0); }
break;
case 89:
/* Line 670 of lalr1.cc */
#line 209 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_AES); exit(0); }
break;
case 90:
/* Line 670 of lalr1.cc */
#line 210 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_PPK); exit(0); }
break;
case 91:
/* Line 670 of lalr1.cc */
#line 211 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_PSK); exit(0); }
break;
case 92:
/* Line 670 of lalr1.cc */
#line 212 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_SPK); exit(0); }
break;
case 93:
/* Line 670 of lalr1.cc */
#line 213 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_SSK); exit(0); }
break;
case 94:
/* Line 670 of lalr1.cc */
#line 214 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_SPKSIGN); exit(0); }
break;
case 95:
/* Line 670 of lalr1.cc */
#line 215 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_HDRSIGN); exit(0); }
break;
case 96:
/* Line 670 of lalr1.cc */
#line 216 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_BOOTIMAGE); exit(0); }
break;
case 97:
/* Line 670 of lalr1.cc */
#line 217 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_BL); exit(0); }
break;
case 98:
/* Line 670 of lalr1.cc */
#line 218 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_ENCR); exit(0); }
break;
case 99:
/* Line 670 of lalr1.cc */
#line 219 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_PID); exit(0); }
break;
case 100:
/* Line 670 of lalr1.cc */
#line 220 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_AUTH); exit(0); }
break;
case 101:
/* Line 670 of lalr1.cc */
#line 221 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_CHKSM); exit(0); }
break;
case 102:
/* Line 670 of lalr1.cc */
#line 222 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_POWNER); exit(0); }
break;
case 103:
/* Line 670 of lalr1.cc */
#line 223 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_PRESIGN); exit(0); }
break;
case 104:
/* Line 670 of lalr1.cc */
#line 224 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_UDF); exit(0); }
break;
case 105:
/* Line 670 of lalr1.cc */
#line 225 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_XIP); exit(0); }
break;
case 106:
/* Line 670 of lalr1.cc */
#line 226 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_ALIGN); exit(0); }
break;
case 107:
/* Line 670 of lalr1.cc */
#line 227 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_OFFSET); exit(0); }
break;
case 108:
/* Line 670 of lalr1.cc */
#line 228 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_RES); exit(0); }
break;
case 109:
/* Line 670 of lalr1.cc */
#line 229 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_LOAD); exit(0); }
break;
case 110:
/* Line 670 of lalr1.cc */
#line 230 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_STARTUP); exit(0); }
break;
case 111:
/* Line 670 of lalr1.cc */
#line 231 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_KEYSRC); exit(0); }
break;
case 112:
/* Line 670 of lalr1.cc */
#line 232 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_FSBLCFG); exit(0); }
break;
case 113:
/* Line 670 of lalr1.cc */
#line 233 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_BOOTDEV); exit(0); }
break;
case 114:
/* Line 670 of lalr1.cc */
#line 234 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_DESTCPU); exit(0); }
break;
case 115:
/* Line 670 of lalr1.cc */
#line 235 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_DESTDEV); exit(0); }
break;
case 116:
/* Line 670 of lalr1.cc */
#line 236 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_EL); exit(0); }
break;
case 117:
/* Line 670 of lalr1.cc */
#line 237 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_TZ); exit(0); }
break;
case 118:
/* Line 670 of lalr1.cc */
#line 238 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_AUTHPARAM); exit(0); }
break;
case 119:
/* Line 670 of lalr1.cc */
#line 239 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_BHKEY); exit(0); }
break;
case 120:
/* Line 670 of lalr1.cc */
#line 240 "../../s/cmdoptions.y"
{ ShowBifHelp(CO::BisonParser::token::H_BIF_PFW); exit(0); }
break;