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

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

Issue 1424773002: Add ADC (immediate) instruction to ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit. 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 #endif 450 #endif
451 451
452 void rsb(Register rd, Register rn, Operand o, Condition cond = AL); 452 void rsb(Register rd, Register rn, Operand o, Condition cond = AL);
453 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL); 453 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL);
454 454
455 #if 0 455 #if 0
456 // Moved to ARM32::AssemblerARM32::add() 456 // Moved to ARM32::AssemblerARM32::add()
457 void add(Register rd, Register rn, Operand o, Condition cond = AL); 457 void add(Register rd, Register rn, Operand o, Condition cond = AL);
458 458
459 void adds(Register rd, Register rn, Operand o, Condition cond = AL); 459 void adds(Register rd, Register rn, Operand o, Condition cond = AL);
460 #endif
461 460
461 // Moved to ARM32::AssemblerARM32::adc()
462 void adc(Register rd, Register rn, Operand o, Condition cond = AL); 462 void adc(Register rd, Register rn, Operand o, Condition cond = AL);
463 463
464 void adcs(Register rd, Register rn, Operand o, Condition cond = AL); 464 void adcs(Register rd, Register rn, Operand o, Condition cond = AL);
465 #endif
465 466
466 void sbc(Register rd, Register rn, Operand o, Condition cond = AL); 467 void sbc(Register rd, Register rn, Operand o, Condition cond = AL);
467 468
468 void sbcs(Register rd, Register rn, Operand o, Condition cond = AL); 469 void sbcs(Register rd, Register rn, Operand o, Condition cond = AL);
469 470
470 void rsc(Register rd, Register rn, Operand o, Condition cond = AL); 471 void rsc(Register rd, Register rn, Operand o, Condition cond = AL);
471 472
472 void tst(Register rn, Operand o, Condition cond = AL); 473 void tst(Register rn, Operand o, Condition cond = AL);
473 474
474 void teq(Register rn, Operand o, Condition cond = AL); 475 void teq(Register rn, Operand o, Condition cond = AL);
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 Register new_value, 1246 Register new_value,
1246 FieldContent old_content); 1247 FieldContent old_content);
1247 1248
1248 DISALLOW_ALLOCATION(); 1249 DISALLOW_ALLOCATION();
1249 DISALLOW_COPY_AND_ASSIGN(Assembler); 1250 DISALLOW_COPY_AND_ASSIGN(Assembler);
1250 }; 1251 };
1251 1252
1252 } // namespace dart 1253 } // namespace dart
1253 1254
1254 #endif // VM_ASSEMBLER_ARM_H_ 1255 #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