Searched defs:instance_type (Results 51 - 53 of 53) sorted by relevance

123

/external/v8/src/heap/
H A Dheap.cc2087 AllocationResult Heap::AllocatePartialMap(InstanceType instance_type, argument
2096 reinterpret_cast<Map*>(result)->set_instance_type(instance_type);
2100 StaticVisitorBase::GetVisitorId(instance_type, instance_size, false));
2120 AllocationResult Heap::AllocateMap(InstanceType instance_type, argument
2130 map->set_instance_type(instance_type);
2146 // Must be called only after |instance_type|, |instance_size| and
2234 #define ALLOCATE_PARTIAL_MAP(instance_type, size, field_name) \
2237 if (!AllocatePartialMap((instance_type), (size)).To(&map)) return false; \
2298 #define ALLOCATE_MAP(instance_type, size, field_name) \
2301 if (!AllocateMap((instance_type), siz
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen.cc1689 HValue* instance_type = local
1692 Token::BIT_AND, instance_type,
2044 InstanceType instance_type,
2055 size, type, allocation_mode.GetPretenureMode(), instance_type,
2604 InstanceType instance_type = IsFastDoubleElementsKind(kind) local
2609 instance_type, graph()->GetConstant0());
5370 if (map->instance_type() == HEAP_NUMBER_TYPE) return true;
5371 if (map->instance_type() < FIRST_NONSTRING_TYPE) return true;
6011 InstanceType instance_type = map_->instance_type(); local
2041 BuildAllocate( HValue* object_size, HType type, InstanceType instance_type, HAllocationMode allocation_mode) argument
11584 InstanceType instance_type = initial_map->instance_type(); local
11644 InstanceType instance_type = boilerplate_object->HasFastDoubleElements() local
12119 HValue* instance_type = local
[all...]
/external/v8/src/
H A Dobjects.cc80 std::ostream& operator<<(std::ostream& os, InstanceType instance_type) { argument
81 switch (instance_type) {
1269 constructor->initial_map()->instance_type() != JS_FUNCTION_TYPE);
2669 switch (map()->instance_type()) {
2931 switch (map()->instance_type()) {
3056 os << "<Other heap object (" << map()->instance_type() << ")>";
3067 IterateBodyFast<ObjectVisitor>(m->instance_type(), SizeFromMap(m), v);
3087 return BodyDescriptorApply<CallIsValidSlot, bool>(map()->instance_type(),
3228 if (map->instance_type() == JS_CONTEXT_EXTENSION_OBJECT_TYPE) {
8491 isolate->factory()->NewMap(map->instance_type(), instance_siz
12562 CanSubclassHaveInobjectProperties(InstanceType instance_type) argument
12643 InstanceType instance_type; local
12703 InstanceType instance_type = constructor_initial_map->instance_type(); local
13368 CalculateInstanceSizeHelper(InstanceType instance_type, int requested_internal_fields, int requested_in_object_properties, int* instance_size, int* in_object_properties) argument
13386 CalculateInstanceSize(InstanceType instance_type, int requested_internal_fields, int* instance_size, int* in_object_properties) argument
13396 CalculateInstanceSizeForDerivedClass( InstanceType instance_type, int requested_internal_fields, int* instance_size, int* in_object_properties) argument
15787 auto instance_type = map()->instance_type(); local
[all...]

Completed in 249 milliseconds

123