| Index: src/arm64/assembler-arm64.h
|
| diff --git a/src/arm64/assembler-arm64.h b/src/arm64/assembler-arm64.h
|
| index 95321c8453cda11687d1a508634e4ec3d013f56f..f8d9737af5981eb2d85690b86543855e648b1c3f 100644
|
| --- a/src/arm64/assembler-arm64.h
|
| +++ b/src/arm64/assembler-arm64.h
|
| @@ -799,14 +799,12 @@ 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);
|
| static inline Address target_address_at(Address pc, Code* code);
|
| - static inline void set_target_address_at(Address pc,
|
| - Code* code,
|
| - Address target,
|
| - ICacheFlushMode icache_flush_mode =
|
| - FLUSH_ICACHE_IF_NEEDED);
|
| + static inline void set_target_address_at(
|
| + Isolate* isolate, Address pc, Code* code, Address target,
|
| + ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED);
|
|
|
| // Return the code target address at a call site from the return address of
|
| // that call in the instruction stream.
|
| @@ -819,11 +817,12 @@ class Assembler : public AssemblerBase {
|
| // This sets the branch destination (which is in the constant pool on ARM).
|
| // This is for calls and branches within generated code.
|
| inline static void deserialization_set_special_target_at(
|
| - Address constant_pool_entry, Code* code, Address target);
|
| + Isolate* isolate, Address constant_pool_entry, 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);
|
|
|
| // All addresses in the constant pool are the same size as pointers.
|
|
|