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 | 4 |
5 #ifndef VM_ASSEMBLER_ARM_H_ | 5 #ifndef VM_ASSEMBLER_ARM_H_ |
6 #define VM_ASSEMBLER_ARM_H_ | 6 #define VM_ASSEMBLER_ARM_H_ |
7 | 7 |
8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
9 #error Do not include assembler_arm.h directly; use assembler.h instead. | 9 #error Do not include assembler_arm.h directly; use assembler.h instead. |
10 #endif | 10 #endif |
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1193 intptr_t offset, | 1193 intptr_t offset, |
1194 Register value, | 1194 Register value, |
1195 Condition cond = AL); | 1195 Condition cond = AL); |
1196 void WriteShadowedFieldPair(Register base, | 1196 void WriteShadowedFieldPair(Register base, |
1197 intptr_t offset, | 1197 intptr_t offset, |
1198 Register value_even, | 1198 Register value_even, |
1199 Register value_odd, | 1199 Register value_odd, |
1200 Condition cond = AL); | 1200 Condition cond = AL); |
1201 // Writes new_value to address and its shadow location, if enabled, after | 1201 // Writes new_value to address and its shadow location, if enabled, after |
1202 // verifying that its old value matches its shadow. | 1202 // verifying that its old value matches its shadow. |
1203 void VerifiedWrite(const Address& address, | 1203 void VerifiedWrite(Register object, |
| 1204 const Address& address, |
1204 Register new_value, | 1205 Register new_value, |
1205 FieldContent old_content); | 1206 FieldContent old_content); |
1206 | 1207 |
1207 DISALLOW_ALLOCATION(); | 1208 DISALLOW_ALLOCATION(); |
1208 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1209 DISALLOW_COPY_AND_ASSIGN(Assembler); |
1209 }; | 1210 }; |
1210 | 1211 |
1211 } // namespace dart | 1212 } // namespace dart |
1212 | 1213 |
1213 #endif // VM_ASSEMBLER_ARM_H_ | 1214 #endif // VM_ASSEMBLER_ARM_H_ |
OLD | NEW |