hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 1988-2016 Free Software Foundation, Inc.
 
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being "Funding Free Software", the Front-Cover
Texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below).  A copy of the license is included in the section entitled
"GNU Free Documentation License".
 
(a) The FSF's Front-Cover Text is:
 
A GNU Manual
 
(b) The FSF's Back-Cover Text is:
 
You have freedom to copy and modify this GNU Manual, like GNU
     software.  Copies published by the Free Software Foundation raise
     funds for GNU development. -->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>GNU Compiler Collection (GCC) Internals: Effective-Target Keywords</title>
 
<meta name="description" content="GNU Compiler Collection (GCC) Internals: Effective-Target Keywords">
<meta name="keywords" content="GNU Compiler Collection (GCC) Internals: Effective-Target Keywords">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Option-Index.html#Option-Index" rel="index" title="Option Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Test-Directives.html#Test-Directives" rel="up" title="Test Directives">
<link href="Add-Options.html#Add-Options" rel="next" title="Add Options">
<link href="Selectors.html#Selectors" rel="prev" title="Selectors">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
 
 
</head>
 
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Effective_002dTarget-Keywords"></a>
<div class="header">
<p>
Next: <a href="Add-Options.html#Add-Options" accesskey="n" rel="next">Add Options</a>, Previous: <a href="Selectors.html#Selectors" accesskey="p" rel="prev">Selectors</a>, Up: <a href="Test-Directives.html#Test-Directives" accesskey="u" rel="up">Test Directives</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Keywords-describing-target-attributes"></a>
<h4 class="subsection">7.2.3 Keywords describing target attributes</h4>
 
<p>Effective-target keywords identify sets of targets that support
particular functionality.  They are used to limit tests to be run only
for particular targets, or to specify that particular sets of targets
are expected to fail some tests.
</p>
<p>Effective-target keywords are defined in <samp>lib/target-supports.exp</samp> in
the GCC testsuite, with the exception of those that are documented as
being local to a particular test directory.
</p>
<p>The &lsquo;<samp>effective target</samp>&rsquo; takes into account all of the compiler options
with which the test will be compiled, including the multilib options.
By convention, keywords ending in <code>_nocache</code> can also include options
specified for the particular test in an earlier <code>dg-options</code> or
<code>dg-add-options</code> directive.
</p>
<a name="Data-type-sizes"></a>
<h4 class="subsubsection">7.2.3.1 Data type sizes</h4>
 
<dl compact="compact">
<dt><code>ilp32</code></dt>
<dd><p>Target has 32-bit <code>int</code>, <code>long</code>, and pointers.
</p>
</dd>
<dt><code>lp64</code></dt>
<dd><p>Target has 32-bit <code>int</code>, 64-bit <code>long</code> and pointers.
</p>
</dd>
<dt><code>llp64</code></dt>
<dd><p>Target has 32-bit <code>int</code> and <code>long</code>, 64-bit <code>long long</code>
and pointers.
</p>
</dd>
<dt><code>double64</code></dt>
<dd><p>Target has 64-bit <code>double</code>.
</p>
</dd>
<dt><code>double64plus</code></dt>
<dd><p>Target has <code>double</code> that is 64 bits or longer.
</p>
</dd>
<dt><code>longdouble128</code></dt>
<dd><p>Target has 128-bit <code>long double</code>.
</p>
</dd>
<dt><code>int32plus</code></dt>
<dd><p>Target has <code>int</code> that is at 32 bits or longer.
</p>
</dd>
<dt><code>int16</code></dt>
<dd><p>Target has <code>int</code> that is 16 bits or shorter.
</p>
</dd>
<dt><code>long_neq_int</code></dt>
<dd><p>Target has <code>int</code> and <code>long</code> with different sizes.
</p>
</dd>
<dt><code>large_double</code></dt>
<dd><p>Target supports <code>double</code> that is longer than <code>float</code>.
</p>
</dd>
<dt><code>large_long_double</code></dt>
<dd><p>Target supports <code>long double</code> that is longer than <code>double</code>.
</p>
</dd>
<dt><code>ptr32plus</code></dt>
<dd><p>Target has pointers that are 32 bits or longer.
</p>
</dd>
<dt><code>size32plus</code></dt>
<dd><p>Target supports array and structure sizes that are 32 bits or longer.
</p>
</dd>
<dt><code>4byte_wchar_t</code></dt>
<dd><p>Target has <code>wchar_t</code> that is at least 4 bytes.
</p></dd>
</dl>
 
<a name="Fortran_002dspecific-attributes"></a>
<h4 class="subsubsection">7.2.3.2 Fortran-specific attributes</h4>
 
<dl compact="compact">
<dt><code>fortran_integer_16</code></dt>
<dd><p>Target supports Fortran <code>integer</code> that is 16 bytes or longer.
</p>
</dd>
<dt><code>fortran_large_int</code></dt>
<dd><p>Target supports Fortran <code>integer</code> kinds larger than <code>integer(8)</code>.
</p>
</dd>
<dt><code>fortran_large_real</code></dt>
<dd><p>Target supports Fortran <code>real</code> kinds larger than <code>real(8)</code>.
</p></dd>
</dl>
 
<a name="Vector_002dspecific-attributes"></a>
<h4 class="subsubsection">7.2.3.3 Vector-specific attributes</h4>
 
