| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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_ARM64_H_ | 6 #ifndef VM_INSTRUCTIONS_ARM64_H_ |
| 7 #define VM_INSTRUCTIONS_ARM64_H_ | 7 #define VM_INSTRUCTIONS_ARM64_H_ |
| 8 | 8 |
| 9 #ifndef VM_INSTRUCTIONS_H_ | 9 #ifndef VM_INSTRUCTIONS_H_ |
| 10 #error Do not include instructions_arm64.h directly; use instructions.h instead. | 10 #error Do not include instructions_arm64.h directly; use instructions.h instead. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 const ObjectPool& object_pool_; | 99 const ObjectPool& object_pool_; |
| 100 | 100 |
| 101 uword end_; | 101 uword end_; |
| 102 intptr_t native_function_pool_index_; | 102 intptr_t native_function_pool_index_; |
| 103 intptr_t target_code_pool_index_; | 103 intptr_t target_code_pool_index_; |
| 104 | 104 |
| 105 DISALLOW_COPY_AND_ASSIGN(NativeCallPattern); | 105 DISALLOW_COPY_AND_ASSIGN(NativeCallPattern); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 | 108 |
| 109 class SwitchableCallPattern : public ValueObject { |
| 110 public: |
| 111 SwitchableCallPattern(uword pc, const Code& code); |
| 112 |
| 113 RawObject* cache() const; |
| 114 void SetCache(const MegamorphicCache& cache) const; |
| 115 void SetLookupStub(const Code& stub) const; |
| 116 |
| 117 private: |
| 118 const ObjectPool& object_pool_; |
| 119 intptr_t cache_pool_index_; |
| 120 intptr_t stub_pool_index_; |
| 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(SwitchableCallPattern); |
| 123 }; |
| 124 |
| 125 |
| 109 class ReturnPattern : public ValueObject { | 126 class ReturnPattern : public ValueObject { |
| 110 public: | 127 public: |
| 111 explicit ReturnPattern(uword pc); | 128 explicit ReturnPattern(uword pc); |
| 112 | 129 |
| 113 // bx_lr = 1. | 130 // bx_lr = 1. |
| 114 static const int kLengthInBytes = 1 * Instr::kInstrSize; | 131 static const int kLengthInBytes = 1 * Instr::kInstrSize; |
| 115 | 132 |
| 116 int pattern_length_in_bytes() const { | 133 int pattern_length_in_bytes() const { |
| 117 return kLengthInBytes; | 134 return kLengthInBytes; |
| 118 } | 135 } |
| 119 | 136 |
| 120 bool IsValid() const; | 137 bool IsValid() const; |
| 121 | 138 |
| 122 private: | 139 private: |
| 123 const uword pc_; | 140 const uword pc_; |
| 124 }; | 141 }; |
| 125 | 142 |
| 126 } // namespace dart | 143 } // namespace dart |
| 127 | 144 |
| 128 #endif // VM_INSTRUCTIONS_ARM64_H_ | 145 #endif // VM_INSTRUCTIONS_ARM64_H_ |
| OLD | NEW |