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

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

Issue 1412923006: Add orr (register) and orr (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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); 474 void rsc(Register rd, Register rn, Operand o, Condition cond = AL);
475 475
476 void tst(Register rn, Operand o, Condition cond = AL); 476 void tst(Register rn, Operand o, Condition cond = AL);
477 477
478 void teq(Register rn, Operand o, Condition cond = AL); 478 void teq(Register rn, Operand o, Condition cond = AL);
479 479
480 void cmp(Register rn, Operand o, Condition cond = AL); 480 void cmp(Register rn, Operand o, Condition cond = AL);
481 481
482 void cmn(Register rn, Operand o, Condition cond = AL); 482 void cmn(Register rn, Operand o, Condition cond = AL);
483 483
484 #if 0
485 // Moved to ARM32::IceAssemblerARM32::orr().
484 void orr(Register rd, Register rn, Operand o, Condition cond = AL); 486 void orr(Register rd, Register rn, Operand o, Condition cond = AL);
485 void orrs(Register rd, Register rn, Operand o, Condition cond = AL); 487 void orrs(Register rd, Register rn, Operand o, Condition cond = AL);
486 488
487 #if 0 489 // Moved to ARM32::IceAssemblerARM32::mov()
488 // Moved to IceAssemblerARM32::mov()
489 void mov(Register rd, Operand o, Condition cond = AL); 490 void mov(Register rd, Operand o, Condition cond = AL);
490 void movs(Register rd, Operand o, Condition cond = AL); 491 void movs(Register rd, Operand o, Condition cond = AL);
491 #endif 492 #endif
492 493
493 void bic(Register rd, Register rn, Operand o, Condition cond = AL); 494 void bic(Register rd, Register rn, Operand o, Condition cond = AL);
494 void bics(Register rd, Register rn, Operand o, Condition cond = AL); 495 void bics(Register rd, Register rn, Operand o, Condition cond = AL);
495 496
496 void mvn(Register rd, Operand o, Condition cond = AL); 497 void mvn(Register rd, Operand o, Condition cond = AL);
497 void mvns(Register rd, Operand o, Condition cond = AL); 498 void mvns(Register rd, Operand o, Condition cond = AL);
498 499
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 Register new_value, 1260 Register new_value,
1260 FieldContent old_content); 1261 FieldContent old_content);
1261 1262
1262 DISALLOW_ALLOCATION(); 1263 DISALLOW_ALLOCATION();
1263 DISALLOW_COPY_AND_ASSIGN(Assembler); 1264 DISALLOW_COPY_AND_ASSIGN(Assembler);
1264 }; 1265 };
1265 1266
1266 } // namespace dart 1267 } // namespace dart
1267 1268
1268 #endif // VM_ASSEMBLER_ARM_H_ 1269 #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