<dl compact="compact">
<dt><code>vect_condition</code></dt>
<dd><p>Target supports vector conditional operations.
</p>
</dd>
<dt><code>vect_double</code></dt>
<dd><p>Target supports hardware vectors of <code>double</code>.
</p>
</dd>
<dt><code>vect_float</code></dt>
<dd><p>Target supports hardware vectors of <code>float</code>.
</p>
</dd>
<dt><code>vect_int</code></dt>
<dd><p>Target supports hardware vectors of <code>int</code>.
</p>
</dd>
<dt><code>vect_long</code></dt>
<dd><p>Target supports hardware vectors of <code>long</code>.
</p>
</dd>
<dt><code>vect_long_long</code></dt>
<dd><p>Target supports hardware vectors of <code>long long</code>.
</p>
</dd>
<dt><code>vect_aligned_arrays</code></dt>
<dd><p>Target aligns arrays to vector alignment boundary.
</p>
</dd>
<dt><code>vect_hw_misalign</code></dt>
<dd><p>Target supports a vector misalign access.
</p>
</dd>
<dt><code>vect_no_align</code></dt>
<dd><p>Target does not support a vector alignment mechanism.
</p>
</dd>
<dt><code>vect_no_int_min_max</code></dt>
<dd><p>Target does not support a vector min and max instruction on <code>int</code>.
</p>
</dd>
<dt><code>vect_no_int_add</code></dt>
<dd><p>Target does not support a vector add instruction on <code>int</code>.
</p>
</dd>
<dt><code>vect_no_bitwise</code></dt>
<dd><p>Target does not support vector bitwise instructions.
</p>
</dd>
<dt><code>vect_char_mult</code></dt>
<dd><p>Target supports <code>vector char</code> multiplication.
</p>
</dd>
<dt><code>vect_short_mult</code></dt>
<dd><p>Target supports <code>vector short</code> multiplication.
</p>
</dd>
<dt><code>vect_int_mult</code></dt>
<dd><p>Target supports <code>vector int</code> multiplication.
</p>
</dd>
<dt><code>vect_extract_even_odd</code></dt>
<dd><p>Target supports vector even/odd element extraction.
</p>
</dd>
<dt><code>vect_extract_even_odd_wide</code></dt>
<dd><p>Target supports vector even/odd element extraction of vectors with elements
<code>SImode</code> or larger.
</p>
</dd>
<dt><code>vect_interleave</code></dt>
<dd><p>Target supports vector interleaving.
</p>
</dd>
<dt><code>vect_strided</code></dt>
<dd><p>Target supports vector interleaving and extract even/odd.
</p>
</dd>
<dt><code>vect_strided_wide</code></dt>
<dd><p>Target supports vector interleaving and extract even/odd for wide
element types.
</p>
</dd>
<dt><code>vect_perm</code></dt>
<dd><p>Target supports vector permutation.
</p>
</dd>
<dt><code>vect_shift</code></dt>
<dd><p>Target supports a hardware vector shift operation.
</p>
</dd>
<dt><code>vect_widen_sum_hi_to_si</code></dt>
<dd><p>Target supports a vector widening summation of <code>short</code> operands
into <code>int</code> results, or can promote (unpack) from <code>short</code>
to <code>int</code>.
</p>
</dd>
<dt><code>vect_widen_sum_qi_to_hi</code></dt>
<dd><p>Target supports a vector widening summation of <code>char</code> operands
into <code>short</code> results, or can promote (unpack) from <code>char</code>
to <code>short</code>.
</p>
</dd>
<dt><code>vect_widen_sum_qi_to_si</code></dt>
<dd><p>Target supports a vector widening summation of <code>char</code> operands
into <code>int</code> results.
</p>
</dd>
<dt><code>vect_widen_mult_qi_to_hi</code></dt>
<dd><p>Target supports a vector widening multiplication of <code>char</code> operands
into <code>short</code> results, or can promote (unpack) from <code>char</code> to
<code>short</code> and perform non-widening multiplication of <code>short</code>.
</p>
</dd>
<dt><code>vect_widen_mult_hi_to_si</code></dt>
<dd><p>Target supports a vector widening multiplication of <code>short</code> operands
into <code>int</code> results, or can promote (unpack) from <code>short</code> to
<code>int</code> and perform non-widening multiplication of <code>int</code>.
</p>
</dd>
<dt><code>vect_widen_mult_si_to_di_pattern</code></dt>
<dd><p>Target supports a vector widening multiplication of <code>int</code> operands
into <code>long</code> results.
</p>
</dd>
<dt><code>vect_sdot_qi</code></dt>
<dd><p>Target supports a vector dot-product of <code>signed char</code>.
</p>
</dd>
<dt><code>vect_udot_qi</code></dt>
<dd><p>Target supports a vector dot-product of <code>unsigned char</code>.
</p>
</dd>
<dt><code>vect_sdot_hi</code></dt>
<dd><p>Target supports a vector dot-product of <code>signed short</code>.
</p>
</dd>
<dt><code>vect_udot_hi</code></dt>
<dd><p>Target supports a vector dot-product of <code>unsigned short</code>.
</p>
</dd>
<dt><code>vect_pack_trunc</code></dt>
<dd><p>Target supports a vector demotion (packing) of <code>short</code> to <code>char</code>
and from <code>int</code> to <code>short</code> using modulo arithmetic.
</p>
</dd>
<dt><code>vect_unpack</code></dt>
<dd><p>Target supports a vector promotion (unpacking) of <code>char</code> to <code>short</code>
and from <code>char</code> to <code>int</code>.
</p>
</dd>
<dt><code>vect_intfloat_cvt</code></dt>
<dd><p>Target supports conversion from <code>signed int</code> to <code>float</code>.
</p>
</dd>
<dt><code>vect_uintfloat_cvt</code></dt>
<dd><p>Target supports conversion from <code>unsigned int</code> to <code>float</code>.
</p>
</dd>
<dt><code>vect_floatint_cvt</code></dt>
<dd><p>Target supports conversion from <code>float</code> to <code>signed int</code>.
</p>
</dd>
<dt><code>vect_floatuint_cvt</code></dt>
<dd><p>Target supports conversion from <code>float</code> to <code>unsigned int</code>.
</p>
</dd>
<dt><code>vect_max_reduc</code></dt>
<dd><p>Target supports max reduction for vectors.
</p></dd>
</dl>
 
<a name="Thread-Local-Storage-attributes"></a>
<h4 class="subsubsection">7.2.3.4 Thread Local Storage attributes</h4>
 
<dl compact="compact">
<dt><code>tls</code></dt>
<dd><p>Target supports thread-local storage.
</p>
</dd>
<dt><code>tls_native</code></dt>
<dd><p>Target supports native (rather than emulated) thread-local storage.
</p>
</dd>
<dt><code>tls_runtime</code></dt>
<dd><p>Test system supports executing TLS executables.
</p></dd>
</dl>
 
<a name="Decimal-floating-point-attributes"></a>
<h4 class="subsubsection">7.2.3.5 Decimal floating point attributes</h4>
 
<dl compact="compact">
<dt><code>dfp</code></dt>
<dd><p>Targets supports compiling decimal floating point extension to C.
</p>
</dd>
<dt><code>dfp_nocache</code></dt>
<dd><p>Including the options used to compile this particular test, the
target supports compiling decimal floating point extension to C.
</p>
</dd>
<dt><code>dfprt</code></dt>
<dd><p>Test system can execute decimal floating point tests.
</p>
</dd>
<dt><code>dfprt_nocache</code></dt>
<dd><p>Including the options used to compile this particular test, the
test system can execute decimal floating point tests.
</p>
</dd>
<dt><code>hard_dfp</code></dt>
<dd><p>Target generates decimal floating point instructions with current options.
</p></dd>
</dl>
 
<a name="ARM_002dspecific-attributes"></a>
<h4 class="subsubsection">7.2.3.6 ARM-specific attributes</h4>
 
