HomeSort by relevance Sort by last modified time
    Searched defs:KindField (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/v8/src/compiler/
instruction.h 60 InstructionOperand() : value_(KindField::encode(INVALID)) {}
63 Kind kind() const { return KindField::decode(value_); }
64 int index() const { return static_cast<int>(value_) >> KindField::kSize; }
77 value_ = KindField::encode(kind);
78 value_ |= index << KindField::kSize;
87 typedef BitField<Kind, 0, 3> KindField;
188 // The superclass has a KindField.
189 STATIC_ASSERT(KindField::kSize == 3);
  /external/chromium_org/v8/src/
lithium.h 38 LOperand() : value_(KindField::encode(INVALID)) { }
40 Kind kind() const { return KindField::decode(value_); }
53 value_ = KindField::encode(kind);
64 class KindField : public BitField<Kind, 0, kKindFieldWidth> { };
160 // The superclass has a KindField.
objects.h     [all...]

Completed in 78 milliseconds