Index: src/ppc/full-codegen-ppc.cc |
diff --git a/src/ppc/full-codegen-ppc.cc b/src/ppc/full-codegen-ppc.cc |
index 2358b83e7f5ceb712e517503709b2e30f5f32cc7..6ae6f106fde0f1658e612199af68bb12968ea555 100644 |
--- a/src/ppc/full-codegen-ppc.cc |
+++ b/src/ppc/full-codegen-ppc.cc |
@@ -422,7 +422,6 @@ |
EmitProfilingCounterDecrement(weight); |
{ |
Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_); |
- Assembler::BlockConstantPoolEntrySharingScope prevent_entry_sharing(masm_); |
// BackEdgeTable::PatchAt manipulates this sequence. |
__ cmpi(r6, Operand::Zero()); |
__ bc_short(ge, &ok); |
@@ -495,7 +494,7 @@ |
// With 64bit we may need nop() instructions to ensure we have |
// enough space to SetDebugBreakAtReturn() |
if (is_int16(sp_delta)) { |
- if (!FLAG_enable_embedded_constant_pool) masm_->nop(); |
+ masm_->nop(); |
masm_->nop(); |
} |
#endif |
@@ -2298,10 +2297,6 @@ |
__ bne(&slow_resume, cr0); |
__ LoadP(ip, FieldMemOperand(r7, JSFunction::kCodeEntryOffset)); |
{ |
- ConstantPoolUnavailableScope constant_pool_unavailable(masm_); |
- if (FLAG_enable_embedded_constant_pool) { |
- __ LoadConstantPoolPointerRegisterFromCodeTargetAddress(ip); |
- } |
__ LoadP(r5, FieldMemOperand(r4, JSGeneratorObject::kContinuationOffset)); |
__ SmiUntag(r5); |
__ add(ip, ip, r5); |