array.hpp 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  1. /*************************************************************************
  2. *
  3. * Copyright 2016 Realm Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. **************************************************************************/
  18. /*
  19. Searching: The main finding function is:
  20. template <class cond, Action action, size_t bitwidth, class Callback>
  21. void find(int64_t value, size_t start, size_t end, size_t baseindex, QueryState *state, Callback callback) const
  22. cond: One of Equal, NotEqual, Greater, etc. classes
  23. Action: One of act_ReturnFirst, act_FindAll, act_Max, act_CallbackIdx, etc, constants
  24. Callback: Optional function to call for each search result. Will be called if action == act_CallbackIdx
  25. find() will call find_action_pattern() or find_action() that again calls match() for each search result which
  26. optionally calls callback():
  27. find() -> find_action() -------> bool match() -> bool callback()
  28. | ^
  29. +-> find_action_pattern()----+
  30. If callback() returns false, find() will exit, otherwise it will keep searching remaining items in array.
  31. */
  32. #ifndef REALM_ARRAY_HPP
  33. #define REALM_ARRAY_HPP
  34. #include <realm/node.hpp>
  35. #include <cmath>
  36. #include <cstdlib> // size_t
  37. #include <algorithm>
  38. #include <utility>
  39. #include <vector>
  40. #include <ostream>
  41. #include <cstdint> // unint8_t etc
  42. #include <realm/util/assert.hpp>
  43. #include <realm/util/file_mapper.hpp>
  44. #include <realm/utilities.hpp>
  45. #include <realm/alloc.hpp>
  46. #include <realm/string_data.hpp>
  47. #include <realm/query_conditions.hpp>
  48. #include <realm/column_fwd.hpp>
  49. #include <realm/array_direct.hpp>
  50. #include <realm/array_unsigned.hpp>
  51. /*
  52. MMX: mmintrin.h
  53. SSE: xmmintrin.h
  54. SSE2: emmintrin.h
  55. SSE3: pmmintrin.h
  56. SSSE3: tmmintrin.h
  57. SSE4A: ammintrin.h
  58. SSE4.1: smmintrin.h
  59. SSE4.2: nmmintrin.h
  60. */
  61. #ifdef REALM_COMPILER_SSE
  62. #include <emmintrin.h> // SSE2
  63. #include <realm/realm_nmmintrin.h> // SSE42
  64. #endif
  65. namespace realm {
  66. template <class T>
  67. inline T no0(T v)
  68. {
  69. return v == 0 ? 1 : v;
  70. }
  71. // Pre-definitions
  72. struct ObjKey;
  73. class Array;
  74. class GroupWriter;
  75. namespace _impl {
  76. class ArrayWriterBase;
  77. }
  78. template <class T>
  79. class BPlusTree;
  80. using KeyColumn = BPlusTree<ObjKey>;
  81. struct MemStats {
  82. size_t allocated = 0;
  83. size_t used = 0;
  84. size_t array_count = 0;
  85. };
  86. #ifdef REALM_DEBUG
  87. template <class C, class T>
  88. std::basic_ostream<C, T>& operator<<(std::basic_ostream<C, T>& out, MemStats stats);
  89. #endif
  90. // Stores a value obtained from Array::get(). It is a ref if the least
  91. // significant bit is clear, otherwise it is a tagged integer. A tagged interger
  92. // is obtained from a logical integer value by left shifting by one bit position
  93. // (multiplying by two), and then setting the least significant bit to
  94. // one. Clearly, this means that the maximum value that can be stored as a
  95. // tagged integer is 2**63 - 1.
  96. class RefOrTagged {
  97. public:
  98. bool is_ref() const noexcept;
  99. bool is_tagged() const noexcept;
  100. ref_type get_as_ref() const noexcept;
  101. uint_fast64_t get_as_int() const noexcept;
  102. static RefOrTagged make_ref(ref_type) noexcept;
  103. static RefOrTagged make_tagged(uint_fast64_t) noexcept;
  104. private:
  105. int_fast64_t m_value;
  106. RefOrTagged(int_fast64_t) noexcept;
  107. friend class Array;
  108. };
  109. struct TreeInsertBase {
  110. size_t m_split_offset;
  111. size_t m_split_size;
  112. };
  113. template <class T>
  114. class QueryStateFindAll : public QueryStateBase {
  115. public:
  116. explicit QueryStateFindAll(T& keys, size_t limit = -1)
  117. : QueryStateBase(limit)
  118. , m_keys(keys)
  119. {
  120. }
  121. bool match(size_t index, Mixed) noexcept final;
  122. private:
  123. T& m_keys;
  124. };
  125. class QueryStateFindFirst : public QueryStateBase {
  126. public:
  127. size_t m_state = realm::not_found;
  128. QueryStateFindFirst()
  129. : QueryStateBase(1)
  130. {
  131. }
  132. bool match(size_t index, Mixed) noexcept final
  133. {
  134. m_match_count++;
  135. m_state = index;
  136. return false;
  137. }
  138. };
  139. class Array : public Node, public ArrayParent {
  140. public:
  141. // void state_init(int action, QueryState *state);
  142. // bool match(int action, size_t index, int64_t value, QueryState *state);
  143. /// Create an array accessor in the unattached state.
  144. explicit Array(Allocator& allocator) noexcept
  145. : Node(allocator)
  146. {
  147. }
  148. ~Array() noexcept override {}
  149. /// Create a new integer array of the specified type and size, and filled
  150. /// with the specified value, and attach this accessor to it. This does not
  151. /// modify the parent reference information of this accessor.
  152. ///
  153. /// Note that the caller assumes ownership of the allocated underlying
  154. /// node. It is not owned by the accessor.
  155. void create(Type, bool context_flag = false, size_t size = 0, int_fast64_t value = 0);
  156. /// Reinitialize this array accessor to point to the specified new
  157. /// underlying memory. This does not modify the parent reference information
  158. /// of this accessor.
  159. void init_from_ref(ref_type ref) noexcept
  160. {
  161. REALM_ASSERT_DEBUG(ref);
  162. char* header = m_alloc.translate(ref);
  163. init_from_mem(MemRef(header, ref, m_alloc));
  164. }
  165. /// Same as init_from_ref(ref_type) but avoid the mapping of 'ref' to memory
  166. /// pointer.
  167. void init_from_mem(MemRef) noexcept;
  168. /// Same as `init_from_ref(get_ref_from_parent())`.
  169. void init_from_parent() noexcept
  170. {
  171. ref_type ref = get_ref_from_parent();
  172. init_from_ref(ref);
  173. }
  174. /// Called in the context of Group::commit() to ensure that attached
  175. /// accessors stay valid across a commit. Please note that this works only
  176. /// for non-transactional commits. Accessors obtained during a transaction
  177. /// are always detached when the transaction ends.
  178. void update_from_parent() noexcept;
  179. /// Change the type of an already attached array node.
  180. ///
  181. /// The effect of calling this function on an unattached accessor is
  182. /// undefined.
  183. void set_type(Type);
  184. /// Construct a complete copy of this array (including its subarrays) using
  185. /// the specified target allocator and return just the reference to the
  186. /// underlying memory.
  187. MemRef clone_deep(Allocator& target_alloc) const;
  188. /// Construct an empty integer array of the specified type, and return just
  189. /// the reference to the underlying memory.
  190. static MemRef create_empty_array(Type, bool context_flag, Allocator&);
  191. /// Construct an integer array of the specified type and size, and return
  192. /// just the reference to the underlying memory. All elements will be
  193. /// initialized to the specified value.
  194. static MemRef create_array(Type, bool context_flag, size_t size, int_fast64_t value, Allocator&);
  195. Type get_type() const noexcept;
  196. /// The meaning of 'width' depends on the context in which this
  197. /// array is used.
  198. size_t get_width() const noexcept
  199. {
  200. REALM_ASSERT_3(m_width, ==, get_width_from_header(get_header()));
  201. return m_width;
  202. }
  203. static void add_to_column(IntegerColumn* column, int64_t value);
  204. static void add_to_column(KeyColumn* column, int64_t value);
  205. void insert(size_t ndx, int_fast64_t value);
  206. void add(int_fast64_t value);
  207. // Used from ArrayBlob
  208. size_t blob_size() const noexcept;
  209. ref_type blob_replace(size_t begin, size_t end, const char* data, size_t data_size, bool add_zero_term);
  210. /// This function is guaranteed to not throw if the current width is
  211. /// sufficient for the specified value (e.g. if you have called
  212. /// ensure_minimum_width(value)) and get_alloc().is_read_only(get_ref())
  213. /// returns false (noexcept:array-set). Note that for a value of zero, the
  214. /// first criterion is trivially satisfied.
  215. void set(size_t ndx, int64_t value);
  216. void set_as_ref(size_t ndx, ref_type ref);
  217. template <size_t w>
  218. void set(size_t ndx, int64_t value);
  219. int64_t get(size_t ndx) const noexcept;
  220. template <size_t w>
  221. int64_t get(size_t ndx) const noexcept;
  222. void get_chunk(size_t ndx, int64_t res[8]) const noexcept;
  223. template <size_t w>
  224. void get_chunk(size_t ndx, int64_t res[8]) const noexcept;
  225. ref_type get_as_ref(size_t ndx) const noexcept;
  226. RefOrTagged get_as_ref_or_tagged(size_t ndx) const noexcept;
  227. void set(size_t ndx, RefOrTagged);
  228. void add(RefOrTagged);
  229. void ensure_minimum_width(RefOrTagged);
  230. int64_t front() const noexcept;
  231. int64_t back() const noexcept;
  232. void alloc(size_t init_size, size_t new_width)
  233. {
  234. REALM_ASSERT_3(m_width, ==, get_width_from_header(get_header()));
  235. REALM_ASSERT_3(m_size, ==, get_size_from_header(get_header()));
  236. Node::alloc(init_size, new_width);
  237. update_width_cache_from_header();
  238. }
  239. /// Remove the element at the specified index, and move elements at higher
  240. /// indexes to the next lower index.
  241. ///
  242. /// This function does **not** destroy removed subarrays. That is, if the
  243. /// erased element is a 'ref' pointing to a subarray, then that subarray
  244. /// will not be destroyed automatically.
  245. ///
  246. /// This function guarantees that no exceptions will be thrown if
  247. /// get_alloc().is_read_only(get_ref()) would return false before the
  248. /// call. This is automatically guaranteed if the array is used in a
  249. /// non-transactional context, or if the array has already been successfully
  250. /// modified within the current write transaction.
  251. void erase(size_t ndx);
  252. /// Same as erase(size_t), but remove all elements in the specified
  253. /// range.
  254. ///
  255. /// Please note that this function does **not** destroy removed subarrays.
  256. ///
  257. /// This function guarantees that no exceptions will be thrown if
  258. /// get_alloc().is_read_only(get_ref()) would return false before the call.
  259. void erase(size_t begin, size_t end);
  260. /// Reduce the size of this array to the specified number of elements. It is
  261. /// an error to specify a size that is greater than the current size of this
  262. /// array. The effect of doing so is undefined. This is just a shorthand for
  263. /// calling the ranged erase() function with appropriate arguments.
  264. ///
  265. /// Please note that this function does **not** destroy removed
  266. /// subarrays. See clear_and_destroy_children() for an alternative.
  267. ///
  268. /// This function guarantees that no exceptions will be thrown if
  269. /// get_alloc().is_read_only(get_ref()) would return false before the call.
  270. void truncate(size_t new_size);
  271. /// Reduce the size of this array to the specified number of elements. It is
  272. /// an error to specify a size that is greater than the current size of this
  273. /// array. The effect of doing so is undefined. Subarrays will be destroyed
  274. /// recursively, as if by a call to `destroy_deep(subarray_ref, alloc)`.
  275. ///
  276. /// This function is guaranteed not to throw if
  277. /// get_alloc().is_read_only(get_ref()) returns false.
  278. void truncate_and_destroy_children(size_t new_size);
  279. /// Remove every element from this array. This is just a shorthand for
  280. /// calling truncate(0).
  281. ///
  282. /// Please note that this function does **not** destroy removed
  283. /// subarrays. See clear_and_destroy_children() for an alternative.
  284. ///
  285. /// This function guarantees that no exceptions will be thrown if
  286. /// get_alloc().is_read_only(get_ref()) would return false before the call.
  287. void clear();
  288. /// Remove every element in this array. Subarrays will be destroyed
  289. /// recursively, as if by a call to `destroy_deep(subarray_ref,
  290. /// alloc)`. This is just a shorthand for calling
  291. /// truncate_and_destroy_children(0).
  292. ///
  293. /// This function guarantees that no exceptions will be thrown if
  294. /// get_alloc().is_read_only(get_ref()) would return false before the call.
  295. void clear_and_destroy_children();
  296. /// If neccessary, expand the representation so that it can store the
  297. /// specified value.
  298. void ensure_minimum_width(int_fast64_t value);
  299. /// This one may change the represenation of the array, so be carefull if
  300. /// you call it after ensure_minimum_width().
  301. void set_all_to_zero();
  302. /// Add \a diff to the element at the specified index.
  303. void adjust(size_t ndx, int_fast64_t diff);
  304. /// Add \a diff to all the elements in the specified index range.
  305. void adjust(size_t begin, size_t end, int_fast64_t diff);
  306. //@{
  307. /// This is similar in spirit to std::move() from `<algorithm>`.
  308. /// \a dest_begin must not be in the range [`begin`,`end`)
  309. ///
  310. /// This function is guaranteed to not throw if
  311. /// `get_alloc().is_read_only(get_ref())` returns false.
  312. void move(size_t begin, size_t end, size_t dest_begin);
  313. //@}
  314. // Move elements from ndx and above to another array
  315. void move(Array& dst, size_t ndx);
  316. //@{
  317. /// Find the lower/upper bound of the specified value in a sequence of
  318. /// integers which must already be sorted ascendingly.
  319. ///
  320. /// For an integer value '`v`', lower_bound_int(v) returns the index '`l`'
  321. /// of the first element such that `get(l) &ge; v`, and upper_bound_int(v)
  322. /// returns the index '`u`' of the first element such that `get(u) &gt;
  323. /// v`. In both cases, if no such element is found, the returned value is
  324. /// the number of elements in the array.
  325. ///
  326. /// 3 3 3 4 4 4 5 6 7 9 9 9
  327. /// ^ ^ ^ ^ ^
  328. /// | | | | |
  329. /// | | | | -- Lower and upper bound of 15
  330. /// | | | |
  331. /// | | | -- Lower and upper bound of 8
  332. /// | | |
  333. /// | | -- Upper bound of 4
  334. /// | |
  335. /// | -- Lower bound of 4
  336. /// |
  337. /// -- Lower and upper bound of 1
  338. ///
  339. /// These functions are similar to std::lower_bound() and
  340. /// std::upper_bound().
  341. ///
  342. /// We currently use binary search. See for example
  343. /// http://www.tbray.org/ongoing/When/200x/2003/03/22/Binary.
  344. ///
  345. /// FIXME: It may be worth considering if overall efficiency can be improved
  346. /// by doing a linear search for short sequences.
  347. size_t lower_bound_int(int64_t value) const noexcept;
  348. size_t upper_bound_int(int64_t value) const noexcept;
  349. //@}
  350. int64_t get_sum(size_t start = 0, size_t end = size_t(-1)) const
  351. {
  352. return sum(start, end);
  353. }
  354. /// This information is guaranteed to be cached in the array accessor.
  355. bool is_inner_bptree_node() const noexcept;
  356. /// Returns true if type is either type_HasRefs or type_InnerColumnNode.
  357. ///
  358. /// This information is guaranteed to be cached in the array accessor.
  359. bool has_refs() const noexcept;
  360. void set_has_refs(bool) noexcept;
  361. /// This information is guaranteed to be cached in the array accessor.
  362. ///
  363. /// Columns and indexes can use the context bit to differentiate leaf types.
  364. bool get_context_flag() const noexcept;
  365. void set_context_flag(bool) noexcept;
  366. /// Recursively destroy children (as if calling
  367. /// clear_and_destroy_children()), then put this accessor into the detached
  368. /// state (as if calling detach()), then free the allocated memory. If this
  369. /// accessor is already in the detached state, this function has no effect
  370. /// (idempotency).
  371. void destroy_deep() noexcept;
  372. /// Shorthand for `destroy_deep(MemRef(ref, alloc), alloc)`.
  373. static void destroy_deep(ref_type ref, Allocator& alloc) noexcept;
  374. /// Destroy the specified array node and all of its children, recursively.
  375. ///
  376. /// This is done by freeing the specified array node after calling
  377. /// destroy_deep() for every contained 'ref' element.
  378. static void destroy_deep(MemRef, Allocator&) noexcept;
  379. // Clone deep
  380. static MemRef clone(MemRef, Allocator& from_alloc, Allocator& target_alloc);
  381. // Serialization
  382. /// Returns the ref (position in the target stream) of the written copy of
  383. /// this array, or the ref of the original array if \a only_if_modified is
  384. /// true, and this array is unmodified (Alloc::is_read_only()).
  385. ///
  386. /// The number of bytes that will be written by a non-recursive invocation
  387. /// of this function is exactly the number returned by get_byte_size().
  388. ///
  389. /// \param out The destination stream (writer).
  390. ///
  391. /// \param deep If true, recursively write out subarrays, but still subject
  392. /// to \a only_if_modified.
  393. ///
  394. /// \param only_if_modified Set to `false` to always write, or to `true` to
  395. /// only write the array if it has been modified.
  396. ref_type write(_impl::ArrayWriterBase& out, bool deep, bool only_if_modified) const;
  397. /// Same as non-static write() with `deep` set to true. This is for the
  398. /// cases where you do not already have an array accessor available.
  399. static ref_type write(ref_type, Allocator&, _impl::ArrayWriterBase&, bool only_if_modified);
  400. // Main finding function - used for find_first, find_all, sum, max, min, etc.
  401. bool find(int cond, int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state) const;
  402. template <class cond, class Callback>
  403. bool find(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  404. Callback callback) const;
  405. // Wrappers for backwards compatibility and for simple use without
  406. // setting up state initialization etc
  407. template <class cond>
  408. size_t find_first(int64_t value, size_t start = 0, size_t end = size_t(-1)) const;
  409. void find_all(IntegerColumn* result, int64_t value, size_t col_offset = 0, size_t begin = 0,
  410. size_t end = size_t(-1)) const;
  411. size_t find_first(int64_t value, size_t begin = 0, size_t end = size_t(-1)) const;
  412. // Non-SSE find for the four functions Equal/NotEqual/Less/Greater
  413. template <class cond, size_t bitwidth, class Callback>
  414. bool compare(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  415. Callback callback) const;
  416. // Non-SSE find for Equal/NotEqual
  417. template <bool eq, size_t width, class Callback>
  418. inline bool compare_equality(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  419. Callback callback) const;
  420. // Non-SSE find for Less/Greater
  421. template <bool gt, size_t bitwidth, class Callback>
  422. bool compare_relation(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  423. Callback callback) const;
  424. template <class cond, size_t foreign_width, class Callback, size_t width>
  425. bool compare_leafs_4(const Array* foreign, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  426. Callback callback) const;
  427. template <class cond, class Callback>
  428. bool compare_leafs(const Array* foreign, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  429. Callback callback) const;
  430. template <class cond, size_t width, class Callback>
  431. bool compare_leafs(const Array* foreign, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  432. Callback callback) const;
  433. // SSE find for the four functions Equal/NotEqual/Less/Greater
  434. #ifdef REALM_COMPILER_SSE
  435. template <class cond, size_t width, class Callback>
  436. bool find_sse(int64_t value, __m128i* data, size_t items, QueryStateBase* state, size_t baseindex,
  437. Callback callback) const;
  438. template <class cond, size_t width, class Callback>
  439. REALM_FORCEINLINE bool find_sse_intern(__m128i* action_data, __m128i* data, size_t items, QueryStateBase* state,
  440. size_t baseindex, Callback callback) const;
  441. #endif
  442. template <size_t width>
  443. inline bool test_zero(uint64_t value) const; // Tests value for 0-elements
  444. template <bool eq, size_t width>
  445. size_t find_zero(uint64_t v) const; // Finds position of 0/non-zero element
  446. template <size_t width, bool zero>
  447. uint64_t cascade(uint64_t a) const; // Sets lowermost bits of zero or non-zero elements
  448. template <bool gt, size_t width>
  449. int64_t
  450. find_gtlt_magic(int64_t v) const; // Compute magic constant needed for searching for value 'v' using bit hacks
  451. template <size_t width>
  452. inline int64_t lower_bits() const; // Return chunk with lower bit set in each element
  453. size_t first_set_bit(unsigned int v) const;
  454. size_t first_set_bit64(int64_t v) const;
  455. template <size_t w>
  456. int64_t get_universal(const char* const data, const size_t ndx) const;
  457. // Find value greater/less in 64-bit chunk - only works for positive values
  458. template <bool gt, size_t width, class Callback>
  459. bool find_gtlt_fast(uint64_t chunk, uint64_t magic, QueryStateBase* state, size_t baseindex,
  460. Callback callback) const;
  461. // Find value greater/less in 64-bit chunk - no constraints
  462. template <bool gt, size_t width, class Callback>
  463. bool find_gtlt(int64_t v, uint64_t chunk, QueryStateBase* state, size_t baseindex, Callback callback) const;
  464. /// Get the specified element without the cost of constructing an
  465. /// array instance. If an array instance is already available, or
  466. /// you need to get multiple values, then this method will be
  467. /// slower.
  468. static int_fast64_t get(const char* header, size_t ndx) noexcept;
  469. /// Like get(const char*, size_t) but gets two consecutive
  470. /// elements.
  471. static std::pair<int64_t, int64_t> get_two(const char* header, size_t ndx) noexcept;
  472. static void get_three(const char* data, size_t ndx, ref_type& v0, ref_type& v1, ref_type& v2) noexcept;
  473. static RefOrTagged get_as_ref_or_tagged(const char* header, size_t ndx) noexcept
  474. {
  475. return get(header, ndx);
  476. }
  477. /// Get the number of bytes currently in use by this array. This
  478. /// includes the array header, but it does not include allocated
  479. /// bytes corresponding to excess capacity. The result is
  480. /// guaranteed to be a multiple of 8 (i.e., 64-bit aligned).
  481. ///
  482. /// This number is exactly the number of bytes that will be
  483. /// written by a non-recursive invocation of write().
  484. size_t get_byte_size() const noexcept;
  485. /// Get the maximum number of bytes that can be written by a
  486. /// non-recursive invocation of write() on an array with the
  487. /// specified number of elements, that is, the maximum value that
  488. /// can be returned by get_byte_size().
  489. static size_t get_max_byte_size(size_t num_elems) noexcept;
  490. /// FIXME: Belongs in IntegerArray
  491. static size_t calc_aligned_byte_size(size_t size, int width);
  492. class MemUsageHandler {
  493. public:
  494. virtual void handle(ref_type ref, size_t allocated, size_t used) = 0;
  495. };
  496. void report_memory_usage(MemUsageHandler&) const;
  497. void stats(MemStats& stats_dest) const noexcept;
  498. void verify() const;
  499. Array& operator=(const Array&) = delete; // not allowed
  500. Array(const Array&) = delete; // not allowed
  501. protected:
  502. // This returns the minimum value ("lower bound") of the representable values
  503. // for the given bit width. Valid widths are 0, 1, 2, 4, 8, 16, 32, and 64.
  504. static constexpr int_fast64_t lbound_for_width(size_t width) noexcept;
  505. // This returns the maximum value ("inclusive upper bound") of the representable values
  506. // for the given bit width. Valid widths are 0, 1, 2, 4, 8, 16, 32, and 64.
  507. static constexpr int_fast64_t ubound_for_width(size_t width) noexcept;
  508. private:
  509. void update_width_cache_from_header() noexcept;
  510. void do_ensure_minimum_width(int_fast64_t);
  511. int64_t sum(size_t start, size_t end) const;
  512. size_t count(int64_t value) const noexcept;
  513. bool maximum(int64_t& result, size_t start = 0, size_t end = size_t(-1), size_t* return_ndx = nullptr) const;
  514. bool minimum(int64_t& result, size_t start = 0, size_t end = size_t(-1), size_t* return_ndx = nullptr) const;
  515. template <size_t w>
  516. int64_t sum(size_t start, size_t end) const;
  517. template <bool max, size_t w>
  518. bool minmax(int64_t& result, size_t start, size_t end, size_t* return_ndx) const;
  519. protected:
  520. /// It is an error to specify a non-zero value unless the width
  521. /// type is wtype_Bits. It is also an error to specify a non-zero
  522. /// size if the width type is wtype_Ignore.
  523. static MemRef create(Type, bool context_flag, WidthType, size_t size, int_fast64_t value, Allocator&);
  524. // Overriding method in ArrayParent
  525. void update_child_ref(size_t, ref_type) override;
  526. // Overriding method in ArrayParent
  527. ref_type get_child_ref(size_t) const noexcept override;
  528. void destroy_children(size_t offset = 0) noexcept;
  529. protected:
  530. // Getters and Setters for adaptive-packed arrays
  531. typedef int64_t (Array::*Getter)(size_t) const; // Note: getters must not throw
  532. typedef void (Array::*Setter)(size_t, int64_t);
  533. typedef bool (Array::*Finder)(int64_t, size_t, size_t, size_t, QueryStateBase*) const;
  534. typedef void (Array::*ChunkGetter)(size_t, int64_t res[8]) const; // Note: getters must not throw
  535. struct VTable {
  536. Getter getter;
  537. ChunkGetter chunk_getter;
  538. Setter setter;
  539. Finder finder[cond_VTABLE_FINDER_COUNT]; // one for each active function pointer
  540. };
  541. template <size_t w>
  542. struct VTableForWidth;
  543. // This is the one installed into the m_vtable->finder slots.
  544. template <class cond, size_t bitwidth>
  545. bool find_vtable(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state) const;
  546. protected:
  547. /// Takes a 64-bit value and returns the minimum number of bits needed
  548. /// to fit the value. For alignment this is rounded up to nearest
  549. /// log2. Posssible results {0, 1, 2, 4, 8, 16, 32, 64}
  550. static size_t bit_width(int64_t value);
  551. void report_memory_usage_2(MemUsageHandler&) const;
  552. private:
  553. Getter m_getter = nullptr; // cached to avoid indirection
  554. const VTable* m_vtable = nullptr;
  555. protected:
  556. uint_least8_t m_width = 0; // Size of an element (meaning depend on type of array).
  557. int64_t m_lbound; // min number that can be stored with current m_width
  558. int64_t m_ubound; // max number that can be stored with current m_width
  559. bool m_is_inner_bptree_node; // This array is an inner node of B+-tree.
  560. bool m_has_refs; // Elements whose first bit is zero are refs to subarrays.
  561. bool m_context_flag; // Meaning depends on context.
  562. private:
  563. ref_type do_write_shallow(_impl::ArrayWriterBase&) const;
  564. ref_type do_write_deep(_impl::ArrayWriterBase&, bool only_if_modified) const;
  565. friend class Allocator;
  566. friend class SlabAlloc;
  567. friend class GroupWriter;
  568. // Optimized implementation for release mode
  569. template <class cond, size_t bitwidth, class Callback>
  570. bool find_optimized(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  571. Callback callback) const;
  572. protected:
  573. // Called for each search result
  574. template <class Callback>
  575. bool find_action(size_t index, util::Optional<int64_t> value, QueryStateBase* state, Callback callback) const;
  576. bool find_action_pattern(size_t index, uint64_t pattern, QueryStateBase* state) const;
  577. template <size_t bitwidth, class Callback>
  578. bool find_all_will_match(size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  579. Callback callback) const;
  580. };
  581. class ClusterKeyArray : public ArrayUnsigned {
  582. public:
  583. using ArrayUnsigned::ArrayUnsigned;
  584. uint64_t get(size_t ndx) const
  585. {
  586. return (m_data != nullptr) ? ArrayUnsigned::get(ndx) : uint64_t(ndx);
  587. }
  588. };
  589. // Implementation:
  590. constexpr inline int_fast64_t Array::lbound_for_width(size_t width) noexcept
  591. {
  592. if (width == 32) {
  593. return -0x80000000LL;
  594. }
  595. else if (width == 16) {
  596. return -0x8000LL;
  597. }
  598. else if (width < 8) {
  599. return 0;
  600. }
  601. else if (width == 8) {
  602. return -0x80LL;
  603. }
  604. else if (width == 64) {
  605. return -0x8000000000000000LL;
  606. }
  607. else {
  608. REALM_UNREACHABLE();
  609. }
  610. }
  611. constexpr inline int_fast64_t Array::ubound_for_width(size_t width) noexcept
  612. {
  613. if (width == 32) {
  614. return 0x7FFFFFFFLL;
  615. }
  616. else if (width == 16) {
  617. return 0x7FFFLL;
  618. }
  619. else if (width == 0) {
  620. return 0;
  621. }
  622. else if (width == 1) {
  623. return 1;
  624. }
  625. else if (width == 2) {
  626. return 3;
  627. }
  628. else if (width == 4) {
  629. return 15;
  630. }
  631. else if (width == 8) {
  632. return 0x7FLL;
  633. }
  634. else if (width == 64) {
  635. return 0x7FFFFFFFFFFFFFFFLL;
  636. }
  637. else {
  638. REALM_UNREACHABLE();
  639. }
  640. }
  641. inline bool RefOrTagged::is_ref() const noexcept
  642. {
  643. return (m_value & 1) == 0;
  644. }
  645. inline bool RefOrTagged::is_tagged() const noexcept
  646. {
  647. return !is_ref();
  648. }
  649. inline ref_type RefOrTagged::get_as_ref() const noexcept
  650. {
  651. // to_ref() is defined in <alloc.hpp>
  652. return to_ref(m_value);
  653. }
  654. inline uint_fast64_t RefOrTagged::get_as_int() const noexcept
  655. {
  656. // The bitwise AND is there in case uint_fast64_t is wider than 64 bits.
  657. return (uint_fast64_t(m_value) & 0xFFFFFFFFFFFFFFFFULL) >> 1;
  658. }
  659. inline RefOrTagged RefOrTagged::make_ref(ref_type ref) noexcept
  660. {
  661. // from_ref() is defined in <alloc.hpp>
  662. int_fast64_t value = from_ref(ref);
  663. return RefOrTagged(value);
  664. }
  665. inline RefOrTagged RefOrTagged::make_tagged(uint_fast64_t i) noexcept
  666. {
  667. REALM_ASSERT(i < (1ULL << 63));
  668. return RefOrTagged((i << 1) | 1);
  669. }
  670. inline RefOrTagged::RefOrTagged(int_fast64_t value) noexcept
  671. : m_value(value)
  672. {
  673. }
  674. inline void Array::create(Type type, bool context_flag, size_t length, int_fast64_t value)
  675. {
  676. MemRef mem = create_array(type, context_flag, length, value, m_alloc); // Throws
  677. init_from_mem(mem);
  678. }
  679. inline Array::Type Array::get_type() const noexcept
  680. {
  681. if (m_is_inner_bptree_node) {
  682. REALM_ASSERT_DEBUG(m_has_refs);
  683. return type_InnerBptreeNode;
  684. }
  685. if (m_has_refs)
  686. return type_HasRefs;
  687. return type_Normal;
  688. }
  689. inline void Array::get_chunk(size_t ndx, int64_t res[8]) const noexcept
  690. {
  691. REALM_ASSERT_DEBUG(ndx < m_size);
  692. (this->*(m_vtable->chunk_getter))(ndx, res);
  693. }
  694. inline int64_t Array::get(size_t ndx) const noexcept
  695. {
  696. REALM_ASSERT_DEBUG(is_attached());
  697. REALM_ASSERT_DEBUG(ndx < m_size);
  698. return (this->*m_getter)(ndx);
  699. // Two ideas that are not efficient but may be worth looking into again:
  700. /*
  701. // Assume correct width is found early in REALM_TEMPEX, which is the case for B tree offsets that
  702. // are probably either 2^16 long. Turns out to be 25% faster if found immediately, but 50-300% slower
  703. // if found later
  704. REALM_TEMPEX(return get, (ndx));
  705. */
  706. /*
  707. // Slightly slower in both of the if-cases. Also needs an matchcount m_size check too, to avoid
  708. // reading beyond array.
  709. if (m_width >= 8 && m_size > ndx + 7)
  710. return get<64>(ndx >> m_shift) & m_widthmask;
  711. else
  712. return (this->*(m_vtable->getter))(ndx);
  713. */
  714. }
  715. inline int64_t Array::front() const noexcept
  716. {
  717. return get(0);
  718. }
  719. inline int64_t Array::back() const noexcept
  720. {
  721. return get(m_size - 1);
  722. }
  723. inline ref_type Array::get_as_ref(size_t ndx) const noexcept
  724. {
  725. REALM_ASSERT_DEBUG(is_attached());
  726. REALM_ASSERT_DEBUG(m_has_refs);
  727. int64_t v = get(ndx);
  728. return to_ref(v);
  729. }
  730. inline RefOrTagged Array::get_as_ref_or_tagged(size_t ndx) const noexcept
  731. {
  732. REALM_ASSERT(has_refs());
  733. return RefOrTagged(get(ndx));
  734. }
  735. inline void Array::set(size_t ndx, RefOrTagged ref_or_tagged)
  736. {
  737. REALM_ASSERT(has_refs());
  738. set(ndx, ref_or_tagged.m_value); // Throws
  739. }
  740. inline void Array::add(RefOrTagged ref_or_tagged)
  741. {
  742. REALM_ASSERT(has_refs());
  743. add(ref_or_tagged.m_value); // Throws
  744. }
  745. inline void Array::ensure_minimum_width(RefOrTagged ref_or_tagged)
  746. {
  747. REALM_ASSERT(has_refs());
  748. ensure_minimum_width(ref_or_tagged.m_value); // Throws
  749. }
  750. inline bool Array::is_inner_bptree_node() const noexcept
  751. {
  752. return m_is_inner_bptree_node;
  753. }
  754. inline bool Array::has_refs() const noexcept
  755. {
  756. return m_has_refs;
  757. }
  758. inline void Array::set_has_refs(bool value) noexcept
  759. {
  760. if (m_has_refs != value) {
  761. REALM_ASSERT(!is_read_only());
  762. m_has_refs = value;
  763. set_hasrefs_in_header(value, get_header());
  764. }
  765. }
  766. inline bool Array::get_context_flag() const noexcept
  767. {
  768. return m_context_flag;
  769. }
  770. inline void Array::set_context_flag(bool value) noexcept
  771. {
  772. if (m_context_flag != value) {
  773. copy_on_write();
  774. m_context_flag = value;
  775. set_context_flag_in_header(value, get_header());
  776. }
  777. }
  778. inline void Array::destroy_deep() noexcept
  779. {
  780. if (!is_attached())
  781. return;
  782. if (m_has_refs)
  783. destroy_children();
  784. char* header = get_header_from_data(m_data);
  785. m_alloc.free_(m_ref, header);
  786. m_data = nullptr;
  787. }
  788. inline ref_type Array::write(_impl::ArrayWriterBase& out, bool deep, bool only_if_modified) const
  789. {
  790. REALM_ASSERT(is_attached());
  791. if (only_if_modified && m_alloc.is_read_only(m_ref))
  792. return m_ref;
  793. if (!deep || !m_has_refs)
  794. return do_write_shallow(out); // Throws
  795. return do_write_deep(out, only_if_modified); // Throws
  796. }
  797. inline ref_type Array::write(ref_type ref, Allocator& alloc, _impl::ArrayWriterBase& out, bool only_if_modified)
  798. {
  799. if (only_if_modified && alloc.is_read_only(ref))
  800. return ref;
  801. Array array(alloc);
  802. array.init_from_ref(ref);
  803. if (!array.m_has_refs)
  804. return array.do_write_shallow(out); // Throws
  805. return array.do_write_deep(out, only_if_modified); // Throws
  806. }
  807. inline void Array::add(int_fast64_t value)
  808. {
  809. insert(m_size, value);
  810. }
  811. inline void Array::erase(size_t ndx)
  812. {
  813. // This can throw, but only if array is currently in read-only
  814. // memory.
  815. move(ndx + 1, size(), ndx);
  816. // Update size (also in header)
  817. --m_size;
  818. set_header_size(m_size);
  819. }
  820. inline void Array::erase(size_t begin, size_t end)
  821. {
  822. if (begin != end) {
  823. // This can throw, but only if array is currently in read-only memory.
  824. move(end, size(), begin); // Throws
  825. // Update size (also in header)
  826. m_size -= end - begin;
  827. set_header_size(m_size);
  828. }
  829. }
  830. inline void Array::clear()
  831. {
  832. truncate(0); // Throws
  833. }
  834. inline void Array::clear_and_destroy_children()
  835. {
  836. truncate_and_destroy_children(0);
  837. }
  838. inline void Array::destroy_deep(ref_type ref, Allocator& alloc) noexcept
  839. {
  840. destroy_deep(MemRef(ref, alloc), alloc);
  841. }
  842. inline void Array::destroy_deep(MemRef mem, Allocator& alloc) noexcept
  843. {
  844. if (!get_hasrefs_from_header(mem.get_addr())) {
  845. alloc.free_(mem);
  846. return;
  847. }
  848. Array array(alloc);
  849. array.init_from_mem(mem);
  850. array.destroy_deep();
  851. }
  852. inline void Array::adjust(size_t ndx, int_fast64_t diff)
  853. {
  854. REALM_ASSERT_3(ndx, <=, m_size);
  855. if (diff != 0) {
  856. // FIXME: Should be optimized
  857. int_fast64_t v = get(ndx);
  858. set(ndx, int64_t(v + diff)); // Throws
  859. }
  860. }
  861. inline void Array::adjust(size_t begin, size_t end, int_fast64_t diff)
  862. {
  863. if (diff != 0) {
  864. // FIXME: Should be optimized
  865. for (size_t i = begin; i != end; ++i)
  866. adjust(i, diff); // Throws
  867. }
  868. }
  869. //-------------------------------------------------
  870. inline size_t Array::get_byte_size() const noexcept
  871. {
  872. const char* header = get_header_from_data(m_data);
  873. WidthType wtype = Node::get_wtype_from_header(header);
  874. size_t num_bytes = NodeHeader::calc_byte_size(wtype, m_size, m_width);
  875. REALM_ASSERT_7(m_alloc.is_read_only(m_ref), ==, true, ||, num_bytes, <=, get_capacity_from_header(header));
  876. return num_bytes;
  877. }
  878. //-------------------------------------------------
  879. inline MemRef Array::clone_deep(Allocator& target_alloc) const
  880. {
  881. char* header = get_header_from_data(m_data);
  882. return clone(MemRef(header, m_ref, m_alloc), m_alloc, target_alloc); // Throws
  883. }
  884. inline MemRef Array::create_empty_array(Type type, bool context_flag, Allocator& alloc)
  885. {
  886. size_t size = 0;
  887. int_fast64_t value = 0;
  888. return create_array(type, context_flag, size, value, alloc); // Throws
  889. }
  890. inline MemRef Array::create_array(Type type, bool context_flag, size_t size, int_fast64_t value, Allocator& alloc)
  891. {
  892. return create(type, context_flag, wtype_Bits, size, value, alloc); // Throws
  893. }
  894. inline size_t Array::get_max_byte_size(size_t num_elems) noexcept
  895. {
  896. int max_bytes_per_elem = 8;
  897. return header_size + num_elems * max_bytes_per_elem;
  898. }
  899. inline void Array::update_child_ref(size_t child_ndx, ref_type new_ref)
  900. {
  901. set(child_ndx, new_ref);
  902. }
  903. inline ref_type Array::get_child_ref(size_t child_ndx) const noexcept
  904. {
  905. return get_as_ref(child_ndx);
  906. }
  907. inline void Array::ensure_minimum_width(int_fast64_t value)
  908. {
  909. if (value >= m_lbound && value <= m_ubound)
  910. return;
  911. do_ensure_minimum_width(value);
  912. }
  913. //*************************************************************************************
  914. // Finding code *
  915. //*************************************************************************************
  916. template <size_t w>
  917. int64_t Array::get(size_t ndx) const noexcept
  918. {
  919. return get_universal<w>(m_data, ndx);
  920. }
  921. template <size_t w>
  922. int64_t Array::get_universal(const char* data, size_t ndx) const
  923. {
  924. if (w == 0) {
  925. return 0;
  926. }
  927. else if (w == 1) {
  928. size_t offset = ndx >> 3;
  929. return (data[offset] >> (ndx & 7)) & 0x01;
  930. }
  931. else if (w == 2) {
  932. size_t offset = ndx >> 2;
  933. return (data[offset] >> ((ndx & 3) << 1)) & 0x03;
  934. }
  935. else if (w == 4) {
  936. size_t offset = ndx >> 1;
  937. return (data[offset] >> ((ndx & 1) << 2)) & 0x0F;
  938. }
  939. else if (w == 8) {
  940. return *reinterpret_cast<const signed char*>(data + ndx);
  941. }
  942. else if (w == 16) {
  943. size_t offset = ndx * 2;
  944. return *reinterpret_cast<const int16_t*>(data + offset);
  945. }
  946. else if (w == 32) {
  947. size_t offset = ndx * 4;
  948. return *reinterpret_cast<const int32_t*>(data + offset);
  949. }
  950. else if (w == 64) {
  951. size_t offset = ndx * 8;
  952. return *reinterpret_cast<const int64_t*>(data + offset);
  953. }
  954. else {
  955. REALM_ASSERT_DEBUG(false);
  956. return int64_t(-1);
  957. }
  958. }
  959. /*
  960. find() (calls find_optimized()) may call find_action for each search result.
  961. 'index' tells the row index of a single match and 'value' tells its value. Return false to make Array-finder break
  962. its search or return true to let it continue until 'end' or 'limit'.
  963. */
  964. template <class Callback>
  965. bool Array::find_action(size_t index, util::Optional<int64_t>, QueryStateBase*, Callback callback) const
  966. {
  967. return callback(index);
  968. }
  969. // This function is used when there is no callback. Here we will just perform the action implemented in 'state'.
  970. template <>
  971. inline bool Array::find_action<std::nullptr_t>(size_t index, util::Optional<int64_t> value, QueryStateBase* state,
  972. std::nullptr_t) const
  973. {
  974. return state->match(index, value);
  975. }
  976. /*
  977. find() (calls find_optimized()) may call find_action_pattern before calling find_action.
  978. 'indexpattern' contains a 64-bit chunk of elements, each of 'width' bits in size where each element indicates a
  979. match if its lower bit is set, otherwise it indicates a non-match. 'index' tells the database row index of the
  980. first element. You must return true if you chose to 'consume' the chunk or false if not. If not, then Array-finder
  981. will afterwards call match() successive times with pattern == false.
  982. Array-finder decides itself if - and when - it wants to pass you an indexpattern. It depends on array bit width, match
  983. frequency, and whether the arithemetic and computations for the given search criteria makes it feasible to construct
  984. such a pattern.
  985. */
  986. inline bool Array::find_action_pattern(size_t /*index*/, uint64_t /*pattern*/, QueryStateBase* /*st*/) const
  987. {
  988. // return st->match_pattern(index, pattern); FIXME: Use for act_Count
  989. return false;
  990. }
  991. template <size_t width, bool zero>
  992. uint64_t Array::cascade(uint64_t a) const
  993. {
  994. // Takes a chunk of values as argument and sets the least significant bit for each
  995. // element which is zero or non-zero, depending on the template parameter.
  996. // Example for zero=true:
  997. // width == 4 and a = 0x5fd07a107610f610
  998. // will return: 0x0001000100010001
  999. // static values needed for fast population count
  1000. const uint64_t m1 = 0x5555555555555555ULL;
  1001. if (width == 1) {
  1002. return zero ? ~a : a;
  1003. }
  1004. else if (width == 2) {
  1005. // Masks to avoid spillover between segments in cascades
  1006. const uint64_t c1 = ~0ULL / 0x3 * 0x1;
  1007. a |= (a >> 1) & c1; // cascade ones in non-zeroed segments
  1008. a &= m1; // isolate single bit in each segment
  1009. if (zero)
  1010. a ^= m1; // reverse isolated bits if checking for zeroed segments
  1011. return a;
  1012. }
  1013. else if (width == 4) {
  1014. const uint64_t m = ~0ULL / 0xF * 0x1;
  1015. // Masks to avoid spillover between segments in cascades
  1016. const uint64_t c1 = ~0ULL / 0xF * 0x7;
  1017. const uint64_t c2 = ~0ULL / 0xF * 0x3;
  1018. a |= (a >> 1) & c1; // cascade ones in non-zeroed segments
  1019. a |= (a >> 2) & c2;
  1020. a &= m; // isolate single bit in each segment
  1021. if (zero)
  1022. a ^= m; // reverse isolated bits if checking for zeroed segments
  1023. return a;
  1024. }
  1025. else if (width == 8) {
  1026. const uint64_t m = ~0ULL / 0xFF * 0x1;
  1027. // Masks to avoid spillover between segments in cascades
  1028. const uint64_t c1 = ~0ULL / 0xFF * 0x7F;
  1029. const uint64_t c2 = ~0ULL / 0xFF * 0x3F;
  1030. const uint64_t c3 = ~0ULL / 0xFF * 0x0F;
  1031. a |= (a >> 1) & c1; // cascade ones in non-zeroed segments
  1032. a |= (a >> 2) & c2;
  1033. a |= (a >> 4) & c3;
  1034. a &= m; // isolate single bit in each segment
  1035. if (zero)
  1036. a ^= m; // reverse isolated bits if checking for zeroed segments
  1037. return a;
  1038. }
  1039. else if (width == 16) {
  1040. const uint64_t m = ~0ULL / 0xFFFF * 0x1;
  1041. // Masks to avoid spillover between segments in cascades
  1042. const uint64_t c1 = ~0ULL / 0xFFFF * 0x7FFF;
  1043. const uint64_t c2 = ~0ULL / 0xFFFF * 0x3FFF;
  1044. const uint64_t c3 = ~0ULL / 0xFFFF * 0x0FFF;
  1045. const uint64_t c4 = ~0ULL / 0xFFFF * 0x00FF;
  1046. a |= (a >> 1) & c1; // cascade ones in non-zeroed segments
  1047. a |= (a >> 2) & c2;
  1048. a |= (a >> 4) & c3;
  1049. a |= (a >> 8) & c4;
  1050. a &= m; // isolate single bit in each segment
  1051. if (zero)
  1052. a ^= m; // reverse isolated bits if checking for zeroed segments
  1053. return a;
  1054. }
  1055. else if (width == 32) {
  1056. const uint64_t m = ~0ULL / 0xFFFFFFFF * 0x1;
  1057. // Masks to avoid spillover between segments in cascades
  1058. const uint64_t c1 = ~0ULL / 0xFFFFFFFF * 0x7FFFFFFF;
  1059. const uint64_t c2 = ~0ULL / 0xFFFFFFFF * 0x3FFFFFFF;
  1060. const uint64_t c3 = ~0ULL / 0xFFFFFFFF * 0x0FFFFFFF;
  1061. const uint64_t c4 = ~0ULL / 0xFFFFFFFF * 0x00FFFFFF;
  1062. const uint64_t c5 = ~0ULL / 0xFFFFFFFF * 0x0000FFFF;
  1063. a |= (a >> 1) & c1; // cascade ones in non-zeroed segments
  1064. a |= (a >> 2) & c2;
  1065. a |= (a >> 4) & c3;
  1066. a |= (a >> 8) & c4;
  1067. a |= (a >> 16) & c5;
  1068. a &= m; // isolate single bit in each segment
  1069. if (zero)
  1070. a ^= m; // reverse isolated bits if checking for zeroed segments
  1071. return a;
  1072. }
  1073. else if (width == 64) {
  1074. return (a == 0) == zero;
  1075. }
  1076. else {
  1077. REALM_ASSERT_DEBUG(false);
  1078. return uint64_t(-1);
  1079. }
  1080. }
  1081. template <size_t bitwidth, class Callback>
  1082. REALM_NOINLINE bool Array::find_all_will_match(size_t start2, size_t end, size_t baseindex, QueryStateBase* state,
  1083. Callback callback) const
  1084. {
  1085. size_t end2;
  1086. if constexpr (!std::is_same_v<Callback, std::nullptr_t>)
  1087. end2 = end;
  1088. else {
  1089. REALM_ASSERT_DEBUG(state->match_count() < state->limit());
  1090. size_t process = state->limit() - state->match_count();
  1091. end2 = end - start2 > process ? start2 + process : end;
  1092. }
  1093. for (; start2 < end2; start2++)
  1094. if (!find_action(start2 + baseindex, get<bitwidth>(start2), state, callback))
  1095. return false;
  1096. return true;
  1097. }
  1098. // This is the main finding function for Array. Other finding functions are just wrappers around this one.
  1099. // Search for 'value' using condition cond (Equal, NotEqual, Less, etc) and call find_action() or
  1100. // find_action_pattern() for each match. Break and return if find_action() returns false or 'end' is reached.
  1101. template <class cond, size_t bitwidth, class Callback>
  1102. bool Array::find_optimized(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1103. Callback callback) const
  1104. {
  1105. REALM_ASSERT_DEBUG(start <= m_size && (end <= m_size || end == size_t(-1)) && start <= end);
  1106. size_t start2 = start;
  1107. cond c;
  1108. if (end == npos)
  1109. end = m_size;
  1110. if (!(m_size > start2 && start2 < end))
  1111. return true;
  1112. constexpr int64_t lbound = lbound_for_width(bitwidth);
  1113. constexpr int64_t ubound = ubound_for_width(bitwidth);
  1114. // Return immediately if no items in array can match (such as if cond == Greater && value == 100 &&
  1115. // m_ubound == 15)
  1116. if (!c.can_match(value, lbound, ubound))
  1117. return true;
  1118. // optimization if all items are guaranteed to match (such as cond == NotEqual && value == 100 && m_ubound == 15)
  1119. if (c.will_match(value, lbound, ubound)) {
  1120. return find_all_will_match<bitwidth, Callback>(start2, end, baseindex, state, callback);
  1121. }
  1122. // finder cannot handle this bitwidth
  1123. REALM_ASSERT_3(m_width, !=, 0);
  1124. #if defined(REALM_COMPILER_SSE)
  1125. // Only use SSE if payload is at least one SSE chunk (128 bits) in size. Also note taht SSE doesn't support
  1126. // Less-than comparison for 64-bit values.
  1127. if ((!(std::is_same<cond, Less>::value && m_width == 64)) && end - start2 >= sizeof(__m128i) && m_width >= 8 &&
  1128. (sseavx<42>() || (sseavx<30>() && std::is_same<cond, Equal>::value && m_width < 64))) {
  1129. // find_sse() must start2 at 16-byte boundary, so search area before that using compare_equality()
  1130. __m128i* const a = reinterpret_cast<__m128i*>(round_up(m_data + start2 * bitwidth / 8, sizeof(__m128i)));
  1131. __m128i* const b = reinterpret_cast<__m128i*>(round_down(m_data + end * bitwidth / 8, sizeof(__m128i)));
  1132. if (!compare<cond, bitwidth, Callback>(
  1133. value, start2, (reinterpret_cast<char*>(a) - m_data) * 8 / no0(bitwidth), baseindex, state, callback))
  1134. return false;
  1135. // Search aligned area with SSE
  1136. if (b > a) {
  1137. if (sseavx<42>()) {
  1138. if (!find_sse<cond, bitwidth, Callback>(
  1139. value, a, b - a, state,
  1140. baseindex + ((reinterpret_cast<char*>(a) - m_data) * 8 / no0(bitwidth)), callback))
  1141. return false;
  1142. }
  1143. else if (sseavx<30>()) {
  1144. if (!find_sse<Equal, bitwidth, Callback>(
  1145. value, a, b - a, state,
  1146. baseindex + ((reinterpret_cast<char*>(a) - m_data) * 8 / no0(bitwidth)), callback))
  1147. return false;
  1148. }
  1149. }
  1150. // Search remainder with compare_equality()
  1151. if (!compare<cond, bitwidth, Callback>(value, (reinterpret_cast<char*>(b) - m_data) * 8 / no0(bitwidth), end,
  1152. baseindex, state, callback))
  1153. return false;
  1154. return true;
  1155. }
  1156. else {
  1157. return compare<cond, bitwidth, Callback>(value, start2, end, baseindex, state, callback);
  1158. }
  1159. #else
  1160. return compare<cond, bitwidth, Callback>(value, start2, end, baseindex, state, callback);
  1161. #endif
  1162. }
  1163. template <size_t width>
  1164. inline int64_t Array::lower_bits() const
  1165. {
  1166. if (width == 1)
  1167. return 0xFFFFFFFFFFFFFFFFULL;
  1168. else if (width == 2)
  1169. return 0x5555555555555555ULL;
  1170. else if (width == 4)
  1171. return 0x1111111111111111ULL;
  1172. else if (width == 8)
  1173. return 0x0101010101010101ULL;
  1174. else if (width == 16)
  1175. return 0x0001000100010001ULL;
  1176. else if (width == 32)
  1177. return 0x0000000100000001ULL;
  1178. else if (width == 64)
  1179. return 0x0000000000000001ULL;
  1180. else {
  1181. REALM_ASSERT_DEBUG(false);
  1182. return int64_t(-1);
  1183. }
  1184. }
  1185. // Tests if any chunk in 'value' is 0
  1186. template <size_t width>
  1187. inline bool Array::test_zero(uint64_t value) const
  1188. {
  1189. uint64_t hasZeroByte;
  1190. uint64_t lower = lower_bits<width>();
  1191. uint64_t upper = lower_bits<width>() * 1ULL << (width == 0 ? 0 : (width - 1ULL));
  1192. hasZeroByte = (value - lower) & ~value & upper;
  1193. return hasZeroByte != 0;
  1194. }
  1195. // Finds first zero (if eq == true) or non-zero (if eq == false) element in v and returns its position.
  1196. // IMPORTANT: This function assumes that at least 1 item matches (test this with test_zero() or other means first)!
  1197. template <bool eq, size_t width>
  1198. size_t Array::find_zero(uint64_t v) const
  1199. {
  1200. size_t start = 0;
  1201. uint64_t hasZeroByte;
  1202. // Warning free way of computing (1ULL << width) - 1
  1203. uint64_t mask = (width == 64 ? ~0ULL : ((1ULL << (width == 64 ? 0 : width)) - 1ULL));
  1204. if (eq == (((v >> (width * start)) & mask) == 0)) {
  1205. return 0;
  1206. }
  1207. // Bisection optimization, speeds up small bitwidths with high match frequency. More partions than 2 do NOT pay
  1208. // off because the work done by test_zero() is wasted for the cases where the value exists in first half, but
  1209. // useful if it exists in last half. Sweet spot turns out to be the widths and partitions below.
  1210. if (width <= 8) {
  1211. hasZeroByte = test_zero<width>(v | 0xffffffff00000000ULL);
  1212. if (eq ? !hasZeroByte : (v & 0x00000000ffffffffULL) == 0) {
  1213. // 00?? -> increasing
  1214. start += 64 / no0(width) / 2;
  1215. if (width <= 4) {
  1216. hasZeroByte = test_zero<width>(v | 0xffff000000000000ULL);
  1217. if (eq ? !hasZeroByte : (v & 0x0000ffffffffffffULL) == 0) {
  1218. // 000?
  1219. start += 64 / no0(width) / 4;
  1220. }
  1221. }
  1222. }
  1223. else {
  1224. if (width <= 4) {
  1225. // ??00
  1226. hasZeroByte = test_zero<width>(v | 0xffffffffffff0000ULL);
  1227. if (eq ? !hasZeroByte : (v & 0x000000000000ffffULL) == 0) {
  1228. // 0?00
  1229. start += 64 / no0(width) / 4;
  1230. }
  1231. }
  1232. }
  1233. }
  1234. while (eq == (((v >> (width * start)) & mask) != 0)) {
  1235. // You must only call find_zero() if you are sure that at least 1 item matches
  1236. REALM_ASSERT_3(start, <=, 8 * sizeof(v));
  1237. start++;
  1238. }
  1239. return start;
  1240. }
  1241. // Generate a magic constant used for later bithacks
  1242. template <bool gt, size_t width>
  1243. int64_t Array::find_gtlt_magic(int64_t v) const
  1244. {
  1245. uint64_t mask1 =
  1246. (width == 64
  1247. ? ~0ULL
  1248. : ((1ULL << (width == 64 ? 0 : width)) - 1ULL)); // Warning free way of computing (1ULL << width) - 1
  1249. uint64_t mask2 = mask1 >> 1;
  1250. uint64_t magic = gt ? (~0ULL / no0(mask1) * (mask2 - v)) : (~0ULL / no0(mask1) * v);
  1251. return magic;
  1252. }
  1253. template <bool gt, size_t width, class Callback>
  1254. bool Array::find_gtlt_fast(uint64_t chunk, uint64_t magic, QueryStateBase* state, size_t baseindex,
  1255. Callback callback) const
  1256. {
  1257. // Tests if a a chunk of values contains values that are greater (if gt == true) or less (if gt == false) than v.
  1258. // Fast, but limited to work when all values in the chunk are positive.
  1259. uint64_t mask1 =
  1260. (width == 64
  1261. ? ~0ULL
  1262. : ((1ULL << (width == 64 ? 0 : width)) - 1ULL)); // Warning free way of computing (1ULL << width) - 1
  1263. uint64_t mask2 = mask1 >> 1;
  1264. uint64_t m = gt ? (((chunk + magic) | chunk) & ~0ULL / no0(mask1) * (mask2 + 1))
  1265. : ((chunk - magic) & ~chunk & ~0ULL / no0(mask1) * (mask2 + 1));
  1266. size_t p = 0;
  1267. while (m) {
  1268. if (find_action_pattern(baseindex, m >> (no0(width) - 1), state))
  1269. break; // consumed, so do not call find_action()
  1270. size_t t = first_set_bit64(m) / no0(width);
  1271. p += t;
  1272. if (!find_action(p + baseindex, (chunk >> (p * width)) & mask1, state, callback))
  1273. return false;
  1274. if ((t + 1) * width == 64)
  1275. m = 0;
  1276. else
  1277. m >>= (t + 1) * width;
  1278. p++;
  1279. }
  1280. return true;
  1281. }
  1282. // clang-format off
  1283. template <bool gt, size_t width, class Callback>
  1284. bool Array::find_gtlt(int64_t v, uint64_t chunk, QueryStateBase* state, size_t baseindex, Callback callback) const
  1285. {
  1286. // Find items in 'chunk' that are greater (if gt == true) or smaller (if gt == false) than 'v'. Fixme, __forceinline can make it crash in vS2010 - find out why
  1287. if constexpr (width == 1) {
  1288. for (size_t i = 0; i < 64; ++i) {
  1289. int64_t v2 = static_cast<int64_t>(chunk & 0x1);
  1290. if (gt ? v2 > v : v2 < v) {
  1291. if (!find_action(i + baseindex, v2, state, callback)) {
  1292. return false;
  1293. }
  1294. }
  1295. chunk >>= 1;
  1296. }
  1297. }
  1298. else if constexpr (width == 2) {
  1299. for (size_t i = 0; i < 32; ++i) {
  1300. int64_t v2 = static_cast<int64_t>(chunk & 0x3);
  1301. if (gt ? v2 > v : v2 < v) {
  1302. if (!find_action(i + baseindex, v2, state, callback)) {
  1303. return false;
  1304. }
  1305. }
  1306. chunk >>= 2;
  1307. }
  1308. }
  1309. else if constexpr (width == 4) {
  1310. for (size_t i = 0; i < 16; ++i) {
  1311. int64_t v2 = static_cast<int64_t>(chunk & 0xf);
  1312. if (gt ? v2 > v : v2 < v) {
  1313. if (!find_action(i + baseindex, v2, state, callback)) {
  1314. return false;
  1315. }
  1316. }
  1317. chunk >>= 4;
  1318. }
  1319. }
  1320. else if constexpr (width == 8) {
  1321. for (size_t i = 0; i < 8; ++i) {
  1322. int64_t v2 = static_cast<int64_t>(static_cast<int8_t>(chunk & 0xff));
  1323. if (gt ? v2 > v : v2 < v) {
  1324. if (!find_action(i + baseindex, v2, state, callback)) {
  1325. return false;
  1326. }
  1327. }
  1328. chunk >>= 8;
  1329. }
  1330. }
  1331. else if constexpr (width == 16) {
  1332. for (size_t i = 0; i < 4; ++i) {
  1333. int64_t v2 = static_cast<int64_t>(static_cast<int16_t>(chunk & 0xffff));
  1334. if (gt ? v2 > v : v2 < v) {
  1335. if (!find_action(i + baseindex, v2, state, callback)) {
  1336. return false;
  1337. }
  1338. }
  1339. chunk >>= 16;
  1340. }
  1341. }
  1342. else if constexpr (width == 32) {
  1343. for (size_t i = 0; i < 2; ++i) {
  1344. int64_t v2 = static_cast<int64_t>(static_cast<int32_t>(chunk & 0xffffffff));
  1345. if (gt ? v2 > v : v2 < v) {
  1346. if (!find_action(i + baseindex, v2, state, callback)) {
  1347. return false;
  1348. }
  1349. }
  1350. chunk >>= 32;
  1351. }
  1352. }
  1353. else if constexpr (width == 64) {
  1354. int64_t v2 = static_cast<int64_t>(chunk);
  1355. if (gt ? v2 > v : v2 < v) {
  1356. return find_action(baseindex, v2, state, callback);
  1357. }
  1358. }
  1359. static_cast<void>(state);
  1360. static_cast<void>(callback);
  1361. return true;
  1362. }
  1363. // clang-format on
  1364. /// Find items in this Array that are equal (eq == true) or different (eq = false) from 'value'
  1365. template <bool eq, size_t width, class Callback>
  1366. inline bool Array::compare_equality(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1367. Callback callback) const
  1368. {
  1369. REALM_ASSERT_DEBUG(start <= m_size && (end <= m_size || end == size_t(-1)) && start <= end);
  1370. size_t ee = round_up(start, 64 / no0(width));
  1371. ee = ee > end ? end : ee;
  1372. for (; start < ee; ++start)
  1373. if (eq ? (get<width>(start) == value) : (get<width>(start) != value)) {
  1374. if (!find_action(start + baseindex, get<width>(start), state, callback))
  1375. return false;
  1376. }
  1377. if (start >= end)
  1378. return true;
  1379. if (width != 32 && width != 64) {
  1380. const int64_t* p = reinterpret_cast<const int64_t*>(m_data + (start * width / 8));
  1381. const int64_t* const e = reinterpret_cast<int64_t*>(m_data + (end * width / 8)) - 1;
  1382. const uint64_t mask =
  1383. (width == 64
  1384. ? ~0ULL
  1385. : ((1ULL << (width == 64 ? 0 : width)) - 1ULL)); // Warning free way of computing (1ULL << width) - 1
  1386. const uint64_t valuemask =
  1387. ~0ULL / no0(mask) * (value & mask); // the "== ? :" is to avoid division by 0 compiler error
  1388. while (p < e) {
  1389. uint64_t chunk = *p;
  1390. uint64_t v2 = chunk ^ valuemask;
  1391. start = (p - reinterpret_cast<int64_t*>(m_data)) * 8 * 8 / no0(width);
  1392. size_t a = 0;
  1393. while (eq ? test_zero<width>(v2) : v2) {
  1394. if (find_action_pattern(start + baseindex, cascade<width, eq>(v2), state))
  1395. break; // consumed
  1396. size_t t = find_zero<eq, width>(v2);
  1397. a += t;
  1398. if (a >= 64 / no0(width))
  1399. break;
  1400. if (!find_action(a + start + baseindex, get<width>(start + a), state, callback))
  1401. return false;
  1402. v2 >>= (t + 1) * width;
  1403. a += 1;
  1404. }
  1405. ++p;
  1406. }
  1407. // Loop ended because we are near end or end of array. No need to optimize search in remainder in this case
  1408. // because end of array means that
  1409. // lots of search work has taken place prior to ending here. So time spent searching remainder is relatively
  1410. // tiny
  1411. start = (p - reinterpret_cast<int64_t*>(m_data)) * 8 * 8 / no0(width);
  1412. }
  1413. while (start < end) {
  1414. if (eq ? get<width>(start) == value : get<width>(start) != value) {
  1415. if (!find_action(start + baseindex, get<width>(start), state, callback))
  1416. return false;
  1417. }
  1418. ++start;
  1419. }
  1420. return true;
  1421. }
  1422. // There exists a couple of find() functions that take more or less template arguments. Always call the one that
  1423. // takes as most as possible to get best performance.
  1424. // This is the one installed into the m_vtable->finder slots.
  1425. template <class cond, size_t bitwidth>
  1426. bool Array::find_vtable(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state) const
  1427. {
  1428. return find_optimized<cond, bitwidth>(value, start, end, baseindex, state, nullptr);
  1429. }
  1430. template <class cond, class Callback>
  1431. bool Array::find(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1432. Callback callback) const
  1433. {
  1434. REALM_TEMPEX3(return find_optimized, cond, m_width, Callback, (value, start, end, baseindex, state, callback));
  1435. }
  1436. #ifdef REALM_COMPILER_SSE
  1437. // 'items' is the number of 16-byte SSE chunks. Returns index of packed element relative to first integer of first
  1438. // chunk
  1439. template <class cond, size_t width, class Callback>
  1440. bool Array::find_sse(int64_t value, __m128i* data, size_t items, QueryStateBase* state, size_t baseindex,
  1441. Callback callback) const
  1442. {
  1443. __m128i search = {0};
  1444. if (width == 8)
  1445. search = _mm_set1_epi8(static_cast<char>(value));
  1446. else if (width == 16)
  1447. search = _mm_set1_epi16(static_cast<short int>(value));
  1448. else if (width == 32)
  1449. search = _mm_set1_epi32(static_cast<int>(value));
  1450. else if (width == 64) {
  1451. if (std::is_same<cond, Less>::value)
  1452. REALM_ASSERT(false);
  1453. else
  1454. search = _mm_set_epi64x(value, value);
  1455. }
  1456. return find_sse_intern<cond, width, Callback>(data, &search, items, state, baseindex, callback);
  1457. }
  1458. // Compares packed action_data with packed data (equal, less, etc) and performs aggregate action (max, min, sum,
  1459. // find_all, etc) on value inside action_data for first match, if any
  1460. template <class cond, size_t width, class Callback>
  1461. REALM_FORCEINLINE bool Array::find_sse_intern(__m128i* action_data, __m128i* data, size_t items,
  1462. QueryStateBase* state, size_t baseindex, Callback callback) const
  1463. {
  1464. size_t i = 0;
  1465. __m128i compare_result = {0};
  1466. unsigned int resmask;
  1467. // Search loop. Unrolling it has been tested to NOT increase performance (apparently mem bound)
  1468. for (i = 0; i < items; ++i) {
  1469. // equal / not-equal
  1470. if (std::is_same<cond, Equal>::value || std::is_same<cond, NotEqual>::value) {
  1471. if (width == 8)
  1472. compare_result = _mm_cmpeq_epi8(action_data[i], *data);
  1473. if (width == 16)
  1474. compare_result = _mm_cmpeq_epi16(action_data[i], *data);
  1475. if (width == 32)
  1476. compare_result = _mm_cmpeq_epi32(action_data[i], *data);
  1477. if (width == 64) {
  1478. compare_result = _mm_cmpeq_epi64(action_data[i], *data); // SSE 4.2 only
  1479. }
  1480. }
  1481. // greater
  1482. else if (std::is_same<cond, Greater>::value) {
  1483. if (width == 8)
  1484. compare_result = _mm_cmpgt_epi8(action_data[i], *data);
  1485. if (width == 16)
  1486. compare_result = _mm_cmpgt_epi16(action_data[i], *data);
  1487. if (width == 32)
  1488. compare_result = _mm_cmpgt_epi32(action_data[i], *data);
  1489. if (width == 64)
  1490. compare_result = _mm_cmpgt_epi64(action_data[i], *data);
  1491. }
  1492. // less
  1493. else if (std::is_same<cond, Less>::value) {
  1494. if (width == 8)
  1495. compare_result = _mm_cmplt_epi8(action_data[i], *data);
  1496. else if (width == 16)
  1497. compare_result = _mm_cmplt_epi16(action_data[i], *data);
  1498. else if (width == 32)
  1499. compare_result = _mm_cmplt_epi32(action_data[i], *data);
  1500. else
  1501. REALM_ASSERT(false);
  1502. }
  1503. resmask = _mm_movemask_epi8(compare_result);
  1504. if (std::is_same<cond, NotEqual>::value)
  1505. resmask = ~resmask & 0x0000ffff;
  1506. size_t s = i * sizeof(__m128i) * 8 / no0(width);
  1507. while (resmask != 0) {
  1508. uint64_t upper = lower_bits<width / 8>() << (no0(width / 8) - 1);
  1509. uint64_t pattern =
  1510. resmask &
  1511. upper; // fixme, bits at wrong offsets. Only OK because we only use them in 'count' aggregate
  1512. if (find_action_pattern(s + baseindex, pattern, state))
  1513. break;
  1514. size_t idx = first_set_bit(resmask) * 8 / no0(width);
  1515. s += idx;
  1516. if (!find_action(s + baseindex, get_universal<width>(reinterpret_cast<char*>(action_data), s), state,
  1517. callback))
  1518. return false;
  1519. resmask >>= (idx + 1) * no0(width) / 8;
  1520. ++s;
  1521. }
  1522. }
  1523. return true;
  1524. }
  1525. #endif // REALM_COMPILER_SSE
  1526. template <class cond, class Callback>
  1527. bool Array::compare_leafs(const Array* foreign, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1528. Callback callback) const
  1529. {
  1530. cond c;
  1531. REALM_ASSERT_3(start, <=, end);
  1532. if (start == end)
  1533. return true;
  1534. int64_t v;
  1535. // We can compare first element without checking for out-of-range
  1536. v = get(start);
  1537. if (c(v, foreign->get(start))) {
  1538. if (!find_action(start + baseindex, v, state, callback))
  1539. return false;
  1540. }
  1541. start++;
  1542. if (start + 3 < end) {
  1543. v = get(start);
  1544. if (c(v, foreign->get(start)))
  1545. if (!find_action(start + baseindex, v, state, callback))
  1546. return false;
  1547. v = get(start + 1);
  1548. if (c(v, foreign->get(start + 1)))
  1549. if (!find_action(start + 1 + baseindex, v, state, callback))
  1550. return false;
  1551. v = get(start + 2);
  1552. if (c(v, foreign->get(start + 2)))
  1553. if (!find_action(start + 2 + baseindex, v, state, callback))
  1554. return false;
  1555. start += 3;
  1556. }
  1557. else if (start == end) {
  1558. return true;
  1559. }
  1560. bool r;
  1561. REALM_TEMPEX3(r = compare_leafs, cond, m_width, Callback, (foreign, start, end, baseindex, state, callback))
  1562. return r;
  1563. }
  1564. template <class cond, size_t width, class Callback>
  1565. bool Array::compare_leafs(const Array* foreign, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1566. Callback callback) const
  1567. {
  1568. size_t fw = foreign->m_width;
  1569. bool r;
  1570. REALM_TEMPEX4(r = compare_leafs_4, cond, width, Callback, fw, (foreign, start, end, baseindex, state, callback))
  1571. return r;
  1572. }
  1573. template <class cond, size_t width, class Callback, size_t foreign_width>
  1574. bool Array::compare_leafs_4(const Array* foreign, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1575. Callback callback) const
  1576. {
  1577. cond c;
  1578. char* foreign_m_data = foreign->m_data;
  1579. if (width == 0 && foreign_width == 0) {
  1580. if (c(0, 0)) {
  1581. while (start < end) {
  1582. if (!find_action(start + baseindex, 0, state, callback))
  1583. return false;
  1584. start++;
  1585. }
  1586. }
  1587. else {
  1588. return true;
  1589. }
  1590. }
  1591. #if defined(REALM_COMPILER_SSE)
  1592. if (sseavx<42>() && width == foreign_width && (width == 8 || width == 16 || width == 32)) {
  1593. // We can only use SSE if both bitwidths are equal and above 8 bits and all values are signed
  1594. // and the two arrays are aligned the same way
  1595. if ((reinterpret_cast<size_t>(m_data) & 0xf) == (reinterpret_cast<size_t>(foreign_m_data) & 0xf)) {
  1596. while (start < end && (((reinterpret_cast<size_t>(m_data) & 0xf) * 8 + start * width) % (128) != 0)) {
  1597. int64_t v = get_universal<width>(m_data, start);
  1598. int64_t fv = get_universal<foreign_width>(foreign_m_data, start);
  1599. if (c(v, fv)) {
  1600. if (!find_action(start + baseindex, v, state, callback))
  1601. return false;
  1602. }
  1603. start++;
  1604. }
  1605. if (start == end)
  1606. return true;
  1607. size_t sse_items = (end - start) * width / 128;
  1608. size_t sse_end = start + sse_items * 128 / no0(width);
  1609. while (start < sse_end) {
  1610. __m128i* a = reinterpret_cast<__m128i*>(m_data + start * width / 8);
  1611. __m128i* b = reinterpret_cast<__m128i*>(foreign_m_data + start * width / 8);
  1612. bool continue_search =
  1613. find_sse_intern<cond, width, Callback>(a, b, 1, state, baseindex + start, callback);
  1614. if (!continue_search)
  1615. return false;
  1616. start += 128 / no0(width);
  1617. }
  1618. }
  1619. }
  1620. #endif
  1621. while (start < end) {
  1622. int64_t v = get_universal<width>(m_data, start);
  1623. int64_t fv = get_universal<foreign_width>(foreign_m_data, start);
  1624. if (c(v, fv)) {
  1625. if (!find_action(start + baseindex, v, state, callback))
  1626. return false;
  1627. }
  1628. start++;
  1629. }
  1630. return true;
  1631. }
  1632. template <class cond, size_t bitwidth, class Callback>
  1633. bool Array::compare(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1634. Callback callback) const
  1635. {
  1636. bool ret = false;
  1637. if (std::is_same<cond, Equal>::value)
  1638. ret = compare_equality<true, bitwidth, Callback>(value, start, end, baseindex, state, callback);
  1639. else if (std::is_same<cond, NotEqual>::value)
  1640. ret = compare_equality<false, bitwidth, Callback>(value, start, end, baseindex, state, callback);
  1641. else if (std::is_same<cond, Greater>::value)
  1642. ret = compare_relation<true, bitwidth, Callback>(value, start, end, baseindex, state, callback);
  1643. else if (std::is_same<cond, Less>::value)
  1644. ret = compare_relation<false, bitwidth, Callback>(value, start, end, baseindex, state, callback);
  1645. else
  1646. REALM_ASSERT_DEBUG(false);
  1647. return ret;
  1648. }
  1649. template <bool gt, size_t bitwidth, class Callback>
  1650. bool Array::compare_relation(int64_t value, size_t start, size_t end, size_t baseindex, QueryStateBase* state,
  1651. Callback callback) const
  1652. {
  1653. REALM_ASSERT(start <= m_size && (end <= m_size || end == size_t(-1)) && start <= end);
  1654. uint64_t mask = (bitwidth == 64 ? ~0ULL
  1655. : ((1ULL << (bitwidth == 64 ? 0 : bitwidth)) -
  1656. 1ULL)); // Warning free way of computing (1ULL << width) - 1
  1657. size_t ee = round_up(start, 64 / no0(bitwidth));
  1658. ee = ee > end ? end : ee;
  1659. for (; start < ee; start++) {
  1660. if (gt ? (get<bitwidth>(start) > value) : (get<bitwidth>(start) < value)) {
  1661. if (!find_action(start + baseindex, get<bitwidth>(start), state, callback))
  1662. return false;
  1663. }
  1664. }
  1665. if (start >= end)
  1666. return true; // none found, continue (return true) regardless what find_action() would have returned on match
  1667. const int64_t* p = reinterpret_cast<const int64_t*>(m_data + (start * bitwidth / 8));
  1668. const int64_t* const e = reinterpret_cast<int64_t*>(m_data + (end * bitwidth / 8)) - 1;
  1669. // Matches are rare enough to setup fast linear search for remaining items. We use
  1670. // bit hacks from http://graphics.stanford.edu/~seander/bithacks.html#HasLessInWord
  1671. if (bitwidth == 1 || bitwidth == 2 || bitwidth == 4 || bitwidth == 8 || bitwidth == 16) {
  1672. uint64_t magic = find_gtlt_magic<gt, bitwidth>(value);
  1673. // Bit hacks only work if searched item has its most significant bit clear for 'greater than' or
  1674. // 'item <= 1 << bitwidth' for 'less than'
  1675. if (value != int64_t((magic & mask)) && value >= 0 && bitwidth >= 2 &&
  1676. value <= static_cast<int64_t>((mask >> 1) - (gt ? 1 : 0))) {
  1677. // 15 ms
  1678. while (p < e) {
  1679. uint64_t upper = lower_bits<bitwidth>() << (no0(bitwidth) - 1);
  1680. const int64_t v = *p;
  1681. size_t idx;
  1682. // Bit hacks only works if all items in chunk have their most significant bit clear. Test this:
  1683. upper = upper & v;
  1684. if (!upper) {
  1685. idx = find_gtlt_fast<gt, bitwidth, Callback>(
  1686. v, magic, state, (p - reinterpret_cast<int64_t*>(m_data)) * 8 * 8 / no0(bitwidth) + baseindex,
  1687. callback);
  1688. }
  1689. else
  1690. idx = find_gtlt<gt, bitwidth, Callback>(
  1691. value, v, state, (p - reinterpret_cast<int64_t*>(m_data)) * 8 * 8 / no0(bitwidth) + baseindex,
  1692. callback);
  1693. if (!idx)
  1694. return false;
  1695. ++p;
  1696. }
  1697. }
  1698. else {
  1699. // 24 ms
  1700. while (p < e) {
  1701. int64_t v = *p;
  1702. if (!find_gtlt<gt, bitwidth, Callback>(
  1703. value, v, state, (p - reinterpret_cast<int64_t*>(m_data)) * 8 * 8 / no0(bitwidth) + baseindex,
  1704. callback))
  1705. return false;
  1706. ++p;
  1707. }
  1708. }
  1709. start = (p - reinterpret_cast<int64_t*>(m_data)) * 8 * 8 / no0(bitwidth);
  1710. }
  1711. // matchcount logic in SIMD no longer pays off for 32/64 bit ints because we have just 4/2 elements
  1712. // Test unaligned end and/or values of width > 16 manually
  1713. while (start < end) {
  1714. if (gt ? get<bitwidth>(start) > value : get<bitwidth>(start) < value) {
  1715. if (!find_action(start + baseindex, get<bitwidth>(start), state, callback))
  1716. return false;
  1717. }
  1718. ++start;
  1719. }
  1720. return true;
  1721. }
  1722. template <class cond>
  1723. size_t Array::find_first(int64_t value, size_t start, size_t end) const
  1724. {
  1725. REALM_ASSERT(start <= m_size && (end <= m_size || end == size_t(-1)) && start <= end);
  1726. // todo, would be nice to avoid this in order to speed up find_first loops
  1727. QueryStateFindFirst state;
  1728. Finder finder = m_vtable->finder[cond::condition];
  1729. (this->*finder)(value, start, end, 0, &state);
  1730. return static_cast<size_t>(state.m_state);
  1731. }
  1732. //*************************************************************************************
  1733. // Finding code ends *
  1734. //*************************************************************************************
  1735. } // namespace realm
  1736. #endif // REALM_ARRAY_HPP