Home | History | Annotate | Download | only in crankshaft

Lines Matching defs:Portion

5054 // Represents an access to a portion of an object, such as the map pointer,
5059 return portion() != kBackingStore && portion() != kExternalMemory;
5063 return portion() == kExternalMemory;
5067 return portion() == kStringLengths;
5071 return portion() == kMaps;
5095 return HObjectAccess(portion(), offset(), representation, name(),
5471 return value_ == that.value_; // portion and offset must match
5479 enum Portion {
5492 HObjectAccess(Portion portion, int offset,
5496 : value_(PortionField::encode(portion) |
5505 DCHECK(this->portion() == portion);
5512 class PortionField : public BitField<Portion, 0, 3> {};
5518 uint32_t value_; // encodes portion, representation, immutable, and offset
5527 inline Portion portion() const {