| 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 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe | 5 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe |
| 6 // Please update the (git) revision if we merge changes from Dart. | 6 // Please update the (git) revision if we merge changes from Dart. |
| 7 // https://code.google.com/p/dart/wiki/GettingTheSource | 7 // https://code.google.com/p/dart/wiki/GettingTheSource |
| 8 | 8 |
| 9 #ifndef VM_ASSEMBLER_ARM_H_ | 9 #ifndef VM_ASSEMBLER_ARM_H_ |
| 10 #define VM_ASSEMBLER_ARM_H_ | 10 #define VM_ASSEMBLER_ARM_H_ |
| (...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1294 intptr_t offset, | 1294 intptr_t offset, |
| 1295 Register value_even, | 1295 Register value_even, |
| 1296 Register value_odd, | 1296 Register value_odd, |
| 1297 Condition cond = AL); | 1297 Condition cond = AL); |
| 1298 // Writes new_value to address and its shadow location, if enabled, after | 1298 // Writes new_value to address and its shadow location, if enabled, after |
| 1299 // verifying that its old value matches its shadow. | 1299 // verifying that its old value matches its shadow. |
| 1300 void VerifiedWrite(const Address& address, | 1300 void VerifiedWrite(const Address& address, |
| 1301 Register new_value, | 1301 Register new_value, |
| 1302 FieldContent old_content); | 1302 FieldContent old_content); |
| 1303 | 1303 |
| 1304 #if 0 |
| 1305 // Added the following missing operations: |
| 1306 // |
| 1307 // ARM32::AssemblerARM::uxt() (uxtb and uxth). |
| 1308 #endif |
| 1309 |
| 1304 DISALLOW_ALLOCATION(); | 1310 DISALLOW_ALLOCATION(); |
| 1305 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1311 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1306 }; | 1312 }; |
| 1307 | 1313 |
| 1308 } // namespace dart | 1314 } // namespace dart |
| 1309 | 1315 |
| 1310 #endif // VM_ASSEMBLER_ARM_H_ | 1316 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |