This invention relates to processors for executing stored programs, and in particular to a vector processor employing special purpose registers to reduce instruction width.
Vector processors are processors which provide high level operations on vectors, that is, linear arrays of numbers. A typical vector operation might add two 64-entry, floating point vectors to obtain a single 64-entry vector. In effect, one vector instruction is equivalent to a loop with each iteration computing one of the 64 elements of the result, updating all the indices and branching back to the beginning. Vector operations are particularly useful for image processing or scientific and engineering applications where large amounts of data must be processed in generally a repetitive manner. In a vector processor, the computation of each result is independent of the computation of previous results, thereby allowing a deep pipeline without generating data dependencies or conflicts. In essence, the absence of data dependencies is determined by the particular application to which the vector processor is applied, or by the compiler when a particular vector operation is specified.
A typical vector processor includes a pipeline scalar unit together with a vector unit. In vector-register processors, the vector operations, except loads and stores, use the vector registers. Typical prior art vector processors include machines provided by Cray Research and various supercomputers from Japanese manufacturers such as Hitachi, NEC, and Fujitsu. Processors such as provided by these companies, however, are usually physically quite large, requiring cabinets filled with circuit boards. Such machines therefore are expensive, consume large amounts of power, and are generally not suited for applications where cost is a significant factor in the selection of a particular processor.
One technology where reduction in cost of processors greatly expands markets is image processing. There are now many well known image encoding and decoding technologies used to provide full-speed full-motion video with sound in real time over limited bandwidth links. Such applications are particularly suitable for lower cost video processors. Reduction in the cost of such processors, however, requires substantial reductions in their complexity, and implementation of such processors on integrated circuits typically precludes the use of 64-bit instruction words. The reduction in instruction width, however, so diminishes the capability of the processor as to render it less than desirable for such image processing, scientific or engineering applications.
This invention provides a vector processor with limited instruction width, but which provides features of a processor having a greater instruction width by virtue of a special purpose register, and the referencing of that register by various instructions. This enables a limited width instruction to address the vector memory and provide the functionality of a larger processor, but without requiring the space, multiple integrated circuits, and higher power consumption of a larger processor. In addition, the simplicity of the design enables implementation on a single integrated circuit, thereby shortening signal propagation delays and increasing clock speed. The special purpose registers are set up by a scalar processor, and then their contents are reused without the necessity of reissuing new instructions from the scalar processor on each clock cycle. All vector instructions include a special field which indexes into these special registers to retrieve the attributes needed for executing the vector instructions.
In a preferred embodiment the vector processor includes a set of vector registers for storing data to be used in the execution of instructions and a vector functional unit which is coupled to the vector registers for executing instructions. The functional unit executes the instructions in response to operation codes provided to it, and those operation codes include a field which references a special register. When each instruction is executed reference is made to both the operation code and the special register, and the contents of both the operation code and the special register are used for the execution of the instruction. In one implementation, each vector instruction includes a length and a starting point, and a special register is used to store the information about the length and starting point for each vector instruction.
The invention also provides a memory organization for efficient use of the processor. In particular, a memory architecture is provided in which pipelined accesses are made to groups of banks of SRAM memories. A retry capability is provided to allow multiple accesses to the same bank. Data is moved into and out of the banks of SRAM using a parallel loading technique from a shift register.
Preferably the memory system includes a group of access ports for enabling access to the memory, a set of address lines and a set of data lines coupled to the access ports to receive address information and data from the access ports, and a pipelined series of address decoder stages coupled to the address lines. As addresses arrive, they are transferred from decoder to decoder, and each decoder compares the address on the address lines with a set of addresses assigned to that decoder corresponding to the memory banks associated with it. A first set of memory banks is coupled to the address lines and the data lines between a first address decoder and a second address decoder in the series of address decoders, and a second set of memory banks is coupled to the address lines and the data lines after the second address decoder in the series of address decoders. A shift register connected to each of the sets of memory banks enables bock loads and stores to the memory banks.
An additional aspect of the invention is the provision of instructions for invoking the special register described above. This register stores information about the length and starting point for each vector instruction. In one embodiment a computer implemented method for executing a vector instruction which includes an operation code and references to various registers, includes the steps of decoding the vector instruction to obtain information about the operation code defining the particular mathematical, logical, or other type operation to be performed on a vector. At the same time the vector instruction is decoded to obtain an address of a first vector register where the at least one vector upon which the operation to be performed is stored, the address of a second vector register where the result of the operation is to be stored, and the address of a third register which stores the starting element and the vector length. The vector instruction is then executed using information from the first and third registers.
b is a diagram illustrating the G register of
This invention provides a vector processor which may be implemented on a single integrated circuit. In a preferred embodiment, five vector processors together with the data input/output unit and a DRAM controller are implemented on a single integrated circuit chip. This chip provides a video encoder which is capable of generating bit streams which are compliant with MPEG-2, Windows Media 9, and H.264 standards.
The scalar processor will typically be a single issue design with hardware interlocks. Instructions issue in order and complete in order with instruction decode requiring one clock. All operations performed by the scalar processor are 32 bits, but support 32, 16, and 8-bit data values. All execution units complete in one clock except the multiplier which requires four clocks, data cache loads which require three clocks, and the 32-bit shift which requires two clocks.
The two banks of 32 entry scalar register files 70 provide one file for the supervisor, and another file for applications. As shown in
The scalar processor 10 has four condition code registers (c0, c1, c2, c3), each with a single flag bit. These 1-bit flags reflect the overflow (O) and carry (C) conditions. The meaning of the condition code flag depends on the type of instruction that set the flag:
Instructions that set a condition code must specify which one of the four registers is to be used. Some instructions do not affect the condition codes. If the programmer needs a “sticky flag” (for example, to see if any result in a loop overflowed), an add with carry instruction can be used with an immediate value of 1 as an input.
ADDC R1, (R1),C1;
So if R1 is cleared before the loop and contains a 0 at the end of the loop, the conditional flag was never set and overflow never occurred in the loop.
An instruction that specifies a condition code register to be set as a result of the operation performed also modifies the CC flag. For example, an instruction that compares two registers for equality and chooses c2 as the condition code register destination will set the flag. In contrast, a logical instruction such as the logical-and instruction cannot specify a condition code register and so leaves all condition code flags unmodified.
A branch on condition instruction will not modify the cC flag. In some instructions a cC register is used as a carry in and if there is an overflow from the operation, then the same cC register is modified.
An overflow is generated when the result of an arithmetic operation falls outside the range of representable numbers, thus producing an incorrect result. In 2s complement arithmetic, overflow is detected when the MSB and MSB+1 have different signs. Both operands must be sign-extended to MSB+1. A Carry is generated when a “1” is generated in the MSB+1 position.
The Vector Mask registers (mM) 110 are used to store condition codes for the vector functional units. Each vector pipe has eight M registers that store a single bit for each element in the vector register. If the vector length is set to 32, then the M register is 32 bits. The meaning of the condition code flag depends on the type of instruction that set the flag:
At the end of a vector instruction, the M register can be moved to a scalar register and a bit reduction operation performed to check if any flags were set during the vector operation. The Mask registers can also be used to hold carry values for instructions that have a carry in. For example, if double precision (32-bit) arithmetic requires:
Vector Mask registers can also be used with shift instructions on the vector side. For example, if a shift instruction shifts out any value of 1, the vector mask is set. This can be used to find the largest number in a vector and then scale the vector accordingly. The M register is used in the vector merge instruction. In this case, the mask bit selects whether the element from source one or the element from source two is written to the destination register.
The data is transferred from the DRAM backing store through the high-speed system bus 140 to the SRAM. Data from the SRAM is transferred by the memory controller to the register files by the scalar processor 10, and is interlocked with the appropriate instructions in the hardware. The memory interface has a capacity of twelve 16-bit simultaneous transfers per clock.
The vector function units 210 are capable of running two operations at the same time in each vector unit. Four vector functional units can have eight operations occurring simultaneously. Each vector function unit is capable of four reads and two writes simultaneously. To keep the functional units busy, the SRAM 30 buffers feed the vector registers 200 using memory controllers. These memory controllers are programmed by the scalar processor 10, but are located in each of the functional units 210. There are three memory controllers in each functional unit, two loads and one store.
The vector processor 210 supports chaining. For example, if the first instruction issued is a multiply that stores the result in a vector register, a second instruction can issue on the next clock that reads the result in the register file from the first operation, and performs a different operation on the result of the first multiply. The hardware automatically schedules the second instruction when the result of the first operation is complete by register scoreboarding of the vector register elements.
The special “G” register file 235 is organized as eight 48-bit registers. This register file is capable one read and one write, and can be read and written by various instructions, as well as read by the SRAM load store controller 236. As will be described below in more detail, vector load and store operations use the “G” register file to obtain the desired values for a series of parameters. In the preferred embodiment these parameters include (1) vector length, (2) starting element, (3) repeat, (4) skip, and (5) stride. The bit positions where these values are stored are:
The G register is illustrated in more detail in
Whenever an operation is carried out using a vector opcode, that instruction includes an index into the G register to specify the desired parameters for that operation. In the preferred embodiment, to select one of the eight 48-bit registers, the G field in the vector instruction will be three bits in length.
The vector pipe shown in
Each vector pipe also has a special purpose 40-bit register file called aACC. This register file holds the 40-bit result of each MAC instruction, and each of the two add/sub reduction 24-bit Accumulators. The Accumulator is loaded from the ACC register file at the beginning of each MAC or reduction operation. At the end of the operation the final result in the Accumulator is stored in the ACC register. This register file is dual-ported to allow two operations to occur at the same time.
As shown in
A high speed interface is provided to all banks of the SRAM. The interface accumulates 256 bytes in a buffer, and then transfers all 256 bytes in four clocks to all of the banks. This 256-byte buffer is read or written from the SRAM on 256-byte boundaries. If any vectors are in flight, they are held for one clock while the read or write occurs. The Memory Controller routes each of the potential twelve read or writes from the vector register to the proper banks. Since each vector register may have up to 32 elements, a stride of one assures 32 consecutive banks will be addressed. Since the bank can read or write on every clock there is not a bank conflict between addresses in the same vector, however, there may be bank conflicts due to address conflicts from other vectors that are executing. A single conflict will cause one of the addresses to be delayed by four clocks. The priority is hardwired by vector unit, with vector unit 0 having the highest priority and vector unit 3 the lowest priority. Within each vector unit, load 0 has higher priority over load 1, and the lowest priority is the store operation.
The format of the vadd instruction is:
vadd vVD, vVA, vVB, mM, P, gG
A typical implementation is:
The fields in
Furthermore, in the figures associated with many of the following instructions, reference is made to fields 0x0, 0x1 etc. This nomenclature is intended to indicate that the bits so marked designate hexadecimal 0, hexadecimal 1, etc. In addition, “P” refers to the vector processor pipe number and “G” to the G register.
mvadd vVD,vVA,vVB,mM,gG
This instruction is used on all four pipes at the same time. The arithmetic functional unit is selected by the hardware. Each element of the vector register specified by the VA field 280 is added to the vector element of vector register vVB 281. The result element is placed into the vVD vector register 282. The 3-bit M field 283 selects the vector pipe M register that contains the vector mask registers. If the sum has an overflow, a 1 is placed in the M register. The G field 284 selects the appropriate G register containing the starting element and vector length.
A typical implementation is:
As shown above, the G register is set up by the scalar processor and then used over and over without the necessity of issuing new vector instructions. The G register provides the special attributes needed for execution of the instructions, such as vadd and mvadd. In the case of these instructions the G register provides the vector length and the starting field, thereby providing an indication of how many computations are required and where the addressing starts.
The repeat, skip and stride relate to how an address sequence is generated for vector load and store instructions. The starting address of the first element is computed in the scalar pipe. A stride value is then added to this address and accumulated on every subsequent clock. In addition a skip value is also added to this address stream every nth cycle defined by the repeat field.
The overall impact of the G register is the enablement of a richer opcode set, but without need for long instruction words.
The scalar processor reloads the G register when vector operations occur. The vector operations typically report 32 clocks, thereby providing the scalar processor the opportunity to reload the G register. This capability is enhanced by the vector operation renumbering the contents of the G register when the vector operation begins execution. This enables the G register to be reloaded immediately. The stride feature of the G register is particularly beneficial for video applications in which blocks of pixels from a serial data stream are addressed and processed. The stride allows addressing of the SRAM to step from one location to another where those locations are not contiguous, but are evenly spaced.
The vector processor described above includes many instructions facilitating operations with the G register. These instructions are discussed next.
The “Move One Scalar to G Register (m1sg)” instruction is shown in
m1sg rA,P,gG
For this instruction the vector pipe is selected by the 3-bit P field. Portions of the contents of general register rA are sent to the selected vector pipe and stored in the addressed gG register. General-purpose register A contains the 6-bit repeat and the 16-bit skip. A typical Implementation is:
The “Move Two Immediates to G Register (m2ig)” instruction is shown in
m2ig I, P, gG
For this instruction the vector pipe is selected by the 3-bit P field. The immediate value for the vector length is in bits [16:11] (0x20). The starting element is in bits [25:21] (0x00) of the instruction, and is sent to the vector pipe and stored in the addressed gG register. A typical implementation is:
The “Move Two Scalars to G Register (m2sg)” instruction is shown in
The format of the instruction is:
m2sg rA, rB, P, gG
For this instruction the vector pipe is selected by the 3-bit P field. Portions of the contents of the two general registers rA and rB are sent to the selected vector pipe, and stored in the addressed gG register. General-purpose register A contains the 5-bit starting element, and general-purpose register B contains the 6-bit vector length. A typical implementation is:
The “Move Three Scalars to G Register (m3sg)” instruction is shown in
m3sg rS, rA, rB, P, gG
For this instruction the vector pipe is selected by the 3-bit P field. Portions of the contents of the three general registers rA, rB, and rS are sent to the selected vector pipe and stored in the ad-dressed gG register. General-purpose register S contains the 6-bit repeat, and general-purpose register A contains the 16-bit skip. General-purpose register B contains the 15-bit stride. A typical Implementation is:
The “Move Higher G Register to Scalar (mhgs)” instruction is shown in
The format of the instruction is:
mhgs rD,P,gG
For this instruction the vector pipe is selected by the 3-bit P field. The high-order 17 bits of the gG register are sent to the scalar general-purpose D register. A typical implementation is:
rD[16:0]←gG[47:31]
rD[31:17]←0
The “Move Immediate to G Register (mi(vlg,seg,rg,skg,sg))” instruction is shown in
mi(vlg,seg,rg,skg,sg) I,P,gG
For this instruction the vector pipe is selected by the 3-bit P field. The Stride and Skip Immediate is a 12-bit signed value. (An assembly error will occur if more than twelve bits are specified.) The immediate values as shown in Table 1 are sent to the selected gG register. The MSB of Stride has the sign extended to form a 15-bit value. The MSB of Skip has the sign extended to form a 16-bit value.
A typical implementation is:
The “Multi-Pipe Move Immediate to G Register (mmi(vlg,seg,rg,skg,sg))” instruction is shown in
mmi (vlg, seg, rg, skg, sg) I, gG
For this instruction all vector pipes are selected. The immediate values shown in Table 2 are sent to all vector pipes and the selected gG register. The MSB of Stride has the sign extended to form a 15-bit value. The MSB of Skip has the sign extended to form a 16-bit value.
A typical implementation is:
Multi-Pipes gG←table Immediate
The “Multi-Pipe Move Scalar Register to G Register (mms(vlg,seg,rg,skg,sg))” instruction is shown in
mms(vlg,seg,rg,skg,sg) rA,gG
For this instruction all vector pipes are selected. The contents of the general-purpose scalar register rA are sent to all vector pipes and the selected gG register. Table 3 describes which bits from general-purpose register rA go to the fields of register gG.
A typical implementation is:
Multi-Pipes gG←table (rA)
The “Multi-Pipe Move Scalar to Higher G Register (mmshg)” instruction is shown in
mmshg rA,gG
For this instruction all vector pipes are selected. The contents of general register rA are sent to all of the vector pipes and stored in the addressed gG registers. The contents of general-purpose register rA are sent to the selected vector pipe and stored in the upper seventeen bits [47:31] of the addressed gG register. A typical A typical implementation of the instruction is:
gG[47:31]←rA[16:0]
The “Multi-Pipe Move Scalar to Lower G Register (mmslg)” instruction is shown in
mmslg rA,gG
For this instruction all vector pipes are selected. The contents of general register rA are sent to all of the vector pipes and stored in the addressed G registers. The contents of general-purpose register rA are sent to the selected vector pipe and stored in the lower 31 bits [30:0] of the addressed gG register. A typical implementation of the instruction is:
gG[30:0]←rA[30:0]
The “Move Scalar Register to G Register (ms(vlg,seg,rg,skg,sg))” instruction is shown in
ms (vlg, seg, rg, skg, sg) rA, P, gG
For this instruction the vector pipe is selected by the 3-bit P field. The contents of the general-purpose scalar register rA sent to the selected vector pipe are then sent to the selected gG register. Table 4 shows which bits from the general-purpose register rA go to the fields of register gG.
The “Move Scalar to Higher G Register (mshg)” instruction is shown in
The format of the instruction is:
mshg rA, P, gG
For this instruction the vector pipe is selected by the 3-bit P field. The contents of general-purpose register rA are sent to the selected vector pipe and stored in the upper seventeen bits [47:31] of the addressed gG register. A typical implementation of the instruction is:
gG[47:31]←gG(rA[16:0]
The “Move Scalar to Lower G Register (mslg)” instruction is shown in
mslg rA,P,gG
For this instruction the vector pipe is selected by the 3-bit P field. The contents of general register rA are sent to the selected vector pipe and stored in the lower 31 bits [30:0] of the addressed gG register. A typical implementation of the instruction is:
gG[30:0]←rA[30:0]
The “Vector Load Byte Indexed (vlbi)” instruction is shown in
vlbi vVD,rA,rB,P,gG
For this instruction the vector data is loaded from the Effective Address (EA) in the SRAM to the specified destination vector register vVD. The index from the contents of general-purpose register rB is added to the contents of general-purpose register rA to form the effective SRAM address. The index (rB) is a signed value, and the base (rA) register is an unsigned value. The byte in memory addressed by the EA is loaded into the low-order eight bits of general-purpose vector register vVD. The high-order bits of general-purpose register vVD are replaced with bit seven of the loaded value. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, repeat, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. A typical implementation of the instruction is:
The “Vector Load Byte Offset (vlbo)” instruction is shown in
vlbo vVD,rA,O,P,gG
For this instruction the vector byte data is loaded from the Effective Address (EA) in the SRAM to the specified destination vector register vVD and sign-extended. The 6-bit signed offset is sign-extended and shifted left five bit positions, and then added to the contents of general-purpose register rA to form the effective SRAM address. The 3-bit P field contains the pipe number, which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The EA refers to the SRAM. A typical implementation of the instruction is:
The “Vector Load Doublet Indexed (vldi)” instruction is shown in
vldi vVD,rA,rB,P,gG
For this instruction the vector data is loaded from the Effective Address (EA) in the SRAM to the specified destination vector register vVD. The index from the contents of general-purpose register rB is added to the contents of general-purpose register rA to form the effective SRAM address. The index (rB) is a signed value, and the base (rA) register is an unsigned value. The byte in the memory as addressed by the EA is loaded into general-purpose vector register vVD. The 3-bit P field contains the pipe number, which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. A typical implementation of the instruction is:
The “Vector Load Doublet Offset (vldo)” instruction is shown in
vldo vVD,rA,O,P,gG
For this instruction the vector data is loaded from the Effective Address (EA) in the SRAM to the specified destination vector register vVD. The 6-bit signed offset is sign-extended and shifted left six bit positions, and then added to the contents of general-purpose register rA to form the effective SRAM address. The 3-bit P field contains the pipe number, which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and the vector length that will be used for this operation. Each pipe has one G register file. The EA refers to the SRAM. A typical implementation of the instruction is:
The “Vector Store Byte Indexed (vstbi)” instruction is shown in
vstbi vVS,rA,rB,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The index from the contents of general-purpose register rB is added to the contents of general-purpose register rA to form the effective SRAM address. The 3-bit P field contains the pipe number which has a value from 0-3. the upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The index (rB) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
SRAMEA←(rB[31:0+rA[31:0]+gG)
SRAMEA [7:0]→(vVS[7:0])
The “Vector Store Byte Masked Indexed (vstbmi)” instruction is shown in
vstbmi vVS,rA,rB,mM,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The index from the contents of general-purpose register rB is added to the contents of general-purpose register rA to form the effective SRAM address. The value in each element vVS is stored in the effective SRAM address only if the corresponding mask bit for that vector element is set to 1. The 3-bit P field contains the pipe number which has a value from 0-3. the upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, repeat, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The index (rB) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The “Vector Store Byte Masked Offset (vstbmo)” instruction is shown in
vstbmo vVS,rA,O,mM,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The contents of general-purpose register rA are added to the offset to form the effective SRAM address. The value in each element vVS is stored in the effective SRAM address only if the corresponding mask bit for that vector element is set to 1. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, repeat, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The Immediate (I) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The “Vector Store Byte Offset (vstbo)” instruction is shown in
vstbo vVS,rA,O,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The signed offset is sign-extended, shifted left six bit positions, and added to the contents of general-purpose register rA to form the effective SRAM address. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The index (rB) is a signed value and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The “Vector Store Doublet Indexed (vstdi)” instruction is shown in
vstdi vVS,rA,rB,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The index from the contents of general-purpose register rB is added to the contents of general-purpose register rA to form the effective SRAM address. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The index (rB) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The “Vector Store Doublet Masked Index (vstdmi)” instruction is shown in
vstdmi vVS,rA,rB,mM,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The index from the contents of general-purpose register rB is added to the contents of general-purpose register rA to form the effective SRAM address. The value in each element vVS is stored in the effective SRAM address only if the corresponding mask bit for that vector element is set to 1. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, repeat, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The index (rB) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The “Vector Store Doublet Masked Offset (vstdmo)” instruction is shown in
vstdmo vVS,rA,O,mM,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The contents of general-purpose register rA are added to the offset to form the effective SRAM address. The value in each element vVS is stored in the effective SRAM address only if the corresponding mask bit for that vector element is set to 1. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of the eight local registers that contains the values for stride, skip, repeat, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The offset (0) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The “Vector Store Doublet Offset (vstdo)” instruction is shown in
vstdo vVS,rA,O,P,gG
For this instruction the vector data is sent from the specified vector register vVS to the Effective Address (EA) in the SRAM. The 6-bit signed offset is sign-extended, shifted left six bit positions, and added to the contents of general-purpose register rA to form the effective SRAM address. The 3-bit P field contains the pipe number which has a value from 0-3. The upper bit of the P field is reserved for future expansion. The G field is used to select one of eight local registers that contains the values for stride, skip, the vector starting element, and vector length that will be used for this operation. Each pipe has one G register file. The index (rB) is a signed value, and the base (rA) register is an unsigned value. A typical implementation of the instruction is:
The vector memory system is coupled to a scalar cache 310, also implemented as SRAM. The cache interfaces with the vector memory system over two buses, a 128 bit-wide cache line fill bus 312, and a 32 bit-wide quadlet store bus 314. The cache tags 316 are depicted. There are five external invalidate interface buses 318. Scalar cache 310 is a 4k byte cache which is four-way set associative. It is a write-through cache with 16 byte lines. In
The data in the 128 banks of SRAM is loaded and unloaded using a double buffered DMA shift register 320. As will be discussed in more detail below, generally, the shift register is loaded and then its contents transferred out in parallel to a buffer. At an appropriate time during operation of the vector memory system, the 256 bytes are loaded into the 128 banks in parallel.
Based upon a control signal provided to it, discussed below, multiplexer 360 selects one of these three sets of input data and provides that set of inputs to the multiplexer 364. Multiplexer 364 enables the retry control, and will select the retry bus 360 if there has been a bank conflict or collision in the address information earlier provided, for example, if successive writes are to the same bank. If there has been no bank conflict, then the information from multiplexer 360 is placed on the bus 340 and provided to stage 0 (342) for determination about whether that bank address falls within the group of banks 0-31 in group 332.
The determination of the priority among the three sets of data provided to multiplexer 360 and multiplexer 364 is hardwired. First priority is always given to retrying information from a previous cycle when a bank conflict has occurred. Second priority is assigned to the DMA controller for reloading the banks of memory, as discussed with regard to
In the upper portion,
The preceding has been a description of a preferred embodiment of a vector processor with special purpose register and a high speed memory access system. Although numerous details have been provided for the purpose of explaining the system, the scope of the invention is defined by the appended claims.