38 static MaybeObject* AllocateRaw(Isolate* isolate,
int length) {
41 MaybeObject* maybe_array = isolate->heap()->AllocateFixedArray(length);
42 if (!maybe_array->To(&array))
return maybe_array;
48 int number_of_transitions) {
50 MaybeObject* maybe_array =
51 AllocateRaw(isolate, ToKeyIndex(number_of_transitions));
52 if (!maybe_array->To(&array))
return maybe_array;
59 int origin_transition,
60 int target_transition) {
61 NoIncrementalWriteBarrierSet(target_transition,
62 origin->
GetKey(origin_transition),
67 static bool InsertionPointFound(
Name* key1,
Name* key2) {
77 MaybeObject* maybe_result;
81 if (!maybe_result->To(&result))
return maybe_result;
85 if (!maybe_result->To(&result))
return maybe_result;
86 result->NoIncrementalWriteBarrierSet(0, key, target);
98 if (!maybe_result->To(&result))
return maybe_result;
115 int insertion_index = this->
Search(name);
116 if (insertion_index ==
kNotFound) ++new_size;
118 MaybeObject* maybe_array;
120 if (!maybe_array->To(&result))
return maybe_array;
128 if (i != insertion_index) {
132 result->NoIncrementalWriteBarrierSet(insertion_index, name, target);
139 if (InsertionPointFound(
GetKey(insertion_index), name))
break;
141 this, insertion_index, insertion_index);
144 result->NoIncrementalWriteBarrierSet(insertion_index, name, target);
148 this, insertion_index, insertion_index + 1);
void set(int index, Object *value)
static Smi * FromInt(int value)
static const int kPrototypeTransitionsIndex
bool IsFullTransitionArray()
#define ASSERT(condition)
void NoIncrementalWriteBarrierCopyFrom(TransitionArray *origin, int origin_transition, int target_transition)
static const int kSimpleTransitionTarget
Name * GetKey(int transition_number)
static MUST_USE_RESULT MaybeObject * NewWith(SimpleTransitionFlag flag, Name *key, Map *target, Object *back_pointer)
kInstanceClassNameOffset flag
static const int kNotFound
bool HasPrototypeTransitions()
int number_of_transitions()
void SetPrototypeTransitions(FixedArray *prototype_transitions, WriteBarrierMode mode=UPDATE_WRITE_BARRIER)
static const int kSimpleTransitionIndex
static MUST_USE_RESULT MaybeObject * Allocate(Isolate *isolate, int number_of_transitions)
static const int kSimpleTransitionSize
Map * GetTarget(int transition_number)
void set_back_pointer_storage(Object *back_pointer, WriteBarrierMode mode=UPDATE_WRITE_BARRIER)
MUST_USE_RESULT MaybeObject * CopyInsert(Name *name, Map *target)
FixedArray * GetPrototypeTransitions()
Object * back_pointer_storage()
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object Array DOM strings and string pretenure call new trace pretenuring decisions of HAllocate instructions track fields with only smi values track fields with heap values track_fields track_fields Enables optimizations which favor memory size over execution speed use string slices optimization filter maximum number of GVN fix point iterations use function inlining use allocation folding eliminate write barriers targeting allocations in optimized code maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining crankshaft harvests type feedback from stub cache trace check elimination phase hydrogen tracing filter trace hydrogen to given file name trace inlining decisions trace store elimination trace all use positions trace global value numbering trace hydrogen escape analysis trace the tracking of allocation sites trace map generalization environment for every instruction deoptimize every n garbage collections put a break point before deoptimizing deoptimize uncommon cases use on stack replacement trace array bounds check elimination perform array index dehoisting use load elimination use store elimination use constant folding eliminate unreachable code number of stress runs when picking a function to watch for shared function not JSFunction itself flushes the cache of optimized code for closures on every GC functions with arguments object maximum number of escape analysis fix point iterations allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms concurrent on stack replacement do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes number of stack frames inspected by the profiler percentage of ICs that must have type info to allow optimization extra verbose compilation tracing generate extra emit comments in code disassembly enable use of SSE3 instructions if available enable use of CMOV instruction if available enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long expose natives in global object expose freeBuffer extension expose gc extension under the specified name expose externalize string extension number of stack frames to capture disable builtin natives files print name of functions for which code is generated use random jit cookie to mask large constants trace lazy optimization use adaptive optimizations always try to OSR functions trace optimize function deoptimization minimum length for automatic enable preparsing maximum number of optimization attempts before giving up cache prototype transitions trace debugging JSON request response trace out of bounds accesses to external arrays trace_js_array_abuse automatically set the debug break flag when debugger commands are in the queue abort by crashing maximum length of function source code printed in a stack trace max size of the new max size of the old max size of executable always perform global GCs print one trace line following each garbage collection do not print trace line after scavenger collection print statistics of the maximum memory committed for the heap in name
MUST_USE_RESULT MaybeObject * ExtendToFullTransitionArray()