Index: src/hydrogen-instructions.h |
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h |
index b9c0ca9fce3d3e67b3e3a7f6b050c7f2f3ae6376..02af875ac1b1b304346d3f4be5092f2e4857ed6a 100644 |
--- a/src/hydrogen-instructions.h |
+++ b/src/hydrogen-instructions.h |
@@ -5860,7 +5860,7 @@ class HObjectAccess V8_FINAL { |
static HObjectAccess ForMapInstanceSize() { |
return HObjectAccess(kInobject, |
Map::kInstanceSizeOffset, |
- Representation::UInteger8()); |
+ Representation::Byte()); |
} |
static HObjectAccess ForPropertyCellValue() { |
@@ -5938,8 +5938,8 @@ class HObjectAccess V8_FINAL { |
} |
class PortionField : public BitField<Portion, 0, 3> {}; |
- class RepresentationField : public BitField<Representation::Kind, 3, 4> {}; |
- class OffsetField : public BitField<int, 7, 25> {}; |
+ class RepresentationField : public BitField<Representation::Kind, 3, 3> {}; |
+ class OffsetField : public BitField<int, 6, 26> {}; |
uint32_t value_; // encodes portion, representation, and offset |
Handle<String> name_; |
@@ -5992,10 +5992,7 @@ class HLoadNamedField V8_FINAL : public HTemplateInstruction<1> { |
SetOperandAt(0, object); |
Representation representation = access.representation(); |
- if (representation.IsInteger8() || |
- representation.IsUInteger8() || |
- representation.IsInteger16() || |
- representation.IsUInteger16()) { |
+ if (representation.IsByte()) { |
set_representation(Representation::Integer32()); |
} else if (representation.IsSmi()) { |
set_type(HType::Smi()); |
@@ -6305,10 +6302,7 @@ class HStoreNamedField V8_FINAL : public HTemplateInstruction<3> { |
// object must be external in case of external memory access |
return Representation::External(); |
} else if (index == 1) { |
- if (field_representation().IsInteger8() || |
- field_representation().IsUInteger8() || |
- field_representation().IsInteger16() || |
- field_representation().IsUInteger16() || |
+ if (field_representation().IsByte() || |
field_representation().IsInteger32()) { |
return Representation::Integer32(); |
} else if (field_representation().IsDouble() || |