libv8-node 15.12.0.0.beta1-aarch64-linux-musl → 17.9.1.0-aarch64-linux-musl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/libv8-node/location.rb +1 -1
- data/ext/libv8-node/paths.rb +5 -1
- data/lib/libv8/node/version.rb +3 -3
- data/vendor/v8/{out.gn → aarch64-linux-musl}/libv8/obj/libv8_monolith.a +0 -0
- data/vendor/v8/include/cppgc/allocation.h +110 -44
- data/vendor/v8/include/cppgc/common.h +9 -6
- data/vendor/v8/include/cppgc/cross-thread-persistent.h +465 -0
- data/vendor/v8/include/cppgc/custom-space.h +37 -2
- data/vendor/v8/include/cppgc/default-platform.h +47 -48
- data/vendor/v8/include/cppgc/ephemeron-pair.h +30 -0
- data/vendor/v8/include/cppgc/explicit-management.h +82 -0
- data/vendor/v8/include/cppgc/garbage-collected.h +4 -3
- data/vendor/v8/include/cppgc/heap-consistency.h +253 -0
- data/vendor/v8/include/cppgc/heap-state.h +70 -0
- data/vendor/v8/include/cppgc/heap-statistics.h +120 -0
- data/vendor/v8/include/cppgc/heap.h +68 -6
- data/vendor/v8/include/cppgc/internal/api-constants.h +3 -3
- data/vendor/v8/include/cppgc/internal/caged-heap-local-data.h +4 -3
- data/vendor/v8/include/cppgc/internal/compiler-specific.h +2 -2
- data/vendor/v8/include/cppgc/internal/finalizer-trait.h +2 -0
- data/vendor/v8/include/cppgc/internal/gc-info.h +124 -13
- data/vendor/v8/include/cppgc/internal/name-trait.h +122 -0
- data/vendor/v8/include/cppgc/internal/persistent-node.h +94 -6
- data/vendor/v8/include/cppgc/internal/pointer-policies.h +81 -29
- data/vendor/v8/include/cppgc/internal/prefinalizer-handler.h +1 -1
- data/vendor/v8/include/cppgc/internal/write-barrier.h +398 -35
- data/vendor/v8/include/cppgc/liveness-broker.h +11 -2
- data/vendor/v8/include/cppgc/macros.h +2 -0
- data/vendor/v8/include/cppgc/member.h +87 -25
- data/vendor/v8/include/cppgc/name-provider.h +65 -0
- data/vendor/v8/include/cppgc/object-size-trait.h +58 -0
- data/vendor/v8/include/cppgc/persistent.h +41 -11
- data/vendor/v8/include/cppgc/platform.h +49 -25
- data/vendor/v8/include/cppgc/prefinalizer.h +2 -2
- data/vendor/v8/include/cppgc/process-heap-statistics.h +36 -0
- data/vendor/v8/include/cppgc/sentinel-pointer.h +32 -0
- data/vendor/v8/include/cppgc/source-location.h +2 -1
- data/vendor/v8/include/cppgc/testing.h +99 -0
- data/vendor/v8/include/cppgc/trace-trait.h +8 -3
- data/vendor/v8/include/cppgc/type-traits.h +157 -19
- data/vendor/v8/include/cppgc/visitor.h +194 -28
- data/vendor/v8/include/libplatform/libplatform.h +11 -0
- data/vendor/v8/include/libplatform/v8-tracing.h +2 -0
- data/vendor/v8/include/v8-array-buffer.h +433 -0
- data/vendor/v8/include/v8-callbacks.h +377 -0
- data/vendor/v8/include/v8-container.h +129 -0
- data/vendor/v8/include/v8-context.h +418 -0
- data/vendor/v8/include/v8-cppgc.h +261 -159
- data/vendor/v8/include/v8-data.h +65 -0
- data/vendor/v8/include/v8-date.h +43 -0
- data/vendor/v8/include/v8-debug.h +151 -0
- data/vendor/v8/include/v8-embedder-heap.h +238 -0
- data/vendor/v8/include/v8-exception.h +224 -0
- data/vendor/v8/include/v8-extension.h +62 -0
- data/vendor/v8/include/v8-external.h +37 -0
- data/vendor/v8/include/v8-fast-api-calls.h +652 -152
- data/vendor/v8/include/v8-forward.h +81 -0
- data/vendor/v8/include/v8-function-callback.h +475 -0
- data/vendor/v8/include/v8-function.h +122 -0
- data/vendor/v8/include/v8-initialization.h +282 -0
- data/vendor/v8/include/v8-inspector.h +33 -25
- data/vendor/v8/include/v8-internal.h +178 -31
- data/vendor/v8/include/v8-isolate.h +1662 -0
- data/vendor/v8/include/v8-json.h +47 -0
- data/vendor/v8/include/v8-local-handle.h +459 -0
- data/vendor/v8/include/v8-locker.h +148 -0
- data/vendor/v8/include/v8-maybe.h +137 -0
- data/vendor/v8/include/v8-memory-span.h +43 -0
- data/vendor/v8/include/v8-message.h +241 -0
- data/vendor/v8/include/v8-metrics.h +114 -9
- data/vendor/v8/include/v8-microtask-queue.h +152 -0
- data/vendor/v8/include/v8-microtask.h +28 -0
- data/vendor/v8/include/v8-object.h +770 -0
- data/vendor/v8/include/v8-persistent-handle.h +590 -0
- data/vendor/v8/include/v8-platform.h +74 -25
- data/vendor/v8/include/v8-primitive-object.h +118 -0
- data/vendor/v8/include/v8-primitive.h +858 -0
- data/vendor/v8/include/v8-profiler.h +72 -9
- data/vendor/v8/include/v8-promise.h +174 -0
- data/vendor/v8/include/v8-proxy.h +50 -0
- data/vendor/v8/include/v8-regexp.h +105 -0
- data/vendor/v8/include/v8-script.h +771 -0
- data/vendor/v8/include/v8-snapshot.h +198 -0
- data/vendor/v8/include/v8-statistics.h +215 -0
- data/vendor/v8/include/v8-template.h +1052 -0
- data/vendor/v8/include/v8-traced-handle.h +605 -0
- data/vendor/v8/include/v8-typed-array.h +282 -0
- data/vendor/v8/include/v8-unwinder-state.h +31 -0
- data/vendor/v8/include/v8-unwinder.h +129 -0
- data/vendor/v8/include/v8-util.h +8 -2
- data/vendor/v8/include/v8-value-serializer.h +249 -0
- data/vendor/v8/include/v8-value.h +526 -0
- data/vendor/v8/include/v8-version.h +3 -3
- data/vendor/v8/include/v8-wasm.h +245 -0
- data/vendor/v8/include/v8-weak-callback-info.h +73 -0
- data/vendor/v8/include/v8.h +41 -12050
- data/vendor/v8/include/v8config.h +87 -11
- metadata +65 -11
- data/vendor/v8/include/cppgc/internal/process-heap.h +0 -34
@@ -0,0 +1,282 @@
|
|
1
|
+
// Copyright 2021 the V8 project authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
5
|
+
#ifndef INCLUDE_V8_TYPED_ARRAY_H_
|
6
|
+
#define INCLUDE_V8_TYPED_ARRAY_H_
|
7
|
+
|
8
|
+
#include "v8-array-buffer.h" // NOLINT(build/include_directory)
|
9
|
+
#include "v8-local-handle.h" // NOLINT(build/include_directory)
|
10
|
+
#include "v8config.h" // NOLINT(build/include_directory)
|
11
|
+
|
12
|
+
namespace v8 {
|
13
|
+
|
14
|
+
class SharedArrayBuffer;
|
15
|
+
|
16
|
+
/**
|
17
|
+
* A base class for an instance of TypedArray series of constructors
|
18
|
+
* (ES6 draft 15.13.6).
|
19
|
+
*/
|
20
|
+
class V8_EXPORT TypedArray : public ArrayBufferView {
|
21
|
+
public:
|
22
|
+
/*
|
23
|
+
* The largest typed array size that can be constructed using New.
|
24
|
+
*/
|
25
|
+
static constexpr size_t kMaxLength =
|
26
|
+
internal::kApiSystemPointerSize == 4
|
27
|
+
? internal::kSmiMaxValue
|
28
|
+
: static_cast<size_t>(uint64_t{1} << 32);
|
29
|
+
|
30
|
+
/**
|
31
|
+
* Number of elements in this typed array
|
32
|
+
* (e.g. for Int16Array, |ByteLength|/2).
|
33
|
+
*/
|
34
|
+
size_t Length();
|
35
|
+
|
36
|
+
V8_INLINE static TypedArray* Cast(Value* value) {
|
37
|
+
#ifdef V8_ENABLE_CHECKS
|
38
|
+
CheckCast(value);
|
39
|
+
#endif
|
40
|
+
return static_cast<TypedArray*>(value);
|
41
|
+
}
|
42
|
+
|
43
|
+
private:
|
44
|
+
TypedArray();
|
45
|
+
static void CheckCast(Value* obj);
|
46
|
+
};
|
47
|
+
|
48
|
+
/**
|
49
|
+
* An instance of Uint8Array constructor (ES6 draft 15.13.6).
|
50
|
+
*/
|
51
|
+
class V8_EXPORT Uint8Array : public TypedArray {
|
52
|
+
public:
|
53
|
+
static Local<Uint8Array> New(Local<ArrayBuffer> array_buffer,
|
54
|
+
size_t byte_offset, size_t length);
|
55
|
+
static Local<Uint8Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
56
|
+
size_t byte_offset, size_t length);
|
57
|
+
V8_INLINE static Uint8Array* Cast(Value* value) {
|
58
|
+
#ifdef V8_ENABLE_CHECKS
|
59
|
+
CheckCast(value);
|
60
|
+
#endif
|
61
|
+
return static_cast<Uint8Array*>(value);
|
62
|
+
}
|
63
|
+
|
64
|
+
private:
|
65
|
+
Uint8Array();
|
66
|
+
static void CheckCast(Value* obj);
|
67
|
+
};
|
68
|
+
|
69
|
+
/**
|
70
|
+
* An instance of Uint8ClampedArray constructor (ES6 draft 15.13.6).
|
71
|
+
*/
|
72
|
+
class V8_EXPORT Uint8ClampedArray : public TypedArray {
|
73
|
+
public:
|
74
|
+
static Local<Uint8ClampedArray> New(Local<ArrayBuffer> array_buffer,
|
75
|
+
size_t byte_offset, size_t length);
|
76
|
+
static Local<Uint8ClampedArray> New(
|
77
|
+
Local<SharedArrayBuffer> shared_array_buffer, size_t byte_offset,
|
78
|
+
size_t length);
|
79
|
+
V8_INLINE static Uint8ClampedArray* Cast(Value* value) {
|
80
|
+
#ifdef V8_ENABLE_CHECKS
|
81
|
+
CheckCast(value);
|
82
|
+
#endif
|
83
|
+
return static_cast<Uint8ClampedArray*>(value);
|
84
|
+
}
|
85
|
+
|
86
|
+
private:
|
87
|
+
Uint8ClampedArray();
|
88
|
+
static void CheckCast(Value* obj);
|
89
|
+
};
|
90
|
+
|
91
|
+
/**
|
92
|
+
* An instance of Int8Array constructor (ES6 draft 15.13.6).
|
93
|
+
*/
|
94
|
+
class V8_EXPORT Int8Array : public TypedArray {
|
95
|
+
public:
|
96
|
+
static Local<Int8Array> New(Local<ArrayBuffer> array_buffer,
|
97
|
+
size_t byte_offset, size_t length);
|
98
|
+
static Local<Int8Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
99
|
+
size_t byte_offset, size_t length);
|
100
|
+
V8_INLINE static Int8Array* Cast(Value* value) {
|
101
|
+
#ifdef V8_ENABLE_CHECKS
|
102
|
+
CheckCast(value);
|
103
|
+
#endif
|
104
|
+
return static_cast<Int8Array*>(value);
|
105
|
+
}
|
106
|
+
|
107
|
+
private:
|
108
|
+
Int8Array();
|
109
|
+
static void CheckCast(Value* obj);
|
110
|
+
};
|
111
|
+
|
112
|
+
/**
|
113
|
+
* An instance of Uint16Array constructor (ES6 draft 15.13.6).
|
114
|
+
*/
|
115
|
+
class V8_EXPORT Uint16Array : public TypedArray {
|
116
|
+
public:
|
117
|
+
static Local<Uint16Array> New(Local<ArrayBuffer> array_buffer,
|
118
|
+
size_t byte_offset, size_t length);
|
119
|
+
static Local<Uint16Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
120
|
+
size_t byte_offset, size_t length);
|
121
|
+
V8_INLINE static Uint16Array* Cast(Value* value) {
|
122
|
+
#ifdef V8_ENABLE_CHECKS
|
123
|
+
CheckCast(value);
|
124
|
+
#endif
|
125
|
+
return static_cast<Uint16Array*>(value);
|
126
|
+
}
|
127
|
+
|
128
|
+
private:
|
129
|
+
Uint16Array();
|
130
|
+
static void CheckCast(Value* obj);
|
131
|
+
};
|
132
|
+
|
133
|
+
/**
|
134
|
+
* An instance of Int16Array constructor (ES6 draft 15.13.6).
|
135
|
+
*/
|
136
|
+
class V8_EXPORT Int16Array : public TypedArray {
|
137
|
+
public:
|
138
|
+
static Local<Int16Array> New(Local<ArrayBuffer> array_buffer,
|
139
|
+
size_t byte_offset, size_t length);
|
140
|
+
static Local<Int16Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
141
|
+
size_t byte_offset, size_t length);
|
142
|
+
V8_INLINE static Int16Array* Cast(Value* value) {
|
143
|
+
#ifdef V8_ENABLE_CHECKS
|
144
|
+
CheckCast(value);
|
145
|
+
#endif
|
146
|
+
return static_cast<Int16Array*>(value);
|
147
|
+
}
|
148
|
+
|
149
|
+
private:
|
150
|
+
Int16Array();
|
151
|
+
static void CheckCast(Value* obj);
|
152
|
+
};
|
153
|
+
|
154
|
+
/**
|
155
|
+
* An instance of Uint32Array constructor (ES6 draft 15.13.6).
|
156
|
+
*/
|
157
|
+
class V8_EXPORT Uint32Array : public TypedArray {
|
158
|
+
public:
|
159
|
+
static Local<Uint32Array> New(Local<ArrayBuffer> array_buffer,
|
160
|
+
size_t byte_offset, size_t length);
|
161
|
+
static Local<Uint32Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
162
|
+
size_t byte_offset, size_t length);
|
163
|
+
V8_INLINE static Uint32Array* Cast(Value* value) {
|
164
|
+
#ifdef V8_ENABLE_CHECKS
|
165
|
+
CheckCast(value);
|
166
|
+
#endif
|
167
|
+
return static_cast<Uint32Array*>(value);
|
168
|
+
}
|
169
|
+
|
170
|
+
private:
|
171
|
+
Uint32Array();
|
172
|
+
static void CheckCast(Value* obj);
|
173
|
+
};
|
174
|
+
|
175
|
+
/**
|
176
|
+
* An instance of Int32Array constructor (ES6 draft 15.13.6).
|
177
|
+
*/
|
178
|
+
class V8_EXPORT Int32Array : public TypedArray {
|
179
|
+
public:
|
180
|
+
static Local<Int32Array> New(Local<ArrayBuffer> array_buffer,
|
181
|
+
size_t byte_offset, size_t length);
|
182
|
+
static Local<Int32Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
183
|
+
size_t byte_offset, size_t length);
|
184
|
+
V8_INLINE static Int32Array* Cast(Value* value) {
|
185
|
+
#ifdef V8_ENABLE_CHECKS
|
186
|
+
CheckCast(value);
|
187
|
+
#endif
|
188
|
+
return static_cast<Int32Array*>(value);
|
189
|
+
}
|
190
|
+
|
191
|
+
private:
|
192
|
+
Int32Array();
|
193
|
+
static void CheckCast(Value* obj);
|
194
|
+
};
|
195
|
+
|
196
|
+
/**
|
197
|
+
* An instance of Float32Array constructor (ES6 draft 15.13.6).
|
198
|
+
*/
|
199
|
+
class V8_EXPORT Float32Array : public TypedArray {
|
200
|
+
public:
|
201
|
+
static Local<Float32Array> New(Local<ArrayBuffer> array_buffer,
|
202
|
+
size_t byte_offset, size_t length);
|
203
|
+
static Local<Float32Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
204
|
+
size_t byte_offset, size_t length);
|
205
|
+
V8_INLINE static Float32Array* Cast(Value* value) {
|
206
|
+
#ifdef V8_ENABLE_CHECKS
|
207
|
+
CheckCast(value);
|
208
|
+
#endif
|
209
|
+
return static_cast<Float32Array*>(value);
|
210
|
+
}
|
211
|
+
|
212
|
+
private:
|
213
|
+
Float32Array();
|
214
|
+
static void CheckCast(Value* obj);
|
215
|
+
};
|
216
|
+
|
217
|
+
/**
|
218
|
+
* An instance of Float64Array constructor (ES6 draft 15.13.6).
|
219
|
+
*/
|
220
|
+
class V8_EXPORT Float64Array : public TypedArray {
|
221
|
+
public:
|
222
|
+
static Local<Float64Array> New(Local<ArrayBuffer> array_buffer,
|
223
|
+
size_t byte_offset, size_t length);
|
224
|
+
static Local<Float64Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
225
|
+
size_t byte_offset, size_t length);
|
226
|
+
V8_INLINE static Float64Array* Cast(Value* value) {
|
227
|
+
#ifdef V8_ENABLE_CHECKS
|
228
|
+
CheckCast(value);
|
229
|
+
#endif
|
230
|
+
return static_cast<Float64Array*>(value);
|
231
|
+
}
|
232
|
+
|
233
|
+
private:
|
234
|
+
Float64Array();
|
235
|
+
static void CheckCast(Value* obj);
|
236
|
+
};
|
237
|
+
|
238
|
+
/**
|
239
|
+
* An instance of BigInt64Array constructor.
|
240
|
+
*/
|
241
|
+
class V8_EXPORT BigInt64Array : public TypedArray {
|
242
|
+
public:
|
243
|
+
static Local<BigInt64Array> New(Local<ArrayBuffer> array_buffer,
|
244
|
+
size_t byte_offset, size_t length);
|
245
|
+
static Local<BigInt64Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
246
|
+
size_t byte_offset, size_t length);
|
247
|
+
V8_INLINE static BigInt64Array* Cast(Value* value) {
|
248
|
+
#ifdef V8_ENABLE_CHECKS
|
249
|
+
CheckCast(value);
|
250
|
+
#endif
|
251
|
+
return static_cast<BigInt64Array*>(value);
|
252
|
+
}
|
253
|
+
|
254
|
+
private:
|
255
|
+
BigInt64Array();
|
256
|
+
static void CheckCast(Value* obj);
|
257
|
+
};
|
258
|
+
|
259
|
+
/**
|
260
|
+
* An instance of BigUint64Array constructor.
|
261
|
+
*/
|
262
|
+
class V8_EXPORT BigUint64Array : public TypedArray {
|
263
|
+
public:
|
264
|
+
static Local<BigUint64Array> New(Local<ArrayBuffer> array_buffer,
|
265
|
+
size_t byte_offset, size_t length);
|
266
|
+
static Local<BigUint64Array> New(Local<SharedArrayBuffer> shared_array_buffer,
|
267
|
+
size_t byte_offset, size_t length);
|
268
|
+
V8_INLINE static BigUint64Array* Cast(Value* value) {
|
269
|
+
#ifdef V8_ENABLE_CHECKS
|
270
|
+
CheckCast(value);
|
271
|
+
#endif
|
272
|
+
return static_cast<BigUint64Array*>(value);
|
273
|
+
}
|
274
|
+
|
275
|
+
private:
|
276
|
+
BigUint64Array();
|
277
|
+
static void CheckCast(Value* obj);
|
278
|
+
};
|
279
|
+
|
280
|
+
} // namespace v8
|
281
|
+
|
282
|
+
#endif // INCLUDE_V8_TYPED_ARRAY_H_
|
@@ -0,0 +1,31 @@
|
|
1
|
+
// Copyright 2020 the V8 project authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
5
|
+
#ifndef INCLUDE_V8_UNWINDER_STATE_H_
|
6
|
+
#define INCLUDE_V8_UNWINDER_STATE_H_
|
7
|
+
|
8
|
+
namespace v8 {
|
9
|
+
|
10
|
+
#ifdef V8_TARGET_ARCH_ARM
|
11
|
+
struct CalleeSavedRegisters {
|
12
|
+
void* arm_r4;
|
13
|
+
void* arm_r5;
|
14
|
+
void* arm_r6;
|
15
|
+
void* arm_r7;
|
16
|
+
void* arm_r8;
|
17
|
+
void* arm_r9;
|
18
|
+
void* arm_r10;
|
19
|
+
};
|
20
|
+
#elif V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_ARM64 || \
|
21
|
+
V8_TARGET_ARCH_MIPS || V8_TARGET_ARCH_MIPS64 || V8_TARGET_ARCH_PPC || \
|
22
|
+
V8_TARGET_ARCH_PPC64 || V8_TARGET_ARCH_RISCV64 || V8_TARGET_ARCH_S390 || \
|
23
|
+
V8_TARGET_ARCH_LOONG64
|
24
|
+
struct CalleeSavedRegisters {};
|
25
|
+
#else
|
26
|
+
#error Target architecture was not detected as supported by v8
|
27
|
+
#endif
|
28
|
+
|
29
|
+
} // namespace v8
|
30
|
+
|
31
|
+
#endif // INCLUDE_V8_UNWINDER _STATE_H_
|
@@ -0,0 +1,129 @@
|
|
1
|
+
// Copyright 2021 the V8 project authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
3
|
+
// found in the LICENSE file.
|
4
|
+
|
5
|
+
#ifndef INCLUDE_V8_UNWINDER_H_
|
6
|
+
#define INCLUDE_V8_UNWINDER_H_
|
7
|
+
|
8
|
+
#include <memory>
|
9
|
+
|
10
|
+
#include "v8config.h" // NOLINT(build/include_directory)
|
11
|
+
|
12
|
+
namespace v8 {
|
13
|
+
// Holds the callee saved registers needed for the stack unwinder. It is the
|
14
|
+
// empty struct if no registers are required. Implemented in
|
15
|
+
// include/v8-unwinder-state.h.
|
16
|
+
struct CalleeSavedRegisters;
|
17
|
+
|
18
|
+
// A RegisterState represents the current state of registers used
|
19
|
+
// by the sampling profiler API.
|
20
|
+
struct V8_EXPORT RegisterState {
|
21
|
+
RegisterState();
|
22
|
+
~RegisterState();
|
23
|
+
RegisterState(const RegisterState& other);
|
24
|
+
RegisterState& operator=(const RegisterState& other);
|
25
|
+
|
26
|
+
void* pc; // Instruction pointer.
|
27
|
+
void* sp; // Stack pointer.
|
28
|
+
void* fp; // Frame pointer.
|
29
|
+
void* lr; // Link register (or nullptr on platforms without a link register).
|
30
|
+
// Callee saved registers (or null if no callee saved registers were stored)
|
31
|
+
std::unique_ptr<CalleeSavedRegisters> callee_saved;
|
32
|
+
};
|
33
|
+
|
34
|
+
// A StateTag represents a possible state of the VM.
|
35
|
+
enum StateTag {
|
36
|
+
JS,
|
37
|
+
GC,
|
38
|
+
PARSER,
|
39
|
+
BYTECODE_COMPILER,
|
40
|
+
COMPILER,
|
41
|
+
OTHER,
|
42
|
+
EXTERNAL,
|
43
|
+
ATOMICS_WAIT,
|
44
|
+
IDLE
|
45
|
+
};
|
46
|
+
|
47
|
+
// The output structure filled up by GetStackSample API function.
|
48
|
+
struct SampleInfo {
|
49
|
+
size_t frames_count; // Number of frames collected.
|
50
|
+
StateTag vm_state; // Current VM state.
|
51
|
+
void* external_callback_entry; // External callback address if VM is
|
52
|
+
// executing an external callback.
|
53
|
+
void* context; // Incumbent native context address.
|
54
|
+
};
|
55
|
+
|
56
|
+
struct MemoryRange {
|
57
|
+
const void* start = nullptr;
|
58
|
+
size_t length_in_bytes = 0;
|
59
|
+
};
|
60
|
+
|
61
|
+
struct JSEntryStub {
|
62
|
+
MemoryRange code;
|
63
|
+
};
|
64
|
+
|
65
|
+
struct JSEntryStubs {
|
66
|
+
JSEntryStub js_entry_stub;
|
67
|
+
JSEntryStub js_construct_entry_stub;
|
68
|
+
JSEntryStub js_run_microtasks_entry_stub;
|
69
|
+
};
|
70
|
+
|
71
|
+
/**
|
72
|
+
* Various helpers for skipping over V8 frames in a given stack.
|
73
|
+
*
|
74
|
+
* The unwinder API is only supported on the x64, ARM64 and ARM32 architectures.
|
75
|
+
*/
|
76
|
+
class V8_EXPORT Unwinder {
|
77
|
+
public:
|
78
|
+
/**
|
79
|
+
* Attempt to unwind the stack to the most recent C++ frame. This function is
|
80
|
+
* signal-safe and does not access any V8 state and thus doesn't require an
|
81
|
+
* Isolate.
|
82
|
+
*
|
83
|
+
* The unwinder needs to know the location of the JS Entry Stub (a piece of
|
84
|
+
* code that is run when C++ code calls into generated JS code). This is used
|
85
|
+
* for edge cases where the current frame is being constructed or torn down
|
86
|
+
* when the stack sample occurs.
|
87
|
+
*
|
88
|
+
* The unwinder also needs the virtual memory range of all possible V8 code
|
89
|
+
* objects. There are two ranges required - the heap code range and the range
|
90
|
+
* for code embedded in the binary.
|
91
|
+
*
|
92
|
+
* Available on x64, ARM64 and ARM32.
|
93
|
+
*
|
94
|
+
* \param code_pages A list of all of the ranges in which V8 has allocated
|
95
|
+
* executable code. The caller should obtain this list by calling
|
96
|
+
* Isolate::CopyCodePages() during the same interrupt/thread suspension that
|
97
|
+
* captures the stack.
|
98
|
+
* \param register_state The current registers. This is an in-out param that
|
99
|
+
* will be overwritten with the register values after unwinding, on success.
|
100
|
+
* \param stack_base The resulting stack pointer and frame pointer values are
|
101
|
+
* bounds-checked against the stack_base and the original stack pointer value
|
102
|
+
* to ensure that they are valid locations in the given stack. If these values
|
103
|
+
* or any intermediate frame pointer values used during unwinding are ever out
|
104
|
+
* of these bounds, unwinding will fail.
|
105
|
+
*
|
106
|
+
* \return True on success.
|
107
|
+
*/
|
108
|
+
static bool TryUnwindV8Frames(const JSEntryStubs& entry_stubs,
|
109
|
+
size_t code_pages_length,
|
110
|
+
const MemoryRange* code_pages,
|
111
|
+
RegisterState* register_state,
|
112
|
+
const void* stack_base);
|
113
|
+
|
114
|
+
/**
|
115
|
+
* Whether the PC is within the V8 code range represented by code_pages.
|
116
|
+
*
|
117
|
+
* If this returns false, then calling UnwindV8Frames() with the same PC
|
118
|
+
* and unwind_state will always fail. If it returns true, then unwinding may
|
119
|
+
* (but not necessarily) be successful.
|
120
|
+
*
|
121
|
+
* Available on x64, ARM64 and ARM32
|
122
|
+
*/
|
123
|
+
static bool PCIsInV8(size_t code_pages_length, const MemoryRange* code_pages,
|
124
|
+
void* pc);
|
125
|
+
};
|
126
|
+
|
127
|
+
} // namespace v8
|
128
|
+
|
129
|
+
#endif // INCLUDE_V8_UNWINDER_H_
|
data/vendor/v8/include/v8-util.h
CHANGED
@@ -5,11 +5,14 @@
|
|
5
5
|
#ifndef V8_UTIL_H_
|
6
6
|
#define V8_UTIL_H_
|
7
7
|
|
8
|
-
#include "v8.h" // NOLINT(build/include_directory)
|
9
8
|
#include <assert.h>
|
9
|
+
|
10
10
|
#include <map>
|
11
11
|
#include <vector>
|
12
12
|
|
13
|
+
#include "v8-function-callback.h" // NOLINT(build/include_directory)
|
14
|
+
#include "v8-persistent-handle.h" // NOLINT(build/include_directory)
|
15
|
+
|
13
16
|
/**
|
14
17
|
* Support for Persistent containers.
|
15
18
|
*
|
@@ -19,6 +22,9 @@
|
|
19
22
|
*/
|
20
23
|
namespace v8 {
|
21
24
|
|
25
|
+
template <typename K, typename V, typename Traits>
|
26
|
+
class GlobalValueMap;
|
27
|
+
|
22
28
|
typedef uintptr_t PersistentContainerValue;
|
23
29
|
static const uintptr_t kPersistentContainerNotFound = 0;
|
24
30
|
enum PersistentContainerCallbackType {
|
@@ -43,7 +49,7 @@ class StdMapTraits {
|
|
43
49
|
|
44
50
|
static bool Empty(Impl* impl) { return impl->empty(); }
|
45
51
|
static size_t Size(Impl* impl) { return impl->size(); }
|
46
|
-
static void Swap(Impl& a, Impl& b) { std::swap(a, b); }
|
52
|
+
static void Swap(Impl& a, Impl& b) { std::swap(a, b); }
|
47
53
|
static Iterator Begin(Impl* impl) { return impl->begin(); }
|
48
54
|
static Iterator End(Impl* impl) { return impl->end(); }
|
49
55
|
static K Key(Iterator it) { return it->first; }
|