| 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 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 Condition cond = AL); | 1313 Condition cond = AL); |
| 1314 // Writes new_value to address and its shadow location, if enabled, after | 1314 // Writes new_value to address and its shadow location, if enabled, after |
| 1315 // verifying that its old value matches its shadow. | 1315 // verifying that its old value matches its shadow. |
| 1316 void VerifiedWrite(const Address& address, | 1316 void VerifiedWrite(const Address& address, |
| 1317 Register new_value, | 1317 Register new_value, |
| 1318 FieldContent old_content); | 1318 FieldContent old_content); |
| 1319 | 1319 |
| 1320 #if 0 | 1320 #if 0 |
| 1321 // Added the following missing operations: | 1321 // Added the following missing operations: |
| 1322 // | 1322 // |
| 1323 // ARM32::AssemblerARM::uxt() (uxtb and uxth). | 1323 // ARM32::AssemblerARM32::uxt() (uxtb and uxth). |
| 1324 // ARM32::AssemblerARM32::vpop() |
| 1325 // ARM32::AssemblerARM32::vpush() |
| 1324 // ARM32::AssemblerARM:rbit(). | 1326 // ARM32::AssemblerARM:rbit(). |
| 1325 #endif | 1327 #endif |
| 1326 | 1328 |
| 1327 DISALLOW_ALLOCATION(); | 1329 DISALLOW_ALLOCATION(); |
| 1328 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1330 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1329 }; | 1331 }; |
| 1330 | 1332 |
| 1331 } // namespace dart | 1333 } // namespace dart |
| 1332 | 1334 |
| 1333 #endif // VM_ASSEMBLER_ARM_H_ | 1335 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |