Chromium Code Reviews| 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 1387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1398 void VerifiedWrite(const Address& address, | 1398 void VerifiedWrite(const Address& address, |
| 1399 Register new_value, | 1399 Register new_value, |
| 1400 FieldContent old_content); | 1400 FieldContent old_content); |
| 1401 | 1401 |
| 1402 #if 0 | 1402 #if 0 |
| 1403 // Added the following missing operations: | 1403 // Added the following missing operations: |
| 1404 // | 1404 // |
| 1405 // ARM32::AssemblerARM32::uxt() (uxtb and uxth). | 1405 // ARM32::AssemblerARM32::uxt() (uxtb and uxth). |
| 1406 // ARM32::AssemblerARM32::vpop() | 1406 // ARM32::AssemblerARM32::vpop() |
| 1407 // ARM32::AssemblerARM32::vpush() | 1407 // ARM32::AssemblerARM32::vpush() |
| 1408 // ARM32::AssemblerARM:rbit(). | 1408 // ARM32::AssemblerARM32:rbit(). |
|
Jim Stichnoth
2016/02/04 20:47:36
remove the period here and above
Karl
2016/02/04 21:55:22
Done.
| |
| 1409 // ARM32::AssemblerARM::veord() | 1409 // ARM32::AssemblerARM32::veord() |
| 1410 // ARM32::AssemblerARM32::vld1qr() | |
| 1411 // ARM32::AssemblerARM32::vst1qr() | |
| 1410 #endif | 1412 #endif |
| 1411 | 1413 |
| 1412 DISALLOW_ALLOCATION(); | 1414 DISALLOW_ALLOCATION(); |
| 1413 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1415 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1414 }; | 1416 }; |
| 1415 | 1417 |
| 1416 } // namespace dart | 1418 } // namespace dart |
| 1417 | 1419 |
| 1418 #endif // VM_ASSEMBLER_ARM_H_ | 1420 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |