Remove more disassembler bogosity
[sbcl.git] / src / runtime / wrap.h
blobade600b64f17edbfbb094ef2ed782190608aea4c
1 /*
2 * Data structures used in wrap.c in this directory, moved here from
3 * wrap.c in November 2007 so that
4 * src/tools-for-build/grovel-headers.c can grovel the sizes of
5 * things.
6 */
7 #ifndef _SBCL_WRAP_H_
8 #define _SBCL_WRAP_H_
10 /* As of 0.6.12, the FFI can't handle 64-bit values. For now, we use
11 * these munged-to-32-bits values for might-be-64-bit slots of
12 * stat_wrapper as a workaround, so that at least we can still work
13 * when values are small.
15 * FIXME: But of course we should fix the FFI so that we can use the
16 * actual 64-bit values instead. In fact, we probably have by now
17 * (2003-10-03) on all working platforms except MIPS and HPPA; if some
18 * motivated spark would simply fix those, this hack could go away.
19 * -- CSR, 2003-10-03
21 * Some motivated spark fixed MIPS. -- ths, 2005-10-06 */
23 /* It would seem as though the FFI would have to be able to handle
24 * 64-bit values in order for the LARGEFILE && !MIPS case below to
25 * work, so can the comment above still be right? If FFI can only
26 * handle 64-bit aliens on some platforms, maybe there should be a
27 * distinct Lisp feature for 64-bit aliens support? -- RMK,
28 * 2007-11-14
30 * In any case, since the types defined here exist to give sizes to
31 * potentially munged or faked data in our stat wrapper, these
32 * shouldn't be used for any purpose for which the real type can be
33 * employed. */
35 #include "sbcl.h"
37 /* We use an extra layer of aliasing because Linux/MIPS struct stat
38 doesn't use dev_t. This type is not defined on the Lisp side. */
39 #ifdef LISP_FEATURE_MIPS
40 typedef unsigned long aliased_dev_t;
41 #else
42 typedef dev_t aliased_dev_t;
43 #endif
45 #ifdef LISP_FEATURE_ANDROID
46 typedef unsigned long long wst_ino_t;
47 typedef long long wst_off_t;
48 typedef unsigned long long wst_dev_t;
49 #elif defined(LISP_FEATURE_LARGEFILE) || defined(LISP_FEATURE_DARWIN)
50 typedef ino_t wst_ino_t;
51 typedef aliased_dev_t wst_dev_t;
52 typedef off_t wst_off_t;
53 #else
54 /* These wrappers shouldn't exist, and since pulling in runtime.h caused
55 * problems on Win32, we don't use the u32 typedef. */
56 typedef ino_t wst_ino_t;
57 typedef unsigned int wst_dev_t; /* since Linux dev_t can be 64 bits */
58 typedef unsigned int wst_off_t; /* since OpenBSD 2.8 st_size is 64 bits */
59 #endif
61 #ifdef LISP_FEATURE_OS_PROVIDES_BLKSIZE_T
62 typedef blksize_t wst_blksize_t;
63 typedef blkcnt_t wst_blkcnt_t;
64 #elif defined(LISP_FEATURE_ANDROID)
65 typedef unsigned long wst_blksize_t;
66 typedef unsigned long long wst_blkcnt_t;
67 #else
68 typedef unsigned long wst_blksize_t;
69 typedef unsigned long wst_blkcnt_t;
70 #endif
72 #ifdef LISP_FEATURE_WIN32 /* Win32 lacks nlink_t, st_uid, st_gid.*/
73 typedef short wst_nlink_t;
74 typedef short wst_uid_t;
75 typedef short wst_gid_t;
76 #else
77 typedef nlink_t wst_nlink_t;
78 typedef uid_t wst_uid_t;
79 typedef gid_t wst_gid_t;
80 #endif
82 /* a representation of stat(2) results which doesn't depend on CPU or OS */
83 struct stat_wrapper {
84 /* KLUDGE: The verbose wrapped_st_ prefixes are to protect us from
85 * the C preprocessor as wielded by the fiends of OpenBSD, who do
86 * things like
87 * #define st_atime st_atimespec.tv_sec
88 * I remember when I was young and innocent, I read about how the
89 * C preprocessor isn't to be used to globally munge random
90 * lowercase symbols like this, because things like this could
91 * happen, and I nodded sagely. But now I know better.:-| This is
92 * another entry for Dan Barlow's ongoing episodic rant about C
93 * header files, I guess.. -- WHN 2001-05-10 */
94 wst_dev_t wrapped_st_dev; /* device */
95 wst_ino_t wrapped_st_ino; /* inode */
96 mode_t wrapped_st_mode; /* protection */
97 wst_nlink_t wrapped_st_nlink; /* number of hard links */
98 wst_uid_t wrapped_st_uid; /* user ID of owner */
99 wst_gid_t wrapped_st_gid; /* group ID of owner */
100 wst_dev_t wrapped_st_rdev; /* device type (if inode device) */
101 wst_off_t wrapped_st_size; /* total size, in bytes */
102 wst_blksize_t wrapped_st_blksize; /* blocksize for filesystem I/O */
103 wst_blkcnt_t wrapped_st_blocks; /* number of blocks allocated */
104 time_t wrapped_st_atime; /* time_t of last access */
105 time_t wrapped_st_mtime; /* time_t of last modification */
106 time_t wrapped_st_ctime; /* time_t of last change */
109 #endif /* _SBCL_WRAP_H_ */