mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
303 lines
11 KiB
C++
303 lines
11 KiB
C++
// Protocol Buffers - Google's data interchange format
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
// https://developers.google.com/protocol-buffers/
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are
|
|
// met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright
|
|
// notice, this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above
|
|
// copyright notice, this list of conditions and the following disclaimer
|
|
// in the documentation and/or other materials provided with the
|
|
// distribution.
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
// contributors may be used to endorse or promote products derived from
|
|
// this software without specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#ifndef GOOGLE_PROTOBUF_GENERATED_MESSAGE_TCTABLE_IMPL_H__
|
|
#define GOOGLE_PROTOBUF_GENERATED_MESSAGE_TCTABLE_IMPL_H__
|
|
|
|
#include <cstdint>
|
|
#include <type_traits>
|
|
|
|
#include <thirdparty/protobuf/parse_context.h>
|
|
#include <thirdparty/protobuf/extension_set.h>
|
|
#include <thirdparty/protobuf/generated_message_tctable_decl.h>
|
|
#include <thirdparty/protobuf/message_lite.h>
|
|
#include <thirdparty/protobuf/metadata_lite.h>
|
|
#include <thirdparty/protobuf/port.h>
|
|
#include <thirdparty/protobuf/wire_format_lite.h>
|
|
|
|
// Must come last:
|
|
#include <thirdparty/protobuf/port_def.inc>
|
|
|
|
namespace google {
|
|
namespace protobuf {
|
|
|
|
class Message;
|
|
class UnknownFieldSet;
|
|
|
|
namespace internal {
|
|
|
|
// PROTOBUF_TC_PARAM_DECL are the parameters for tailcall functions, it is
|
|
// defined in port_def.inc.
|
|
//
|
|
// Note that this is performance sensitive: changing the parameters will change
|
|
// the registers used by the ABI calling convention, which subsequently affects
|
|
// register selection logic inside the function.
|
|
|
|
// PROTOBUF_TC_PARAM_PASS passes values to match PROTOBUF_TC_PARAM_DECL.
|
|
#define PROTOBUF_TC_PARAM_PASS msg, ptr, ctx, table, hasbits, data
|
|
|
|
// PROTOBUF_TC_PARSE_* decide which function is used to parse message-typed
|
|
// fields. The guard macros are defined in port_def.inc.
|
|
#if PROTOBUF_TC_STATIC_PARSE_SINGULAR1
|
|
#define PROTOBUF_TC_PARSE_SINGULAR1(MESSAGE) MESSAGE::Tct_ParseS1
|
|
#else
|
|
#define PROTOBUF_TC_PARSE_SINGULAR1(MESSAGE) \
|
|
::google::protobuf::internal::TcParser::SingularParseMessage<MESSAGE, uint8_t>
|
|
#endif // PROTOBUF_TC_STATIC_PARSE_SINGULAR1
|
|
|
|
#if PROTOBUF_TC_STATIC_PARSE_SINGULAR2
|
|
#define PROTOBUF_TC_PARSE_SINGULAR2(MESSAGE) MESSAGE::Tct_ParseS2
|
|
#else
|
|
#define PROTOBUF_TC_PARSE_SINGULAR2(MESSAGE) \
|
|
::google::protobuf::internal::TcParser::SingularParseMessage<MESSAGE, uint16_t>
|
|
#endif // PROTOBUF_TC_STATIC_PARSE_SINGULAR2
|
|
|
|
#if PROTOBUF_TC_STATIC_PARSE_REPEATED1
|
|
#define PROTOBUF_TC_PARSE_REPEATED1(MESSAGE) MESSAGE::Tct_ParseR1
|
|
#else
|
|
#define PROTOBUF_TC_PARSE_REPEATED1(MESSAGE) \
|
|
::google::protobuf::internal::TcParser::RepeatedParseMessage<MESSAGE, uint8_t>
|
|
#endif // PROTOBUF_TC_STATIC_PARSE_REPEATED1
|
|
|
|
#if PROTOBUF_TC_STATIC_PARSE_REPEATED2
|
|
#define PROTOBUF_TC_PARSE_REPEATED2(MESSAGE) MESSAGE::Tct_ParseR2
|
|
#else
|
|
#define PROTOBUF_TC_PARSE_REPEATED2(MESSAGE) \
|
|
::google::protobuf::internal::TcParser::RepeatedParseMessage<MESSAGE, uint16_t>
|
|
#endif // PROTOBUF_TC_STATIC_PARSE_REPEATED2
|
|
|
|
#ifndef NDEBUG
|
|
template <size_t align>
|
|
#ifndef _MSC_VER
|
|
[[noreturn]]
|
|
#endif
|
|
void AlignFail(uintptr_t address) {
|
|
GOOGLE_LOG(FATAL) << "Unaligned (" << align << ") access at " << address;
|
|
}
|
|
|
|
extern template void AlignFail<4>(uintptr_t);
|
|
extern template void AlignFail<8>(uintptr_t);
|
|
#endif
|
|
|
|
// TcParser implements most of the parsing logic for tailcall tables.
|
|
class TcParser final {
|
|
public:
|
|
static const char* GenericFallback(PROTOBUF_TC_PARAM_DECL);
|
|
static const char* GenericFallbackLite(PROTOBUF_TC_PARAM_DECL);
|
|
|
|
// Dispatch to the designated parse function
|
|
inline PROTOBUF_ALWAYS_INLINE static const char* TagDispatch(
|
|
PROTOBUF_TC_PARAM_DECL) {
|
|
const auto coded_tag = UnalignedLoad<uint16_t>(ptr);
|
|
const size_t idx = coded_tag & table->fast_idx_mask;
|
|
PROTOBUF_ASSUME((idx & 7) == 0);
|
|
auto* fast_entry = table->fast_entry(idx >> 3);
|
|
data = fast_entry->bits;
|
|
data.data ^= coded_tag;
|
|
PROTOBUF_MUSTTAIL return fast_entry->target(PROTOBUF_TC_PARAM_PASS);
|
|
}
|
|
|
|
// We can only safely call from field to next field if the call is optimized
|
|
// to a proper tail call. Otherwise we blow through stack. Clang and gcc
|
|
// reliably do this optimization in opt mode, but do not perform this in debug
|
|
// mode. Luckily the structure of the algorithm is such that it's always
|
|
// possible to just return and use the enclosing parse loop as a trampoline.
|
|
static const char* ToTagDispatch(PROTOBUF_TC_PARAM_DECL) {
|
|
constexpr bool always_return = !PROTOBUF_TAILCALL;
|
|
if (always_return || !ctx->DataAvailable(ptr)) {
|
|
PROTOBUF_MUSTTAIL return ToParseLoop(PROTOBUF_TC_PARAM_PASS);
|
|
}
|
|
PROTOBUF_MUSTTAIL return TagDispatch(PROTOBUF_TC_PARAM_PASS);
|
|
}
|
|
|
|
static const char* ParseLoop(MessageLite* msg, const char* ptr,
|
|
ParseContext* ctx,
|
|
const TcParseTableBase* table) {
|
|
ScopedArenaSwap saved(msg, ctx);
|
|
const uint32_t has_bits_offset = table->has_bits_offset;
|
|
while (!ctx->Done(&ptr)) {
|
|
uint64_t hasbits = 0;
|
|
if (has_bits_offset) hasbits = RefAt<uint32_t>(msg, has_bits_offset);
|
|
ptr = TagDispatch(msg, ptr, ctx, table, hasbits, {});
|
|
if (ptr == nullptr) break;
|
|
if (ctx->LastTag() != 1) break; // Ended on terminating tag
|
|
}
|
|
return ptr;
|
|
}
|
|
|
|
template <typename FieldType, typename TagType>
|
|
PROTOBUF_NOINLINE static const char* SingularParseMessage(
|
|
PROTOBUF_TC_PARAM_DECL) {
|
|
if (PROTOBUF_PREDICT_FALSE(data.coded_tag<TagType>() != 0)) {
|
|
return table->fallback(PROTOBUF_TC_PARAM_PASS);
|
|
}
|
|
ptr += sizeof(TagType);
|
|
hasbits |= (uint64_t{1} << data.hasbit_idx());
|
|
auto& field = RefAt<FieldType*>(msg, data.offset());
|
|
if (field == nullptr) {
|
|
auto arena = ctx->data().arena;
|
|
if (Arena::is_arena_constructable<FieldType>::value) {
|
|
field = Arena::CreateMessage<FieldType>(arena);
|
|
} else {
|
|
field = Arena::Create<FieldType>(arena);
|
|
}
|
|
}
|
|
SyncHasbits(msg, hasbits, table);
|
|
return ctx->ParseMessage(field, ptr);
|
|
}
|
|
|
|
template <typename FieldType, typename TagType>
|
|
PROTOBUF_NOINLINE static const char* RepeatedParseMessage(
|
|
PROTOBUF_TC_PARAM_DECL) {
|
|
if (PROTOBUF_PREDICT_FALSE(data.coded_tag<TagType>() != 0)) {
|
|
return table->fallback(PROTOBUF_TC_PARAM_PASS);
|
|
}
|
|
ptr += sizeof(TagType);
|
|
auto& field = RefAt<RepeatedPtrField<FieldType>>(msg, data.offset());
|
|
SyncHasbits(msg, hasbits, table);
|
|
ptr = ctx->ParseMessage(field.Add(), ptr);
|
|
return ptr;
|
|
}
|
|
|
|
template <typename LayoutType, typename TagType>
|
|
static const char* SingularFixed(PROTOBUF_TC_PARAM_DECL);
|
|
template <typename LayoutType, typename TagType>
|
|
static const char* RepeatedFixed(PROTOBUF_TC_PARAM_DECL);
|
|
template <typename LayoutType, typename TagType>
|
|
static const char* PackedFixed(PROTOBUF_TC_PARAM_DECL);
|
|
|
|
enum VarintDecode { kNoConversion = 0, kZigZag = 1 };
|
|
template <typename FieldType, typename TagType, VarintDecode zigzag>
|
|
static const char* SingularVarint(PROTOBUF_TC_PARAM_DECL);
|
|
template <typename FieldType, typename TagType, VarintDecode zigzag>
|
|
static const char* RepeatedVarint(PROTOBUF_TC_PARAM_DECL);
|
|
template <typename FieldType, typename TagType, VarintDecode zigzag>
|
|
static const char* PackedVarint(PROTOBUF_TC_PARAM_DECL);
|
|
|
|
enum Utf8Type { kNoUtf8 = 0, kUtf8 = 1, kUtf8ValidateOnly = 2 };
|
|
template <typename TagType, Utf8Type utf8>
|
|
static const char* SingularString(PROTOBUF_TC_PARAM_DECL);
|
|
template <typename TagType, Utf8Type utf8>
|
|
static const char* RepeatedString(PROTOBUF_TC_PARAM_DECL);
|
|
|
|
template <typename T>
|
|
static inline T& RefAt(void* x, size_t offset) {
|
|
T* target = reinterpret_cast<T*>(static_cast<char*>(x) + offset);
|
|
#ifndef NDEBUG
|
|
if (PROTOBUF_PREDICT_FALSE(
|
|
reinterpret_cast<uintptr_t>(target) % alignof(T) != 0)) {
|
|
AlignFail<alignof(T)>(reinterpret_cast<uintptr_t>(target));
|
|
}
|
|
#endif
|
|
return *target;
|
|
}
|
|
|
|
static inline PROTOBUF_ALWAYS_INLINE void SyncHasbits(
|
|
MessageLite* msg, uint64_t hasbits, const TcParseTableBase* table) {
|
|
const uint32_t has_bits_offset = table->has_bits_offset;
|
|
if (has_bits_offset) {
|
|
// Only the first 32 has-bits are updated. Nothing above those is stored,
|
|
// but e.g. messages without has-bits update the upper bits.
|
|
RefAt<uint32_t>(msg, has_bits_offset) = static_cast<uint32_t>(hasbits);
|
|
}
|
|
}
|
|
|
|
protected:
|
|
static inline PROTOBUF_ALWAYS_INLINE const char* ToParseLoop(
|
|
PROTOBUF_TC_PARAM_DECL) {
|
|
(void)data;
|
|
(void)ctx;
|
|
SyncHasbits(msg, hasbits, table);
|
|
return ptr;
|
|
}
|
|
|
|
static inline PROTOBUF_ALWAYS_INLINE const char* Error(
|
|
PROTOBUF_TC_PARAM_DECL) {
|
|
(void)data;
|
|
(void)ctx;
|
|
(void)ptr;
|
|
SyncHasbits(msg, hasbits, table);
|
|
return nullptr;
|
|
}
|
|
|
|
class ScopedArenaSwap final {
|
|
public:
|
|
ScopedArenaSwap(MessageLite* msg, ParseContext* ctx)
|
|
: ctx_(ctx), saved_(ctx->data().arena) {
|
|
ctx_->data().arena = msg->GetArenaForAllocation();
|
|
}
|
|
ScopedArenaSwap(const ScopedArenaSwap&) = delete;
|
|
~ScopedArenaSwap() { ctx_->data().arena = saved_; }
|
|
|
|
private:
|
|
ParseContext* const ctx_;
|
|
Arena* const saved_;
|
|
};
|
|
|
|
template <class MessageBaseT, class UnknownFieldsT>
|
|
static const char* GenericFallbackImpl(PROTOBUF_TC_PARAM_DECL) {
|
|
#define CHK_(x) \
|
|
if (PROTOBUF_PREDICT_FALSE(!(x))) return nullptr /* NOLINT */
|
|
|
|
SyncHasbits(msg, hasbits, table);
|
|
uint32_t tag;
|
|
ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag);
|
|
CHK_(ptr);
|
|
if ((tag & 7) == WireFormatLite::WIRETYPE_END_GROUP || tag == 0) {
|
|
ctx->SetLastTag(tag);
|
|
return ptr;
|
|
}
|
|
(void)data;
|
|
uint32_t num = tag >> 3;
|
|
if (table->extension_range_low <= num &&
|
|
num <= table->extension_range_high) {
|
|
return RefAt<ExtensionSet>(msg, table->extension_offset)
|
|
.ParseField(tag, ptr,
|
|
static_cast<const MessageBaseT*>(table->default_instance),
|
|
&msg->_internal_metadata_, ctx);
|
|
}
|
|
return UnknownFieldParse(
|
|
tag, msg->_internal_metadata_.mutable_unknown_fields<UnknownFieldsT>(),
|
|
ptr, ctx);
|
|
#undef CHK_
|
|
}
|
|
};
|
|
|
|
// Declare helper functions:
|
|
#include <thirdparty/protobuf/generated_message_tctable_impl.inc>
|
|
|
|
} // namespace internal
|
|
} // namespace protobuf
|
|
} // namespace google
|
|
|
|
#include <thirdparty/protobuf/port_undef.inc>
|
|
|
|
#endif // GOOGLE_PROTOBUF_GENERATED_MESSAGE_TCTABLE_IMPL_H__
|