| Index: src/DartARM32/assembler_arm.h
|
| diff --git a/src/DartARM32/assembler_arm.h b/src/DartARM32/assembler_arm.h
|
| index 7893d6f940fbea86719982433bfa3055340833dd..5790824128aef31a880682547b087d353f12bef8 100644
|
| --- a/src/DartARM32/assembler_arm.h
|
| +++ b/src/DartARM32/assembler_arm.h
|
| @@ -139,12 +139,15 @@ class Operand : public ValueObject {
|
| encoding_ = immediate;
|
| }
|
|
|
| +#if 0
|
| + // Moved to AssemblerARM32::encodeImm12FromFlexImm.
|
| // Data-processing operands - Rotated immediate.
|
| Operand(uint32_t rotate, uint32_t immed8) {
|
| ASSERT((rotate < (1 << kRotateBits)) && (immed8 < (1 << kImmed8Bits)));
|
| type_ = 1;
|
| encoding_ = (rotate << kRotateShift) | (immed8 << kImmed8Shift);
|
| }
|
| +#endif
|
|
|
| // Data-processing operands - Register.
|
| explicit Operand(Register rm) {
|
| @@ -465,7 +468,11 @@ class Assembler : public ValueObject {
|
| void orr(Register rd, Register rn, Operand o, Condition cond = AL);
|
| void orrs(Register rd, Register rn, Operand o, Condition cond = AL);
|
|
|
| +#if 0
|
| + // Moved to IceAssemblerARM32::mov(..FlexImm..)
|
| + // TODO(kschimpf) other forms of move.
|
| void mov(Register rd, Operand o, Condition cond = AL);
|
| +#endif
|
| void movs(Register rd, Operand o, Condition cond = AL);
|
|
|
| void bic(Register rd, Register rn, Operand o, Condition cond = AL);
|
| @@ -1084,6 +1091,8 @@ class Assembler : public ValueObject {
|
| bool is_unique,
|
| Register pp);
|
|
|
| +#if 0
|
| + // Moved to class AssemblerARM32.
|
| void EmitType01(Condition cond,
|
| int type,
|
| Opcode opcode,
|
| @@ -1091,6 +1100,7 @@ class Assembler : public ValueObject {
|
| Register rn,
|
| Register rd,
|
| Operand o);
|
| +#endif
|
|
|
| void EmitType5(Condition cond, int32_t offset, bool link);
|
|
|
|
|