Index: src/arm/macro-assembler-arm.h |
diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h |
index e6047adc48c23652b4f95a4fb7d18fd3362bca6d..7ece4b2fa6761c9b47c91111aec455325d487e21 100644 |
--- a/src/arm/macro-assembler-arm.h |
+++ b/src/arm/macro-assembler-arm.h |
@@ -437,7 +437,7 @@ class MacroAssembler: public Assembler { |
} |
// Push a fixed frame, consisting of lr, fp, constant pool (if |
- // FLAG_enable_ool_constant_pool), context and JS function / marker id if |
+ // FLAG_enable_embedded_constant_pool), context and JS function / marker id if |
// marker_reg is a valid register. |
void PushFixedFrame(Register marker_reg = no_reg); |
void PopFixedFrame(Register marker_reg = no_reg); |
@@ -1441,6 +1441,11 @@ class MacroAssembler: public Assembler { |
void JumpIfDictionaryInPrototypeChain(Register object, Register scratch0, |
Register scratch1, Label* found); |
+ // Loads the constant pool pointer (pp) register. |
+ void LoadConstantPoolPointerRegisterFromCodeTargetAddress( |
+ Register code_target_address); |
+ void LoadConstantPoolPointerRegister(); |
+ |
private: |
void CallCFunctionHelper(Register function, |
int num_reg_arguments, |
@@ -1482,9 +1487,6 @@ class MacroAssembler: public Assembler { |
MemOperand SafepointRegisterSlot(Register reg); |
MemOperand SafepointRegistersAndDoublesSlot(Register reg); |
- // Loads the constant pool pointer (pp) register. |
- void LoadConstantPoolPointerRegister(); |
- |
bool generating_stub_; |
bool has_frame_; |
// This handle will be patched with the code object on installation. |