diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-01-18 22:56:54 +0000 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-01-18 22:56:54 +0000 |
commit | 98378138a521fa52758f1ed3501900e6c323c474 (patch) | |
tree | 2671a6cc1ba80d9790995b33205536c4184f55b2 /src/abi.h | |
parent | e388efa5eba02ce6909193f700f11fe1385230e9 (diff) |
Very slightly tidy RTTI stuff
More handwavey Linux prep, nothing too significant.
Diffstat (limited to 'src/abi.h')
-rw-r--r-- | src/abi.h | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -74,7 +74,7 @@ struct msvc_rtti_locator { // I mean seriously look at this crap! #define DEF_MSVC_BASIC_RTTI(mod, name, vtab, typestr) \ mod struct msvc_rtti_locator name; \ -static struct msvc_rtti_descriptor _desc_##name = {(vtab) + 1, 0, typestr}; \ +static struct msvc_rtti_descriptor _desc_##name = {(vtab), 0, typestr}; \ static struct msvc_basedesc _basedesc_##name = {&_desc_##name, 0, {0, 0, 0}, 0}; \ mod struct msvc_rtti_locator name = { \ 0, 0, 0, \ @@ -84,6 +84,28 @@ mod struct msvc_rtti_locator name = { \ } \ }; +#else + +#warning FIXME! More stuff needs to be implemented/fixed here! + +struct itanium_type_info { + struct itanium_type_info_vtable { + void *dtor1, *dtor2; // ??? + // there's some more functions here in libstdc++: is_pointer, + // is_function, do_catch, etc. however they're not specified in itanium + // abi doc. hoping to do without them, but we'll see I guess + } *vtable; + const char *name; +}; + +#define DEF_ITANIUM_BASIC_RTTI(mod, name, typestr) \ + mod struct itanium_type_info name = { \ + &(struct itanium_type_info_vtable){ \ + 0, 0 /* FIXME/TEMP: definitely need real functions here! */ \ + }, \ + typestr \ + }; + #endif #endif |