Tài liệu ARM Architecture Reference Manual- P13 pdf

30 627 0
Tài liệu ARM Architecture Reference Manual- P13 pdf

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Thumb Instructions ARM DDI 0100E Copyright © 1996-2000 ARM Limited. All rights reserved. A7-57 7.1.35 LDRSH The LDRSH (Load Register Signed Halfword) instruction loads a halfword from memory and sign-extends it to form a 32-bit word, which is written to a general-purpose register. Syntax LDRSH <Rd>, [<Rn>, <Rm>] where: <Rd> Is the destination register for the halfword loaded from memory. <Rn> Is the register containing the first value used in forming the memory address. <Rm> Is the register containing the second value used in forming the memory address. Architecture version All T variants Exceptions Data Abort Operation address = Rn + Rm if address[0] == 0 data = Memory[address,2] else data = UNPREDICTABLE Rd = SignExtend(data) Notes Data abort For details of the effects of the instruction if a data abort occurs, see Effects of data-aborted instructions on page A2-17. Alignment If the memory address is not halfword-aligned and no data abort occurs, the value written to the destination register is UNPREDICTABLE. If an implementation includes a System Control coprocessor (see Chapter B2 The System Control Coprocessor) and alignment checking is enabled, an address with bit[0] != 0 causes an alignment exception (a type of data abort). 15 14 13 12 11 10 9 8 6 5 3 2 0 0101111 Rm Rn Rd Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions A7-58 Copyright © 1996-2000 ARM Limited. All rights reserved. ARM DDI 0100E Equivalent ARM syntax and encoding LDRSH <Rd>, [<Rn>, <Rm>] 31302928272625242322212019 1615 1211 876543 0 111000011001 Rn Rd SBZ 1111 Rm Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions ARM DDI 0100E Copyright © 1996-2000 ARM Limited. All rights reserved. A7-59 7.1.36 LSL (1) This form of the LSL (Logical Shift Left) instruction is used to provide either the value of a register directly (LSL #0), or the value of a register multiplied by a constant power of two. Zeros are inserted into the bit positions vacated by the shift, and the condition code flags are updated, based on the result. Syntax LSL <Rd>, <Rm>, #<immed_5> where: <Rd> Is the register that stores the result of the operation. <Rm> Is the register containing the value to be shifted. <immed_5> Specifies the shift amount, in the range 0 to 31. Architecture version All T variants Exceptions None Operation if immed_5 == 0 C Flag = unaffected Rd = Rm else /* immed_5 > 0 */ C Flag = Rm[32 - immed_5] Rd = Rm Logical_Shift_Left immed_5 N Flag = Rd[31] Z Flag = if Rd == 0 then 1 else 0 V Flag = unaffected Equivalent ARM syntax and encoding MOVS <Rd>, <Rm>, LSL #<immed_5> 15 14 13 12 11 10 6 5 3 2 0 00000 immed_5 Rm Rd 31 30 29 28 27 26 25 24 23 22 21 20 19 16 15 12 11 7 6 5 4 3 0 111000011011 SBZ Rd immed_5 000 Rm Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions A7-60 Copyright © 1996-2000 ARM Limited. All rights reserved. ARM DDI 0100E 7.1.37 LSL (2) This form of LSL is used to provide the value of a register multiplied by a variable power of two. Zeros are inserted into the vacated bit positions. The condition code flags are updated, based on the result. Syntax LSL <Rd>, <Rs> where: <Rd> Contains the value to be shifted, and is the destination register for the result of the operation. <Rs> Is the register containing the shift value. The value is held in the least significant byte. Architecture version All T variants Exceptions None Operation if Rs[7:0] == 0 C Flag = unaffected Rd = unaffected else if Rs[7:0] < 32 then C Flag = Rd[32 - Rs[7:0]] Rd = Rd Logical_Shift_Left Rs[7:0] else if Rs[7:0] == 32 then C Flag = Rd[0] Rd = 0 else /* Rs[7:0] > 32 */ C Flag = 0 Rd = 0 N Flag = Rd[31] Z Flag = if Rd == 0 then 1 else 0 V Flag = unaffected 15 14 13 12 11 10 9 8 7 6 5 3 2 0 0100000010 Rs Rd Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions ARM DDI 0100E Copyright © 1996-2000 ARM Limited. All rights reserved. A7-61 Equivalent ARM syntax and encoding MOVS <Rd>, <Rd>, LSL <Rs> 31 30 29 28 27 26 25 24 23 22 21 20 19 16 15 12 11 8 7 6 5 4 3 0 111000011011 SBZ Rd Rs 0001 Rd Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions A7-62 Copyright © 1996-2000 ARM Limited. All rights reserved. ARM DDI 0100E 7.1.38 LSR (1) This form of the LSR (Logical Shift Right) instruction is used to provide the unsigned value of a register, divided by a constant power of two. LSR performs a logical shift right of the value of register <Rm>, and zeros are inserted into the vacated bit positions. The condition code flags are updated, based on the result. Syntax LSR <Rd>, <Rm>, #<immed_5> where: <Rd> Is the destination register for the operation. <Rm> Is the register containing the value to be shifted. <immed_5> Specifies the shift amount, in the range 1 to 32. Shifts by 1 to 31 are encoded directly in immed_5. A shift by 32 is encoded as immed_5 == 0. Architecture version All T variants Exceptions None Operation if immed_5 == 0 C Flag = Rd[31] Rd = 0 else /* immed_5 > 0 */ C Flag = Rd[immed_5 - 1] Rd = Rm Logical_Shift_Right immed_5 N Flag = Rd[31] Z Flag = if Rd == 0 then 1 else 0 V Flag = unaffected 15 14 13 12 11 10 6 5 3 2 0 00001 immed_5 Rm Rd Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions ARM DDI 0100E Copyright © 1996-2000 ARM Limited. All rights reserved. A7-63 Equivalent ARM syntax and encoding MOVS <Rd>, <Rm>, LSR #<immed_5> 31 30 29 28 27 26 25 24 23 22 21 20 19 16 15 12 11 7 6 5 4 3 0 111000011011 SBZ Rd immed_5 010 Rm Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions A7-64 Copyright © 1996-2000 ARM Limited. All rights reserved. ARM DDI 0100E 7.1.39 LSR (2) This form of LSR is used to provide the unsigned value of a register divided by a variable power of two. Zeros are inserted into the vacated bit positions. The condition code flags are updated, based on the result. Syntax LSR <Rd>, <Rs> where: <Rd> Contains the value to be shifted, and is the destination register for the result of the operation. <Rs> Is the register containing the shift value. The value is held in the least significant byte. Architecture version All T variants Exceptions None Operation if Rs[7:0] == 0 then C Flag = unaffected Rd = unaffected else if Rs[7:0] < 32 then C Flag = Rd[Rs[7:0] - 1] Rd = Rd Logical_Shift_Right Rs[7:0] else if Rs[7:0] == 32 then C Flag = Rd[31] Rd = 0 else /* Rs[7:0] > 32 */ C Flag = 0 Rd = 0 N Flag = Rd[31] Z Flag = if Rd == 0 then 1 else 0 V Flag = unaffected 15 14 13 12 11 10 9 8 7 6 5 3 2 0 0100000011 Rs Rd Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions ARM DDI 0100E Copyright © 1996-2000 ARM Limited. All rights reserved. A7-65 Equivalent ARM syntax and encoding MOVS <Rd>, <Rd>, LSR <Rs> 31 30 29 28 27 26 25 24 23 22 21 20 19 16 15 12 11 8 7 6 5 4 3 0 111000011011 SBZ Rd Rs 0011 Rd Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions A7-66 Copyright © 1996-2000 ARM Limited. All rights reserved. ARM DDI 0100E 7.1.40 MOV (1) This form of the MOV (Move) instruction moves a large immediate value to a register. The condition code flags are updated, based on the result. Syntax MOV <Rd>, #<immed_8> where: <Rd> Is the destination register for the operation. <immed_8> Is an 8-bit immediate value, in the range 0 to 255, to move into <Rd>. Architecture version All T variants Exceptions None Operation Rd = immed_8 N Flag = Rd[31] Z Flag = if Rd == 0 then 1 else 0 C Flag = unaffected V Flag = unaffected Equivalent ARM syntax and encoding MOVS <Rd>, #<immed_8> 15 14 13 12 11 10 8 7 0 00100 Rd immed_8 31 30 29 28 27 26 25 24 23 22 21 20 19 16 15 12 11 10 9 8 7 0 111000111011 SBZ Rd 0000 immed_8 Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. [...]... exception A7-76 Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark ARM DDI 0100E Thumb Instructions ARM/ Thumb state transfers In ARM architecture 5 and above, if bits[1:0] of a value loaded for R15 are 0b10, the result is UNPREDICTABLE, as branches to non word-aligned addresses are not possible in ARM state Time order The time order... an ARM routine In T variants of ARM architecture 5 and above, there are more efficient ways of doing this See BX on page A7-32 for more details Notes Operand restriction If a low register is specified for and (H1==0 and H2==0), the result is UNPREDICTABLE A7-68 Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark ARM. .. purchase PDF Split-Merge on www.verypdf.com to remove this watermark ARM DDI 0100E Thumb Instructions Equivalent ARM syntax and encoding MOVS , , ROR 31 30 29 28 27 26 25 24 23 22 21 20 19 1 1 1 0 0 0 0 1 1 0 1 1 ARM DDI 0100E 16 15 SBZ 12 11 Rd 8 Rs 7 6 5 4 0 1 1 1 Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark... registers specified in The SP register is incremented by four times the numbers of registers in ARM DDI 0100E Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark A7-75 Thumb Instructions Architecture version All T variants Exceptions Data Abort Operation start_address = SP end_address = SP + 4*(R + Number_Of_Set_Bits_In(register_list))... multiplied with the value of Architecture version All T variants Exceptions None Operation Rd = (Rm N Flag = Z Flag = C Flag = V Flag = A7-70 * Rd)[31:0] Rd[31] if Rd == 0 then 1 else 0 unaffected /* See "C flag" note */ unaffected Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark ARM DDI 0100E Thumb Instructions Notes... accesses to memory-mapped I/O on page A2-32 for details Equivalent ARM syntax and encoding LDMIA SP!, 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 1 1 1 0 1 0 0 0 1 0 1 1 1 1 0 1 R 0 0 0 0 0 0 0 ARM DDI 0100E Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark 0 register_list A7-77 Thumb Instructions... original value of SP The SP register is decremented by four times the numbers of registers in Architecture version All T variants Exceptions Data Abort A7-78 Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark ARM DDI 0100E Thumb Instructions Operation start_address = SP - 4*(R + Number_Of_Set_Bits_In(register_list))... accesses to memory-mapped I/O on page A2-32 for details Equivalent ARM syntax and encoding STMDB SP!, 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 1 1 1 0 1 0 0 1 0 0 1 0 1 1 0 1 0 R 0 0 0 0 0 0 ARM DDI 0100E Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark 0 register_list A7-79 Thumb Instructions... instruction is not a suitable alternative, as it violates the operand restriction on the ARM instruction (see MUL on page A4-66) and might have the wrong early termination behavior: MULS ARM DDI 0100E , , Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark A7-71 Thumb Instructions 7.1.44 MVN 15 14 13 12 11 10 9... subtracted from Architecture version All T variants Exceptions None Operation Rd = Rd - Rm - NOT(C Flag) N Flag = Rd[31] Z Flag = if Rd == 0 then 1 else 0 C Flag = NOT BorrowFrom(Rd - Rm - NOT(C Flag)) V Flag = OverflowFrom(Rd - Rm - NOT(C Flag)) A7-82 Copyright © 1996-2000 ARM Limited All rights reserved Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark ARM DDI 0100E Thumb . purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions A7-58 Copyright © 1996-2000 ARM Limited. All rights reserved. ARM DDI. Rm Please purchase PDF Split-Merge on www.verypdf.com to remove this watermark. Thumb Instructions ARM DDI 0100E Copyright © 1996-2000 ARM Limited. All rights

Ngày đăng: 26/01/2014, 19:20

Từ khóa liên quan

Mục lục

  • ARM Architecture ReferenceManual

    • Preface

      • Preface

      • About this manual

      • Architecture versions and variants

        • The Thumb instruction set (T variants)

          • Thumb instruction set versions

          • Long multiply instructions (M variants)

          • Enhanced DSP instructions (E variants)

            • The ARMv5TExP architecture version

            • Naming of ARM/Thumb architecture versions

            • Using this manual

              • Part A - CPU Architectures

              • Part B - Memory and System Architectures

              • Part C - Vector Floating-point Architecture

              • Conventions

                • General typographic conventions

                • Pseudo-code descriptions of instructions

                • Assembler syntax descriptions

                • Contents

                • Contents

                  • Preface

                  • Chapter A1 Introduction to the ARM Architecture

                  • Chapter A2 Programmer’s Model

                  • Chapter A3 The ARM Instruction Set

                  • Chapter A4 ARM Instructions

                  • Chapter A5 ARM Addressing Modes

                  • Chapter A6 The Thumb Instruction Set

Tài liệu cùng người dùng

Tài liệu liên quan