|
enum | SanityCheckResult {
CHECK_SUCCESS = 0,
MAGIC_NUMBER_MISMATCH = 1,
VERSION_MISMATCH = 2,
SOURCE_MISMATCH = 3,
CPU_FEATURES_MISMATCH = 4,
FLAGS_MISMATCH = 5,
CHECKSUM_MISMATCH = 6,
INVALID_HEADER = 7,
LENGTH_MISMATCH = 8
} |
|
|
static const uint32_t | kVersionHashOffset = kMagicNumberOffset + kUInt32Size |
|
static const uint32_t | kSourceHashOffset = kVersionHashOffset + kUInt32Size |
|
static const uint32_t | kCpuFeaturesOffset = kSourceHashOffset + kUInt32Size |
|
static const uint32_t | kFlagHashOffset = kCpuFeaturesOffset + kUInt32Size |
|
static const uint32_t | kNumReservationsOffset = kFlagHashOffset + kUInt32Size |
|
static const uint32_t | kNumCodeStubKeysOffset |
|
static const uint32_t | kPayloadLengthOffset |
|
static const uint32_t | kChecksumPartAOffset |
|
static const uint32_t | kChecksumPartBOffset |
|
static const uint32_t | kUnalignedHeaderSize |
|
static const uint32_t | kHeaderSize = POINTER_SIZE_ALIGN(kUnalignedHeaderSize) |
|
static const uint32_t | kMagicNumberOffset = 0 |
|
Definition at line 89 of file code-serializer.h.
◆ kChecksumPartAOffset
const uint32_t v8::internal::SerializedCodeData::kChecksumPartAOffset |
|
static |
Initial value:=
kPayloadLengthOffset + kUInt32Size
Definition at line 126 of file code-serializer.h.
◆ kChecksumPartBOffset
const uint32_t v8::internal::SerializedCodeData::kChecksumPartBOffset |
|
static |
Initial value:=
kChecksumPartAOffset + kUInt32Size
Definition at line 128 of file code-serializer.h.
◆ kNumCodeStubKeysOffset
const uint32_t v8::internal::SerializedCodeData::kNumCodeStubKeysOffset |
|
static |
Initial value:=
kNumReservationsOffset + kUInt32Size
Definition at line 122 of file code-serializer.h.
◆ kPayloadLengthOffset
const uint32_t v8::internal::SerializedCodeData::kPayloadLengthOffset |
|
static |
Initial value:=
kNumCodeStubKeysOffset + kUInt32Size
Definition at line 124 of file code-serializer.h.
◆ kUnalignedHeaderSize
const uint32_t v8::internal::SerializedCodeData::kUnalignedHeaderSize |
|
static |
Initial value:=
kChecksumPartBOffset + kUInt32Size
Definition at line 130 of file code-serializer.h.
The documentation for this class was generated from the following files: