Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
184 lines (157 loc) · 6.74 KB

File metadata and controls

184 lines (157 loc) · 6.74 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#ifdef HERMESVM_SERIALIZE
#include "hermes/VM/Serializer.h"
#include "hermes/ADT/CompactArray.h"
#include "hermes/VM/GCPointer-inline.h"
#include "hermes/VM/GCPointer.h"
#include "hermes/VM/JSArrayBuffer.h"
#include "hermes/VM/JSDataView.h"
#include "hermes/VM/JSNativeFunctions.h"
#include "hermes/VM/JSTypedArray.h"
#include "hermes/VM/JSWeakMapImpl.h"
#include "hermes/VM/PrimitiveBox.h"
#include "hermes/VM/Runtime.h"
#include "JSLib/JSLibInternal.h"
#include "llvh/Support/Debug.h"
#define DEBUG_TYPE "serialize"
namespace hermes {
namespace vm {
using SerializeCallBack = void(Serializer &s, const GCCell *cell);
static SerializeCallBack *serializeImpl[] = {
#define CELL_KIND(name) name##Serialize,
#include "hermes/VM/CellKinds.def"
#undef CELL_KIND
};
Serializer::Serializer(
llvh::raw_ostream &OS,
Runtime *runtime,
ExternalPointersVectorFunction *externalPointersVectorCallBack)
: os_(OS), runtime_(runtime) {
// Write the header here.
writeHeader();
// Always map nullptr to 0, so it can be changed back when deserialize.
relocationMap_[0] = 0;
// Assign relocation id for all native function without template function
// pointers.
#define NATIVE_FUNCTION(func) \
assert(relocationMap_.count((void *)func) == 0); \
LLVM_DEBUG( \
llvh::dbgs() << currentId_ << ", " << #func << ", " << (void *)func \
<< "\n"); \
relocationMap_[(void *)func] = currentId_++;
// Assign relocation id for native functions with template of one type
// function pointers.
#define NATIVE_FUNCTION_TYPED(func, type) \
assert(relocationMap_.count((void *)func<type>) == 0); \
relocationMap_[(void *)func<type>] = currentId_; \
LLVM_DEBUG( \
llvh::dbgs() << currentId_ << ", " << #func << "<" << #type << ">, " \
<< (void *)func<type> << "\n"); \
currentId_++;
// Assign relocation id for native functions with template of two types.
// function pointers.
#define NATIVE_FUNCTION_TYPED_2(func, type, type2) \
assert(relocationMap_.count((void *)func<type, type2>) == 0); \
relocationMap_[(void *)func<type, type2>] = currentId_; \
LLVM_DEBUG( \
llvh::dbgs() << currentId_ << ", " << #func << "<" << #type << ", " \
<< #type2 << ">, " << ((void *)func<type, type2>) << "\n"); \
currentId_++;
// Assign relocation id for all constructor function without template function
// pointers.
NativeConstructor::CreatorFunction *funcPtr;
#define NATIVE_CONSTRUCTOR(func) \
funcPtr = func; \
assert(relocationMap_.count((void *)funcPtr) == 0); \
relocationMap_[(void *)funcPtr] = currentId_; \
LLVM_DEBUG( \
llvh::dbgs() << currentId_ << ", " << #func << ", " << (void *)funcPtr \
<< "\n"); \
currentId_++;
// Assign relocation id for constructor functions with template,
#define NATIVE_CONSTRUCTOR_TYPED(classname, type, type2, func) \
funcPtr = func<classname<type, type2>>; \
assert(relocationMap_.count((void *)funcPtr) == 0); \
relocationMap_[(void *)funcPtr] = currentId_; \
LLVM_DEBUG( \
llvh::dbgs() << currentId_ << ", " << #func << "<" << #classname << "<" \
<< #type << ", " << #type2 << ">>" \
<< ", " << (void *)funcPtr << "\n"); \
currentId_++;
#include "hermes/VM/NativeFunctions.def"
// Map external pointers.
for (auto *ptr : externalPointersVectorCallBack()) {
assert(
relocationMap_.count(ptr) == 0 &&
"External pointer should only be mapped once");
relocationMap_[ptr] = currentId_;
currentId_++;
}
}
void Serializer::flushCharBufs() {
if (charBufOffset_ > 0) {
// Write charBuf_.
assert(
charBufOffset_ == charBuf_.size() &&
"Illegal offset for string buffer");
os_.write(charBuf_.data(), charBufOffset_);
writtenBytes_ += charBufOffset_;
}
// Write size of charBuf_.
writeInt<uint32_t>(charBufOffset_);
// Hack: we may be misaligned. If so we will need to insert a padding byte
// before the char16 buffer, but because we read backwards we will not know if
// a padding byte was inserted. Therefore we will add it to the recorded size,
// and upon deserialization we will take it into account.
const auto bytesBeforeChar16Buffer = writtenBytes_;
if (char16BufOffset_ > 0) {
pad(alignof(char16_t));
// Write char16Buf_.
assert(
char16BufOffset_ == char16Buf_.size() &&
"Illegal offset for string buffer");
os_.write(
reinterpret_cast<char *>(char16Buf_.data()),
char16BufOffset_ * sizeof(char16_t));
writtenBytes_ += char16BufOffset_ * sizeof(char16_t);
}
// Record the (possibly padded) char16 buffer size.
writeInt<uint32_t>(writtenBytes_ - bytesBeforeChar16Buffer);
}
void Serializer::serializeCell(const GCCell *cell) {
assert(
(CellKind)cell->getKind() != CellKind::ArrayStorageKind &&
"ArrayStorage should be serialized and deserialized with its owner.");
serializeImpl[(uint8_t)cell->getKind()](*this, cell);
}
void Serializer::serializeCompactTable(CompactTable &table) {
auto size = table.size();
writeInt<uint32_t>(size);
writeInt<uint8_t>(table.getCurrentScale());
for (uint32_t idx = 0; idx < size; ++idx)
writeInt<uint32_t>(table.asArray().get(idx));
}
void Serializer::writeHeader() {
// Default value all false.
SerializeHeader header;
header.heapSize = runtime_->getHeap().size();
#ifndef NDEBUG
header.isDebug = true;
#endif
#ifdef HERMES_ENABLE_DEBUGGER
header.isEnableDebugger = true;
#endif
runtime_->populateHeaderRuntimeConfig(header);
writeData(&header, sizeof(SerializeHeader));
}
void Serializer::writeCurrentOffset() {
writeInt<size_t>(writtenBytes_);
}
} // namespace vm
} // namespace hermes
#endif
Morty Proxy This is a proxified and sanitized view of the page, visit original site.