<dl compact="compact">
<dt><code>arm32</code></dt>
<dd><p>ARM target generates 32-bit code.
</p>
</dd>
<dt><code>arm_eabi</code></dt>
<dd><p>ARM target adheres to the ABI for the ARM Architecture.
</p>
</dd>
<dt><code>arm_fp_ok</code></dt>
<dd><a name="arm_005ffp_005fok"></a><p>ARM target defines <code>__ARM_FP</code> using <code>-mfloat-abi=softfp</code> or
equivalent options.  Some multilibs may be incompatible with these
options.
</p>
</dd>
<dt><code>arm_hf_eabi</code></dt>
<dd><p>ARM target adheres to the VFP and Advanced SIMD Register Arguments
variant of the ABI for the ARM Architecture (as selected with
<code>-mfloat-abi=hard</code>).
</p>
</dd>
<dt><code>arm_hard_vfp_ok</code></dt>
<dd><p>ARM target supports <code>-mfpu=vfp -mfloat-abi=hard</code>.
Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_iwmmxt_ok</code></dt>
<dd><p>ARM target supports <code>-mcpu=iwmmxt</code>.
Some multilibs may be incompatible with this option.
</p>
</dd>
<dt><code>arm_neon</code></dt>
<dd><p>ARM target supports generating NEON instructions.
</p>
</dd>
<dt><code>arm_tune_string_ops_prefer_neon</code></dt>
<dd><p>Test CPU tune supports inlining string operations with NEON instructions.
</p>
</dd>
<dt><code>arm_neon_hw</code></dt>
<dd><p>Test system supports executing NEON instructions.
</p>
</dd>
<dt><code>arm_neonv2_hw</code></dt>
<dd><p>Test system supports executing NEON v2 instructions.
</p>
</dd>
<dt><code>arm_neon_ok</code></dt>
<dd><a name="arm_005fneon_005fok"></a><p>ARM Target supports <code>-mfpu=neon -mfloat-abi=softfp</code> or compatible
options.  Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_neonv2_ok</code></dt>
<dd><a name="arm_005fneonv2_005fok"></a><p>ARM Target supports <code>-mfpu=neon-vfpv4 -mfloat-abi=softfp</code> or compatible
options.  Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_fp16_ok</code></dt>
<dd><a name="arm_005ffp16_005fok"></a><p>Target supports options to generate VFP half-precision floating-point
instructions.  Some multilibs may be incompatible with these
options.  This test is valid for ARM only.
</p>
</dd>
<dt><code>arm_fp16_hw</code></dt>
<dd><p>Target supports executing VFP half-precision floating-point
instructions.  This test is valid for ARM only.
</p>
</dd>
<dt><code>arm_neon_fp16_ok</code></dt>
<dd><a name="arm_005fneon_005ffp16_005fok"></a><p>ARM Target supports <code>-mfpu=neon-fp16 -mfloat-abi=softfp</code> or compatible
options, including <code>-mfp16-format=ieee</code> if necessary to obtain the
<code>__fp16</code> type.  Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_neon_fp16_hw</code></dt>
<dd><p>Test system supports executing Neon half-precision float instructions.
(Implies previous.)
</p>
</dd>
<dt><code>arm_fp16_alternative_ok</code></dt>
<dd><p>ARM target supports the ARM FP16 alternative format.  Some multilibs
may be incompatible with the options needed.
</p>
</dd>
<dt><code>arm_fp16_none_ok</code></dt>
<dd><p>ARM target supports specifying none as the ARM FP16 format.
</p>
</dd>
<dt><code>arm_thumb1_ok</code></dt>
<dd><p>ARM target generates Thumb-1 code for <code>-mthumb</code>.
</p>
</dd>
<dt><code>arm_thumb2_ok</code></dt>
<dd><p>ARM target generates Thumb-2 code for <code>-mthumb</code>.
</p>
</dd>
<dt><code>arm_vfp_ok</code></dt>
<dd><p>ARM target supports <code>-mfpu=vfp -mfloat-abi=softfp</code>.
Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_vfp3_ok</code></dt>
<dd><a name="arm_005fvfp3_005fok"></a><p>ARM target supports <code>-mfpu=vfp3 -mfloat-abi=softfp</code>.
Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_v8_vfp_ok</code></dt>
<dd><p>ARM target supports <code>-mfpu=fp-armv8 -mfloat-abi=softfp</code>.
Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_v8_neon_ok</code></dt>
<dd><p>ARM target supports <code>-mfpu=neon-fp-armv8 -mfloat-abi=softfp</code>.
Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_v8_1a_neon_ok</code></dt>
<dd><a name="arm_005fv8_005f1a_005fneon_005fok"></a><p>ARM target supports options to generate ARMv8.1 Adv.SIMD instructions.
Some multilibs may be incompatible with these options.
</p>
</dd>
<dt><code>arm_v8_1a_neon_hw</code></dt>
<dd><p>ARM target supports executing ARMv8.1 Adv.SIMD instructions.  Some
multilibs may be incompatible with the options needed.  Implies
arm_v8_1a_neon_ok.
</p>
</dd>
<dt><code>arm_acq_rel</code></dt>
<dd><p>ARM target supports acquire-release instructions.
</p>
</dd>
<dt><code>arm_v8_2a_fp16_scalar_ok</code></dt>
<dd><a name="arm_005fv8_005f2a_005ffp16_005fscalar_005fok"></a><p>ARM target supports options to generate instructions for ARMv8.2 and
scalar instructions from the FP16 extension.  Some multilibs may be
incompatible with these options.
</p>
</dd>
<dt><code>arm_v8_2a_fp16_scalar_hw</code></dt>
<dd><p>ARM target supports executing instructions for ARMv8.2 and scalar
instructions from the FP16 extension.  Some multilibs may be
incompatible with these options.  Implies arm_v8_2a_fp16_neon_ok.
</p>
</dd>
<dt><code>arm_v8_2a_fp16_neon_ok</code></dt>
<dd><a name="arm_005fv8_005f2a_005ffp16_005fneon_005fok"></a><p>ARM target supports options to generate instructions from ARMv8.2 with
the FP16 extension.  Some multilibs may be incompatible with these
options.  Implies arm_v8_2a_fp16_scalar_ok.
</p>
</dd>
<dt><code>arm_v8_2a_fp16_neon_hw</code></dt>
<dd><p>ARM target supports executing instructions from ARMv8.2 with the FP16
extension.  Some multilibs may be incompatible with these options.
Implies arm_v8_2a_fp16_neon_ok and arm_v8_2a_fp16_scalar_hw.
</p>
</dd>
<dt><code>arm_prefer_ldrd_strd</code></dt>
<dd><p>ARM target prefers <code>LDRD</code> and <code>STRD</code> instructions over
<code>LDM</code> and <code>STM</code> instructions.
</p>
</dd>
<dt><code>arm_thumb1_movt_ok</code></dt>
<dd><p>ARM target generates Thumb-1 code for <code>-mthumb</code> with <code>MOVW</code>
and <code>MOVT</code> instructions available.
</p>
</dd>
<dt><code>arm_thumb1_cbz_ok</code></dt>
<dd><p>ARM target generates Thumb-1 code for <code>-mthumb</code> with
<code>CBZ</code> and <code>CBNZ</code> instructions available.
</p>
</dd>
<dt><code>arm_cmse_ok</code></dt>
<dd><p>ARM target supports ARMv8-M Security Extensions, enabled by the <code>-mcmse</code>
option.
</p>
</dd>
</dl>
 
<a name="AArch64_002dspecific-attributes"></a>
<h4 class="subsubsection">7.2.3.7 AArch64-specific attributes</h4>
 
