summaryrefslogtreecommitdiff
path: root/upb
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-03-14 09:53:29 -0700
committerGitHub <noreply@github.com>2019-03-14 09:53:29 -0700
commit9cd426495e9ce11e8896a576601fab97052276c4 (patch)
tree21ceb38f639c8e96fd11d180b5985b478a263072 /upb
parented9faae0993704b033c594b072d65e1bf19207fa (diff)
parent17db3722678f2ea11edbe2aeb34efdbce030c07f (diff)
Merge pull request #151 from linux-on-ibm-z/master
Adding support for big endian platform (s390x)
Diffstat (limited to 'upb')
-rw-r--r--upb/pb/varint.int.h15
-rw-r--r--upb/table.c2
2 files changed, 16 insertions, 1 deletions
diff --git a/upb/pb/varint.int.h b/upb/pb/varint.int.h
index 9c54311..b216a94 100644
--- a/upb/pb/varint.int.h
+++ b/upb/pb/varint.int.h
@@ -24,6 +24,18 @@ extern "C" {
* descriptor type (upb_descriptortype_t). */
extern const uint8_t upb_pb_native_wire_types[];
+UPB_INLINE uint64_t byteswap64(uint64_t val)
+{
+ return ((((val) & 0xff00000000000000ull) >> 56)
+ | (((val) & 0x00ff000000000000ull) >> 40)
+ | (((val) & 0x0000ff0000000000ull) >> 24)
+ | (((val) & 0x000000ff00000000ull) >> 8)
+ | (((val) & 0x00000000ff000000ull) << 8)
+ | (((val) & 0x0000000000ff0000ull) << 24)
+ | (((val) & 0x000000000000ff00ull) << 40)
+ | (((val) & 0x00000000000000ffull) << 56));
+}
+
/* Zig-zag encoding/decoding **************************************************/
UPB_INLINE int32_t upb_zzdec_32(uint32_t n) {
@@ -130,6 +142,9 @@ UPB_INLINE uint64_t upb_vencode32(uint32_t val) {
uint64_t ret = 0;
UPB_ASSERT(bytes <= 5);
memcpy(&ret, buf, bytes);
+#ifdef UPB_BIG_ENDIAN
+ ret = byteswap64(ret);
+#endif
UPB_ASSERT(ret <= 0xffffffffffU);
return ret;
}
diff --git a/upb/table.c b/upb/table.c
index 10d8322..128f607 100644
--- a/upb/table.c
+++ b/upb/table.c
@@ -730,7 +730,7 @@ bool upb_inttable_iter_isequal(const upb_inttable_iter *i1,
i1->array_part == i2->array_part;
}
-#ifdef UPB_UNALIGNED_READS_OK
+#if defined(UPB_UNALIGNED_READS_OK) || defined(__s390x__)
/* -----------------------------------------------------------------------------
* MurmurHash2, by Austin Appleby (released as public domain).
* Reformatted and C99-ified by Joshua Haberman.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback