ARM Processor Architecture
Total Page:16
File Type:pdf, Size:1020Kb
ARMARM ProcessorProcessor ArchitectureArchitecture Jin-Fu Li Department of Electrical Engineering National Central University Adopted from National Chiao-Tung University IP Core Design SOC Consortium Course Material Outline ARM Processor Core Memory Hierarchy Software Development Summary SOC Consortium Course Material 2 ARM Processor Core SOC Consortium Course Material 3 3-Stage Pipeline ARM Organization A[31:0] control Register Bank address register – 2 read ports, 1 write ports, P access any register incrementer C – 1 additional read port, 1 PC additional write port for r15 (PC) register bank Barrel Shifter instruction decode – Shift or rotate the operand by A multiply & any number of bits L register U control A B b ALU u b b s u u s barrel s shifter Address register and incrementer ALU Data Registers – Hold data passing to and from memory data out register data in register Instruction Decoder and D[31:0] Control SOC Consortium Course Material 4 3-Stage Pipeline (1/2) Fetch – The instruction is fetched from memory and placed in the instruction pipeline Decode – The instruction is decoded and the datapath control signals prepared for the next cycle Execute – The register bank is read, an operand shifted, the ALU result generated and written back into destination register SOC Consortium Course Material 5 3-Stage Pipeline (2/2) At any time slice, 3 different instructions may occupy each of these stages, so the hardware in each stage has to be capable of independent operations When the processor is executing data processing instructions , the latency = 3 cycles and the throughput = 1 instruction/cycle SOC Consortium Course Material 6 Multi-cycle Instruction Memory access (fetch, data transfer) in every cycle Datapath used in every cycle (execute, address calculation, data transfer) Decode logic generates the control signals for the data path use in next cycle (decode, address calculation) SOC Consortium Course Material 7 Data Processing Instruction address register address register increment increment Rd PC Rd PC registers registers Rn Rm Rn mult mult as ins. as ins. as instruction as instruction [7:0] data out data in i. pipe data out data in i. pipe (a) register - register operations (b) register - immediate operations All operations take place in a single clock cycle SOC Consortium Course Material 8 Data Transfer Instructions address register address register increment increment PC Rn PC registers registers Rn Rd mult mult lsl #0 shifter = A / A + B / A - B = A + B / A - B [11:0] data out data in i. pipe byte? data in i. pipe (a) 1st cycle - compute address (b) 2nd cycle - store data & auto-index Computes a memory address similar to a data processing instruction Load instruction follow a similar pattern except that the data from memory only gets as far as the ‘data in’ register on the 2nd cycle and a 3rd cycle is needed to transfer the data from there to the destination register SOC Consortium Course Material 9 Branch Instructions address register address register increment increment R14 registers registers PC PC mult mult lsl #2 shifter = A + B = A [23:0] data out data in i. pipe data out data in i. pipe (a) 1st cycle - compute branch target (b) 2nd cycle - save return address The third cycle, which is required to complete the pipeline refilling, is also used to mark the small correction to the value stored in the link register in order that is points directly at the instruction which follows the branch SOC Consortium Course Material 10 Branch Pipeline Example Breaking the pipeline Note that the core is executing in the ARM state SOC Consortium Course Material 11 5-Stage Pipeline ARM Organization Tprog = Ninst * CPI / fclk –Tprog: the time that execute a given program –Ninst: the number of ARM instructions executed in the program => compiler dependent – CPI: average number of clock cycles per instructions => hazard causes pipeline stalls –fclk: frequency Separate instruction and data memories => 5 stage pipeline Used in ARM9TDMI SOC Consortium Course Material 12 5-Stage Pipeline Organization (1/2) next pc +4 Fetch I-cache fetch pc + 4 – The instruction is fetched from memory and placed in the instruction pc + 8 I decode pipeline r15 instruction decode register read Decode immediate fields – The instruction is decoded and mul register operands read from the LDM/ STM post - +4 in dex reg register files. There are 3 operand shift shift pre-index read ports in the register file so most execute ALU forwarding ARM instructions can source all their mux pa ths B, B L operands in one cycle MOV pc SUBS pc byte repl. Execute D-cache buffer/ – An operand is shifted and the ALU load/store data address result generated. If the instruction is rot/sgn ex a load or store, the memory address LDR pc is computed in the ALU register write write-back SOC Consortium Course Material 13 5-Stage Pipeline Organization (2/2) next pc +4 Buffer/Data I-cache fetch pc + 4 – Data memory is accessed if required. Otherwise the ALU result is simply pc + 8 I decode buffered for one cycle r15 instruction decode register read Write back immediate fields – The result generated by the mul instruction are written back to the LDM/ STM post - +4 in dex reg register file, including any data shift shift pre-index loaded from memory execute ALU forwarding mux pa ths B, B L MOV pc SUBS pc byte repl. buffer/ load/store D-cache address data rot/sgn ex LDR pc register write write-back SOC Consortium Course Material 14 Pipeline Hazards There are situations, called hazards, that prevent the next instruction in the instruction stream from being executing during its designated clock cycle. Hazards reduce the performance from the ideal speedup gained by pipelining. There are three classes of hazards: – Structural Hazards: They arise from resource conflicts when the hardware cannot support all possible combinations of instructions in simultaneous overlapped execution. – Data Hazards: They arise when an instruction depends on the result of a previous instruction in a way that is exposed by the overlapping of instructions in the pipeline. – Control Hazards: They arise from the pipelining of branches and other instructions that change the PC SOC Consortium Course Material 15 Structural Hazards When a machine is pipelined, the overlapped execution of instructions requires pipelining of functional units and duplication of resources to allow all possible combinations of instructions in the pipeline. If some combination of instructions cannot be accommodated because of a resource conflict, the machine is said to have a structural hazard. SOC Consortium Course Material 16 Example A machine has shared a single-memory pipeline for data and instructions. As a result, when an instruction contains a data-memory reference (load), it will conflict with the instruction reference for a later instruction (instr 3): Clock cycle number instr 1 2 3 4 5 6 7 8 load IF ID EX MEM WB Instr 1 IF ID EX MEM WB Instr 2 IF ID EX MEM WB Instr 3 IF ID EX MEM WB SOC Consortium Course Material 17 Solution (1/2) To resolve this, we stall the pipeline for one clock cycle when a data-memory access occurs. The effect of the stall is actually to occupy the resources for that instruction slot. The following table shows how the stalls are actually implemented. Clock cycle number instr 1 2 3 4 5 6 7 8 9 load IF ID EX MEM WB Instr 1 IF ID EX MEM WB Instr 2 IF ID EX MEM WB Instr 3 stall IF ID EX MEM WB SOC Consortium Course Material 18 Solution (2/2) Another solution is to use separate instruction and data memories. ARM is use Harvard architecture, so we do not have this hazard SOC Consortium Course Material 19 Data Hazards Data hazards occur when the pipeline changes the order of read/write accesses to operands so that the order differs from the order seen by sequentially executing instructions on the unpipelined machine. Clock cycle number 1 2 3 4 5 6 7 8 9 ADD R1,R2,R3 IF ID EX MEM WB SUB R4,R5,R1 IF IDsub EX MEM WB AND R6,R1,R7 IF IDand EX MEM WB OR R8,R1,R9 IF IDor EX MEM WB XOR R10,R1,R11 IF IDxor EX MEM WB SOC Consortium Course Material 20 Forwarding The problem with data hazards, introduced by this sequence of instructions can be solved with a simple hardware technique called forwarding. Clock cycle number 1 2 3 4 5 6 7 ADD R1,R2,R3 IF ID EX MEM WB SUB R4,R5,R1 IF IDsub EX MEM WB AND R6,R1,R7 IF IDand EX MEM WB SOC Consortium Course Material 21 Forwarding Architecture next pc +4 I-cache fetch Forwarding works as pc + 4 follows: pc + 8 I decode – The ALU result from the r15 instruction EX/MEM register is always fed decode register read back to the ALU input latches. immediate fields – If the forwarding hardware mul LDM/ detects that the previous ALU STM post - +4 in dex reg operation has written the shift shift pre-index execute register corresponding to the ALU forwarding mux pa ths source for the current ALU B, B L MOV pc operation, control logic selects SUBS pc byte repl. the forwarded result as the ALU input rather than the value read buffer/ load/store D-cache address data from the register file. rot/sgn ex LDR pc forwarding paths register write write-back SOC Consortium Course Material 22 Forward Data Clock cycle number 1 2 3 4 5 6 7 ADD R1,R2,R3 IF ID EXadd MEMadd WB SUB R4,R5,R1 IF ID EXsub MEM WB AND R6,R1,R7 IF ID EXand MEM WB The first forwarding is for value of R1 from EXadd to EXsub.