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_ARM_H_ | 6 #ifndef VM_INSTRUCTIONS_ARM_H_ |
7 #define VM_INSTRUCTIONS_ARM_H_ | 7 #define VM_INSTRUCTIONS_ARM_H_ |
8 | 8 |
9 #ifndef VM_INSTRUCTIONS_H_ | 9 #ifndef VM_INSTRUCTIONS_H_ |
10 #error Do not include instructions_arm.h directly; use instructions.h instead. | 10 #error Do not include instructions_arm.h directly; use instructions.h instead. |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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& code) const; | 58 void SetTargetCode(const Code& code) const; |
59 | 59 |
60 // This constant length is only valid for inserted call patterns used for | 60 // This constant length is only valid for inserted call patterns used for |
61 // lazy deoptimization. Regular call pattern may vary in length. | 61 // lazy deoptimization. Regular call pattern may vary in length. |
62 static int DeoptCallPatternLengthInBytes(); | 62 static int DeoptCallPatternLengthInBytes(); |
| 63 static int DeoptCallPatternLengthInInstructions(); |
63 | 64 |
64 static void InsertDeoptCallAt(uword pc, uword target_address); | 65 static void InsertDeoptCallAt(uword pc, uword target_address); |
65 | 66 |
66 private: | 67 private: |
67 const ObjectPool& object_pool_; | 68 const ObjectPool& object_pool_; |
68 | 69 |
69 uword end_; | 70 uword end_; |
70 uword ic_data_load_end_; | 71 uword ic_data_load_end_; |
71 | 72 |
72 intptr_t target_code_pool_index_; | 73 intptr_t target_code_pool_index_; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 111 |
111 bool IsValid() const; | 112 bool IsValid() const; |
112 | 113 |
113 private: | 114 private: |
114 const uword pc_; | 115 const uword pc_; |
115 }; | 116 }; |
116 | 117 |
117 } // namespace dart | 118 } // namespace dart |
118 | 119 |
119 #endif // VM_INSTRUCTIONS_ARM_H_ | 120 #endif // VM_INSTRUCTIONS_ARM_H_ |
OLD | NEW |