| Index: src/ppc/assembler-ppc.h
|
| diff --git a/src/ppc/assembler-ppc.h b/src/ppc/assembler-ppc.h
|
| index 3bfc1906e6a45efc884b5311d79de2ce6d453fbc..08f04fd7ff11f2a597a9d0364c337abadd8b2141 100644
|
| --- a/src/ppc/assembler-ppc.h
|
| +++ b/src/ppc/assembler-ppc.h
|
| @@ -457,17 +457,18 @@ class Assembler : public AssemblerBase {
|
| // Read/Modify the code target address in the branch/call instruction at pc.
|
| INLINE(static Address target_address_at(Address pc, Address constant_pool));
|
| INLINE(static void set_target_address_at(
|
| - Address pc, Address constant_pool, Address target,
|
| + Isolate* isolate, Address pc, Address constant_pool, Address target,
|
| ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED));
|
| INLINE(static Address target_address_at(Address pc, Code* code)) {
|
| Address constant_pool = code ? code->constant_pool() : NULL;
|
| return target_address_at(pc, constant_pool);
|
| }
|
| INLINE(static void set_target_address_at(
|
| - Address pc, Code* code, Address target,
|
| + Isolate* isolate, Address pc, Code* code, Address target,
|
| ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED)) {
|
| Address constant_pool = code ? code->constant_pool() : NULL;
|
| - set_target_address_at(pc, constant_pool, target, icache_flush_mode);
|
| + set_target_address_at(isolate, pc, constant_pool, target,
|
| + icache_flush_mode);
|
| }
|
|
|
| // Return the code target address at a call site from the return address
|
| @@ -481,11 +482,12 @@ class Assembler : public AssemblerBase {
|
| // This sets the branch destination.
|
| // This is for calls and branches within generated code.
|
| inline static void deserialization_set_special_target_at(
|
| - Address instruction_payload, Code* code, Address target);
|
| + Isolate* isolate, Address instruction_payload, Code* code,
|
| + Address target);
|
|
|
| // This sets the internal reference at the pc.
|
| inline static void deserialization_set_target_internal_reference_at(
|
| - Address pc, Address target,
|
| + Isolate* isolate, Address pc, Address target,
|
| RelocInfo::Mode mode = RelocInfo::INTERNAL_REFERENCE);
|
|
|
| // Size of an instruction.
|
|
|