| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // Classes that describe assembly patterns as used by inline caches. | 4 // Classes that describe assembly patterns as used by inline caches. |
| 5 | 5 |
| 6 #ifndef VM_INSTRUCTIONS_MIPS_H_ | 6 #ifndef VM_INSTRUCTIONS_MIPS_H_ |
| 7 #define VM_INSTRUCTIONS_MIPS_H_ | 7 #define VM_INSTRUCTIONS_MIPS_H_ |
| 8 | 8 |
| 9 #ifndef VM_INSTRUCTIONS_H_ | 9 #ifndef VM_INSTRUCTIONS_H_ |
| 10 #error Do not include instructions_mips.h directly; use instructions.h instead. | 10 #error Do not include instructions_mips.h directly; use instructions.h instead. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 class CallPattern : public ValueObject { | 51 class CallPattern : public ValueObject { |
| 52 public: | 52 public: |
| 53 CallPattern(uword pc, const Code& code); | 53 CallPattern(uword pc, const Code& code); |
| 54 | 54 |
| 55 RawICData* IcData(); | 55 RawICData* IcData(); |
| 56 | 56 |
| 57 RawCode* TargetCode() const; | 57 RawCode* TargetCode() const; |
| 58 void SetTargetCode(const Code& target) const; | 58 void SetTargetCode(const Code& target) const; |
| 59 | 59 |
| 60 static const int kDeoptCallLengthInBytes = 4 * Instr::kInstrSize; | 60 static const int kDeoptCallLengthInInstructions = 4; |
| 61 static const int kDeoptCallLengthInBytes = |
| 62 kDeoptCallLengthInInstructions * Instr::kInstrSize; |
| 61 | 63 |
| 62 static void InsertDeoptCallAt(uword pc, uword target_address); | 64 static void InsertDeoptCallAt(uword pc, uword target_address); |
| 63 | 65 |
| 64 private: | 66 private: |
| 65 const ObjectPool& object_pool_; | 67 const ObjectPool& object_pool_; |
| 66 | 68 |
| 67 uword end_; | 69 uword end_; |
| 68 uword ic_data_load_end_; | 70 uword ic_data_load_end_; |
| 69 | 71 |
| 70 intptr_t target_code_pool_index_; | 72 intptr_t target_code_pool_index_; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 110 |
| 109 bool IsValid() const; | 111 bool IsValid() const; |
| 110 | 112 |
| 111 private: | 113 private: |
| 112 const uword pc_; | 114 const uword pc_; |
| 113 }; | 115 }; |
| 114 | 116 |
| 115 } // namespace dart | 117 } // namespace dart |
| 116 | 118 |
| 117 #endif // VM_INSTRUCTIONS_MIPS_H_ | 119 #endif // VM_INSTRUCTIONS_MIPS_H_ |
| OLD | NEW |