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

Unified Diff: src/DartARM32/assembler_arm.h

Issue 1429003002: Add SDIV to ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/DartARM32/assembler_arm.h
diff --git a/src/DartARM32/assembler_arm.h b/src/DartARM32/assembler_arm.h
index c2a84d82a459cf1aaf2d749b6f3b17ab96059cd3..c39e66cee814441988a1977154f6e6836b293ddc 100644
--- a/src/DartARM32/assembler_arm.h
+++ b/src/DartARM32/assembler_arm.h
@@ -503,7 +503,7 @@ class Assembler : public ValueObject {
// Multiply instructions.
#if 0
- // Moved to AssemblerARM32::mul()
+ // Moved to ARM32::AssemblerARM32::mul()
void mul(Register rd, Register rn, Register rm, Condition cond = AL);
void muls(Register rd, Register rn, Register rm, Condition cond = AL);
#endif
@@ -526,19 +526,22 @@ class Assembler : public ValueObject {
void umaal(Register rd_lo, Register rd_hi, Register rn, Register rm);
// Division instructions.
+#if 0
+ // Moved to ARM32::AssemblerARM32::sdiv()
void sdiv(Register rd, Register rn, Register rm, Condition cond = AL);
+#endif
void udiv(Register rd, Register rn, Register rm, Condition cond = AL);
#if 0
- // Moved to AssemblerARM32::ldr()
+ // Moved to ARM32::AssemblerARM32::ldr()
// Load/store instructions.
void ldr(Register rd, Address ad, Condition cond = AL);
- // Moved to AssemblerARM32::str()
+ // Moved to ARM32::AssemblerARM32::str()
void str(Register rd, Address ad, Condition cond = AL);
- // Moved to AssemblerARM32::ldr()
+ // Moved to ARM32::AssemblerARM32::ldr()
void ldrb(Register rd, Address ad, Condition cond = AL);
- // Moved to AssemblerARM32::str()
+ // Moved to ARM32::AssemblerARM32::str()
void strb(Register rd, Address ad, Condition cond = AL);
#endif
@@ -1173,13 +1176,14 @@ class Assembler : public ValueObject {
Register rn,
Register rm,
Register rs);
-#endif
+ // Moved to ARM32::AssemblerAR32::emitDivOp();
void EmitDivOp(Condition cond,
int32_t opcode,
Register rd,
Register rn,
Register rm);
+#endif
void EmitMultiVSMemOp(Condition cond,
BlockAddressMode am,
« 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