Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: src/DartARM32/assembler_arm.h

Issue 1432413003: Implement UXTB and UXTH in the ARM integerated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Merge with master. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceAssemblerARM32.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698