X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=binloader.cpp;h=3877ffcaf827aa87267ff4237cc45796e1490641;hb=b97c4d33965659b1ec9b20dec4ce359b78533d04;hp=2ed60cbe78250ff34eba9f7c358968f90c4ddb97;hpb=756a91677c1565b1bd555722ea795f911106104f;p=remoteglot-book diff --git a/binloader.cpp b/binloader.cpp index 2ed60cb..3877ffc 100644 --- a/binloader.cpp +++ b/binloader.cpp @@ -19,11 +19,30 @@ using namespace std; -Arena arena; +static inline int memcmp_different_len(const void *s1, size_t n1, const void *s2, size_t n2) +{ + size_t shared_len = min(n1, n2); + if (shared_len >= 8) { + uint64_t a1 = *(const uint64_t *)s1; + uint64_t a2 = *(const uint64_t *)s2; + if (a1 != a2) { + a1 = __builtin_bswap64(a1); + a2 = __builtin_bswap64(a2); + return (a1 < a2) ? -1 : 1; + } + } + + int s = memcmp(s1, s2, shared_len); + if (s != 0) { + return s; + } + + return n2 - n1; +} enum Result { WHITE = 0, DRAW, BLACK }; struct Element { - char *bpfen; + char *bpfen; // includes prev_board_hash int bpfen_len; char move[8]; // Na1xc3+ Result result; @@ -33,15 +52,8 @@ struct Element { long start_position; bool operator< (const Element& other) const { - int shared_len = min(bpfen_len, other.bpfen_len); - int s = memcmp(bpfen, other.bpfen, shared_len); - if (s < 0) { - return true; - } else if (s > 0) { - return false; - } else { - return bpfen_len < other.bpfen_len; - } + int s = memcmp_different_len(bpfen, bpfen_len, other.bpfen, other.bpfen_len); + return s < 0; } }; @@ -96,9 +108,10 @@ void write_subshard(const char *basename, ShardData* shard, int bucket) e.bpfen_len != shard->elems[i + 1].bpfen_len || memcmp(e.bpfen, shard->elems[i + 1].bpfen, e.bpfen_len) != 0) { c.SerializeToString(&buf); - mtbl_writer_add(mtbl, + mtbl_res res = mtbl_writer_add(mtbl, (const uint8_t *)e.bpfen, e.bpfen_len, (const uint8_t *)buf.data(), buf.size()); + assert(res == mtbl_res_success); c = Count(); moves.clear(); }