| Index: src/assembler.h
|
| diff --git a/src/assembler.h b/src/assembler.h
|
| index fb59ceb7bd1bd22d43d705d9cb8f6082fec4e471..1b5d1a7c9ba29db0a5bc747559eecb6df9844a0c 100644
|
| --- a/src/assembler.h
|
| +++ b/src/assembler.h
|
| @@ -506,6 +506,10 @@ class RelocInfo {
|
| // constant pool, otherwise the pointer is embedded in the instruction stream.
|
| bool IsInConstantPool();
|
|
|
| + bool DebugBreakIsCall();
|
| +
|
| + int DebugBreakCallArgumentsCount();
|
| +
|
| // Read/modify the code target in the branch/call instruction
|
| // this relocation applies to;
|
| // can only be called if IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_)
|
| @@ -623,6 +627,8 @@ class RelocInfo {
|
| static const int kDataMask =
|
| (1 << CODE_TARGET_WITH_ID) | kPositionMask | (1 << COMMENT);
|
| static const int kApplyMask; // Modes affected by apply. Depends on arch.
|
| + static const int kDebugBreakNonCallArgs = 0;
|
| + static const int kDebugBreakCallArgsOffset = 1;
|
|
|
| private:
|
| // On ARM, note that pc_ is the address of the constant pool entry
|
| @@ -690,6 +696,7 @@ class RelocInfoWriter BASE_EMBEDDED {
|
| inline uint32_t WriteVariableLengthPCJump(uint32_t pc_delta);
|
| inline void WriteTaggedPC(uint32_t pc_delta, int tag);
|
| inline void WriteExtraTaggedPC(uint32_t pc_delta, int extra_tag);
|
| + inline void WriteInt(int number);
|
| inline void WriteExtraTaggedIntData(int data_delta, int top_tag);
|
| inline void WriteExtraTaggedPoolData(int data, int pool_type);
|
| inline void WriteExtraTaggedData(intptr_t data_delta, int top_tag);
|
| @@ -750,7 +757,7 @@ class RelocIterator: public Malloced {
|
| void ReadTaggedPC();
|
| void AdvanceReadPC();
|
| void AdvanceReadId();
|
| - void AdvanceReadPoolData();
|
| + void AdvanceReadInt();
|
| void AdvanceReadPosition();
|
| void AdvanceReadData();
|
| void AdvanceReadVariableLengthPCJump();
|
|
|