<dl compact="compact">
<dt><code>aarch64_asm_&lt;ext&gt;_ok</code></dt>
<dd><p>AArch64 assembler supports the architecture extension <code>ext</code> via the
<code>.arch_extension</code> pseudo-op.
</p></dd>
<dt><code>aarch64_tiny</code></dt>
<dd><p>AArch64 target which generates instruction sequences for tiny memory model.
</p></dd>
<dt><code>aarch64_small</code></dt>
<dd><p>AArch64 target which generates instruction sequences for small memory model.
</p></dd>
<dt><code>aarch64_large</code></dt>
<dd><p>AArch64 target which generates instruction sequences for large memory model.
</p></dd>
<dt><code>aarch64_little_endian</code></dt>
<dd><p>AArch64 target which generates instruction sequences for little endian.
</p></dd>
<dt><code>aarch64_big_endian</code></dt>
<dd><p>AArch64 target which generates instruction sequences for big endian.
</p></dd>
<dt><code>aarch64_small_fpic</code></dt>
<dd><p>Binutils installed on test system supports relocation types required by -fpic
for AArch64 small memory model.
</p>
</dd>
</dl>
 
<a name="MIPS_002dspecific-attributes"></a>
<h4 class="subsubsection">7.2.3.8 MIPS-specific attributes</h4>
 
<dl compact="compact">
<dt><code>mips64</code></dt>
<dd><p>MIPS target supports 64-bit instructions.
</p>
</dd>
<dt><code>nomips16</code></dt>
<dd><p>MIPS target does not produce MIPS16 code.
</p>
</dd>
<dt><code>mips16_attribute</code></dt>
<dd><p>MIPS target can generate MIPS16 code.
</p>
</dd>
<dt><code>mips_loongson</code></dt>
<dd><p>MIPS target is a Loongson-2E or -2F target using an ABI that supports
the Loongson vector modes.
</p>
</dd>
<dt><code>mips_newabi_large_long_double</code></dt>
<dd><p>MIPS target supports <code>long double</code> larger than <code>double</code>
when using the new ABI.
</p>
</dd>
<dt><code>mpaired_single</code></dt>
<dd><p>MIPS target supports <code>-mpaired-single</code>.
</p></dd>
</dl>
 
<a name="PowerPC_002dspecific-attributes"></a>
<h4 class="subsubsection">7.2.3.9 PowerPC-specific attributes</h4>
 
<dl compact="compact">
<dt><code>dfp_hw</code></dt>
<dd><p>PowerPC target supports executing hardware DFP instructions.
</p>
</dd>
<dt><code>p8vector_hw</code></dt>
<dd><p>PowerPC target supports executing VSX instructions (ISA 2.07).
</p>
</dd>
<dt><code>powerpc64</code></dt>
<dd><p>Test system supports executing 64-bit instructions.
</p>
</dd>
<dt><code>powerpc_altivec</code></dt>
<dd><p>PowerPC target supports AltiVec.
</p>
</dd>
<dt><code>powerpc_altivec_ok</code></dt>
<dd><p>PowerPC target supports <code>-maltivec</code>.
</p>
</dd>
<dt><code>powerpc_eabi_ok</code></dt>
<dd><p>PowerPC target supports <code>-meabi</code>.
</p>
</dd>
<dt><code>powerpc_elfv2</code></dt>
<dd><p>PowerPC target supports <code>-mabi=elfv2</code>.
</p>
</dd>
<dt><code>powerpc_fprs</code></dt>
<dd><p>PowerPC target supports floating-point registers.
</p>
</dd>
<dt><code>powerpc_hard_double</code></dt>
<dd><p>PowerPC target supports hardware double-precision floating-point.
</p>
</dd>
<dt><code>powerpc_htm_ok</code></dt>
<dd><p>PowerPC target supports <code>-mhtm</code>
</p>
</dd>
<dt><code>powerpc_p8vector_ok</code></dt>
<dd><p>PowerPC target supports <code>-mpower8-vector</code>
</p>
</dd>
<dt><code>powerpc_ppu_ok</code></dt>
<dd><p>PowerPC target supports <code>-mcpu=cell</code>.
</p>
</dd>
<dt><code>powerpc_spe</code></dt>
<dd><p>PowerPC target supports PowerPC SPE.
</p>
</dd>
<dt><code>powerpc_spe_nocache</code></dt>
<dd><p>Including the options used to compile this particular test, the
PowerPC target supports PowerPC SPE.
</p>
</dd>
<dt><code>powerpc_spu</code></dt>
<dd><p>PowerPC target supports PowerPC SPU.
</p>
</dd>
<dt><code>powerpc_vsx_ok</code></dt>
<dd><p>PowerPC target supports <code>-mvsx</code>.
</p>
</dd>
<dt><code>powerpc_405_nocache</code></dt>
<dd><p>Including the options used to compile this particular test, the
PowerPC target supports PowerPC 405.
</p>
</dd>
<dt><code>ppc_recip_hw</code></dt>
<dd><p>PowerPC target supports executing reciprocal estimate instructions.
</p>
</dd>
<dt><code>spu_auto_overlay</code></dt>
<dd><p>SPU target has toolchain that supports automatic overlay generation.
</p>
</dd>
<dt><code>vmx_hw</code></dt>
<dd><p>PowerPC target supports executing AltiVec instructions.
</p>
</dd>
<dt><code>vsx_hw</code></dt>
<dd><p>PowerPC target supports executing VSX instructions (ISA 2.06).
</p></dd>
</dl>
 
