Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2018 Google, Inc. |
| 3 | * |
| 4 | * This is part of HarfBuzz, a text shaping library. |
| 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
| 24 | * Google Author(s): Behdad Esfahbod |
| 25 | */ |
| 26 | |
| 27 | #ifndef HB_NULL_HH |
| 28 | #define HB_NULL_HH |
| 29 | |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 30 | #include "hb.hh" |
Behdad Esfahbod | 8c6cbbd | 2018-12-28 14:29:09 -0500 | [diff] [blame] | 31 | #include "hb-meta.hh" |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 32 | |
| 33 | |
| 34 | /* |
| 35 | * Static pools |
| 36 | */ |
| 37 | |
| 38 | /* Global nul-content Null pool. Enlarge as necessary. */ |
| 39 | |
Behdad Esfahbod | 155e92f | 2019-04-16 11:35:09 -0400 | [diff] [blame] | 40 | #define HB_NULL_POOL_SIZE 384 |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 41 | |
Behdad Esfahbod | f2b91d6 | 2018-11-22 01:10:22 -0500 | [diff] [blame] | 42 | /* Use SFINAE to sniff whether T has min_size; in which case return T::null_size, |
| 43 | * otherwise return sizeof(T). */ |
Behdad Esfahbod | 2737aa8 | 2018-11-22 01:44:27 -0500 | [diff] [blame] | 44 | |
| 45 | /* The hard way... |
| 46 | * https://stackoverflow.com/questions/7776448/sfinae-tried-with-bool-gives-compiler-error-template-argument-tvalue-invol |
| 47 | */ |
Behdad Esfahbod | 39b9d63 | 2018-11-24 00:25:40 -0500 | [diff] [blame] | 48 | |
Behdad Esfahbod | 2737aa8 | 2018-11-22 01:44:27 -0500 | [diff] [blame] | 49 | template <typename T, typename B> |
Behdad Esfahbod | f2b91d6 | 2018-11-22 01:10:22 -0500 | [diff] [blame] | 50 | struct _hb_null_size |
| 51 | { enum { value = sizeof (T) }; }; |
| 52 | template <typename T> |
Behdad Esfahbod | 8570da1 | 2018-12-28 14:40:30 -0500 | [diff] [blame] | 53 | struct _hb_null_size<T, hb_bool_tt<true || sizeof (T::min_size)> > |
Behdad Esfahbod | f2b91d6 | 2018-11-22 01:10:22 -0500 | [diff] [blame] | 54 | { enum { value = T::null_size }; }; |
| 55 | |
| 56 | template <typename T> |
| 57 | struct hb_null_size |
Behdad Esfahbod | 8c6cbbd | 2018-12-28 14:29:09 -0500 | [diff] [blame] | 58 | { enum { value = _hb_null_size<T, hb_true_t>::value }; }; |
Behdad Esfahbod | f99abcc | 2018-11-24 00:22:21 -0500 | [diff] [blame] | 59 | #define hb_null_size(T) hb_null_size<T>::value |
Behdad Esfahbod | f2b91d6 | 2018-11-22 01:10:22 -0500 | [diff] [blame] | 60 | |
Behdad Esfahbod | 5b70074 | 2018-12-20 15:38:59 -0500 | [diff] [blame] | 61 | /* These doesn't belong here, but since is copy/paste from above, put it here. */ |
| 62 | |
| 63 | /* hb_static_size (T) |
| 64 | * Returns T::static_size if T::min_size is defined, or sizeof (T) otherwise. */ |
Behdad Esfahbod | 39b9d63 | 2018-11-24 00:25:40 -0500 | [diff] [blame] | 65 | |
| 66 | template <typename T, typename B> |
| 67 | struct _hb_static_size |
| 68 | { enum { value = sizeof (T) }; }; |
| 69 | template <typename T> |
Behdad Esfahbod | 8570da1 | 2018-12-28 14:40:30 -0500 | [diff] [blame] | 70 | struct _hb_static_size<T, hb_bool_tt<true || sizeof (T::min_size)> > |
Behdad Esfahbod | 39b9d63 | 2018-11-24 00:25:40 -0500 | [diff] [blame] | 71 | { enum { value = T::static_size }; }; |
| 72 | |
| 73 | template <typename T> |
| 74 | struct hb_static_size |
Behdad Esfahbod | 8c6cbbd | 2018-12-28 14:29:09 -0500 | [diff] [blame] | 75 | { enum { value = _hb_static_size<T, hb_true_t>::value }; }; |
Behdad Esfahbod | 39b9d63 | 2018-11-24 00:25:40 -0500 | [diff] [blame] | 76 | #define hb_static_size(T) hb_static_size<T>::value |
| 77 | |
| 78 | |
| 79 | /* |
| 80 | * Null() |
| 81 | */ |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 82 | |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 83 | extern HB_INTERNAL |
| 84 | hb_vector_size_impl_t const _hb_NullPool[(HB_NULL_POOL_SIZE + sizeof (hb_vector_size_impl_t) - 1) / sizeof (hb_vector_size_impl_t)]; |
| 85 | |
| 86 | /* Generic nul-content Null objects. */ |
| 87 | template <typename Type> |
Behdad Esfahbod | ec2a5dc | 2019-03-26 16:18:03 -0700 | [diff] [blame] | 88 | struct Null { |
| 89 | static Type const & get_null () |
| 90 | { |
| 91 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); |
| 92 | return *reinterpret_cast<Type const *> (_hb_NullPool); |
| 93 | } |
| 94 | }; |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 95 | template <typename QType> |
| 96 | struct NullHelper |
| 97 | { |
Behdad Esfahbod | 54ece29 | 2019-04-16 16:45:53 -0400 | [diff] [blame^] | 98 | typedef hb_remove_const<hb_remove_reference<QType> > Type; |
Behdad Esfahbod | ec2a5dc | 2019-03-26 16:18:03 -0700 | [diff] [blame] | 99 | static const Type & get_null () { return Null<Type>::get_null (); } |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 100 | }; |
| 101 | #define Null(Type) NullHelper<Type>::get_null () |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 102 | |
Bruce Mitchener | 257d0e5 | 2018-10-19 22:49:21 +0700 | [diff] [blame] | 103 | /* Specializations for arbitrary-content Null objects expressed in bytes. */ |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 104 | #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ |
Behdad Esfahbod | 0d160d5 | 2018-09-03 20:50:11 -0700 | [diff] [blame] | 105 | } /* Close namespace. */ \ |
Behdad Esfahbod | 8d77887 | 2018-11-21 23:46:09 -0500 | [diff] [blame] | 106 | extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Namespace::Type::null_size]; \ |
Behdad Esfahbod | 0d160d5 | 2018-09-03 20:50:11 -0700 | [diff] [blame] | 107 | template <> \ |
Behdad Esfahbod | ec2a5dc | 2019-03-26 16:18:03 -0700 | [diff] [blame] | 108 | struct Null<Namespace::Type> { \ |
| 109 | static Namespace::Type const & get_null () { \ |
| 110 | return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \ |
| 111 | } \ |
| 112 | }; \ |
Behdad Esfahbod | 0d160d5 | 2018-09-03 20:50:11 -0700 | [diff] [blame] | 113 | namespace Namespace { \ |
| 114 | static_assert (true, "Just so we take semicolon after.") |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 115 | #define DEFINE_NULL_NAMESPACE_BYTES(Namespace, Type) \ |
Behdad Esfahbod | 8d77887 | 2018-11-21 23:46:09 -0500 | [diff] [blame] | 116 | const unsigned char _hb_Null_##Namespace##_##Type[Namespace::Type::null_size] |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 117 | |
Bruce Mitchener | 257d0e5 | 2018-10-19 22:49:21 +0700 | [diff] [blame] | 118 | /* Specializations for arbitrary-content Null objects expressed as struct initializer. */ |
Behdad Esfahbod | 3506672 | 2018-08-06 06:17:48 -0700 | [diff] [blame] | 119 | #define DECLARE_NULL_INSTANCE(Type) \ |
Behdad Esfahbod | 0d160d5 | 2018-09-03 20:50:11 -0700 | [diff] [blame] | 120 | extern HB_INTERNAL const Type _hb_Null_##Type; \ |
| 121 | template <> \ |
Behdad Esfahbod | ec2a5dc | 2019-03-26 16:18:03 -0700 | [diff] [blame] | 122 | struct Null<Type> { \ |
| 123 | static Type const & get_null () { \ |
| 124 | return _hb_Null_##Type; \ |
| 125 | } \ |
| 126 | }; \ |
| 127 | static_assert (true, "Just so we take semicolon after.") |
Behdad Esfahbod | 3506672 | 2018-08-06 06:17:48 -0700 | [diff] [blame] | 128 | #define DEFINE_NULL_INSTANCE(Type) \ |
Behdad Esfahbod | 0d160d5 | 2018-09-03 20:50:11 -0700 | [diff] [blame] | 129 | const Type _hb_Null_##Type |
| 130 | |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 131 | /* Global writable pool. Enlarge as necessary. */ |
| 132 | |
| 133 | /* To be fully correct, CrapPool must be thread_local. However, we do not rely on CrapPool |
| 134 | * for correct operation. It only exist to catch and divert program logic bugs instead of |
| 135 | * causing bad memory access. So, races there are not actually introducing incorrectness |
| 136 | * in the code. Has ~12kb binary size overhead to have it, also clang build fails with it. */ |
| 137 | extern HB_INTERNAL |
| 138 | /*thread_local*/ hb_vector_size_impl_t _hb_CrapPool[(HB_NULL_POOL_SIZE + sizeof (hb_vector_size_impl_t) - 1) / sizeof (hb_vector_size_impl_t)]; |
| 139 | |
| 140 | /* CRAP pool: Common Region for Access Protection. */ |
| 141 | template <typename Type> |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 142 | static inline Type& Crap () { |
Behdad Esfahbod | f99abcc | 2018-11-24 00:22:21 -0500 | [diff] [blame] | 143 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 144 | Type *obj = reinterpret_cast<Type *> (_hb_CrapPool); |
Behdad Esfahbod | de96e5c | 2018-11-01 18:13:58 -0400 | [diff] [blame] | 145 | memcpy (obj, &Null(Type), sizeof (*obj)); |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 146 | return *obj; |
| 147 | } |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 148 | template <typename QType> |
| 149 | struct CrapHelper |
| 150 | { |
Behdad Esfahbod | 54ece29 | 2019-04-16 16:45:53 -0400 | [diff] [blame^] | 151 | typedef hb_remove_const<hb_remove_reference<QType> > Type; |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 152 | static Type & get_crap () { return Crap<Type> (); } |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 153 | }; |
| 154 | #define Crap(Type) CrapHelper<Type>::get_crap () |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 155 | |
| 156 | template <typename Type> |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 157 | struct CrapOrNullHelper { |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 158 | static Type & get () { return Crap(Type); } |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 159 | }; |
| 160 | template <typename Type> |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 161 | struct CrapOrNullHelper<const Type> { |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 162 | static const Type & get () { return Null(Type); } |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 163 | }; |
Behdad Esfahbod | 282ce72 | 2018-11-29 12:18:14 -0500 | [diff] [blame] | 164 | #define CrapOrNull(Type) CrapOrNullHelper<Type>::get () |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 165 | |
| 166 | |
Behdad Esfahbod | fb0f30f | 2018-11-03 15:24:14 -0400 | [diff] [blame] | 167 | /* |
| 168 | * hb_nonnull_ptr_t |
| 169 | */ |
| 170 | |
| 171 | template <typename P> |
| 172 | struct hb_nonnull_ptr_t |
| 173 | { |
Behdad Esfahbod | 54ece29 | 2019-04-16 16:45:53 -0400 | [diff] [blame^] | 174 | typedef hb_remove_pointer<P> T; |
Behdad Esfahbod | fb0f30f | 2018-11-03 15:24:14 -0400 | [diff] [blame] | 175 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 176 | hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {} |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 177 | T * operator = (T *v_) { return v = v_; } |
| 178 | T * operator -> () const { return get (); } |
| 179 | T & operator * () const { return *get (); } |
| 180 | T ** operator & () const { return &v; } |
Behdad Esfahbod | 0da22fb | 2018-11-05 13:13:39 -0500 | [diff] [blame] | 181 | /* Only auto-cast to const types. */ |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 182 | template <typename C> operator const C * () const { return get (); } |
| 183 | operator const char * () const { return (const char *) get (); } |
| 184 | T * get () const { return v ? v : const_cast<T *> (&Null(T)); } |
| 185 | T * get_raw () const { return v; } |
Behdad Esfahbod | fb0f30f | 2018-11-03 15:24:14 -0400 | [diff] [blame] | 186 | |
| 187 | T *v; |
| 188 | }; |
| 189 | |
| 190 | |
Behdad Esfahbod | 25147ff | 2018-08-06 05:01:52 -0700 | [diff] [blame] | 191 | #endif /* HB_NULL_HH */ |