Index: src/mips/assembler-mips.h |
diff --git a/src/mips/assembler-mips.h b/src/mips/assembler-mips.h |
index a50927f7843930dd56dc5f87cf89983bc713ce33..cc8b6ea9bd4699893b71d0b56b5736db45dc81fb 100644 |
--- a/src/mips/assembler-mips.h |
+++ b/src/mips/assembler-mips.h |
@@ -551,6 +551,10 @@ class Assembler : public AssemblerBase { |
inline static void deserialization_set_target_internal_reference_at( |
Address pc, Address target); |
+ // This sets the encoded internal reference at the pc. |
+ inline static void deserialization_set_target_internal_reference_encoded_at( |
+ Address pc, Address target); |
+ |
// Size of an instruction. |
static const int kInstrSize = sizeof(Instr); |
@@ -1191,6 +1195,9 @@ class Assembler : public AssemblerBase { |
} |
private: |
+ inline static void set_target_internal_reference_encoded_at(Address pc, |
+ Address target); |
+ |
// Buffer size and constant pool distance are checked together at regular |
// intervals of kBufferCheckInterval emitted bytes. |
static const int kBufferCheckInterval = 1*KB/2; |