Definition at line 309 of file dfe.cc.
◆ KernelIRNode()
dart::bin::KernelIRNode::KernelIRNode |
( |
uint8_t * |
kernel_ir, |
|
|
intptr_t |
kernel_size |
|
) |
| |
|
inline |
Definition at line 311 of file dfe.cc.
312 : kernel_ir_(kernel_ir), kernel_size_(kernel_size) {}
◆ ~KernelIRNode()
dart::bin::KernelIRNode::~KernelIRNode |
( |
| ) |
|
|
inline |
◆ Add()
Definition at line 316 of file dfe.cc.
318 {
319 if (*p_head == nullptr) {
320 *p_head = node;
321 } else {
322 (*p_tail)->next_ = node;
323 }
324 *p_tail = node;
325 }
◆ Delete()
static void dart::bin::KernelIRNode::Delete |
( |
KernelIRNode * |
head | ) |
|
|
inlinestatic |
Definition at line 345 of file dfe.cc.
345 {
347 while (node != nullptr) {
349 delete (node);
351 }
352 }
static float next(float f)
KernelIRNode(uint8_t *kernel_ir, intptr_t kernel_size)
◆ Merge()
static void dart::bin::KernelIRNode::Merge |
( |
KernelIRNode * |
head, |
|
|
uint8_t ** |
p_bytes, |
|
|
intptr_t * |
p_size |
|
) |
| |
|
inlinestatic |
Definition at line 327 of file dfe.cc.
327 {
331 }
332
333 *p_bytes =
reinterpret_cast<uint8_t*
>(
malloc(
size));
334 uint8_t*
p = *p_bytes;
336 while (node != nullptr) {
337 memmove(
p, node->kernel_ir_, node->kernel_size_);
338 p += node->kernel_size_;
341 }
343 }
void * malloc(size_t size)
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
The documentation for this class was generated from the following file:
- third_party/dart-lang/sdk/runtime/bin/dfe.cc