36 lines
875 B
C++
36 lines
875 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <vector>
|
|
|
|
typedef bool (FieldInfoFilter)(FieldInfo*);
|
|
|
|
namespace il2cpp
|
|
{
|
|
namespace metadata
|
|
{
|
|
struct SizeAndAlignment
|
|
{
|
|
size_t size;
|
|
uint8_t alignment;
|
|
uint8_t naturalAlignment;
|
|
};
|
|
|
|
class FieldLayout
|
|
{
|
|
public:
|
|
struct FieldLayoutData
|
|
{
|
|
std::vector<size_t> FieldOffsets;
|
|
size_t classSize;
|
|
size_t actualClassSize;
|
|
uint8_t minimumAlignment;
|
|
uint8_t naturalAlignment;
|
|
};
|
|
|
|
static void LayoutFields(const Il2CppClass* klass, FieldInfoFilter filter, size_t parentSize, size_t actualParentSize, size_t parentAlignment, uint8_t packing, FieldLayoutData& data);
|
|
static SizeAndAlignment GetTypeSizeAndAlignment(const Il2CppType* type);
|
|
};
|
|
} /* namespace metadata */
|
|
} /* namespace il2cpp */
|