gcc/testsuite/
[official-gcc.git] / libobjc / encoding.c
blob7ecc812a954696f2d805eefbb38d19dc7522983d
1 /* Encoding of types for Objective C.
2 Copyright (C) 1993-2014 Free Software Foundation, Inc.
3 Contributed by Kresten Krab Thorup
4 Bitfield support by Ovidiu Predescu
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 /* FIXME: This file has no business including tm.h. */
29 /* FIXME: This file contains functions that will abort the entire
30 program if they fail. Is that really needed ? */
32 #include "objc-private/common.h"
33 #include "objc-private/error.h"
34 #include "tconfig.h"
35 #include "coretypes.h"
36 #include "tm.h"
37 #include "objc/runtime.h"
38 #include "objc-private/module-abi-8.h" /* For struct objc_method */
39 #include <stdlib.h>
40 #include <ctype.h>
41 #include <string.h> /* For memcpy. */
43 #undef MAX
44 #define MAX(X, Y) \
45 ({ typeof (X) __x = (X), __y = (Y); \
46 (__x > __y ? __x : __y); })
48 #undef MIN
49 #define MIN(X, Y) \
50 ({ typeof (X) __x = (X), __y = (Y); \
51 (__x < __y ? __x : __y); })
53 #undef ROUND
54 #define ROUND(V, A) \
55 ({ typeof (V) __v = (V); typeof (A) __a = (A); \
56 __a * ((__v+__a - 1)/__a); })
59 /* Various hacks for objc_layout_record. These are used by the target
60 macros. */
62 #define TREE_CODE(TYPE) *(TYPE)
63 #define TREE_TYPE(TREE) (TREE)
65 #define RECORD_TYPE _C_STRUCT_B
66 #define UNION_TYPE _C_UNION_B
67 #define QUAL_UNION_TYPE _C_UNION_B
68 #define ARRAY_TYPE _C_ARY_B
70 #define REAL_TYPE _C_DBL
72 #define VECTOR_TYPE _C_VECTOR
74 #define TYPE_FIELDS(TYPE) ({const char *_field = (TYPE)+1; \
75 while (*_field != _C_STRUCT_E && *_field != _C_STRUCT_B \
76 && *_field != _C_UNION_B && *_field++ != '=') \
77 /* do nothing */; \
78 _field;})
80 #define DECL_MODE(TYPE) *(TYPE)
81 #define TYPE_MODE(TYPE) *(TYPE)
83 #define DFmode _C_DBL
85 #define strip_array_types(TYPE) ({const char *_field = (TYPE); \
86 while (*_field == _C_ARY_B)\
88 while (isdigit ((unsigned char)*++_field))\
91 _field;})
93 /* Some ports (eg ARM) allow the structure size boundary to be
94 selected at compile-time. We override the normal definition with
95 one that has a constant value for this compilation. */
96 #ifndef BITS_PER_UNIT
97 #define BITS_PER_UNIT 8
98 #endif
99 #undef STRUCTURE_SIZE_BOUNDARY
100 #define STRUCTURE_SIZE_BOUNDARY (BITS_PER_UNIT * sizeof (struct{char a;}))
102 /* Some ROUND_TYPE_ALIGN macros use TARGET_foo, and consequently
103 target_flags. Define a dummy entry here to so we don't die.
104 We have to rename it because target_flags may already have been
105 declared extern. */
106 #define target_flags not_target_flags
107 static int __attribute__ ((__unused__)) not_target_flags = 0;
109 /* Some ROUND_TYPE_ALIGN use ALTIVEC_VECTOR_MODE (rs6000 darwin).
110 Define a dummy ALTIVEC_VECTOR_MODE so it will not die. */
111 #undef ALTIVEC_VECTOR_MODE
112 #define ALTIVEC_VECTOR_MODE(MODE) (0)
114 /* Replace TARGET_VSX, TARGET_ALTIVEC, and TARGET_64BIT with constants based on
115 the current switches, rather than looking in the options structure. */
116 #ifdef _ARCH_PPC
117 #undef TARGET_VSX
118 #undef TARGET_ALTIVEC
119 #undef TARGET_64BIT
121 #ifdef __VSX__
122 #define TARGET_VSX 1
123 #else
124 #define TARGET_VSX 0
125 #endif
127 #ifdef __ALTIVEC__
128 #define TARGET_ALTIVEC 1
129 #else
130 #define TARGET_ALTIVEC 0
131 #endif
133 #ifdef _ARCH_PPC64
134 #define TARGET_64BIT 1
135 #else
136 #define TARGET_64BIT 0
137 #endif
138 #endif
140 /* Furthermore, some (powerpc) targets also use TARGET_ALIGN_NATURAL
141 in their alignment macros. Currently[4.5/6], rs6000.h points this
142 to a static variable, initialized by target overrides. This is reset
143 in linux64.h but not in darwin64.h. The macro is not used by *86*. */
145 #if __MACH__
146 # if __LP64__
147 # undef TARGET_ALIGN_NATURAL
148 # define TARGET_ALIGN_NATURAL 1
149 # endif
151 /* On Darwin32, we need to recurse until we find the starting stuct type. */
152 static int
153 _darwin_rs6000_special_round_type_align (const char *struc, int comp, int spec)
155 const char *_stp , *_fields = TYPE_FIELDS (struc);
156 if (!_fields)
157 return MAX (comp, spec);
158 _stp = strip_array_types (_fields);
159 if (TYPE_MODE(_stp) == _C_COMPLEX)
160 _stp++;
161 switch (TYPE_MODE(_stp))
163 case RECORD_TYPE:
164 case UNION_TYPE:
165 return MAX (MAX (comp, spec), objc_alignof_type (_stp) * BITS_PER_UNIT);
166 break;
167 case DFmode:
168 case _C_LNG_LNG:
169 case _C_ULNG_LNG:
170 return MAX (MAX (comp, spec), 64);
171 break;
173 default:
174 return MAX (comp, spec);
175 break;
179 /* See comment below. */
180 #define darwin_rs6000_special_round_type_align(S,C,S2) \
181 (_darwin_rs6000_special_round_type_align ((char*)(S), (int)(C), (int)(S2)))
182 #endif
184 /* FIXME: while this file has no business including tm.h, this
185 definitely has no business defining this macro but it
186 is only way around without really rewritting this file,
187 should look after the branch of 3.4 to fix this. */
188 #define rs6000_special_round_type_align(STRUCT, COMPUTED, SPECIFIED) \
189 ({ const char *_fields = TYPE_FIELDS (STRUCT); \
190 ((_fields != 0 \
191 && TYPE_MODE (strip_array_types (TREE_TYPE (_fields))) == DFmode) \
192 ? MAX (MAX (COMPUTED, SPECIFIED), 64) \
193 : MAX (COMPUTED, SPECIFIED));})
196 /* Skip a variable name, enclosed in quotes ("). */
197 static inline
198 const char *
199 objc_skip_variable_name (const char *type)
201 /* Skip the variable name if any. */
202 if (*type == '"')
204 /* FIXME: How do we know we won't read beyond the end of the
205 string. Here and in the rest of the file! */
206 /* Skip '"'. */
207 type++;
208 /* Skip to the next '"'. */
209 while (*type != '"')
210 type++;
211 /* Skip '"'. */
212 type++;
215 return type;
219 objc_sizeof_type (const char *type)
221 type = objc_skip_variable_name (type);
223 switch (*type) {
224 case _C_BOOL:
225 return sizeof (_Bool);
226 break;
228 case _C_ID:
229 return sizeof (id);
230 break;
232 case _C_CLASS:
233 return sizeof (Class);
234 break;
236 case _C_SEL:
237 return sizeof (SEL);
238 break;
240 case _C_CHR:
241 return sizeof (char);
242 break;
244 case _C_UCHR:
245 return sizeof (unsigned char);
246 break;
248 case _C_SHT:
249 return sizeof (short);
250 break;
252 case _C_USHT:
253 return sizeof (unsigned short);
254 break;
256 case _C_INT:
257 return sizeof (int);
258 break;
260 case _C_UINT:
261 return sizeof (unsigned int);
262 break;
264 case _C_LNG:
265 return sizeof (long);
266 break;
268 case _C_ULNG:
269 return sizeof (unsigned long);
270 break;
272 case _C_LNG_LNG:
273 return sizeof (long long);
274 break;
276 case _C_ULNG_LNG:
277 return sizeof (unsigned long long);
278 break;
280 case _C_FLT:
281 return sizeof (float);
282 break;
284 case _C_DBL:
285 return sizeof (double);
286 break;
288 case _C_LNG_DBL:
289 return sizeof (long double);
290 break;
292 case _C_VOID:
293 return sizeof (void);
294 break;
296 case _C_PTR:
297 case _C_ATOM:
298 case _C_CHARPTR:
299 return sizeof (char *);
300 break;
302 case _C_ARY_B:
304 int len = atoi (type + 1);
305 while (isdigit ((unsigned char)*++type))
307 return len * objc_aligned_size (type);
309 break;
311 case _C_VECTOR:
313 /* Skip the '!'. */
314 type++;
315 /* Skip the '['. */
316 type++;
318 /* The size in bytes is the following number. */
319 int size = atoi (type);
320 return size;
322 break;
324 case _C_BFLD:
326 /* The GNU encoding of bitfields is: b 'position' 'type'
327 'size'. */
328 int position, size;
329 int startByte, endByte;
331 position = atoi (type + 1);
332 while (isdigit ((unsigned char)*++type))
334 size = atoi (type + 1);
336 startByte = position / BITS_PER_UNIT;
337 endByte = (position + size) / BITS_PER_UNIT;
338 return endByte - startByte;
341 case _C_UNION_B:
342 case _C_STRUCT_B:
344 struct objc_struct_layout layout;
345 unsigned int size;
347 objc_layout_structure (type, &layout);
348 while (objc_layout_structure_next_member (&layout))
349 /* do nothing */ ;
350 objc_layout_finish_structure (&layout, &size, NULL);
352 return size;
355 case _C_COMPLEX:
357 type++; /* Skip after the 'j'. */
358 switch (*type)
360 case _C_CHR:
361 return sizeof (_Complex char);
362 break;
364 case _C_UCHR:
365 return sizeof (_Complex unsigned char);
366 break;
368 case _C_SHT:
369 return sizeof (_Complex short);
370 break;
372 case _C_USHT:
373 return sizeof (_Complex unsigned short);
374 break;
376 case _C_INT:
377 return sizeof (_Complex int);
378 break;
380 case _C_UINT:
381 return sizeof (_Complex unsigned int);
382 break;
384 case _C_LNG:
385 return sizeof (_Complex long);
386 break;
388 case _C_ULNG:
389 return sizeof (_Complex unsigned long);
390 break;
392 case _C_LNG_LNG:
393 return sizeof (_Complex long long);
394 break;
396 case _C_ULNG_LNG:
397 return sizeof (_Complex unsigned long long);
398 break;
400 case _C_FLT:
401 return sizeof (_Complex float);
402 break;
404 case _C_DBL:
405 return sizeof (_Complex double);
406 break;
408 case _C_LNG_DBL:
409 return sizeof (_Complex long double);
410 break;
412 default:
414 /* FIXME: Is this so bad that we have to abort the
415 entire program ? (it applies to all the other
416 _objc_abort calls in this file).
418 _objc_abort ("unknown complex type %s\n", type);
419 return 0;
424 default:
426 _objc_abort ("unknown type %s\n", type);
427 return 0;
433 objc_alignof_type (const char *type)
435 type = objc_skip_variable_name (type);
437 switch (*type) {
438 case _C_BOOL:
439 return __alignof__ (_Bool);
440 break;
442 case _C_ID:
443 return __alignof__ (id);
444 break;
446 case _C_CLASS:
447 return __alignof__ (Class);
448 break;
450 case _C_SEL:
451 return __alignof__ (SEL);
452 break;
454 case _C_CHR:
455 return __alignof__ (char);
456 break;
458 case _C_UCHR:
459 return __alignof__ (unsigned char);
460 break;
462 case _C_SHT:
463 return __alignof__ (short);
464 break;
466 case _C_USHT:
467 return __alignof__ (unsigned short);
468 break;
470 case _C_INT:
471 return __alignof__ (int);
472 break;
474 case _C_UINT:
475 return __alignof__ (unsigned int);
476 break;
478 case _C_LNG:
479 return __alignof__ (long);
480 break;
482 case _C_ULNG:
483 return __alignof__ (unsigned long);
484 break;
486 case _C_LNG_LNG:
487 return __alignof__ (long long);
488 break;
490 case _C_ULNG_LNG:
491 return __alignof__ (unsigned long long);
492 break;
494 case _C_FLT:
495 return __alignof__ (float);
496 break;
498 case _C_DBL:
499 return __alignof__ (double);
500 break;
502 case _C_LNG_DBL:
503 return __alignof__ (long double);
504 break;
506 case _C_PTR:
507 case _C_ATOM:
508 case _C_CHARPTR:
509 return __alignof__ (char *);
510 break;
512 case _C_ARY_B:
513 while (isdigit ((unsigned char)*++type))
514 /* do nothing */;
515 return objc_alignof_type (type);
517 case _C_VECTOR:
519 /* Skip the '!'. */
520 type++;
521 /* Skip the '['. */
522 type++;
524 /* Skip the size. */
525 while (isdigit ((unsigned char)*type))
526 type++;
528 /* Skip the ','. */
529 type++;
531 /* The alignment in bytes is the following number. */
532 return atoi (type);
534 case _C_STRUCT_B:
535 case _C_UNION_B:
537 struct objc_struct_layout layout;
538 unsigned int align;
540 objc_layout_structure (type, &layout);
541 while (objc_layout_structure_next_member (&layout))
542 /* do nothing */;
543 objc_layout_finish_structure (&layout, NULL, &align);
545 return align;
549 case _C_COMPLEX:
551 type++; /* Skip after the 'j'. */
552 switch (*type)
554 case _C_CHR:
555 return __alignof__ (_Complex char);
556 break;
558 case _C_UCHR:
559 return __alignof__ (_Complex unsigned char);
560 break;
562 case _C_SHT:
563 return __alignof__ (_Complex short);
564 break;
566 case _C_USHT:
567 return __alignof__ (_Complex unsigned short);
568 break;
570 case _C_INT:
571 return __alignof__ (_Complex int);
572 break;
574 case _C_UINT:
575 return __alignof__ (_Complex unsigned int);
576 break;
578 case _C_LNG:
579 return __alignof__ (_Complex long);
580 break;
582 case _C_ULNG:
583 return __alignof__ (_Complex unsigned long);
584 break;
586 case _C_LNG_LNG:
587 return __alignof__ (_Complex long long);
588 break;
590 case _C_ULNG_LNG:
591 return __alignof__ (_Complex unsigned long long);
592 break;
594 case _C_FLT:
595 return __alignof__ (_Complex float);
596 break;
598 case _C_DBL:
599 return __alignof__ (_Complex double);
600 break;
602 case _C_LNG_DBL:
603 return __alignof__ (_Complex long double);
604 break;
606 default:
608 _objc_abort ("unknown complex type %s\n", type);
609 return 0;
614 default:
616 _objc_abort ("unknown type %s\n", type);
617 return 0;
623 objc_aligned_size (const char *type)
625 int size, align;
627 type = objc_skip_variable_name (type);
628 size = objc_sizeof_type (type);
629 align = objc_alignof_type (type);
631 return ROUND (size, align);
635 objc_promoted_size (const char *type)
637 int size, wordsize;
639 type = objc_skip_variable_name (type);
640 size = objc_sizeof_type (type);
641 wordsize = sizeof (void *);
643 return ROUND (size, wordsize);
646 inline
647 const char *
648 objc_skip_type_qualifiers (const char *type)
650 while (*type == _C_CONST
651 || *type == _C_IN
652 || *type == _C_INOUT
653 || *type == _C_OUT
654 || *type == _C_BYCOPY
655 || *type == _C_BYREF
656 || *type == _C_ONEWAY
657 || *type == _C_GCINVISIBLE)
659 type += 1;
661 return type;
664 inline
665 const char *
666 objc_skip_typespec (const char *type)
668 type = objc_skip_variable_name (type);
669 type = objc_skip_type_qualifiers (type);
671 switch (*type) {
673 case _C_ID:
674 /* An id may be annotated by the actual type if it is known
675 with the @"ClassName" syntax */
677 if (*++type != '"')
678 return type;
679 else
681 while (*++type != '"')
682 /* do nothing */;
683 return type + 1;
686 /* The following are one character type codes */
687 case _C_CLASS:
688 case _C_SEL:
689 case _C_CHR:
690 case _C_UCHR:
691 case _C_CHARPTR:
692 case _C_ATOM:
693 case _C_SHT:
694 case _C_USHT:
695 case _C_INT:
696 case _C_UINT:
697 case _C_LNG:
698 case _C_BOOL:
699 case _C_ULNG:
700 case _C_LNG_LNG:
701 case _C_ULNG_LNG:
702 case _C_FLT:
703 case _C_DBL:
704 case _C_LNG_DBL:
705 case _C_VOID:
706 case _C_UNDEF:
707 return ++type;
708 break;
710 case _C_COMPLEX:
711 return type + 2;
712 break;
714 case _C_ARY_B:
715 /* skip digits, typespec and closing ']' */
716 while (isdigit ((unsigned char)*++type))
718 type = objc_skip_typespec (type);
719 if (*type == _C_ARY_E)
720 return ++type;
721 else
723 _objc_abort ("bad array type %s\n", type);
724 return 0;
727 case _C_VECTOR:
728 /* Skip '!' */
729 type++;
730 /* Skip '[' */
731 type++;
732 /* Skip digits (size) */
733 while (isdigit ((unsigned char)*type))
734 type++;
735 /* Skip ',' */
736 type++;
737 /* Skip digits (alignment) */
738 while (isdigit ((unsigned char)*type))
739 type++;
740 /* Skip typespec. */
741 type = objc_skip_typespec (type);
742 /* Skip closing ']'. */
743 if (*type == _C_ARY_E)
744 return ++type;
745 else
747 _objc_abort ("bad vector type %s\n", type);
748 return 0;
751 case _C_BFLD:
752 /* The GNU encoding of bitfields is: b 'position' 'type'
753 'size'. */
754 while (isdigit ((unsigned char)*++type))
755 ; /* skip position */
756 while (isdigit ((unsigned char)*++type))
757 ; /* skip type and size */
758 return type;
760 case _C_STRUCT_B:
761 /* skip name, and elements until closing '}' */
763 while (*type != _C_STRUCT_E && *type++ != '=')
765 while (*type != _C_STRUCT_E)
767 type = objc_skip_typespec (type);
769 return ++type;
771 case _C_UNION_B:
772 /* skip name, and elements until closing ')' */
774 while (*type != _C_UNION_E && *type++ != '=')
776 while (*type != _C_UNION_E)
778 type = objc_skip_typespec (type);
780 return ++type;
782 case _C_PTR:
783 /* Just skip the following typespec */
785 return objc_skip_typespec (++type);
787 default:
789 _objc_abort ("unknown type %s\n", type);
790 return 0;
795 inline
796 const char *
797 objc_skip_offset (const char *type)
799 /* The offset is prepended by a '+' if the argument is passed in
800 registers. PS: The compiler stopped generating this '+' in
801 version 3.4. */
802 if (*type == '+')
803 type++;
805 /* Some people claim that on some platforms, where the stack grows
806 backwards, the compiler generates negative offsets (??). Skip a
807 '-' for such a negative offset. */
808 if (*type == '-')
809 type++;
811 /* Skip the digits that represent the offset. */
812 while (isdigit ((unsigned char) *type))
813 type++;
815 return type;
818 const char *
819 objc_skip_argspec (const char *type)
821 type = objc_skip_typespec (type);
822 type = objc_skip_offset (type);
823 return type;
826 char *
827 method_copyReturnType (struct objc_method *method)
829 if (method == NULL)
830 return 0;
831 else
833 char *returnValue;
834 size_t returnValueSize;
836 /* Determine returnValueSize. */
838 /* Find the end of the first argument. We want to return the
839 first argument spec, plus 1 byte for the \0 at the end. */
840 const char *type = method->method_types;
841 if (*type == '\0')
842 return NULL;
843 type = objc_skip_argspec (type);
844 returnValueSize = type - method->method_types + 1;
847 /* Copy the first argument into returnValue. */
848 returnValue = malloc (sizeof (char) * returnValueSize);
849 memcpy (returnValue, method->method_types, returnValueSize);
850 returnValue[returnValueSize - 1] = '\0';
852 return returnValue;
856 char *
857 method_copyArgumentType (struct objc_method * method, unsigned int argumentNumber)
859 if (method == NULL)
860 return 0;
861 else
863 char *returnValue;
864 const char *returnValueStart;
865 size_t returnValueSize;
867 /* Determine returnValueStart and returnValueSize. */
869 const char *type = method->method_types;
871 /* Skip the first argument (return type). */
872 type = objc_skip_argspec (type);
874 /* Now keep skipping arguments until we get to
875 argumentNumber. */
876 while (argumentNumber > 0)
878 /* We are supposed to skip an argument, but the string is
879 finished. This means we were asked for a non-existing
880 argument. */
881 if (*type == '\0')
882 return NULL;
884 type = objc_skip_argspec (type);
885 argumentNumber--;
888 /* If the argument does not exist, return NULL. */
889 if (*type == '\0')
890 return NULL;
892 returnValueStart = type;
893 type = objc_skip_argspec (type);
894 returnValueSize = type - returnValueStart + 1;
897 /* Copy the argument into returnValue. */
898 returnValue = malloc (sizeof (char) * returnValueSize);
899 memcpy (returnValue, returnValueStart, returnValueSize);
900 returnValue[returnValueSize - 1] = '\0';
902 return returnValue;
906 void method_getReturnType (struct objc_method * method, char *returnValue,
907 size_t returnValueSize)
909 if (returnValue == NULL || returnValueSize == 0)
910 return;
912 /* Zero the string; we'll then write the argument type at the
913 beginning of it, if needed. */
914 memset (returnValue, 0, returnValueSize);
916 if (method == NULL)
917 return;
918 else
920 size_t argumentTypeSize;
922 /* Determine argumentTypeSize. */
924 /* Find the end of the first argument. We want to return the
925 first argument spec. */
926 const char *type = method->method_types;
927 if (*type == '\0')
928 return;
929 type = objc_skip_argspec (type);
930 argumentTypeSize = type - method->method_types;
931 if (argumentTypeSize > returnValueSize)
932 argumentTypeSize = returnValueSize;
934 /* Copy the argument at the beginning of the string. */
935 memcpy (returnValue, method->method_types, argumentTypeSize);
939 void method_getArgumentType (struct objc_method * method, unsigned int argumentNumber,
940 char *returnValue, size_t returnValueSize)
942 if (returnValue == NULL || returnValueSize == 0)
943 return;
945 /* Zero the string; we'll then write the argument type at the
946 beginning of it, if needed. */
947 memset (returnValue, 0, returnValueSize);
949 if (method == NULL)
950 return;
951 else
953 const char *returnValueStart;
954 size_t argumentTypeSize;
956 /* Determine returnValueStart and argumentTypeSize. */
958 const char *type = method->method_types;
960 /* Skip the first argument (return type). */
961 type = objc_skip_argspec (type);
963 /* Now keep skipping arguments until we get to
964 argumentNumber. */
965 while (argumentNumber > 0)
967 /* We are supposed to skip an argument, but the string is
968 finished. This means we were asked for a non-existing
969 argument. */
970 if (*type == '\0')
971 return;
973 type = objc_skip_argspec (type);
974 argumentNumber--;
977 /* If the argument does not exist, it's game over. */
978 if (*type == '\0')
979 return;
981 returnValueStart = type;
982 type = objc_skip_argspec (type);
983 argumentTypeSize = type - returnValueStart;
984 if (argumentTypeSize > returnValueSize)
985 argumentTypeSize = returnValueSize;
987 /* Copy the argument at the beginning of the string. */
988 memcpy (returnValue, returnValueStart, argumentTypeSize);
992 unsigned int
993 method_getNumberOfArguments (struct objc_method *method)
995 if (method == NULL)
996 return 0;
997 else
999 unsigned int i = 0;
1000 const char *type = method->method_types;
1001 while (*type)
1003 type = objc_skip_argspec (type);
1004 i += 1;
1007 if (i == 0)
1009 /* This could only happen if method_types is invalid; in
1010 that case, return 0. */
1011 return 0;
1013 else
1015 /* Remove the return type. */
1016 return (i - 1);
1021 unsigned
1022 objc_get_type_qualifiers (const char *type)
1024 unsigned res = 0;
1025 BOOL flag = YES;
1027 while (flag)
1028 switch (*type++)
1030 case _C_CONST: res |= _F_CONST; break;
1031 case _C_IN: res |= _F_IN; break;
1032 case _C_INOUT: res |= _F_INOUT; break;
1033 case _C_OUT: res |= _F_OUT; break;
1034 case _C_BYCOPY: res |= _F_BYCOPY; break;
1035 case _C_BYREF: res |= _F_BYREF; break;
1036 case _C_ONEWAY: res |= _F_ONEWAY; break;
1037 case _C_GCINVISIBLE: res |= _F_GCINVISIBLE; break;
1038 default: flag = NO;
1041 return res;
1044 /* The following three functions can be used to determine how a
1045 structure is laid out by the compiler. For example:
1047 struct objc_struct_layout layout;
1048 int i;
1050 objc_layout_structure (type, &layout);
1051 while (objc_layout_structure_next_member (&layout))
1053 int position, align;
1054 const char *type;
1056 objc_layout_structure_get_info (&layout, &position, &align, &type);
1057 printf ("element %d has offset %d, alignment %d\n",
1058 i++, position, align);
1061 These functions are used by objc_sizeof_type and objc_alignof_type
1062 functions to compute the size and alignment of structures. The
1063 previous method of computing the size and alignment of a structure
1064 was not working on some architectures, particularly on AIX, and in
1065 the presence of bitfields inside the structure. */
1066 void
1067 objc_layout_structure (const char *type,
1068 struct objc_struct_layout *layout)
1070 const char *ntype;
1072 if (*type != _C_UNION_B && *type != _C_STRUCT_B)
1074 _objc_abort ("record (or union) type expected in objc_layout_structure, got %s\n",
1075 type);
1078 type ++;
1079 layout->original_type = type;
1081 /* Skip "<name>=" if any. Avoid embedded structures and unions. */
1082 ntype = type;
1083 while (*ntype != _C_STRUCT_E && *ntype != _C_STRUCT_B && *ntype != _C_UNION_B
1084 && *ntype++ != '=')
1085 /* do nothing */;
1087 /* If there's a "<name>=", ntype - 1 points to '='; skip the the name */
1088 if (*(ntype - 1) == '=')
1089 type = ntype;
1091 layout->type = type;
1092 layout->prev_type = NULL;
1093 layout->record_size = 0;
1094 layout->record_align = BITS_PER_UNIT;
1096 layout->record_align = MAX (layout->record_align, STRUCTURE_SIZE_BOUNDARY);
1099 BOOL
1100 objc_layout_structure_next_member (struct objc_struct_layout *layout)
1102 register int desired_align = 0;
1104 /* The following are used only if the field is a bitfield */
1105 register const char *bfld_type = 0;
1106 register int bfld_type_align = 0, bfld_field_size = 0;
1108 /* The current type without the type qualifiers */
1109 const char *type;
1110 BOOL unionp = layout->original_type[-1] == _C_UNION_B;
1112 /* Add the size of the previous field to the size of the record. */
1113 if (layout->prev_type)
1115 type = objc_skip_type_qualifiers (layout->prev_type);
1116 if (unionp)
1117 layout->record_size = MAX (layout->record_size,
1118 objc_sizeof_type (type) * BITS_PER_UNIT);
1120 else if (*type != _C_BFLD)
1121 layout->record_size += objc_sizeof_type (type) * BITS_PER_UNIT;
1122 else {
1123 /* Get the bitfield's type */
1124 for (bfld_type = type + 1;
1125 isdigit ((unsigned char)*bfld_type);
1126 bfld_type++)
1127 /* do nothing */;
1129 bfld_type_align = objc_alignof_type (bfld_type) * BITS_PER_UNIT;
1130 bfld_field_size = atoi (objc_skip_typespec (bfld_type));
1131 layout->record_size += bfld_field_size;
1135 if ((unionp && *layout->type == _C_UNION_E)
1136 || (!unionp && *layout->type == _C_STRUCT_E))
1137 return NO;
1139 /* Skip the variable name if any */
1140 layout->type = objc_skip_variable_name (layout->type);
1141 type = objc_skip_type_qualifiers (layout->type);
1143 if (*type != _C_BFLD)
1144 desired_align = objc_alignof_type (type) * BITS_PER_UNIT;
1145 else
1147 desired_align = 1;
1148 /* Skip the bitfield's offset */
1149 for (bfld_type = type + 1;
1150 isdigit ((unsigned char) *bfld_type);
1151 bfld_type++)
1152 /* do nothing */;
1154 bfld_type_align = objc_alignof_type (bfld_type) * BITS_PER_UNIT;
1155 bfld_field_size = atoi (objc_skip_typespec (bfld_type));
1158 /* The following won't work for vectors. */
1159 #ifdef BIGGEST_FIELD_ALIGNMENT
1160 desired_align = MIN (desired_align, BIGGEST_FIELD_ALIGNMENT);
1161 #endif
1162 #ifdef ADJUST_FIELD_ALIGN
1163 desired_align = ADJUST_FIELD_ALIGN (type, desired_align);
1164 #endif
1166 /* Record must have at least as much alignment as any field.
1167 Otherwise, the alignment of the field within the record
1168 is meaningless. */
1169 #ifndef PCC_BITFIELD_TYPE_MATTERS
1170 layout->record_align = MAX (layout->record_align, desired_align);
1171 #else /* PCC_BITFIELD_TYPE_MATTERS */
1172 if (*type == _C_BFLD)
1174 /* For these machines, a zero-length field does not
1175 affect the alignment of the structure as a whole.
1176 It does, however, affect the alignment of the next field
1177 within the structure. */
1178 if (bfld_field_size)
1179 layout->record_align = MAX (layout->record_align, desired_align);
1180 else
1181 desired_align = objc_alignof_type (bfld_type) * BITS_PER_UNIT;
1183 /* A named bit field of declared type `int'
1184 forces the entire structure to have `int' alignment.
1185 Q1: How is encoded this thing and how to check for it?
1186 Q2: How to determine maximum_field_alignment at runtime? */
1188 /* if (DECL_NAME (field) != 0) */
1190 int type_align = bfld_type_align;
1191 #if 0
1192 if (maximum_field_alignment != 0)
1193 type_align = MIN (type_align, maximum_field_alignment);
1194 else if (DECL_PACKED (field))
1195 type_align = MIN (type_align, BITS_PER_UNIT);
1196 #endif
1198 layout->record_align = MAX (layout->record_align, type_align);
1201 else
1202 layout->record_align = MAX (layout->record_align, desired_align);
1203 #endif /* PCC_BITFIELD_TYPE_MATTERS */
1205 /* Does this field automatically have alignment it needs
1206 by virtue of the fields that precede it and the record's
1207 own alignment? */
1209 if (*type == _C_BFLD)
1210 layout->record_size = atoi (type + 1);
1211 else if (layout->record_size % desired_align != 0)
1213 /* No, we need to skip space before this field.
1214 Bump the cumulative size to multiple of field alignment. */
1215 layout->record_size = ROUND (layout->record_size, desired_align);
1218 /* Jump to the next field in record. */
1220 layout->prev_type = layout->type;
1221 layout->type = objc_skip_typespec (layout->type); /* skip component */
1223 return YES;
1226 void objc_layout_finish_structure (struct objc_struct_layout *layout,
1227 unsigned int *size,
1228 unsigned int *align)
1230 BOOL unionp = layout->original_type[-1] == _C_UNION_B;
1231 if (layout->type
1232 && ((!unionp && *layout->type == _C_STRUCT_E)
1233 || (unionp && *layout->type == _C_UNION_E)))
1235 /* Work out the alignment of the record as one expression and store
1236 in the record type. Round it up to a multiple of the record's
1237 alignment. */
1238 #if defined (ROUND_TYPE_ALIGN) && ! defined (__sparc__)
1239 layout->record_align = ROUND_TYPE_ALIGN (layout->original_type-1,
1241 layout->record_align);
1242 #else
1243 layout->record_align = MAX (1, layout->record_align);
1244 #endif
1246 #ifdef ROUND_TYPE_SIZE
1247 layout->record_size = ROUND_TYPE_SIZE (layout->original_type,
1248 layout->record_size,
1249 layout->record_align);
1250 #else
1251 /* Round the size up to be a multiple of the required alignment */
1252 layout->record_size = ROUND (layout->record_size, layout->record_align);
1253 #endif
1255 layout->type = NULL;
1257 if (size)
1258 *size = layout->record_size / BITS_PER_UNIT;
1259 if (align)
1260 *align = layout->record_align / BITS_PER_UNIT;
1263 void objc_layout_structure_get_info (struct objc_struct_layout *layout,
1264 unsigned int *offset,
1265 unsigned int *align,
1266 const char **type)
1268 if (offset)
1269 *offset = layout->record_size / BITS_PER_UNIT;
1270 if (align)
1271 *align = layout->record_align / BITS_PER_UNIT;
1272 if (type)
1273 *type = layout->prev_type;