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

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

Issue 1406153011: Add EOR(register) and EOR(immediate) to ARM integrated 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/DartARM32/assembler_arm.cc » ('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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 static const char* RegisterName(Register reg); 437 static const char* RegisterName(Register reg);
438 438
439 static const char* FpuRegisterName(FpuRegister reg); 439 static const char* FpuRegisterName(FpuRegister reg);
440 440
441 #if 0 441 #if 0
442 // Moved to ARM32::AssemblerARM32::and_() 442 // Moved to ARM32::AssemblerARM32::and_()
443 // Data-processing instructions. 443 // Data-processing instructions.
444 void and_(Register rd, Register rn, Operand o, Condition cond = AL); 444 void and_(Register rd, Register rn, Operand o, Condition cond = AL);
445 #endif 445 #endif
446 446
447 #if 0
448 // Moved to ARM32::AssemblerARM32::eor()
447 void eor(Register rd, Register rn, Operand o, Condition cond = AL); 449 void eor(Register rd, Register rn, Operand o, Condition cond = AL);
448 450
449 #if 0
450 // Moved to ARM32::AssemberARM32::sub() 451 // Moved to ARM32::AssemberARM32::sub()
451 void sub(Register rd, Register rn, Operand o, Condition cond = AL); 452 void sub(Register rd, Register rn, Operand o, Condition cond = AL);
452 void subs(Register rd, Register rn, Operand o, Condition cond = AL); 453 void subs(Register rd, Register rn, Operand o, Condition cond = AL);
453 #endif 454 #endif
454 455
455 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); 456 void rsb(Register rd, Register rn, Operand o, Condition cond = AL);
456 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); 457 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL);
457 458
458 #if 0 459 #if 0
459 // Moved to ARM32::AssemblerARM32::add() 460 // Moved to ARM32::AssemblerARM32::add()
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 Register new_value, 1261 Register new_value,
1261 FieldContent old_content); 1262 FieldContent old_content);
1262 1263
1263 DISALLOW_ALLOCATION(); 1264 DISALLOW_ALLOCATION();
1264 DISALLOW_COPY_AND_ASSIGN(Assembler); 1265 DISALLOW_COPY_AND_ASSIGN(Assembler);
1265 }; 1266 };
1266 1267
1267 } // namespace dart 1268 } // namespace dart
1268 1269
1269 #endif // VM_ASSEMBLER_ARM_H_ 1270 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698