| Index: src/arm/assembler-arm.cc
|
| ===================================================================
|
| --- src/arm/assembler-arm.cc (revision 6414)
|
| +++ src/arm/assembler-arm.cc (working copy)
|
| @@ -213,66 +213,21 @@
|
|
|
|
|
| // -----------------------------------------------------------------------------
|
| -// Implementation of Assembler.
|
| +// Specific instructions, constants, and masks.
|
|
|
| -// Instruction encoding bits.
|
| -enum {
|
| - H = 1 << 5, // halfword (or byte)
|
| - S6 = 1 << 6, // signed (or unsigned)
|
| - L = 1 << 20, // load (or store)
|
| - S = 1 << 20, // set condition code (or leave unchanged)
|
| - W = 1 << 21, // writeback base register (or leave unchanged)
|
| - A = 1 << 21, // accumulate in multiply instruction (or not)
|
| - B = 1 << 22, // unsigned byte (or word)
|
| - N = 1 << 22, // long (or short)
|
| - U = 1 << 23, // positive (or negative) offset/index
|
| - P = 1 << 24, // offset/pre-indexed addressing (or post-indexed addressing)
|
| - I = 1 << 25, // immediate shifter operand (or not)
|
| -
|
| - B4 = 1 << 4,
|
| - B5 = 1 << 5,
|
| - B6 = 1 << 6,
|
| - B7 = 1 << 7,
|
| - B8 = 1 << 8,
|
| - B9 = 1 << 9,
|
| - B12 = 1 << 12,
|
| - B16 = 1 << 16,
|
| - B18 = 1 << 18,
|
| - B19 = 1 << 19,
|
| - B20 = 1 << 20,
|
| - B21 = 1 << 21,
|
| - B22 = 1 << 22,
|
| - B23 = 1 << 23,
|
| - B24 = 1 << 24,
|
| - B25 = 1 << 25,
|
| - B26 = 1 << 26,
|
| - B27 = 1 << 27,
|
| -
|
| - // Instruction bit masks.
|
| - RdMask = 15 << 12, // in str instruction
|
| - CondMask = 15 << 28,
|
| - CoprocessorMask = 15 << 8,
|
| - OpCodeMask = 15 << 21, // in data-processing instructions
|
| - Imm24Mask = (1 << 24) - 1,
|
| - Off12Mask = (1 << 12) - 1,
|
| - // Reserved condition.
|
| - nv = 15 << 28
|
| -};
|
| -
|
| -
|
| // add(sp, sp, 4) instruction (aka Pop())
|
| -static const Instr kPopInstruction =
|
| - al | 4 * B21 | 4 | LeaveCC | I | sp.code() * B16 | sp.code() * B12;
|
| +const Instr kPopInstruction =
|
| + al | PostIndex | 4 | LeaveCC | I | sp.code() * B16 | sp.code() * B12;
|
| // str(r, MemOperand(sp, 4, NegPreIndex), al) instruction (aka push(r))
|
| // register r is not encoded.
|
| -static const Instr kPushRegPattern =
|
| +const Instr kPushRegPattern =
|
| al | B26 | 4 | NegPreIndex | sp.code() * B16;
|
| // ldr(r, MemOperand(sp, 4, PostIndex), al) instruction (aka pop(r))
|
| // register r is not encoded.
|
| -static const Instr kPopRegPattern =
|
| +const Instr kPopRegPattern =
|
| al | B26 | L | 4 | PostIndex | sp.code() * B16;
|
| // mov lr, pc
|
| -const Instr kMovLrPc = al | 13*B21 | pc.code() | lr.code() * B12;
|
| +const Instr kMovLrPc = al | MOV | pc.code() | lr.code() * B12;
|
| // ldr rd, [pc, #offset]
|
| const Instr kLdrPCMask = CondMask | 15 * B24 | 7 * B20 | 15 * B16;
|
| const Instr kLdrPCPattern = al | 5 * B24 | L | pc.code() * B16;
|
| @@ -280,7 +235,7 @@
|
| const Instr kBlxRegMask =
|
| 15 * B24 | 15 * B20 | 15 * B16 | 15 * B12 | 15 * B8 | 15 * B4;
|
| const Instr kBlxRegPattern =
|
| - B24 | B21 | 15 * B16 | 15 * B12 | 15 * B8 | 3 * B4;
|
| + B24 | B21 | 15 * B16 | 15 * B12 | 15 * B8 | BLX;
|
| const Instr kMovMvnMask = 0x6d * B21 | 0xf * B16;
|
| const Instr kMovMvnPattern = 0xd * B21;
|
| const Instr kMovMvnFlip = B22;
|
| @@ -292,33 +247,28 @@
|
| const Instr kCmpCmnMask = 0xdd * B20 | 0xf * B12;
|
| const Instr kCmpCmnPattern = 0x15 * B20;
|
| const Instr kCmpCmnFlip = B21;
|
| -const Instr kALUMask = 0x6f * B21;
|
| -const Instr kAddPattern = 0x4 * B21;
|
| -const Instr kSubPattern = 0x2 * B21;
|
| -const Instr kBicPattern = 0xe * B21;
|
| -const Instr kAndPattern = 0x0 * B21;
|
| const Instr kAddSubFlip = 0x6 * B21;
|
| const Instr kAndBicFlip = 0xe * B21;
|
|
|
| // A mask for the Rd register for push, pop, ldr, str instructions.
|
| -const Instr kRdMask = 0x0000f000;
|
| -static const int kRdShift = 12;
|
| -static const Instr kLdrRegFpOffsetPattern =
|
| +const Instr kLdrRegFpOffsetPattern =
|
| al | B26 | L | Offset | fp.code() * B16;
|
| -static const Instr kStrRegFpOffsetPattern =
|
| +const Instr kStrRegFpOffsetPattern =
|
| al | B26 | Offset | fp.code() * B16;
|
| -static const Instr kLdrRegFpNegOffsetPattern =
|
| +const Instr kLdrRegFpNegOffsetPattern =
|
| al | B26 | L | NegOffset | fp.code() * B16;
|
| -static const Instr kStrRegFpNegOffsetPattern =
|
| +const Instr kStrRegFpNegOffsetPattern =
|
| al | B26 | NegOffset | fp.code() * B16;
|
| -static const Instr kLdrStrInstrTypeMask = 0xffff0000;
|
| -static const Instr kLdrStrInstrArgumentMask = 0x0000ffff;
|
| -static const Instr kLdrStrOffsetMask = 0x00000fff;
|
| +const Instr kLdrStrInstrTypeMask = 0xffff0000;
|
| +const Instr kLdrStrInstrArgumentMask = 0x0000ffff;
|
| +const Instr kLdrStrOffsetMask = 0x00000fff;
|
|
|
| +
|
| // Spare buffer.
|
| static const int kMinimalBufferSize = 4*KB;
|
| static byte* spare_buffer_ = NULL;
|
|
|
| +
|
| Assembler::Assembler(void* buffer, int buffer_size)
|
| : positions_recorder_(this),
|
| allow_peephole_optimization_(false) {
|
| @@ -473,18 +423,18 @@
|
|
|
| Register Assembler::GetRd(Instr instr) {
|
| Register reg;
|
| - reg.code_ = ((instr & kRdMask) >> kRdShift);
|
| + reg.code_ = Instruction::RdValue(instr);
|
| return reg;
|
| }
|
|
|
|
|
| bool Assembler::IsPush(Instr instr) {
|
| - return ((instr & ~kRdMask) == kPushRegPattern);
|
| + return ((instr & ~RdMask) == kPushRegPattern);
|
| }
|
|
|
|
|
| bool Assembler::IsPop(Instr instr) {
|
| - return ((instr & ~kRdMask) == kPopRegPattern);
|
| + return ((instr & ~RdMask) == kPopRegPattern);
|
| }
|
|
|
|
|
| @@ -511,7 +461,7 @@
|
| bool Assembler::IsLdrPcImmediateOffset(Instr instr) {
|
| // Check the instruction is indeed a
|
| // ldr<cond> <Rd>, [pc +/- offset_12].
|
| - return (instr & 0x0f7f0000) == 0x051f0000;
|
| + return (instr & (kLdrPCMask & ~CondMask)) == 0x051f0000;
|
| }
|
|
|
|
|
| @@ -538,7 +488,8 @@
|
| }
|
| ASSERT((instr & 7*B25) == 5*B25); // b, bl, or blx imm24
|
| int imm26 = ((instr & Imm24Mask) << 8) >> 6;
|
| - if ((instr & CondMask) == nv && (instr & B24) != 0) {
|
| + if ((Instruction::ConditionField(instr) == special_condition) &&
|
| + ((instr & B24) != 0)) {
|
| // blx uses bit 24 to encode bit 2 of imm26
|
| imm26 += 2;
|
| }
|
| @@ -557,7 +508,7 @@
|
| }
|
| int imm26 = target_pos - (pos + kPcLoadDelta);
|
| ASSERT((instr & 7*B25) == 5*B25); // b, bl, or blx imm24
|
| - if ((instr & CondMask) == nv) {
|
| + if (Instruction::ConditionField(instr) == special_condition) {
|
| // blx uses bit 24 to encode bit 2 of imm26
|
| ASSERT((imm26 & 1) == 0);
|
| instr = (instr & ~(B24 | Imm24Mask)) | ((imm26 & 2) >> 1)*B24;
|
| @@ -586,10 +537,10 @@
|
| PrintF("value\n");
|
| } else {
|
| ASSERT((instr & 7*B25) == 5*B25); // b, bl, or blx
|
| - int cond = instr & CondMask;
|
| + Condition cond = Instruction::ConditionField(instr);
|
| const char* b;
|
| const char* c;
|
| - if (cond == nv) {
|
| + if (cond == special_condition) {
|
| b = "blx";
|
| c = "";
|
| } else {
|
| @@ -730,15 +681,15 @@
|
| return true;
|
| }
|
| } else {
|
| - Instr alu_insn = (*instr & kALUMask);
|
| - if (alu_insn == kAddPattern ||
|
| - alu_insn == kSubPattern) {
|
| + Instr alu_insn = (*instr & ALUMask);
|
| + if (alu_insn == ADD ||
|
| + alu_insn == SUB) {
|
| if (fits_shifter(-imm32, rotate_imm, immed_8, NULL)) {
|
| *instr ^= kAddSubFlip;
|
| return true;
|
| }
|
| - } else if (alu_insn == kAndPattern ||
|
| - alu_insn == kBicPattern) {
|
| + } else if (alu_insn == AND ||
|
| + alu_insn == BIC) {
|
| if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) {
|
| *instr ^= kAndBicFlip;
|
| return true;
|
| @@ -794,7 +745,7 @@
|
| // However, if the original instruction is a 'mov rd, x' (not setting the
|
| // condition code), then replace it with a 'ldr rd, [pc]'.
|
| CHECK(!rn.is(ip)); // rn should never be ip, or will be trashed
|
| - Condition cond = static_cast<Condition>(instr & CondMask);
|
| + Condition cond = Instruction::ConditionField(instr);
|
| if ((instr & ~CondMask) == 13*B21) { // mov, S not set
|
| if (x.must_use_constant_pool() || !CpuFeatures::IsSupported(ARMv7)) {
|
| RecordRelocInfo(x.rmode_, x.imm32_);
|
| @@ -849,8 +800,7 @@
|
| // Immediate offset cannot be encoded, load it first to register ip
|
| // rn (and rd in a load) should never be ip, or will be trashed.
|
| ASSERT(!x.rn_.is(ip) && ((instr & L) == L || !rd.is(ip)));
|
| - mov(ip, Operand(x.offset_), LeaveCC,
|
| - static_cast<Condition>(instr & CondMask));
|
| + mov(ip, Operand(x.offset_), LeaveCC, Instruction::ConditionField(instr));
|
| addrmod2(instr, rd, MemOperand(x.rn_, ip, x.am_));
|
| return;
|
| }
|
| @@ -883,8 +833,7 @@
|
| // Immediate offset cannot be encoded, load it first to register ip
|
| // rn (and rd in a load) should never be ip, or will be trashed.
|
| ASSERT(!x.rn_.is(ip) && ((instr & L) == L || !rd.is(ip)));
|
| - mov(ip, Operand(x.offset_), LeaveCC,
|
| - static_cast<Condition>(instr & CondMask));
|
| + mov(ip, Operand(x.offset_), LeaveCC, Instruction::ConditionField(instr));
|
| addrmod3(instr, rd, MemOperand(x.rn_, ip, x.am_));
|
| return;
|
| }
|
| @@ -895,7 +844,7 @@
|
| // rn (and rd in a load) should never be ip, or will be trashed.
|
| ASSERT(!x.rn_.is(ip) && ((instr & L) == L || !rd.is(ip)));
|
| mov(ip, Operand(x.rm_, x.shift_op_, x.shift_imm_), LeaveCC,
|
| - static_cast<Condition>(instr & CondMask));
|
| + Instruction::ConditionField(instr));
|
| addrmod3(instr, rd, MemOperand(x.rn_, ip, x.am_));
|
| return;
|
| } else {
|
| @@ -1006,21 +955,21 @@
|
| int h = ((branch_offset & 2) >> 1)*B24;
|
| int imm24 = branch_offset >> 2;
|
| ASSERT(is_int24(imm24));
|
| - emit(nv | B27 | B25 | h | (imm24 & Imm24Mask));
|
| + emit(special_condition | B27 | B25 | h | (imm24 & Imm24Mask));
|
| }
|
|
|
|
|
| void Assembler::blx(Register target, Condition cond) { // v5 and above
|
| positions_recorder()->WriteRecordedPositions();
|
| ASSERT(!target.is(pc));
|
| - emit(cond | B24 | B21 | 15*B16 | 15*B12 | 15*B8 | 3*B4 | target.code());
|
| + emit(cond | B24 | B21 | 15*B16 | 15*B12 | 15*B8 | BLX | target.code());
|
| }
|
|
|
|
|
| void Assembler::bx(Register target, Condition cond) { // v5 and above, plus v4t
|
| positions_recorder()->WriteRecordedPositions();
|
| ASSERT(!target.is(pc)); // use of pc is actually allowed, but discouraged
|
| - emit(cond | B24 | B21 | 15*B16 | 15*B12 | 15*B8 | B4 | target.code());
|
| + emit(cond | B24 | B21 | 15*B16 | 15*B12 | 15*B8 | BX | target.code());
|
| }
|
|
|
|
|
| @@ -1028,31 +977,31 @@
|
|
|
| void Assembler::and_(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 0*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | AND | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::eor(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 1*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | EOR | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::sub(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 2*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | SUB | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::rsb(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 3*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | RSB | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::add(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 4*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | ADD | s, src1, dst, src2);
|
|
|
| // Eliminate pattern: push(r), pop()
|
| // str(src, MemOperand(sp, 4, NegPreIndex), al);
|
| @@ -1072,45 +1021,45 @@
|
|
|
| void Assembler::adc(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 5*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | ADC | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::sbc(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 6*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | SBC | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::rsc(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 7*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | RSC | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::tst(Register src1, const Operand& src2, Condition cond) {
|
| - addrmod1(cond | 8*B21 | S, src1, r0, src2);
|
| + addrmod1(cond | TST | S, src1, r0, src2);
|
| }
|
|
|
|
|
| void Assembler::teq(Register src1, const Operand& src2, Condition cond) {
|
| - addrmod1(cond | 9*B21 | S, src1, r0, src2);
|
| + addrmod1(cond | TEQ | S, src1, r0, src2);
|
| }
|
|
|
|
|
| void Assembler::cmp(Register src1, const Operand& src2, Condition cond) {
|
| - addrmod1(cond | 10*B21 | S, src1, r0, src2);
|
| + addrmod1(cond | CMP | S, src1, r0, src2);
|
| }
|
|
|
|
|
| void Assembler::cmn(Register src1, const Operand& src2, Condition cond) {
|
| - addrmod1(cond | 11*B21 | S, src1, r0, src2);
|
| + addrmod1(cond | CMN | S, src1, r0, src2);
|
| }
|
|
|
|
|
| void Assembler::orr(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 12*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | ORR | s, src1, dst, src2);
|
| }
|
|
|
|
|
| @@ -1122,7 +1071,7 @@
|
| // the mov instruction. They must be generated using nop(int/NopMarkerTypes)
|
| // or MarkCode(int/NopMarkerTypes) pseudo instructions.
|
| ASSERT(!(src.is_reg() && src.rm().is(dst) && s == LeaveCC && cond == al));
|
| - addrmod1(cond | 13*B21 | s, r0, dst, src);
|
| + addrmod1(cond | MOV | s, r0, dst, src);
|
| }
|
|
|
|
|
| @@ -1139,12 +1088,12 @@
|
|
|
| void Assembler::bic(Register dst, Register src1, const Operand& src2,
|
| SBit s, Condition cond) {
|
| - addrmod1(cond | 14*B21 | s, src1, dst, src2);
|
| + addrmod1(cond | BIC | s, src1, dst, src2);
|
| }
|
|
|
|
|
| void Assembler::mvn(Register dst, const Operand& src, SBit s, Condition cond) {
|
| - addrmod1(cond | 15*B21 | s, r0, dst, src);
|
| + addrmod1(cond | MVN | s, r0, dst, src);
|
| }
|
|
|
|
|
| @@ -1222,7 +1171,7 @@
|
| // v5 and above.
|
| ASSERT(!dst.is(pc) && !src.is(pc));
|
| emit(cond | B24 | B22 | B21 | 15*B16 | dst.code()*B12 |
|
| - 15*B8 | B4 | src.code());
|
| + 15*B8 | CLZ | src.code());
|
| }
|
|
|
|
|
| @@ -1376,7 +1325,7 @@
|
| Instr pop_instr = instr_at(pc_ - 1 * kInstrSize);
|
|
|
| if (IsPush(push_instr) && IsPop(pop_instr)) {
|
| - if ((pop_instr & kRdMask) != (push_instr & kRdMask)) {
|
| + if (Instruction::RdValue(pop_instr) != Instruction::RdValue(push_instr)) {
|
| // For consecutive push and pop on different registers,
|
| // we delete both the push & pop and insert a register move.
|
| // push ry, pop rx --> mov rx, ry
|
| @@ -1457,8 +1406,8 @@
|
| IsPop(mem_read_instr)) {
|
| if ((IsLdrRegFpOffset(ldr_instr) ||
|
| IsLdrRegFpNegOffset(ldr_instr))) {
|
| - if ((mem_write_instr & kRdMask) ==
|
| - (mem_read_instr & kRdMask)) {
|
| + if (Instruction::RdValue(mem_write_instr) ==
|
| + Instruction::RdValue(mem_read_instr)) {
|
| // Pattern: push & pop from/to same register,
|
| // with a fp+offset ldr in between
|
| //
|
| @@ -1473,7 +1422,8 @@
|
| // else
|
| // ldr rz, [fp, #-24]
|
|
|
| - if ((mem_write_instr & kRdMask) == (ldr_instr & kRdMask)) {
|
| + if (Instruction::RdValue(mem_write_instr) ==
|
| + Instruction::RdValue(ldr_instr)) {
|
| pc_ -= 3 * kInstrSize;
|
| } else {
|
| pc_ -= 3 * kInstrSize;
|
| @@ -1503,22 +1453,23 @@
|
| // ldr rz, [fp, #-24]
|
|
|
| Register reg_pushed, reg_popped;
|
| - if ((mem_read_instr & kRdMask) == (ldr_instr & kRdMask)) {
|
| + if (Instruction::RdValue(mem_read_instr) ==
|
| + Instruction::RdValue(ldr_instr)) {
|
| reg_pushed = GetRd(mem_write_instr);
|
| reg_popped = GetRd(mem_read_instr);
|
| pc_ -= 3 * kInstrSize;
|
| mov(reg_popped, reg_pushed);
|
| - } else if ((mem_write_instr & kRdMask)
|
| - != (ldr_instr & kRdMask)) {
|
| + } else if (Instruction::RdValue(mem_write_instr)
|
| + != Instruction::RdValue(ldr_instr)) {
|
| reg_pushed = GetRd(mem_write_instr);
|
| reg_popped = GetRd(mem_read_instr);
|
| pc_ -= 3 * kInstrSize;
|
| emit(ldr_instr);
|
| mov(reg_popped, reg_pushed);
|
| - } else if (((mem_read_instr & kRdMask)
|
| - != (ldr_instr & kRdMask)) ||
|
| - ((mem_write_instr & kRdMask)
|
| - == (ldr_instr & kRdMask)) ) {
|
| + } else if ((Instruction::RdValue(mem_read_instr) !=
|
| + Instruction::RdValue(ldr_instr)) ||
|
| + (Instruction::RdValue(mem_write_instr) ==
|
| + Instruction::RdValue(ldr_instr)) ) {
|
| reg_pushed = GetRd(mem_write_instr);
|
| reg_popped = GetRd(mem_read_instr);
|
| pc_ -= 3 * kInstrSize;
|
| @@ -1640,18 +1591,14 @@
|
| // enabling/disabling and a counter feature. See simulator-arm.h .
|
| void Assembler::stop(const char* msg, Condition cond, int32_t code) {
|
| #ifndef __arm__
|
| - // See constants-arm.h SoftwareInterruptCodes. Unluckily the Assembler and
|
| - // Simulator do not share constants declaration.
|
| ASSERT(code >= kDefaultStopCode);
|
| - static const uint32_t kStopInterruptCode = 1 << 23;
|
| - static const uint32_t kMaxStopCode = kStopInterruptCode - 1;
|
| // The Simulator will handle the stop instruction and get the message address.
|
| // It expects to find the address just after the svc instruction.
|
| BlockConstPoolFor(2);
|
| if (code >= 0) {
|
| - svc(kStopInterruptCode + code, cond);
|
| + svc(stop_code + code, cond);
|
| } else {
|
| - svc(kStopInterruptCode + kMaxStopCode, cond);
|
| + svc(stop_code + kMaxStopCode, cond);
|
| }
|
| emit(reinterpret_cast<Instr>(msg));
|
| #else // def __arm__
|
| @@ -1673,7 +1620,7 @@
|
|
|
| void Assembler::bkpt(uint32_t imm16) { // v5 and above
|
| ASSERT(is_uint16(imm16));
|
| - emit(al | B24 | B21 | (imm16 >> 4)*B8 | 7*B4 | (imm16 & 0xf));
|
| + emit(al | B24 | B21 | (imm16 >> 4)*B8 | BKPT | (imm16 & 0xf));
|
| }
|
|
|
|
|
| @@ -1703,7 +1650,7 @@
|
| CRegister crn,
|
| CRegister crm,
|
| int opcode_2) { // v5 and above
|
| - cdp(coproc, opcode_1, crd, crn, crm, opcode_2, static_cast<Condition>(nv));
|
| + cdp(coproc, opcode_1, crd, crn, crm, opcode_2, special_condition);
|
| }
|
|
|
|
|
| @@ -1726,7 +1673,7 @@
|
| CRegister crn,
|
| CRegister crm,
|
| int opcode_2) { // v5 and above
|
| - mcr(coproc, opcode_1, rd, crn, crm, opcode_2, static_cast<Condition>(nv));
|
| + mcr(coproc, opcode_1, rd, crn, crm, opcode_2, special_condition);
|
| }
|
|
|
|
|
| @@ -1749,7 +1696,7 @@
|
| CRegister crn,
|
| CRegister crm,
|
| int opcode_2) { // v5 and above
|
| - mrc(coproc, opcode_1, rd, crn, crm, opcode_2, static_cast<Condition>(nv));
|
| + mrc(coproc, opcode_1, rd, crn, crm, opcode_2, special_condition);
|
| }
|
|
|
|
|
| @@ -1779,7 +1726,7 @@
|
| CRegister crd,
|
| const MemOperand& src,
|
| LFlag l) { // v5 and above
|
| - ldc(coproc, crd, src, l, static_cast<Condition>(nv));
|
| + ldc(coproc, crd, src, l, special_condition);
|
| }
|
|
|
|
|
| @@ -1788,7 +1735,7 @@
|
| Register rn,
|
| int option,
|
| LFlag l) { // v5 and above
|
| - ldc(coproc, crd, rn, option, l, static_cast<Condition>(nv));
|
| + ldc(coproc, crd, rn, option, l, special_condition);
|
| }
|
|
|
|
|
| @@ -1818,7 +1765,7 @@
|
| coproc, CRegister crd,
|
| const MemOperand& dst,
|
| LFlag l) { // v5 and above
|
| - stc(coproc, crd, dst, l, static_cast<Condition>(nv));
|
| + stc(coproc, crd, dst, l, special_condition);
|
| }
|
|
|
|
|
| @@ -1827,7 +1774,7 @@
|
| Register rn,
|
| int option,
|
| LFlag l) { // v5 and above
|
| - stc(coproc, crd, rn, option, l, static_cast<Condition>(nv));
|
| + stc(coproc, crd, rn, option, l, special_condition);
|
| }
|
|
|
|
|
|
|