Home
last modified time | relevance | path

Searched refs:WeakFixedArray (Results 1 – 25 of 50) sorted by relevance

12

/external/v8/src/objects/
Dtransitions.h181 void SetPrototypeTransitions(Handle<WeakFixedArray> proto_transitions);
182 WeakFixedArray GetPrototypeTransitions();
212 class TransitionArray : public WeakFixedArray {
216 inline WeakFixedArray GetPrototypeTransitions();
290 inline void SetPrototypeTransitions(WeakFixedArray prototype_transitions);
293 WeakFixedArray proto_transitions);
294 static void SetNumberOfPrototypeTransitions(WeakFixedArray proto_transitions,
326 WeakFixedArray array);
328 static Handle<WeakFixedArray> GrowPrototypeTransitionArray(
329 Handle<WeakFixedArray> array, int new_capacity, Isolate* isolate);
[all …]
Dtransitions-inl.h27 OBJECT_CONSTRUCTORS_IMPL(TransitionArray, WeakFixedArray) in OBJECT_CONSTRUCTORS_IMPL() argument
35 WeakFixedArray TransitionArray::GetPrototypeTransitions() { in GetPrototypeTransitions()
39 return WeakFixedArray::cast(prototype_transitions); in GetPrototypeTransitions()
47 void TransitionArray::SetPrototypeTransitions(WeakFixedArray transitions) { in SetPrototypeTransitions()
49 WeakFixedArray::Set(kPrototypeTransitionsIndex, in SetPrototypeTransitions()
54 WeakFixedArray proto_transitions) { in NumberOfPrototypeTransitions()
90 WeakFixedArray::Set(ToKeyIndex(transition_number), in SetKey()
153 WeakFixedArray::Set(ToTargetIndex(transition_number), value); in SetRawTarget()
289 WeakFixedArray::Set(ToKeyIndex(transition_number), in Set()
291 WeakFixedArray::Set(ToTargetIndex(transition_number), target); in Set()
[all …]
Dscript-inl.h69 DEF_GETTER(Script, shared_function_infos, WeakFixedArray) { in DEF_GETTER() argument
72 : TaggedField<WeakFixedArray, kSharedFunctionInfosOffset>::load( in DEF_GETTER()
76 void Script::set_shared_function_infos(WeakFixedArray value, in set_shared_function_infos()
79 TaggedField<WeakFixedArray, kSharedFunctionInfosOffset>::store(*this, value); in set_shared_function_infos()
Dcompilation-cache-table.cc32 WeakFixedArray literals_map = WeakFixedArray::cast(obj); in SearchLiteralsMapEntry()
51 Handle<WeakFixedArray> new_literals_map; in AddToFeedbackCellsMap()
59 if (!obj.IsWeakFixedArray() || WeakFixedArray::cast(obj).length() == 0) { in AddToFeedbackCellsMap()
64 Handle<WeakFixedArray> old_literals_map(WeakFixedArray::cast(obj), isolate); in AddToFeedbackCellsMap()
119 WeakFixedArray literals_map = WeakFixedArray::cast(cache.get(cache_entry)); in SearchLiteralsMap()
Dfixed-array-inl.h43 TQ_OBJECT_CONSTRUCTORS_IMPL(WeakFixedArray) in TQ_OBJECT_CONSTRUCTORS_IMPL() argument
50 SYNCHRONIZED_SMI_ACCESSORS(WeakFixedArray, length, kLengthOffset) in TQ_OBJECT_CONSTRUCTORS_IMPL()
218 inline int WeakFixedArray::AllocatedSize() { in AllocatedSize()
408 MaybeObject WeakFixedArray::Get(int index) const { in Get()
413 MaybeObject WeakFixedArray::Get(IsolateRoot isolate, int index) const { in Get()
418 void WeakFixedArray::Set(int index, MaybeObject value, WriteBarrierMode mode) { in Set()
422 MaybeObjectSlot WeakFixedArray::data_start() { in data_start()
426 MaybeObjectSlot WeakFixedArray::RawFieldOfElementAt(int index) { in RawFieldOfElementAt()
430 void WeakFixedArray::CopyElements(Isolate* isolate, int dst_index, in CopyElements()
431 WeakFixedArray src, int src_index, int len, in CopyElements()
Dosr-optimized-code-cache.h15 class V8_EXPORT OSROptimizedCodeCache : public WeakFixedArray {
69 OBJECT_CONSTRUCTORS(OSROptimizedCodeCache, WeakFixedArray);
Dtransitions.cc297 WeakFixedArray array) { in CompactPrototypeTransitionArray()
329 Handle<WeakFixedArray> TransitionArray::GrowPrototypeTransitionArray( in GrowPrototypeTransitionArray()
330 Handle<WeakFixedArray> array, int new_capacity, Isolate* isolate) { in GrowPrototypeTransitionArray()
355 Handle<WeakFixedArray> cache(GetPrototypeTransitions(), isolate_); in PutPrototypeTransition()
381 WeakFixedArray cache = GetPrototypeTransitions(); in GetPrototypeTransition()
398 WeakFixedArray TransitionsAccessor::GetPrototypeTransitions() { in GetPrototypeTransitions()
408 WeakFixedArray proto_transitions, int value) { in SetNumberOfPrototypeTransitions()
459 Handle<WeakFixedArray> proto_transitions) { in SetPrototypeTransitions()
501 WeakFixedArray proto_trans = transitions().GetPrototypeTransitions(); in TraverseTransitionTreeInternal()
Dfixed-array.h267 class WeakFixedArray
268 : public TorqueGeneratedWeakFixedArray<WeakFixedArray, HeapObject> {
285 inline void CopyElements(Isolate* isolate, int dst_index, WeakFixedArray src,
288 DECL_PRINTER(WeakFixedArray)
289 DECL_VERIFIER(WeakFixedArray)
310 TQ_OBJECT_CONSTRUCTORS(WeakFixedArray)
Dosr-optimized-code-cache-inl.h17 OBJECT_CONSTRUCTORS_IMPL(OSROptimizedCodeCache, WeakFixedArray)
Dfeedback-vector.cc541 Handle<WeakFixedArray> FeedbackNexus::CreateArrayOfSize(int length) { in CreateArrayOfSize()
543 Handle<WeakFixedArray> array = in CreateArrayOfSize()
727 WeakFixedArray extra_array = WeakFixedArray::cast(extra_object); in ic_state()
888 Handle<WeakFixedArray> array = in ConfigureCloneObject()
901 Handle<WeakFixedArray> array = Handle<WeakFixedArray>::cast(feedback); in ConfigureCloneObject()
923 Handle<WeakFixedArray> new_array = CreateArrayOfSize( in ConfigureCloneObject()
997 Handle<WeakFixedArray> array = CreateArrayOfSize(2); in ConfigureMonomorphic()
1009 Handle<WeakFixedArray> array = CreateArrayOfSize(receiver_count * 2); in ConfigurePolymorphic()
1456 WeakFixedArray::cast(pair.second->GetHeapObjectAssumeStrong())); in FeedbackIterator()
1459 nexus->config()->NewHandle(WeakFixedArray::cast(heap_object)); in FeedbackIterator()
Dcode.tq5 type DependentCode extends WeakFixedArray;
Dscript.tq44 shared_function_infos: WeakFixedArray|WeakArrayList;
Dscript.h77 DECL_ACCESSORS(shared_function_infos, WeakFixedArray)
Dshared-function-info.h615 explicit ScriptIterator(Handle<WeakFixedArray> shared_function_infos);
625 Handle<WeakFixedArray> shared_function_infos_;
Dshared-function-info.cc135 Handle<WeakFixedArray> shared_function_infos) in ScriptIterator()
175 WeakFixedArray list = script.shared_function_infos(); in SetScript()
193 WeakFixedArray infos = old_script.shared_function_infos(); in SetScript()
Dcode.h613 class DependentCode : public WeakFixedArray {
705 OBJECT_CONSTRUCTORS(DependentCode, WeakFixedArray);
Dinstance-type.h285 V(_, WeakFixedArrayMap, weak_fixed_array_map, WeakFixedArray) \
Dfeedback-vector.h834 Handle<WeakFixedArray> CreateArrayOfSize(int length);
884 Handle<WeakFixedArray> polymorphic_feedback_;
Dmap.h995 class NormalizedMapCache : public WeakFixedArray {
1019 OBJECT_CONSTRUCTORS(NormalizedMapCache, WeakFixedArray);
/external/v8/src/builtins/
Dic-dynamic-map-checks.tq17 entry: constexpr int32, polymorphicArray: WeakFixedArray,
41 if (!Is<WeakFixedArray>(expectedPolymorphicArray)) {
46 UnsafeCast<WeakFixedArray>(expectedPolymorphicArray);
/external/v8/src/heap/
Dfactory-base.h93 Handle<WeakFixedArray> NewWeakFixedArrayWithMap( in EXPORT_TEMPLATE_DECLARE()
98 Handle<WeakFixedArray> NewWeakFixedArray( in EXPORT_TEMPLATE_DECLARE()
Dmemory-measurement.cc180 Handle<WeakFixedArray> weak_contexts = in EnqueueRequest()
185 Handle<WeakFixedArray> global_weak_contexts = in EnqueueRequest()
204 Handle<WeakFixedArray> contexts = request.contexts; in StartProcessing()
Dmemory-measurement.h42 Handle<WeakFixedArray> contexts;
Dfactory-base.cc132 Handle<WeakFixedArray> FactoryBase<Impl>::NewWeakFixedArrayWithMap( in NewWeakFixedArrayWithMap()
139 AllocateRawArray(WeakFixedArray::SizeFor(length), allocation); in NewWeakFixedArrayWithMap()
142 Handle<WeakFixedArray> array = in NewWeakFixedArrayWithMap()
143 handle(WeakFixedArray::cast(result), isolate()); in NewWeakFixedArrayWithMap()
152 Handle<WeakFixedArray> FactoryBase<Impl>::NewWeakFixedArray( in NewWeakFixedArray()
/external/v8/src/compiler/
Dtype-cache.h98 CreateRange(0.0, WeakFixedArray::kMaxLength);

12