Chromium Code Reviews| Index: runtime/vm/instructions_mips.h |
| =================================================================== |
| --- runtime/vm/instructions_mips.h (revision 20488) |
| +++ runtime/vm/instructions_mips.h (working copy) |
| @@ -19,14 +19,21 @@ |
| public: |
| CallPattern(uword pc, const Code& code); |
| + RawICData* IcData(); |
| + RawArray* ArgumentsDescriptor(); |
| + |
| uword TargetAddress() const; |
| void SetTargetAddress(uword target_address) const; |
| private: |
| uword Back(int n) const; |
| - int DecodePoolIndex(); |
| + int DecodeLoadWordFromPool(int end, Register* reg, int* index); |
|
regis
2013/03/25 23:03:40
You need to sync. This has changed on ARM.
|
| const uword* end_; |
| - const int pool_index_; |
| + int target_address_pool_index_; |
| + int args_desc_load_end_; |
| + int args_desc_pool_index_; |
| + int ic_data_load_end_; |
| + int ic_data_pool_index_; |
| const Array& object_pool_; |
| DISALLOW_COPY_AND_ASSIGN(CallPattern); |