1998-09-21 03:22:07 +02:00
|
|
|
/* Encoding of types for Objective C.
|
2009-04-09 17:00:19 +02:00
|
|
|
Copyright (C) 1993, 1997, 2002, 2004, 2009 Free Software Foundation, Inc.
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
Author: Kresten Krab Thorup
|
|
|
|
|
Makefile.in, [...]: Replace "GNU CC" with "GCC".
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
From-SVN: r67131
2003-05-23 22:04:58 +02:00
|
|
|
This file is part of GCC.
|
1998-09-21 03:22:07 +02:00
|
|
|
|
Makefile.in, [...]: Replace "GNU CC" with "GCC".
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
From-SVN: r67131
2003-05-23 22:04:58 +02:00
|
|
|
GCC is free software; you can redistribute it and/or modify
|
1998-09-21 03:22:07 +02:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-04-09 17:00:19 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1998-09-21 03:22:07 +02:00
|
|
|
any later version.
|
|
|
|
|
Makefile.in, [...]: Replace "GNU CC" with "GCC".
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
From-SVN: r67131
2003-05-23 22:04:58 +02:00
|
|
|
GCC is distributed in the hope that it will be useful,
|
1998-09-21 03:22:07 +02:00
|
|
|
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.
|
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __encoding_INCLUDE_GNU
|
|
|
|
#define __encoding_INCLUDE_GNU
|
|
|
|
|
NXConstStr.h, [...]: Do not include Objective-C headers as system headers.
2005-06-08 David Ayers <d.ayers@inode.at>
* objc/NXConstStr.h, objc/Object.h, objc/Protocol.h,
objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/runtime.h, objc/sarray.h, objc/thr.h,
objc/typedstream.h: Do not include Objective-C headers as
system headers.
From-SVN: r100760
2005-06-08 17:13:17 +02:00
|
|
|
#include "objc-api.h"
|
2004-08-14 00:23:58 +02:00
|
|
|
#include <ctype.h>
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2004-06-25 06:31:51 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
1998-09-21 03:22:07 +02:00
|
|
|
#define _C_CONST 'r'
|
|
|
|
#define _C_IN 'n'
|
|
|
|
#define _C_INOUT 'N'
|
|
|
|
#define _C_OUT 'o'
|
|
|
|
#define _C_BYCOPY 'O'
|
1998-10-08 13:23:35 +02:00
|
|
|
#define _C_BYREF 'R'
|
1998-09-21 03:22:07 +02:00
|
|
|
#define _C_ONEWAY 'V'
|
|
|
|
#define _C_GCINVISIBLE '!'
|
|
|
|
|
|
|
|
#define _F_CONST 0x01
|
|
|
|
#define _F_IN 0x01
|
|
|
|
#define _F_OUT 0x02
|
|
|
|
#define _F_INOUT 0x03
|
|
|
|
#define _F_BYCOPY 0x04
|
1998-10-08 13:23:35 +02:00
|
|
|
#define _F_BYREF 0x08
|
|
|
|
#define _F_ONEWAY 0x10
|
|
|
|
#define _F_GCINVISIBLE 0x20
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
int objc_aligned_size (const char *type);
|
|
|
|
int objc_sizeof_type (const char *type);
|
|
|
|
int objc_alignof_type (const char *type);
|
|
|
|
int objc_aligned_size (const char *type);
|
|
|
|
int objc_promoted_size (const char *type);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
const char *objc_skip_type_qualifiers (const char *type);
|
|
|
|
const char *objc_skip_typespec (const char *type);
|
|
|
|
const char *objc_skip_offset (const char *type);
|
|
|
|
const char *objc_skip_argspec (const char *type);
|
|
|
|
int method_get_number_of_arguments (struct objc_method *);
|
|
|
|
int method_get_sizeof_arguments (struct objc_method *);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
char *method_get_first_argument (struct objc_method *,
|
1998-09-21 03:22:07 +02:00
|
|
|
arglist_t argframe,
|
2002-07-02 21:43:03 +02:00
|
|
|
const char **type);
|
|
|
|
char *method_get_next_argument (arglist_t argframe,
|
1998-09-21 03:22:07 +02:00
|
|
|
const char **type);
|
2002-07-02 21:43:03 +02:00
|
|
|
char *method_get_nth_argument (struct objc_method *m,
|
1998-09-21 03:22:07 +02:00
|
|
|
arglist_t argframe,
|
|
|
|
int arg,
|
|
|
|
const char **type);
|
|
|
|
|
2002-07-02 21:43:03 +02:00
|
|
|
unsigned objc_get_type_qualifiers (const char *type);
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct objc_struct_layout
|
|
|
|
{
|
|
|
|
const char *original_type;
|
|
|
|
const char *type;
|
|
|
|
const char *prev_type;
|
|
|
|
unsigned int record_size;
|
|
|
|
unsigned int record_align;
|
|
|
|
};
|
|
|
|
|
|
|
|
void objc_layout_structure (const char *type,
|
|
|
|
struct objc_struct_layout *layout);
|
|
|
|
BOOL objc_layout_structure_next_member (struct objc_struct_layout *layout);
|
|
|
|
void objc_layout_finish_structure (struct objc_struct_layout *layout,
|
|
|
|
unsigned int *size,
|
|
|
|
unsigned int *align);
|
|
|
|
void objc_layout_structure_get_info (struct objc_struct_layout *layout,
|
|
|
|
unsigned int *offset,
|
|
|
|
unsigned int *align,
|
|
|
|
const char **type);
|
|
|
|
|
2004-06-25 06:31:51 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
1998-09-21 03:22:07 +02:00
|
|
|
#endif /* __encoding_INCLUDE_GNU */
|