/external/v8/src/objects/ |
D | transitions.h | 181 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 …]
|
D | transitions-inl.h | 27 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 …]
|
D | script-inl.h | 69 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()
|
D | compilation-cache-table.cc | 32 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()
|
D | fixed-array-inl.h | 43 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()
|
D | osr-optimized-code-cache.h | 15 class V8_EXPORT OSROptimizedCodeCache : public WeakFixedArray { 69 OBJECT_CONSTRUCTORS(OSROptimizedCodeCache, WeakFixedArray);
|
D | transitions.cc | 297 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()
|
D | fixed-array.h | 267 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)
|
D | osr-optimized-code-cache-inl.h | 17 OBJECT_CONSTRUCTORS_IMPL(OSROptimizedCodeCache, WeakFixedArray)
|
D | feedback-vector.cc | 541 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()
|
D | code.tq | 5 type DependentCode extends WeakFixedArray;
|
D | script.tq | 44 shared_function_infos: WeakFixedArray|WeakArrayList;
|
D | script.h | 77 DECL_ACCESSORS(shared_function_infos, WeakFixedArray)
|
D | shared-function-info.h | 615 explicit ScriptIterator(Handle<WeakFixedArray> shared_function_infos); 625 Handle<WeakFixedArray> shared_function_infos_;
|
D | shared-function-info.cc | 135 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()
|
D | code.h | 613 class DependentCode : public WeakFixedArray { 705 OBJECT_CONSTRUCTORS(DependentCode, WeakFixedArray);
|
D | instance-type.h | 285 V(_, WeakFixedArrayMap, weak_fixed_array_map, WeakFixedArray) \
|
D | feedback-vector.h | 834 Handle<WeakFixedArray> CreateArrayOfSize(int length); 884 Handle<WeakFixedArray> polymorphic_feedback_;
|
D | map.h | 995 class NormalizedMapCache : public WeakFixedArray { 1019 OBJECT_CONSTRUCTORS(NormalizedMapCache, WeakFixedArray);
|
/external/v8/src/builtins/ |
D | ic-dynamic-map-checks.tq | 17 entry: constexpr int32, polymorphicArray: WeakFixedArray, 41 if (!Is<WeakFixedArray>(expectedPolymorphicArray)) { 46 UnsafeCast<WeakFixedArray>(expectedPolymorphicArray);
|
/external/v8/src/heap/ |
D | factory-base.h | 93 Handle<WeakFixedArray> NewWeakFixedArrayWithMap( in EXPORT_TEMPLATE_DECLARE() 98 Handle<WeakFixedArray> NewWeakFixedArray( in EXPORT_TEMPLATE_DECLARE()
|
D | memory-measurement.cc | 180 Handle<WeakFixedArray> weak_contexts = in EnqueueRequest() 185 Handle<WeakFixedArray> global_weak_contexts = in EnqueueRequest() 204 Handle<WeakFixedArray> contexts = request.contexts; in StartProcessing()
|
D | memory-measurement.h | 42 Handle<WeakFixedArray> contexts;
|
D | factory-base.cc | 132 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/ |
D | type-cache.h | 98 CreateRange(0.0, WeakFixedArray::kMaxLength);
|