<a name="Other-hardware-attributes"></a>
<h4 class="subsubsection">7.2.3.10 Other hardware attributes</h4>
 
<dl compact="compact">
<dt><code>avx</code></dt>
<dd><p>Target supports compiling <code>avx</code> instructions.
</p>
</dd>
<dt><code>avx_runtime</code></dt>
<dd><p>Target supports the execution of <code>avx</code> instructions.
</p>
</dd>
<dt><code>cell_hw</code></dt>
<dd><p>Test system can execute AltiVec and Cell PPU instructions.
</p>
</dd>
<dt><code>coldfire_fpu</code></dt>
<dd><p>Target uses a ColdFire FPU.
</p>
</dd>
<dt><code>hard_float</code></dt>
<dd><p>Target supports FPU instructions.
</p>
</dd>
<dt><code>non_strict_align</code></dt>
<dd><p>Target does not require strict alignment.
</p>
</dd>
<dt><code>sqrt_insn</code></dt>
<dd><p>Target has a square root instruction that the compiler can generate.
</p>
</dd>
<dt><code>sse</code></dt>
<dd><p>Target supports compiling <code>sse</code> instructions.
</p>
</dd>
<dt><code>sse_runtime</code></dt>
<dd><p>Target supports the execution of <code>sse</code> instructions.
</p>
</dd>
<dt><code>sse2</code></dt>
<dd><p>Target supports compiling <code>sse2</code> instructions.
</p>
</dd>
<dt><code>sse2_runtime</code></dt>
<dd><p>Target supports the execution of <code>sse2</code> instructions.
</p>
</dd>
<dt><code>sync_char_short</code></dt>
<dd><p>Target supports atomic operations on <code>char</code> and <code>short</code>.
</p>
</dd>
<dt><code>sync_int_long</code></dt>
<dd><p>Target supports atomic operations on <code>int</code> and <code>long</code>.
</p>
</dd>
<dt><code>ultrasparc_hw</code></dt>
<dd><p>Test environment appears to run executables on a simulator that
accepts only <code>EM_SPARC</code> executables and chokes on <code>EM_SPARC32PLUS</code>
or <code>EM_SPARCV9</code> executables.
</p>
</dd>
<dt><code>vect_cmdline_needed</code></dt>
<dd><p>Target requires a command line argument to enable a SIMD instruction set.
</p>
</dd>
<dt><code>pie_copyreloc</code></dt>
<dd><p>The x86-64 target linker supports PIE with copy reloc.
</p></dd>
</dl>
 
<a name="Environment-attributes"></a>
<h4 class="subsubsection">7.2.3.11 Environment attributes</h4>
 
<dl compact="compact">
<dt><code>c</code></dt>
<dd><p>The language for the compiler under test is C.
</p>
</dd>
<dt><code>c++</code></dt>
<dd><p>The language for the compiler under test is C++.
</p>
</dd>
<dt><code>c99_runtime</code></dt>
<dd><p>Target provides a full C99 runtime.
</p>
</dd>
<dt><code>correct_iso_cpp_string_wchar_protos</code></dt>
<dd><p>Target <code>string.h</code> and <code>wchar.h</code> headers provide C++ required
overloads for <code>strchr</code> etc. functions.
</p>
</dd>
<dt><code>dummy_wcsftime</code></dt>
<dd><p>Target uses a dummy <code>wcsftime</code> function that always returns zero.
</p>
</dd>
<dt><code>fd_truncate</code></dt>
<dd><p>Target can truncate a file from a file descriptor, as used by
<samp>libgfortran/io/unix.c:fd_truncate</samp>; i.e. <code>ftruncate</code> or
<code>chsize</code>.
</p>
</dd>
<dt><code>freestanding</code></dt>
<dd><p>Target is &lsquo;<samp>freestanding</samp>&rsquo; as defined in section 4 of the C99 standard.
Effectively, it is a target which supports no extra headers or libraries
other than what is considered essential.
</p>
</dd>
<dt><code>init_priority</code></dt>
<dd><p>Target supports constructors with initialization priority arguments.
</p>
</dd>
<dt><code>inttypes_types</code></dt>
<dd><p>Target has the basic signed and unsigned types in <code>inttypes.h</code>.
This is for tests that GCC&rsquo;s notions of these types agree with those
in the header, as some systems have only <code>inttypes.h</code>.
</p>
</dd>
<dt><code>lax_strtofp</code></dt>
<dd><p>Target might have errors of a few ULP in string to floating-point
conversion functions and overflow is not always detected correctly by
those functions.
</p>
</dd>
<dt><code>mempcpy</code></dt>
<dd><p>Target provides <code>mempcpy</code> function.
</p>
</dd>
<dt><code>mmap</code></dt>
<dd><p>Target supports <code>mmap</code>.
</p>
</dd>
<dt><code>newlib</code></dt>
<dd><p>Target supports Newlib.
</p>
</dd>
<dt><code>pow10</code></dt>
<dd><p>Target provides <code>pow10</code> function.
</p>
</dd>
<dt><code>pthread</code></dt>
<dd><p>Target can compile using <code>pthread.h</code> with no errors or warnings.
</p>
</dd>
<dt><code>pthread_h</code></dt>
<dd><p>Target has <code>pthread.h</code>.
</p>
</dd>
<dt><code>run_expensive_tests</code></dt>
<dd><p>Expensive testcases (usually those that consume excessive amounts of CPU
time) should be run on this target.  This can be enabled by setting the
<code>GCC_TEST_RUN_EXPENSIVE</code> environment variable to a non-empty string.
</p>
</dd>
<dt><code>simulator</code></dt>
<dd><p>Test system runs executables on a simulator (i.e. slowly) rather than
hardware (i.e. fast).
</p>
</dd>
<dt><code>stabs</code></dt>
<dd><p>Target supports the stabs debugging format.
</p>
</dd>
<dt><code>stdint_types</code></dt>
<dd><p>Target has the basic signed and unsigned C types in <code>stdint.h</code>.
This will be obsolete when GCC ensures a working <code>stdint.h</code> for
all targets.
</p>
</dd>
<dt><code>stpcpy</code></dt>
<dd><p>Target provides <code>stpcpy</code> function.
</p>
</dd>
<dt><code>trampolines</code></dt>
<dd><p>Target supports trampolines.
</p>
</dd>
<dt><code>uclibc</code></dt>
<dd><p>Target supports uClibc.
</p>
</dd>
<dt><code>unwrapped</code></dt>
<dd><p>Target does not use a status wrapper.
</p>
</dd>
<dt><code>vxworks_kernel</code></dt>
<dd><p>Target is a VxWorks kernel.
</p>
</dd>
<dt><code>vxworks_rtp</code></dt>
<dd><p>Target is a VxWorks RTP.
</p>
</dd>
<dt><code>wchar</code></dt>
<dd><p>Target supports wide characters.
</p></dd>
</dl>
 
