Method of allocating a virtual register stack in a stack machine
11042376 · 2021-06-22
Assignee
Inventors
Cpc classification
G06F12/145
PHYSICS
G06F9/3013
PHYSICS
G06F12/1491
PHYSICS
G06F9/468
PHYSICS
G06F12/14
PHYSICS
G06F9/30145
PHYSICS
Y02D10/00
GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
International classification
Abstract
A method of allocating a virtual register stack (10) of a processing unit in a stack machine is provided. The method comprises allocating a given number of topmost elements (11) of the virtual register stack (10) in a physical register file (17) of the stack machine and allocating subsequent elements of the virtual register stack (10) in a hierarchical register cache (13) of the stack machine.
Claims
1. A method of allocating a virtual register stack (10) of a processing unit in a stack machine comprising: allocating a given number of topmost elements (11) of the virtual register stack (10) in a physical register file (17) of the stack machine; and allocating additional elements of the virtual register stack (10) in a hierarchical register cache (13) of the stack machine.
2. The method of claim 1 wherein the register file (17) comprises multiple registers, each register being uniquely addressable by a zero-based register number (14), each element of the virtual register stack (10) is uniquely addressable by a zero-based index (15), and, to allocate an element among the topmost elements (11), the index (15) by which that element is addressable is mapped to a register number (14) among the register numbers (14).
3. The method of claim 2 wherein the index (15) is mapped by bitwise logical conjunction with a bitmask (RB) corresponding to a given capacity of registers of the processing unit within the register file (17), the conjunction being followed by bitwise logical disjunction with an offset (RO) of the registers within the register file (17).
4. The method of claim 3 wherein, if the capacity of registers is exhausted, any remaining elements of the virtual register stack (10) are spilled to the hierarchical register cache (13).
5. The method of claim 3 wherein the processing unit is virtual and the registers are contained in a segment (12) of the register file (17) defined by special-purpose registers (21) of the virtual processing unit, the special-purpose registers (21) comprising the bitmask (RB) and the offset (RO).
6. The method of claim 5 comprising: managing the special-purpose registers (21) by means of a process pointer (PP) referencing the virtual processing unit, the special purpose registers (21) preferably comprising a unique task identifier (TID), process identifier (PID), instruction pointer (IP), virtual register stack pointer (SP), data stack pointer (DP), and return stack pointer (BP).
7. The method of claim 5 comprising, upon activation, allocating the segment (12) within the register file (17) and loading the virtual processing unit and, upon deactivation, unloading the virtual processing unit and releasing the segment (12).
8. The method of claim 1 wherein the topmost elements (11) are further backed up to the register cache (13).
9. The method of claim 8 wherein the register cache (13) comprises multiple registers, each register being uniquely addressable by a zero-based address (22), and, to allocate an element among the subsequent elements, the index (15) by which that element is addressable is mapped to the respective address (22).
10. The method of claim 9 wherein the index (15) is mapped by bitwise logical conjunction with a bitmask (RB) corresponding to a capacity of the register cache (13), the conjunction being followed by bitwise logical disjunction with an offset (RO) within the register cache (13).
11. The method of claim 10 wherein, if the capacity of the register cache (13) is exhausted, any remaining bottommost elements (16) of the virtual register stack (10) are spilled to a random-access memory.
12. A stack machine being adapted to execute the steps of the method of claim 1.
13. A non-transitory computer readable medium comprising instructions stored thereon, wherein when executed by a processor, the instructions cause a stack machine to execute the steps of the method of claim 1.
14. A computer-implemented data structure (17) for use in the method of claim 1, comprising: multiple segments (12, 18, 19, 20), each segment (12, 18, 19, 20) containing a given number of registers of a virtual processing unit and being defined by special-purpose registers (21) of the virtual processing unit, the special-purpose registers (21) comprising an offset (RO) of the registers within the structure (17).
15. The data structure (17) of claim 14 wherein the number of registers is a power of two, the special-purpose registers (21) of the virtual processing unit further comprising a bitmask (RB) corresponding to the number of registers.
Description
BRIEF DESCRIPTION OF DRAWINGS
(1)
(2)
(3)
(4)
DESCRIPTION OF EMBODIMENTS
(5) The invention introduces an abstraction of the processor-specifically architected and named general-purpose registers that are key design elements of all known state-of-the-art processors and ISAs. (These general-purpose registers hereinafter will be plainly referred to as “registers” and distinguished from special-purpose registers that hold program state such as a stack pointer or correspond to specialized hardware elements.) To this end, an embodiment creates a universally abstract type of register which is declared in a virtual register space and addressed by ISA opcodes by means of virtual addresses (as opposed to state-of-the-art individual “register names”). Within this meaning, the invention defines a stack machine comprising a fully addressable virtual register stack and ISA.
(6) As
(7)
(8) 10100.sub.2=20.sub.10.
(9) The overall memory organization scheme of
(10)
(11) Considering the number of physical registers of that unit, the topmost elements (11)—in this case, a maximum of four such elements at any given time—of the virtual register stack (10) are allocated in the corresponding segment (12) of the register file (17—
(12) Each element of the virtual register stack (10) is uniquely addressable by a zero-based index (15). To physically allocate that element, its respective index (15) is mapped by bitwise logical conjunction—an operation referred to in the art as “bit-masking”—with the unit's bitmask (RB) before undergoing bitwise logical disjunction with its offset (RO). Per this mechanism, for instance, the index 7.sub.10=00111.sub.2 would be mapped to physical register
(13) (00111.sub.2 AND 00011.sub.2) OR 10100.sub.2=00011.sub.2 OR 10100.sub.2=10111.sub.2=23.sub.10.
(14) Consequently, the virtual register #7 addressed by this index is allocated in physical register #23. It is to be noted however that there is by no means a one-to-one correspondence between virtual and physical registers throughout the entire runtime of a process, as physical register #23 had previously been used to store virtual register #3 and—in future cycles beyond the scope of
(15) This approach bears the advantage that the respective segment (12) of the register file (17) is organized like a ring buffer, sometimes referred to as a circular buffer, circular queue, or cyclic buffer. Hence, there is no need to shift or shuffle the contents of the segment (12) when elements are pushed onto or popped from the virtual register stack (10). Further, virtual registers located near the stack-top—which are likely to be accessed as operands by the machine's arithmetic logic unit—tend to be stored in the readily accessible register file (17) as opposed to slower and less energy-efficient cache or even off-chip memory. The stack machine invented here thus exhibits an overall improved energy efficiency and performance that renders it suitable even for hard real-time applications. In use cases that impose less stringent restrictions, an embodiment of the invention still allows for reduced energy consumption as smaller register files are required to meet the same runtime objectives.
(16) The overall memory organization and data handling scheme of
(17) Each level of the cache hierarchy (13) further partly serves as backup for all lower levels of said cache hierarchy including “cache level 0”, meaning the register file (17) itself. In this respect, the pertinent memory locations (24) constitute a dual use shadow buffer which under steady-state process runtime conditions is used for lazy store and load operations and during process unload from its virtual processing unit is reused as a backup storage medium retaining the virtual registers evicted from the lower levels of the cache hierarchy whereas upon process reload said virtual registers in said lower levels of the cache hierarchy are restored from said backup storage medium. Note that process unload and the associated reload may be partial, meaning that not all lower levels of the register cache hierarchy need to be evicted and restored thereby allowing for runtime performance against memory use tradeoffs during process switches.
(18) Note also that with exception of the highest level of a given cache hierarchy scheme each lower cache level—including “cache level 0”, register file—may hold zero virtual registers (11). As a consequence, any process may—but need not to—own a segment (12) of the register file which permits access to high performance features like parallel multiport access of e. g. multiple arithmetic logic units to the virtual register stack and associated ILP (instruction level parallelism). According to the invention, processes hence can be precisely fine-tuned to their respective register performance requirements, and it is even possible to build stack machines for low-end microcontroller applications that have no register file at all.
(19) At application software level, only the boundless virtual register space common to all embodiments of the invention is visible while the details of the allocation of the virtual registers in the hardware may vary from processor type to type, from special register setup to setup, and even during program runtime without any effect or influence to the application software layer. In this meaning, application software can be compiled in hardware-abstract form directly to what in compiler technology is called a LLVM (Low Level Virtual Machine), thereby strictly decoupling a purely algorithmic software domain from its physical hardware implementation and configuration domain.
(20) Said LLVM approach bears the advantage that an universal interface between computer software and hardware can be constructed defined by a virtual instruction set architecture (VISA) that is common to the whole computer class defined by the invention in such a way that a program written for any embodiment of said class by principle will run on any other embodiment of said class, not only with respect to hardware manufacturer, performance class, and application type (software portability) but also with respect to time (software persistence), as hardware technologies may be new, further developed, changed, improved, or abandoned without having the side-effect of rendering software written for an earlier technology grade of said computer class obsolete (software backward and forward compatibility).
INDUSTRIAL APPLICABILITY
(21) The invention may be applied, inter alia, throughout the semiconductor industry.