Chromium Code Reviews| Index: runtime/vm/assembler_arm.h |
| diff --git a/runtime/vm/assembler_arm.h b/runtime/vm/assembler_arm.h |
| index 2440465aaecf1a75f2c7ecf1e50f582a0c15b875..10508f48fe688f79e12267ee381216cd6634159e 100644 |
| --- a/runtime/vm/assembler_arm.h |
| +++ b/runtime/vm/assembler_arm.h |
| @@ -351,8 +351,15 @@ class Assembler : public ValueObject { |
| void adc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| + void adcs(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| + |
| + // Fill rd with the sign of rm. |
| + void SignFill(Register rd, Register rm); |
|
zra
2014/05/14 18:27:41
Move down with other macros.
Cutch
2014/05/15 18:26:08
Done.
|
| + |
| void sbc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| + void sbcs(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| + |
| void rsc(Register rd, Register rn, ShifterOperand so, Condition cond = AL); |
| void tst(Register rn, ShifterOperand so, Condition cond = AL); |