<a name="Other-attributes"></a>
<h4 class="subsubsection">7.2.3.12 Other attributes</h4>
 
<dl compact="compact">
<dt><code>automatic_stack_alignment</code></dt>
<dd><p>Target supports automatic stack alignment.
</p>
</dd>
<dt><code>cxa_atexit</code></dt>
<dd><p>Target uses <code>__cxa_atexit</code>.
</p>
</dd>
<dt><code>default_packed</code></dt>
<dd><p>Target has packed layout of structure members by default.
</p>
</dd>
<dt><code>fgraphite</code></dt>
<dd><p>Target supports Graphite optimizations.
</p>
</dd>
<dt><code>fixed_point</code></dt>
<dd><p>Target supports fixed-point extension to C.
</p>
</dd>
<dt><code>fopenacc</code></dt>
<dd><p>Target supports OpenACC via <samp>-fopenacc</samp>.
</p>
</dd>
<dt><code>fopenmp</code></dt>
<dd><p>Target supports OpenMP via <samp>-fopenmp</samp>.
</p>
</dd>
<dt><code>fpic</code></dt>
<dd><p>Target supports <samp>-fpic</samp> and <samp>-fPIC</samp>.
</p>
</dd>
<dt><code>freorder</code></dt>
<dd><p>Target supports <samp>-freorder-blocks-and-partition</samp>.
</p>
</dd>
<dt><code>fstack_protector</code></dt>
<dd><p>Target supports <samp>-fstack-protector</samp>.
</p>
</dd>
<dt><code>gas</code></dt>
<dd><p>Target uses GNU <code>as</code>.
</p>
</dd>
<dt><code>gc_sections</code></dt>
<dd><p>Target supports <samp>--gc-sections</samp>.
</p>
</dd>
<dt><code>gld</code></dt>
<dd><p>Target uses GNU <code>ld</code>.
</p>
</dd>
<dt><code>keeps_null_pointer_checks</code></dt>
<dd><p>Target keeps null pointer checks, either due to the use of
<samp>-fno-delete-null-pointer-checks</samp> or hardwired into the target.
</p>
</dd>
<dt><code>lto</code></dt>
<dd><p>Compiler has been configured to support link-time optimization (LTO).
</p>
</dd>
<dt><code>naked_functions</code></dt>
<dd><p>Target supports the <code>naked</code> function attribute.
</p>
</dd>
<dt><code>named_sections</code></dt>
<dd><p>Target supports named sections.
</p>
</dd>
<dt><code>natural_alignment_32</code></dt>
<dd><p>Target uses natural alignment (aligned to type size) for types of
32 bits or less.
</p>
</dd>
<dt><code>target_natural_alignment_64</code></dt>
<dd><p>Target uses natural alignment (aligned to type size) for types of
64 bits or less.
</p>
</dd>
<dt><code>nonpic</code></dt>
<dd><p>Target does not generate PIC by default.
</p>
</dd>
<dt><code>pie_enabled</code></dt>
<dd><p>Target generates PIE by default.
</p>
</dd>
<dt><code>pcc_bitfield_type_matters</code></dt>
<dd><p>Target defines <code>PCC_BITFIELD_TYPE_MATTERS</code>.
</p>
</dd>
<dt><code>pe_aligned_commons</code></dt>
<dd><p>Target supports <samp>-mpe-aligned-commons</samp>.
</p>
</dd>
<dt><code>pie</code></dt>
<dd><p>Target supports <samp>-pie</samp>, <samp>-fpie</samp> and <samp>-fPIE</samp>.
</p>
</dd>
<dt><code>section_anchors</code></dt>
<dd><p>Target supports section anchors.
</p>
</dd>
<dt><code>short_enums</code></dt>
<dd><p>Target defaults to short enums.
</p>
</dd>
<dt><code>static</code></dt>
<dd><p>Target supports <samp>-static</samp>.
</p>
</dd>
<dt><code>static_libgfortran</code></dt>
<dd><p>Target supports statically linking &lsquo;<samp>libgfortran</samp>&rsquo;.
</p>
</dd>
<dt><code>string_merging</code></dt>
<dd><p>Target supports merging string constants at link time.
</p>
</dd>
<dt><code>ucn</code></dt>
<dd><p>Target supports compiling and assembling UCN.
</p>
</dd>
<dt><code>ucn_nocache</code></dt>
<dd><p>Including the options used to compile this particular test, the
target supports compiling and assembling UCN.
</p>
</dd>
<dt><code>unaligned_stack</code></dt>
<dd><p>Target does not guarantee that its <code>STACK_BOUNDARY</code> is greater than
or equal to the required vector alignment.
</p>
</dd>
<dt><code>vector_alignment_reachable</code></dt>
<dd><p>Vector alignment is reachable for types of 32 bits or less.
</p>
</dd>
<dt><code>vector_alignment_reachable_for_64bit</code></dt>
<dd><p>Vector alignment is reachable for types of 64 bits or less.
</p>
</dd>
<dt><code>wchar_t_char16_t_compatible</code></dt>
<dd><p>Target supports <code>wchar_t</code> that is compatible with <code>char16_t</code>.
</p>
</dd>
<dt><code>wchar_t_char32_t_compatible</code></dt>
<dd><p>Target supports <code>wchar_t</code> that is compatible with <code>char32_t</code>.
</p>
</dd>
<dt><code>comdat_group</code></dt>
<dd><p>Target uses comdat groups.
</p></dd>
</dl>
 
