HomeSort by relevance Sort by last modified time
    Searched refs:TypeField (Results 1 - 12 of 12) sorted by null

  /external/v8/src/
frame-element.h 77 value_ = TypeField::encode(INVALID)
214 value_ = TypeField::encode(type)
223 value_ = TypeField::encode(CONSTANT)
231 Type type() const { return TypeField::decode(value_); }
233 value_ = value_ & ~TypeField::mask();
234 value_ = value_ | TypeField::encode(type);
252 class TypeField: public BitField<Type, 0, 3> {};
register-allocator.h 72 value_ = TypeField::encode(CONSTANT)
100 Type type() const { return TypeField::decode(value_); }
102 void invalidate() { value_ = TypeField::encode(INVALID); }
142 class TypeField: public BitField<Type, 0, 2> {};
register-allocator.cc 43 value_ = TypeField::encode(REGISTER)
objects.h 135 ASSERT(TypeField::is_valid(type));
139 value_ = TypeField::encode(type)
152 PropertyType type() { return TypeField::decode(value_); }
179 class TypeField: public BitField<PropertyType, 0, 3> {};
    [all...]
  /external/v8/src/arm/
constants-arm.h 196 // int type = instr->TypeField();
235 inline int TypeField() const { return Bits(27, 25); }
disasm-arm.cc 468 if (instr->TypeField() == 0) {
471 ASSERT(instr->TypeField() == 1);
575 int type = instr->TypeField();
932 ASSERT((instr->TypeField() == 7) && (instr->Bit(24) == 0x0) );
1025 ASSERT((instr->TypeField() == 6));
1074 switch (instr->TypeField()) {
    [all...]
simulator-arm.cc     [all...]
ic-arm.cc 140 __ tst(r3, Operand(PropertyDetails::TypeField::mask() << kSmiTagSize));
  /external/v8/src/ia32/
assembler-ia32.h 327 Type type() const { return TypeField::decode(data_); }
346 class TypeField: public BitField<Type, 0, 2> {};
ic-ia32.cc 146 Immediate(PropertyDetails::TypeField::mask() << kSmiTagSize));
    [all...]
assembler-ia32.cc 150 data_ = NextField::encode(next) | TypeField::encode(type);
    [all...]
  /external/v8/src/x64/
ic-x64.cc 144 Smi::FromInt(PropertyDetails::TypeField::mask()));
    [all...]

Completed in 151 milliseconds