From 6f30032183ccd20d7a7f031ebc9350f54179bba8 Mon Sep 17 00:00:00 2001 From: Josh Haberman Date: Wed, 3 Jun 2015 14:51:18 -0700 Subject: Sync from Google-internal development. --- upb/bindings/lua/upb.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'upb/bindings/lua/upb.c') diff --git a/upb/bindings/lua/upb.c b/upb/bindings/lua/upb.c index b35af24..02057d4 100644 --- a/upb/bindings/lua/upb.c +++ b/upb/bindings/lua/upb.c @@ -1358,6 +1358,18 @@ static size_t align_up(size_t val, size_t align) { // If we always read/write as a consistent type to each value, this shouldn't // violate aliasing. +// +// Note that the slightly prettier option of: +// +// *(type*)(&msg->data[ofs]) +// +// ...is potentially more questionable wrt the C standard and aliasing. +// Does the expression &msg->data[ofs] "access the stored value"? If so, +// this would violate aliasing. So instead we use the expression: +// +// (char*)msg + sizeof(lupb_msg) + ofs +// +// ...which unambigiously is doing nothing but calculating a pointer address. #define DEREF(msg, ofs, type) *(type*)((char*)msg + sizeof(lupb_msg) + ofs) lupb_msg *lupb_msg_check(lua_State *L, int narg) { -- cgit v1.2.3