~ubuntu-branches/ubuntu/quantal/gnutls26/quantal

« back to all changes in this revision

Viewing changes to gl/alignof.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-05-20 13:07:18 UTC
  • mfrom: (12.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20110520130718-db41dybbanzfvlji
Tags: 2.10.5-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Fix build failure with --no-add-needed.
  - Build for multiarch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Determine alignment of types.
2
 
   Copyright (C) 2003-2004, 2006, 2009 Free Software Foundation, Inc.
 
2
   Copyright (C) 2003-2004, 2006, 2009-2010 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
20
20
 
21
21
#include <stddef.h>
22
22
 
23
 
/* Determine the alignment of a type at compile time.  */
 
23
/* Determine the alignment of a structure slot (field) of a given type,
 
24
   at compile time.  Note that the result depends on the ABI.
 
25
   Note: The result cannot be used as a value for an 'enum' constant,
 
26
   due to bugs in HP-UX 10.20 cc and AIX 3.2.5 xlc.  */
 
27
#if defined __cplusplus
 
28
  template <class type> struct alignof_helper { char __slot1; type __slot2; };
 
29
# define alignof_slot(type) offsetof (alignof_helper<type>, __slot2)
 
30
#else
 
31
# define alignof_slot(type) offsetof (struct { char __slot1; type __slot2; }, __slot2)
 
32
#endif
 
33
 
 
34
/* Determine the good alignment of a object of the given type at compile time.
 
35
   Note that this is not necessarily the same as alignof_slot(type).
 
36
   For example, with GNU C on x86 platforms: alignof_type(double) = 8, but
 
37
   - when -malign-double is not specified:  alignof_slot(double) = 4,
 
38
   - when -malign-double is specified:      alignof_slot(double) = 8.
 
39
   Note: The result cannot be used as a value for an 'enum' constant,
 
40
   due to bugs in HP-UX 10.20 cc and AIX 3.2.5 xlc.  */
24
41
#if defined __GNUC__
25
 
# define alignof __alignof__
26
 
#elif defined __cplusplus
27
 
  template <class type> struct alignof_helper { char __slot1; type __slot2; };
28
 
# define alignof(type) offsetof (alignof_helper<type>, __slot2)
 
42
# define alignof_type __alignof__
29
43
#else
30
 
# define alignof(type) offsetof (struct { char __slot1; type __slot2; }, __slot2)
 
44
# define alignof_type alignof_slot
31
45
#endif
32
46
 
 
47
/* alignof is an alias for alignof_slot semantics, since that's what most
 
48
   callers need.
 
49
   Note: The result cannot be used as a value for an 'enum' constant,
 
50
   due to bugs in HP-UX 10.20 cc and AIX 3.2.5 xlc.  */
 
51
#define alignof alignof_slot
 
52
 
33
53
#endif /* _ALIGNOF_H */