| Index: src/arm/assembler-arm.h
|
| diff --git a/src/arm/assembler-arm.h b/src/arm/assembler-arm.h
|
| index 8caa64df34c2ce442b4919122c45b531dd06c864..9bfdc9e333777c6f2f2548f49de8c7fc0a9d5433 100644
|
| --- a/src/arm/assembler-arm.h
|
| +++ b/src/arm/assembler-arm.h
|
| @@ -785,10 +785,6 @@ class Assembler : public AssemblerBase {
|
| // the branch/call instruction at pc, or the object in a mov.
|
| INLINE(static Address target_pointer_address_at(Address pc));
|
|
|
| - // Read/Modify the pointer in the branch/call/move instruction at pc.
|
| - INLINE(static Address target_pointer_at(Address pc));
|
| - INLINE(static void set_target_pointer_at(Address pc, Address target));
|
| -
|
| // Read/Modify the code target address in the branch/call instruction at pc.
|
| INLINE(static Address target_address_at(Address pc));
|
| INLINE(static void set_target_address_at(Address pc, Address target));
|
| @@ -1393,6 +1389,9 @@ class Assembler : public AssemblerBase {
|
| void db(uint8_t data);
|
| void dd(uint32_t data);
|
|
|
| + // Emits the address of the code stub's first instruction.
|
| + void emit_code_stub_address(Code* stub);
|
| +
|
| PositionsRecorder* positions_recorder() { return &positions_recorder_; }
|
|
|
| // Read/patch instructions
|
|
|