1998-09-21 03:22:07 +02:00
|
|
|
/* Encoding of types for Objective C.
|
NXConstStr.h: Update copyright date...
2004-08-12 Ziemowit Laski <zlaski@apple.com>
* objc/NXConstStr.h: Update copyright date; bracket with
'extern "C"' for C++ use; make include syntax consistent
by using <...> instead of "..."; hoist <objc/...> includes
above the 'extern "C"' block.
* objc/Object.h: Likewise.
* objc/Protocol.h: Likewise.
* objc/encoding.h: Likewise.
* objc/hash.h: Likewise.
* objc/runtime.h: Likewise.
* objc/sarray.h: Likewise.
* objc/thr.h: Likewise.
* objc/typedstream.h: Likewise.
* objc/objc-api.h: Add 'extern "C"' block for C++ use.
(objc_static_instances): For C++ case, do away with
zero-sized array.
(objc_method): Hoist definition to file scope.
(_objc_load_callback, _objc_object_alloc, class_get_class_method,
class_get_instance_method, class_create_instance,
class_get_class_name, class_get_instance_size,
class_get_meta_class, class_get_super_class, class_get_version,
class_is_class, class_is_meta_class, class_set_version,
class_get_gc_object_type, class_ivar_set_gcinvisible,
get_imp): Rename 'class' parameter to '_class'.
* objc/objc-list.h: Add 'extern "C"' block for C++ use.
* objc/objc.h: Update copyright date.
(arglist_t): Provide a union tag.
From-SVN: r85927
2004-08-13 04:06:37 +02:00
|
|
|
Copyright (C) 1993, 1997, 2002, 2004 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
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
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
|
|
|
along with GCC; see the file COPYING. If not, write to
|
2005-08-17 05:21:42 +02:00
|
|
|
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
/* As a special exception, if you link this library with files
|
|
|
|
compiled with GCC to produce an executable, this does not cause
|
|
|
|
the resulting executable to be covered by the GNU General Public License.
|
|
|
|
This exception does not however invalidate any other reasons why
|
|
|
|
the executable file might be covered by the GNU General Public License. */
|
|
|
|
|
|
|
|
#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 */
|