/external/v8/test/cctest/ |
H A D | test-elements-kind.cc | 75 Handle<FixedArray> empty_fixed_array(factory->empty_fixed_array()); 82 CHECK(EQUALS(object->properties(), empty_fixed_array)); 83 CHECK(EQUALS(object->elements(), empty_fixed_array)); 93 CHECK(EQUALS(object->elements(), empty_fixed_array)); 103 Handle<FixedArray> empty_fixed_array(factory->empty_fixed_array()); 113 CHECK(EQUALS(object->properties(), empty_fixed_array)); 114 CHECK(EQUALS(object->elements(), empty_fixed_array)); 125 CHECK(EQUALS(object->properties(), empty_fixed_array)); [all...] |
H A D | test-slots-buffer.cc | 34 HeapObject::RawField(heap->empty_fixed_array(), 49 HeapObject::RawField(heap->empty_fixed_array(), 52 HeapObject::RawField(heap->empty_fixed_array(), 114 Object** kRemovedEntry = HeapObject::RawField(heap->empty_fixed_array(),
|
H A D | test-array-list.cc | 22 ArrayList::cast(isolate->heap()->empty_fixed_array()));
|
H A D | test-feedback-vector.cc | 45 .is_identical_to(factory->empty_fixed_array()));
|
/external/v8/src/runtime/ |
H A D | runtime-generator.cc | 30 operand_stack = handle(isolate->heap()->empty_fixed_array()); 72 isolate->heap()->empty_fixed_array());
|
H A D | runtime-forin.cc | 136 cache_array = isolate->factory()->empty_fixed_array();
|
H A D | runtime-array.cc | 30 prototype->set_elements(isolate->heap()->empty_fixed_array());
|
H A D | runtime-literals.cc | 278 DCHECK(*elements != isolate->heap()->empty_fixed_array());
|
H A D | runtime-regexp.cc | 759 isolate->factory()->empty_fixed_array(),
|
/external/v8/src/snapshot/ |
H A D | partial-serializer.cc | 48 DCHECK(Map::cast(obj)->code_cache() == obj->GetHeap()->empty_fixed_array());
|
/external/v8/src/ |
H A D | keys.cc | 48 return isolate_->factory()->empty_fixed_array(); 123 if (store_position == 0) return isolate->factory()->empty_fixed_array(); 283 return isolate->factory()->empty_fixed_array(); 348 if (object->elements() != isolate->heap()->empty_fixed_array() || 356 return isolate->factory()->empty_fixed_array(); 619 return isolate->factory()->empty_fixed_array(); 628 return isolate->factory()->empty_fixed_array();
|
H A D | code-stubs-hydrogen.cc | 582 HConstant* empty_fixed_array = local 583 Add<HConstant>(isolate()->factory()->empty_fixed_array()); 588 empty_fixed_array); 1046 HValue* empty_fixed_array = Add<HLoadRoot>(Heap::kEmptyFixedArrayRootIndex); local 1048 empty_fixed_array); 1050 empty_fixed_array); 1475 elements, Add<HConstant>(isolate()->factory()->empty_fixed_array())); 1932 HInstruction* empty_fixed_array = local 1933 Add<HConstant>(factory->empty_fixed_array()); 1958 empty_fixed_array); [all...] |
H A D | bootstrapper.h | 23 cache_ = create_heap_objects ? isolate->heap()->empty_fixed_array() : NULL;
|
H A D | type-feedback-vector-inl.h | 94 return is_empty() ? TypeFeedbackMetadata::cast(GetHeap()->empty_fixed_array())
|
H A D | transitions.cc | 352 return heap->empty_fixed_array(); 356 return heap->empty_fixed_array();
|
H A D | type-feedback-vector.cc | 83 return Handle<TypeFeedbackMetadata>::cast(factory->empty_fixed_array()); 112 ? factory->empty_fixed_array() 238 return Handle<TypeFeedbackVector>::cast(factory->empty_fixed_array());
|
H A D | factory.cc | 1447 code->set_deoptimization_data(*empty_fixed_array(), SKIP_WRITE_BARRIER); 1450 code->set_handler_table(*empty_fixed_array(), SKIP_WRITE_BARRIER); 1652 array->set_elements(*empty_fixed_array()); 1974 bound_arguments = empty_fixed_array(); 2059 Handle<FixedArray> properties = empty_fixed_array(); 2098 message_obj->set_properties(*empty_fixed_array(), SKIP_WRITE_BARRIER); 2100 message_obj->set_elements(*empty_fixed_array(), SKIP_WRITE_BARRIER);
|
/external/v8/src/heap/ |
H A D | object-stats.cc | 143 fixed_array != heap->empty_fixed_array()) { 219 if (sfi->scope_info() != heap->empty_fixed_array()) {
|
H A D | heap.cc | 2116 map->set_code_cache(empty_fixed_array(), SKIP_WRITE_BARRIER); 2117 map->set_dependent_code(DependentCode::cast(empty_fixed_array()), 2189 map->set_code_cache(heap->empty_fixed_array()); 2190 map->set_dependent_code(DependentCode::cast(heap->empty_fixed_array())); 2439 DCHECK(!InNewSpace(empty_fixed_array())); 2516 cell->set_dependent_code(DependentCode::cast(empty_fixed_array()), 2795 set_microtask_queue(empty_fixed_array()); 2830 empty_literals_array->set(0, *factory->empty_fixed_array()); 2855 set_detached_contexts(empty_fixed_array()); 2856 set_retained_maps(ArrayList::cast(empty_fixed_array())); [all...] |
/external/v8/src/compiler/ |
H A D | js-graph.cc | 43 HeapConstant(factory()->empty_fixed_array()));
|
H A D | js-create-lowering.cc | 568 Node* empty_fixed_array = jsgraph()->EmptyFixedArrayConstant(); local 576 a.Store(AccessBuilder::ForJSObjectProperties(), empty_fixed_array); local 577 a.Store(AccessBuilder::ForJSObjectElements(), empty_fixed_array); local
|
/external/v8/test/unittests/interpreter/ |
H A D | bytecode-array-writer-unittest.cc | 138 writer()->ToBytecodeArray(0, 0, factory()->empty_fixed_array());
|
/external/v8/src/full-codegen/arm64/ |
H A D | full-codegen-arm64.cc | 2950 Register empty_fixed_array = x4; local 2955 __ LoadRoot(empty_fixed_array, Heap::kEmptyFixedArrayRootIndex); 2962 __ Stp(empty_fixed_array, empty_fixed_array, 3658 Register empty_fixed_array = x4; local 3664 __ LoadRoot(empty_fixed_array, Heap::kEmptyFixedArrayRootIndex); 3671 __ Stp(empty_fixed_array, empty_fixed_array,
|
/external/v8/src/x87/ |
H A D | codegen-x87.cc | 263 __ cmp(edi, Immediate(masm->isolate()->factory()->empty_fixed_array())); 377 __ cmp(edi, Immediate(masm->isolate()->factory()->empty_fixed_array()));
|
/external/v8/src/crankshaft/ |
H A D | hydrogen.cc | 1664 HInstruction* empty_fixed_array = Add<HConstant>( local 1665 isolate()->factory()->empty_fixed_array()); 1669 if_builder.IfNot<HCompareObjectEqAndBranch>(elements, empty_fixed_array); 2056 HValue* empty_fixed_array = Add<HLoadRoot>(Heap::kEmptyFixedArrayRootIndex); local 2058 empty_fixed_array); 2060 empty_fixed_array); 2098 HConstant* empty_fixed_array = local 2099 Add<HConstant>(isolate()->factory()->empty_fixed_array()); 2102 empty_fixed_array); 2105 empty_fixed_array); 2365 HValue* empty_fixed_array = Add<HLoadRoot>(Heap::kEmptyFixedArrayRootIndex); local 3018 HConstant* empty_fixed_array = local 10241 HValue* empty_fixed_array = Add<HConstant>(factory->empty_fixed_array()); local 10327 HConstant* empty_fixed_array = local 12058 HConstant* empty_fixed_array = Add<HConstant>( local [all...] |