| 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 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 Register new_value, | 1358 Register new_value, |
| 1359 FieldContent old_content); | 1359 FieldContent old_content); |
| 1360 | 1360 |
| 1361 #if 0 | 1361 #if 0 |
| 1362 // Added the following missing operations: | 1362 // Added the following missing operations: |
| 1363 // | 1363 // |
| 1364 // ARM32::AssemblerARM32::uxt() (uxtb and uxth). | 1364 // ARM32::AssemblerARM32::uxt() (uxtb and uxth). |
| 1365 // ARM32::AssemblerARM32::vpop() | 1365 // ARM32::AssemblerARM32::vpop() |
| 1366 // ARM32::AssemblerARM32::vpush() | 1366 // ARM32::AssemblerARM32::vpush() |
| 1367 // ARM32::AssemblerARM:rbit(). | 1367 // ARM32::AssemblerARM:rbit(). |
| 1368 // ARM32::AssemblerARM::veord() |
| 1368 #endif | 1369 #endif |
| 1369 | 1370 |
| 1370 DISALLOW_ALLOCATION(); | 1371 DISALLOW_ALLOCATION(); |
| 1371 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1372 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1372 }; | 1373 }; |
| 1373 | 1374 |
| 1374 } // namespace dart | 1375 } // namespace dart |
| 1375 | 1376 |
| 1376 #endif // VM_ASSEMBLER_ARM_H_ | 1377 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |