Go to the source code of this file.
◆ COMPARE_AND_RETURN_NAME [1/2]
#define COMPARE_AND_RETURN_NAME |
( |
| name | ) |
|
Value:
*object_sub_type = ""; \
return true;
◆ COMPARE_AND_RETURN_NAME [2/2]
#define COMPARE_AND_RETURN_NAME |
( |
| name | ) |
|
Value: case ObjectStats::FIRST_VIRTUAL_TYPE + \
static_cast<int>(ObjectStats::VirtualInstanceType::name): \
*object_type = #name; \
*object_sub_type = ""; \
return true;
◆ DEF_RIGHT_TRIM
#define DEF_RIGHT_TRIM |
( |
| T | ) |
|
Value:
Heap::RightTrimArray<T>(Tagged<T> object, int new_capacity, \
int old_capacity);
#define EXPORT_TEMPLATE_DEFINE(export)
#define V8_EXPORT_PRIVATE
Definition at line 3508 of file heap.cc.
◆ DICT
◆ LIST
◆ MEMBER
◆ QUOTE
◆ UPDATE_COUNTERS_AND_FRAGMENTATION_FOR_SPACE
#define UPDATE_COUNTERS_AND_FRAGMENTATION_FOR_SPACE |
( |
| space | ) |
|
Value:
UPDATE_FRAGMENTATION_FOR_SPACE(space)
#define UPDATE_COUNTERS_FOR_SPACE(space)
◆ UPDATE_COUNTERS_FOR_SPACE
#define UPDATE_COUNTERS_FOR_SPACE |
( |
| space | ) |
|
Value: isolate_->counters()->space##_bytes_available()->Set( \
static_cast<int>(
space()->Available())); \
isolate_->counters()->space##_bytes_committed()->Set( \
static_cast<int>(
space()->CommittedMemory())); \
isolate_->counters()->space##_bytes_used()->Set( \
static_cast<int>(
space()->SizeOfObjects()));
too high values may cause the compiler to set high thresholds for inlining to as much as possible avoid inlined allocation of objects that cannot escape trace load stores from virtual maglev objects use TurboFan fast string builder analyze liveness of environment slots and zap dead values trace TurboFan load elimination emit data about basic block usage in builtins to this enable builtin reordering when run mksnapshot flag for emit warnings when applying builtin profile data verify register allocation in TurboFan randomly schedule instructions to stress dependency tracking enable store store elimination in TurboFan rewrite far to near simulate GC compiler thread race related to allow float parameters to be passed in simulator mode JS Wasm Run additional turbo_optimize_inlined_js_wasm_wrappers enable experimental feedback collection in generic lowering enable Turboshaft s WasmLoadElimination enable Turboshaft s low level load elimination for JS enable Turboshaft s escape analysis for string concatenation use enable Turbolev features that we want to ship in the not too far future trace individual Turboshaft reduction steps trace intermediate Turboshaft reduction steps invocation count threshold for early optimization Enables optimizations which favor memory size over execution speed Enables sampling allocation profiler with X as a sample interval min size of a semi the new space consists of two semi spaces max size of the Collect garbage after Collect garbage after keeps maps alive for< n > old space garbage collections print one detailed trace line in allocation gc speed threshold for starting incremental marking via a task in percent of available space
◆ UPDATE_FRAGMENTATION_FOR_SPACE
#define UPDATE_FRAGMENTATION_FOR_SPACE |
( |
| space | ) |
|
Value: if (
space()->CommittedMemory() > 0) { \
isolate_->counters()->external_fragmentation_##
space()->AddSample( \
static_cast<int>(100 - (
space()->SizeOfObjects() * 100.0) / \
space()->CommittedMemory())); \
}