| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 int ic_data_load_end_; | 43 int ic_data_load_end_; |
| 44 ICData& ic_data_; | 44 ICData& ic_data_; |
| 45 const Array& object_pool_; | 45 const Array& object_pool_; |
| 46 | 46 |
| 47 DISALLOW_COPY_AND_ASSIGN(CallPattern); | 47 DISALLOW_COPY_AND_ASSIGN(CallPattern); |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 | 50 |
| 51 class JumpPattern : public ValueObject { | 51 class JumpPattern : public ValueObject { |
| 52 public: | 52 public: |
| 53 explicit JumpPattern(uword pc); | 53 JumpPattern(uword pc, const Code& code); |
| 54 | 54 |
| 55 // lui; ori; jr; nop (in delay slot) = 4. | 55 // lui; ori; jr; nop (in delay slot) = 4. |
| 56 static const int kLengthInBytes = 4*Instr::kInstrSize; | 56 static const int kLengthInBytes = 4*Instr::kInstrSize; |
| 57 | 57 |
| 58 int pattern_length_in_bytes() const { | 58 int pattern_length_in_bytes() const { |
| 59 return kLengthInBytes; | 59 return kLengthInBytes; |
| 60 } | 60 } |
| 61 | 61 |
| 62 bool IsValid() const; | 62 bool IsValid() const; |
| 63 uword TargetAddress() const; | 63 uword TargetAddress() const; |
| 64 void SetTargetAddress(uword target_address) const; | 64 void SetTargetAddress(uword target_address) const; |
| 65 | 65 |
| 66 private: | 66 private: |
| 67 const uword pc_; | 67 const uword pc_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(JumpPattern); | 69 DISALLOW_COPY_AND_ASSIGN(JumpPattern); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace dart | 72 } // namespace dart |
| 73 | 73 |
| 74 #endif // VM_INSTRUCTIONS_MIPS_H_ | 74 #endif // VM_INSTRUCTIONS_MIPS_H_ |
| 75 | 75 |
| OLD | NEW |