HomeSort by relevance Sort by last modified time
    Searched refs:instance_type (Results 1 - 25 of 42) sorted by null

1 2

  /external/v8/src/
objects-visiting.cc 43 int instance_type,
45 if (instance_type < FIRST_NONSTRING_TYPE) {
46 switch (instance_type & kStringRepresentationMask) {
48 if ((instance_type & kStringEncodingMask) == kAsciiStringTag) {
55 if (IsShortcutCandidate(instance_type)) {
72 switch (instance_type) {
objects-visiting.h 122 static VisitorId GetVisitorId(int instance_type, int instance_size);
125 return GetVisitorId(map->instance_type(), map->instance_size());
307 SeqAsciiStringSize(map->instance_type());
312 SeqTwoByteStringSize(map->instance_type());
objects-inl.h 73 HeapObject::cast(this)->map()->instance_type() == instancetype; \
188 && HeapObject::cast(this)->map()->instance_type() < FIRST_NONSTRING_TYPE;
194 && HeapObject::cast(this)->map()->instance_type() >= FIRST_SPEC_OBJECT_TYPE;
200 InstanceType type = HeapObject::cast(this)->map()->instance_type();
207 uint32_t type = HeapObject::cast(this)->map()->instance_type();
274 : type_(str->map()->instance_type()) {
281 : type_(map->instance_type()) {
302 uint32_t type = map()->instance_type();
308 uint32_t type = map()->instance_type();
314 uint32_t type = map()->instance_type();
2748 int instance_type = static_cast<int>(map->instance_type()) & ~kIsSymbolMask; local
2798 InstanceType Map::instance_type() { function in class:Map
    [all...]
objects-debug.cc 74 InstanceType instance_type = map()->instance_type(); local
76 if (instance_type < FIRST_NONSTRING_TYPE) {
81 switch (instance_type) {
297 ASSERT(FIRST_TYPE <= instance_type() && instance_type() <= LAST_TYPE);
312 ASSERT_EQ(StaticVisitorBase::GetVisitorId(instance_type(), instance_size()),
objects-printer.cc 70 InstanceType instance_type = map()->instance_type(); local
73 if (instance_type < FIRST_NONSTRING_TYPE) {
78 switch (instance_type) {
189 PrintF(out, "UNKNOWN TYPE %d", map()->instance_type());
510 PrintF(out, " - type: %s\n", TypeToString(instance_type()));
heap.cc     [all...]
spaces.cc 989 object->IterateBody(map->instance_type(), size, visitor);
    [all...]
mark-compact.cc 916 InstanceType type = map->instance_type();
    [all...]
heap-inl.h 350 InstanceType type = object->map()->instance_type();
ic.cc     [all...]
factory.cc     [all...]
heap.h 619 InstanceType instance_type,
624 MUST_USE_RESULT MaybeObject* AllocatePartialMap(InstanceType instance_type,
    [all...]
incremental-marking.cc 834 obj->IterateBody(map->instance_type(), size, &marking_visitor);
elements.cc     [all...]
objects.h 215 // All Maps have a field instance_type containing a InstanceType.
219 // instance_type is JS_OBJECT_TYPE.
222 // mirror their encoding in the instance_type field of the map. The default
462 // We use the full 8 bits of the instance_type field to encode heap object
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 102 InstanceType instance_type = JS_OBJECT_TYPE; local
105 CHECK(!heap->AllocateMap(instance_type, instance_size)->IsFailure());
107 CHECK(!heap->AllocateMap(instance_type, instance_size)->IsFailure());
  /external/llvm/bindings/python/llvm/
common.py 85 def __get__(self, instance, instance_type=None):
  /external/v8/src/ia32/
macro-assembler-ia32.h 403 // register map contains the object map and the register instance_type
404 // contains the instance_type. The registers map and instance_type can be the
406 // registers map and instance_type can be the same as heap_object.
409 Register instance_type);
    [all...]
macro-assembler-ia32.cc 552 Register instance_type) {
554 movzx_b(instance_type, FieldOperand(map, Map::kInstanceTypeOffset));
556 test(instance_type, Immediate(kIsNotStringMask));
2728 Register instance_type = ecx; local
    [all...]
  /external/v8/tools/
grokdump.py 652 INSTANCE_TYPES[self.map.instance_type])
670 self.instance_type = \
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.h 752 Register instance_type,
    [all...]
macro-assembler-x64.cc 4343 Register instance_type = rcx; local
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]
  /external/v8/include/
v8.h     [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 5217 Register instance_type = load_scratch; local
    [all...]

Completed in 3448 milliseconds

1 2