Home
last modified time | relevance | path

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

123

/third_party/node/deps/v8/src/objects/
Dtransitions.h203 Handle<WeakFixedArray> proto_transitions);
204 static WeakFixedArray GetPrototypeTransitions(Isolate* isolate,
241 class TransitionArray : public WeakFixedArray {
245 inline WeakFixedArray GetPrototypeTransitions();
320 inline void SetPrototypeTransitions(WeakFixedArray prototype_transitions);
323 WeakFixedArray proto_transitions);
324 static void SetNumberOfPrototypeTransitions(WeakFixedArray proto_transitions,
362 WeakFixedArray array);
364 static Handle<WeakFixedArray> GrowPrototypeTransitionArray(
365 Handle<WeakFixedArray> array, int new_capacity, Isolate* isolate);
[all …]
Dtransitions-inl.h39 OBJECT_CONSTRUCTORS_IMPL(TransitionArray, WeakFixedArray) in OBJECT_CONSTRUCTORS_IMPL() argument
47 WeakFixedArray TransitionArray::GetPrototypeTransitions() { in GetPrototypeTransitions()
51 return WeakFixedArray::cast(prototype_transitions); in GetPrototypeTransitions()
59 void TransitionArray::SetPrototypeTransitions(WeakFixedArray transitions) { in SetPrototypeTransitions()
61 WeakFixedArray::Set(kPrototypeTransitionsIndex, in SetPrototypeTransitions()
66 WeakFixedArray proto_transitions) { in NumberOfPrototypeTransitions()
102 WeakFixedArray::Set(ToKeyIndex(transition_number), in SetKey()
165 WeakFixedArray::Set(ToTargetIndex(transition_number), value); in SetRawTarget()
317 WeakFixedArray::Set(ToKeyIndex(transition_number), in Set()
319 WeakFixedArray::Set(ToTargetIndex(transition_number), target); in Set()
[all …]
Dosr-optimized-code-cache.h40 class V8_EXPORT OSROptimizedCodeCache : public WeakFixedArray {
89 using WeakFixedArray::Get;
90 using WeakFixedArray::Set;
110 OBJECT_CONSTRUCTORS(OSROptimizedCodeCache, WeakFixedArray);
Dfixed-array-inl.h40 TQ_OBJECT_CONSTRUCTORS_IMPL(WeakFixedArray) in TQ_OBJECT_CONSTRUCTORS_IMPL() argument
47 RELEASE_ACQUIRE_SMI_ACCESSORS(WeakFixedArray, length, kLengthOffset) in TQ_OBJECT_CONSTRUCTORS_IMPL()
244 inline int WeakFixedArray::AllocatedSize() { in AllocatedSize()
434 MaybeObject WeakFixedArray::Get(int index) const { in Get()
439 MaybeObject WeakFixedArray::Get(PtrComprCageBase cage_base, int index) const { in Get()
444 void WeakFixedArray::Set(int index, MaybeObject value, WriteBarrierMode mode) { in Set()
448 Handle<WeakFixedArray> WeakFixedArray::EnsureSpace(Isolate* isolate, in EnsureSpace()
449 Handle<WeakFixedArray> array, in EnsureSpace()
458 MaybeObjectSlot WeakFixedArray::data_start() { in data_start()
462 MaybeObjectSlot WeakFixedArray::RawFieldOfElementAt(int index) { in RawFieldOfElementAt()
[all …]
Dcompilation-cache-table.cc33 WeakFixedArray literals_map = WeakFixedArray::cast(obj); in SearchLiteralsMapEntry()
52 Handle<WeakFixedArray> new_literals_map; in AddToFeedbackCellsMap()
60 if (!obj.IsWeakFixedArray() || WeakFixedArray::cast(obj).length() == 0) { in AddToFeedbackCellsMap()
65 Handle<WeakFixedArray> old_literals_map(WeakFixedArray::cast(obj), isolate); in AddToFeedbackCellsMap()
120 WeakFixedArray literals_map = WeakFixedArray::cast(cache.get(cache_entry)); in SearchLiteralsMap()
Dscript-inl.h95 DEF_GETTER(Script, shared_function_infos, WeakFixedArray) { in DEF_GETTER() argument
101 return TaggedField<WeakFixedArray, kSharedFunctionInfosOffset>::load(*this); in DEF_GETTER()
104 void Script::set_shared_function_infos(WeakFixedArray value, in set_shared_function_infos()
109 TaggedField<WeakFixedArray, kSharedFunctionInfosOffset>::store(*this, value); in set_shared_function_infos()
Dfixed-array.h291 class WeakFixedArray
292 : public TorqueGeneratedWeakFixedArray<WeakFixedArray, HeapObject> {
301 static inline Handle<WeakFixedArray> EnsureSpace(Isolate* isolate,
302 Handle<WeakFixedArray> array,
315 inline void CopyElements(Isolate* isolate, int dst_index, WeakFixedArray src,
318 DECL_PRINTER(WeakFixedArray)
319 DECL_VERIFIER(WeakFixedArray)
340 TQ_OBJECT_CONSTRUCTORS(WeakFixedArray)
Dtransitions.cc335 WeakFixedArray array) { in CompactPrototypeTransitionArray()
367 Handle<WeakFixedArray> TransitionArray::GrowPrototypeTransitionArray( in GrowPrototypeTransitionArray()
368 Handle<WeakFixedArray> array, int new_capacity, Isolate* isolate) { in GrowPrototypeTransitionArray()
396 Handle<WeakFixedArray> cache(GetPrototypeTransitions(isolate, map), isolate); in PutPrototypeTransition()
425 WeakFixedArray cache = GetPrototypeTransitions(isolate, map); in GetPrototypeTransition()
443 WeakFixedArray TransitionsAccessor::GetPrototypeTransitions(Isolate* isolate, in GetPrototypeTransitions()
459 WeakFixedArray proto_transitions, int value) { in SetNumberOfPrototypeTransitions()
522 Handle<WeakFixedArray> proto_transitions) { in SetPrototypeTransitions()
586 WeakFixedArray proto_trans = transitions.GetPrototypeTransitions(); in TraverseTransitionTreeInternal()
Dfeedback-vector.cc540 Handle<WeakFixedArray> FeedbackNexus::CreateArrayOfSize(int length) { in CreateArrayOfSize()
542 Handle<WeakFixedArray> array = in CreateArrayOfSize()
740 WeakFixedArray extra_array = WeakFixedArray::cast(extra_object); in ic_state()
902 Handle<WeakFixedArray> array = in ConfigureCloneObject()
915 Handle<WeakFixedArray> array = Handle<WeakFixedArray>::cast(feedback); in ConfigureCloneObject()
937 Handle<WeakFixedArray> new_array = CreateArrayOfSize( in ConfigureCloneObject()
1020 Handle<WeakFixedArray> array = CreateArrayOfSize(2); in ConfigureMonomorphic()
1032 Handle<WeakFixedArray> array = CreateArrayOfSize(receiver_count * 2); in ConfigurePolymorphic()
1448 WeakFixedArray::cast(pair.second->GetHeapObjectAssumeStrong())); in FeedbackIterator()
1451 nexus->config()->NewHandle(WeakFixedArray::cast(heap_object)); in FeedbackIterator()
Dosr-optimized-code-cache-inl.h17 OBJECT_CONSTRUCTORS_IMPL(OSROptimizedCodeCache, WeakFixedArray)
Dosr-optimized-code-cache.cc295 return WeakFixedArray::Get(index); in RawGetForTesting()
299 WeakFixedArray::Set(index, value); in RawSetForTesting()
Dcode.tq5 type DependentCode extends WeakFixedArray;
Dshared-function-info.cc157 Handle<WeakFixedArray> shared_function_infos) in ScriptIterator()
197 WeakFixedArray list = script.shared_function_infos(); in SetScript()
215 WeakFixedArray infos = old_script.shared_function_infos(); in SetScript()
Dscript.h94 DECL_ACCESSORS(shared_function_infos, WeakFixedArray)
Dshared-function-info.h650 explicit ScriptIterator(Handle<WeakFixedArray> shared_function_infos);
660 Handle<WeakFixedArray> shared_function_infos_;
Dscript.tq49 shared_function_infos: WeakFixedArray|WeakArrayList;
/third_party/node/deps/v8/src/baseline/
Dbaseline-batch-compiler.cc95 BaselineBatchCompilerJob(Isolate* isolate, Handle<WeakFixedArray> task_queue, in BaselineBatchCompilerJob()
202 void CompileBatch(Handle<WeakFixedArray> task_queue, int batch_size) { in CompileBatch()
227 compilation_queue_(Handle<WeakFixedArray>::null()), in BaselineBatchCompiler()
240 compilation_queue_ = Handle<WeakFixedArray>::null(); in ~BaselineBatchCompiler()
315 Handle<WeakFixedArray> new_queue = in EnsureQueueCapacity()
377 compilation_queue_(Handle<WeakFixedArray>::null()), in BaselineBatchCompiler()
385 compilation_queue_ = Handle<WeakFixedArray>::null(); in ~BaselineBatchCompiler()
Dbaseline-batch-compiler.h60 Handle<WeakFixedArray> compilation_queue_;
/third_party/node/deps/v8/src/heap/
Dmemory-measurement.cc179 Handle<WeakFixedArray> weak_contexts = in EnqueueRequest()
184 Handle<WeakFixedArray> global_weak_contexts = in EnqueueRequest()
203 Handle<WeakFixedArray> contexts = request.contexts; in StartProcessing()
Dfactory-base.h127 Handle<WeakFixedArray> NewWeakFixedArrayWithMap( in EXPORT_TEMPLATE_DECLARE()
133 Handle<WeakFixedArray> NewWeakFixedArray( in EXPORT_TEMPLATE_DECLARE()
Dmemory-measurement.h43 Handle<WeakFixedArray> contexts;
Dfactory-base.cc183 Handle<WeakFixedArray> FactoryBase<Impl>::NewWeakFixedArrayWithMap( in NewWeakFixedArrayWithMap()
190 AllocateRawArray(WeakFixedArray::SizeFor(length), allocation); in NewWeakFixedArrayWithMap()
193 WeakFixedArray array = WeakFixedArray::cast(result); in NewWeakFixedArrayWithMap()
202 Handle<WeakFixedArray> FactoryBase<Impl>::NewWeakFixedArray( in NewWeakFixedArray()
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.h380 Handle<WeakFixedArray> shared_function_infos_handle_;
381 WeakFixedArray shared_function_infos_;
/third_party/node/deps/v8/src/compiler/
Dtype-cache.h99 CreateRange(0.0, WeakFixedArray::kMaxLength);
Daccess-builder.cc553 WeakFixedArray::kLengthOffset, in ForWeakFixedArrayLength()
898 int offset = WeakFixedArray::OffsetOfElementAt(index); in ForWeakFixedArraySlot()
956 ElementAccess const access = {kTaggedBase, WeakFixedArray::kHeaderSize, in ForWeakFixedArrayElement()

123