Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 3ddad068bfdfc0454442a87e3fd964269d5e6298..47d24f106f63b8861059696c5c4a4435f24f56aa 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -6048,10 +6048,12 @@ void LCodeGen::DoAllocate(LAllocate* instr) { |
if (instr->hydrogen()->MustAllocateDoubleAligned()) { |
flags = static_cast<AllocationFlags>(flags | DOUBLE_ALIGNMENT); |
} |
- if (instr->hydrogen()->CanAllocateInOldPointerSpace()) { |
- ASSERT(!instr->hydrogen()->CanAllocateInOldDataSpace()); |
+ if (instr->hydrogen()->IsOldPointerSpaceAllocation()) { |
+ ASSERT(!instr->hydrogen()->IsOldDataSpaceAllocation()); |
+ ASSERT(!instr->hydrogen()->IsNewSpaceAllocation()); |
flags = static_cast<AllocationFlags>(flags | PRETENURE_OLD_POINTER_SPACE); |
- } else if (instr->hydrogen()->CanAllocateInOldDataSpace()) { |
+ } else if (instr->hydrogen()->IsOldDataSpaceAllocation()) { |
+ ASSERT(!instr->hydrogen()->IsNewSpaceAllocation()); |
flags = static_cast<AllocationFlags>(flags | PRETENURE_OLD_DATA_SPACE); |
} |
@@ -6103,11 +6105,13 @@ void LCodeGen::DoDeferredAllocate(LAllocate* instr) { |
__ push(Immediate(Smi::FromInt(size))); |
} |
- if (instr->hydrogen()->CanAllocateInOldPointerSpace()) { |
- ASSERT(!instr->hydrogen()->CanAllocateInOldDataSpace()); |
+ if (instr->hydrogen()->IsOldPointerSpaceAllocation()) { |
+ ASSERT(!instr->hydrogen()->IsOldDataSpaceAllocation()); |
+ ASSERT(!instr->hydrogen()->IsNewSpaceAllocation()); |
CallRuntimeFromDeferred( |
Runtime::kAllocateInOldPointerSpace, 1, instr, instr->context()); |
- } else if (instr->hydrogen()->CanAllocateInOldDataSpace()) { |
+ } else if (instr->hydrogen()->IsOldDataSpaceAllocation()) { |
+ ASSERT(!instr->hydrogen()->IsNewSpaceAllocation()); |
CallRuntimeFromDeferred( |
Runtime::kAllocateInOldDataSpace, 1, instr, instr->context()); |
} else { |