<a name="Local-to-tests-in-gcc_002etarget_002fi386"></a>
<h4 class="subsubsection">7.2.3.13 Local to tests in <code>gcc.target/i386</code></h4>
 
<dl compact="compact">
<dt><code>3dnow</code></dt>
<dd><p>Target supports compiling <code>3dnow</code> instructions.
</p>
</dd>
<dt><code>aes</code></dt>
<dd><p>Target supports compiling <code>aes</code> instructions.
</p>
</dd>
<dt><code>fma4</code></dt>
<dd><p>Target supports compiling <code>fma4</code> instructions.
</p>
</dd>
<dt><code>ms_hook_prologue</code></dt>
<dd><p>Target supports attribute <code>ms_hook_prologue</code>.
</p>
</dd>
<dt><code>pclmul</code></dt>
<dd><p>Target supports compiling <code>pclmul</code> instructions.
</p>
</dd>
<dt><code>sse3</code></dt>
<dd><p>Target supports compiling <code>sse3</code> instructions.
</p>
</dd>
<dt><code>sse4</code></dt>
<dd><p>Target supports compiling <code>sse4</code> instructions.
</p>
</dd>
<dt><code>sse4a</code></dt>
<dd><p>Target supports compiling <code>sse4a</code> instructions.
</p>
</dd>
<dt><code>ssse3</code></dt>
<dd><p>Target supports compiling <code>ssse3</code> instructions.
</p>
</dd>
<dt><code>vaes</code></dt>
<dd><p>Target supports compiling <code>vaes</code> instructions.
</p>
</dd>
<dt><code>vpclmul</code></dt>
<dd><p>Target supports compiling <code>vpclmul</code> instructions.
</p>
</dd>
<dt><code>xop</code></dt>
<dd><p>Target supports compiling <code>xop</code> instructions.
</p></dd>
</dl>
 
<a name="Local-to-tests-in-gcc_002etarget_002fspu_002fea"></a>
<h4 class="subsubsection">7.2.3.14 Local to tests in <code>gcc.target/spu/ea</code></h4>
 
<dl compact="compact">
<dt><code>ealib</code></dt>
<dd><p>Target <code>__ea</code> library functions are available.
</p></dd>
</dl>
 
<a name="Local-to-tests-in-gcc_002etest_002dframework"></a>
<h4 class="subsubsection">7.2.3.15 Local to tests in <code>gcc.test-framework</code></h4>
 
<dl compact="compact">
<dt><code>no</code></dt>
<dd><p>Always returns 0.
</p>
</dd>
<dt><code>yes</code></dt>
<dd><p>Always returns 1.
</p></dd>
</dl>
 
<hr>
<div class="header">
<p>
Next: <a href="Add-Options.html#Add-Options" accesskey="n" rel="next">Add Options</a>, Previous: <a href="Selectors.html#Selectors" accesskey="p" rel="prev">Selectors</a>, Up: <a href="Test-Directives.html#Test-Directives" accesskey="u" rel="up">Test Directives</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
</div>
 
 
 
</body>
</html>