EP0118828B1 - Befehlsabrufanordnung und -verfahren - Google Patents

Befehlsabrufanordnung und -verfahren Download PDF

Info

Publication number
EP0118828B1
EP0118828B1 EP84102099A EP84102099A EP0118828B1 EP 0118828 B1 EP0118828 B1 EP 0118828B1 EP 84102099 A EP84102099 A EP 84102099A EP 84102099 A EP84102099 A EP 84102099A EP 0118828 B1 EP0118828 B1 EP 0118828B1
Authority
EP
European Patent Office
Prior art keywords
instruction
address
branch instruction
instructions
array
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired
Application number
EP84102099A
Other languages
English (en)
French (fr)
Other versions
EP0118828A2 (de
EP0118828A3 (en
Inventor
Steven Lee George
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Publication of EP0118828A2 publication Critical patent/EP0118828A2/de
Publication of EP0118828A3 publication Critical patent/EP0118828A3/en
Application granted granted Critical
Publication of EP0118828B1 publication Critical patent/EP0118828B1/de
Expired legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/38Concurrent instruction execution, e.g. pipeline or look ahead
    • G06F9/3802Instruction prefetching
    • G06F9/3808Instruction prefetching for instruction reuse, e.g. trace cache, branch target cache
    • G06F9/381Loop buffering

Definitions

  • the invention relates to an apparatus and a method for fetching instructions according to claims 1 and 3.
  • Processor performance is degraded by storage access conflicts. Memory contention occurs because of various storage accesses for reading instructions and operands and for storing results. These conflicts may be especially noticeable in an attached processor or multiprocessor environment. A significant amount of processor performance degradation caused by storage conflicts is due to instruction fetches. Program loops magnify this problem because these loops often make instruction fetches unnecessarily redundant. Repetitive loops frequently occur in most programs, and as a result, the same set of instructions are executed many times. The instruction fetches or prefetches then become redundant since the information read is the same as that just recently read from storage when the same loop was previously executed.
  • the target address of this branch instruction is latched into a target register.
  • the previous contents of the target register were the target address of the immediately previous branch instruction. This previous target address is shifted from the target register into another register when a new target address is latched into the target register.
  • the source address associated with that branch instruction is stored in a source register.
  • the new target address and the previous target address must be equal (i.e., the same location is being branched to twice). This determination is made by comparing the contents of the target register with the contents of the register housing the previous target address.
  • the second condition which must be met before loop mode is entered is that the source address associated with the branch instruction detected must be within a predetermined range ofthetarget address. This determination is made by subtracting the previous target address from the source address. The higher order bits of the resulting difference (i.e., the size of the loop) are tested for zeroes to ensure the loop size is within the predetermined allowable maximum.
  • loop mode After loop mode is entered instructions cease to be fetched from storage. Instead the current instruction address is compared with the partial instruction addresses which were stored in the look-aside buffer during normal mode operations. If a match is discovered, the instruction is extracted from the look-aside buffer and latched directly into the instruction register. If no match is discovered, loop mode is exited and normal operations are resumed.
  • Loop mode can also be exited when the instruction loop has been passed through. This is determined by comparing the current instruction address with the source address associated with the branch instruction stored in the source register. If the current instruction address is greater than or equal to the source address, loop mode is exited and normal mode operations are resumed.
  • the present invention has several significant advantages over prior instruction fetch apparatuses and methods.
  • the present invention provides for invalidating the contents of the look-aside buffer to prevent errors due to the execution of invalid instructions.
  • the present invention also reduces storage contention while providing efficient management of entry to and exit from loop mode operations.
  • the present invention also significantly enhances processor performance by the integration of a look-aside buffer with a control system capable of exploiting the redundancy inherent in the employment of program loops and it presents the advantage of providing for both the look-aside storage of loop instructions and the efficient control of when and how the look-aside buffer is used to enhance processor performance.
  • a potential program loop 13 is created through the use of a branch instruction 10.
  • Branch instruction 10 has an address 14 and a target address 11.
  • Target address 11 is the address of the next instruction to be executed after the condition required to branch (e.g., cond. low) is met.
  • a source address 12 is also associated with branch instruction 10. If the condition required to branch set forth in branch instruction 10 is not met, program loop 13 is exited.
  • Source address 12 is the address of the instruction following branch instruction 10. Source address 12 is thus the address of the instruction to be executed after program loop 13 is exited due to an unsuccessful branch (i.e., branch condition not met).
  • an instruction counter 20 is employed to store the address of the current instruction.
  • Instruction counter 20 is updated by the central processor (not shown) so that instruction counter 20 contains the address of the current instruction or immediately after update contains the address of the next instruction.
  • Instruction counter 20 detects when the current address stored in instruction counter 20 is a branch instruction address. The target address of this current branch instruction is then latched into new target address register 21. As the current address is latched into register 21, the prior contents of register 21 are shifted into old target address register 24. These prior contents of register 21 are the target address of the immediately previous branch instruction. Immediately after instruction counter 20 is incremented the source address (i.e., branch instruction address plus branch instruction length) associated with the current branch instruction is latched into source address register 22.
  • source address i.e., branch instruction address plus branch instruction length
  • the comparator 25 is used to determine if the first condition is met by comparing the contents of register 21 with the contents of register 24.
  • the subtractor 26 and zero detect 27 determine if the second condition is met by subtracting the contents of register 24 from the contents of register 22. This difference represents the size of the loop associated with the current branch instruction.
  • the higher order bits of this loop size are tested by zero detect 27 for zeroes. This testing ensures that the loop size is within the predetermined allowable range and that the low-order instruction address bits will be unique.
  • Zero detect 27, source address register 22, comparator 23, subtractor 26 and AND gate 29 can be eliminated if all address bits (i.e., high-order as well as low-order) are stored in associativity array 34.
  • the predetermined maximum allowable range between the address of the current branch instruction and the target address of the previous instruction is chosen to maximize overall processor performance. Clearly this range is directly related to the depth of the instruction array 33 and associativity array 34 and to the lengths of instructions.
  • latch 28 When the two conditions necessary to enter loop mode are met, latch 28 is set by the output of AND gate 29. The output of latch 28 is routed to controls (not shown) which cause the data processing system and the look-aside buffer to exit normal mode operations and enter loop mode operations.
  • instructions to be executed are prefetched from storage 30 into instruction buffers 31. These instructions are then latched into instruction register 32 for decoding and further processing. As these instructions are latched into register 32 they are also fed into instruction array 33. No processor time is lost since array 33 is loaded in parallel with the loading of instruction register 32.
  • the low-order address bits of each instruction fed into array 33 are fed from instruction counter 20 into associativity array 34.
  • An incrementing pointer 37 addresses the next available row in both instruction array 33 and associativity array 34. In this mannerthe last K instructions and their addresses are stored in the look-aside buffer (K being the length of instruction array 33 and likewise the maximum number of instructions which can be simultaneously stored in array 33).
  • Valid bit flags 35 correspond to each address stored within array 34.
  • Flags 35 allow all or some of the instructions stored in the look-aside buffer to be invalidated upon the occurrence of certain conditions or events. For example, all the instructions can be invalidated to prevent them from being interpreted as valid usable entries (i.e., a "hit") when: (1) loop mode is exited, (2) an operation result is stored in storage 30 within the current range of instructions stored in the look-aside buffer and/or (3) virtual to real address mapping is changed. Without flags 35 an instruction may be erroneously executed.
  • Loop mode is exited and normal mode resumed when the program loop is passed through. This is detected by comparator 23. Comparator 23 resets latch 28 and causes an exit from loop mode and entry of normal mode when the current instruction address is greater than the source address associated with the current (i.e., new) branch instruction. Put another way, loop mode is exited when the source address of the current branch instruction is less than or equal to the current instruction address.
  • loop mode can be exited upon the occurrence of a "miss". That is, instead of exiting loop mode when the source address of the current branch instruction is less than or equal to the current instruction address as shown in Fig. 2, loop mode is exited when the current instruction address is not stored in the look-aside buffer.
  • This embodiment of the present invention relies on a miss signal generated by comparator 38 to reset latch 28 and thereby effect a return to normal mode operations. This reset technique ensures that loop mode operations continue for as long as the current instruction can be found in array 33.
  • Fig. 4 the reset to normal mode techniques discussed above in conjunction with Figs. 2 and 3 can be combined.
  • the miss signal output of comparator 38 and the output of comparator 23 are fed to OR gate 39.
  • loop mode is exited and normal mode resumed when the current instruction is not stored in array 33 or when the current instruction address is greater than or equal to the source address associated with the current branch instruction.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Advance Control (AREA)
  • Executing Machine-Instructions (AREA)

Claims (14)

1. Befehlsabrufanordnung für ein Datenverarbeitungssystem, mit einem Ablagepufferspeicher zum Speichern von Befehlen vor ihrer Ausführung, mit einer Steuerschaltung, die mit dem Ablagepufferspeicher verbunden ist, um bei demselben den Schleifenmodus vorzusehen; und die außerdem eine Vergleichsschaltung zum Vergleichen einer neuen mit einer vorhergehenden Befehlsadresse enthält; wobei die Vergleichsschaltung ein erstes Steuersignal vorsieht, wenn die neue und die vorhergehende Befehlsadresse gleich sind, mit einer Schaltung, die mit der Vergleichsschaltung zur Freigabe des Auslesens der Befehle aus dem Ablagepufferspeicher bei Vorliegen des ersten Steuersignals verbunden ist, mit einem Befehlszähler, einem mit dem Befehlszähler verbundenen Ablagepufferspeicher zum Speichern einer bestimmten Höchstzahl von Befehlen vor deren Wiederausführung, einem mit einem Speicher verbundenen Befehlspufferspeicher zum Speichern der von dem Speicher abgerufenen Befehle, mit einem Befehlsregister, das mit dem Befehlspufferspeicher und dem Ablagepufferspeicher verbunden ist, um das Dekodieren und Ausführen von Befehlen zu erleichtern, die vom Befehlspufferspeicher eingehen, wenn sich die Befehlsabrufanordnung im normalen Modus befindet, und die vom Ablagepufferspeicher eingehen, wenn sich die Befehlsabrufanordnung im Schleifenmodus befindet, gekennzeichnet durch
die mit dem Befehlszähler und dem Ablagepufferspeicher verbundene Steuerschaltung, um die Befehlsabrufanordnung entweder in den normalen oder den Schleifenmodus zu schalten; wobei die Steuervorrichtung weiterhin folgendes enthält,
ein neues Zieladressenregister (21) zum Speichern der Zieladresse eines neuen Verzweigungsbefehls,
ein altes Zieladressenregister (24) zum Speichern der Zieladresse eines alten Verzweigungsbefehls,
eine erste Vergleichsschaltung (25), welche mit dem neuen und dem alten Zieladressenregister verbunden ist, um ein erstes Steuersignal vorzusehen, wenn die Zieladresse des neuen Verzweigungsbefehls gleich der Zieladresse des alten Verzweigungsbefehls ist,
ein Quellenadressenregister (22) zum Speichern der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse,
eine Subtraktions- und Nullerkennungsschaltung (26, 27), die mit dem alten Zieladressenregister und dem OueIIenadressenregister verbunden ist, um ein zweites Steuersignal vorzusehen, wenn die Differenz zwischen der Zieladresse des alten Verzweigungsbefehls und der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse innerhalb einer bestimmten Grenze liegt,
eine logische Schaltung (29), die mit der ersten Vergleichsschaltung und der Subtraktions- und Nullerkennungsschaltung verbunden ist, um die Befehlsabrufanordnung in den Schleifenmodus zu schalten, wenn sowohl das erste wie auch das zweite Steuersignal vorliegt und
eine zweite Vergleichsschaltung (23), die mit dem Quellenadressenregister verbunden ist, um die Befehlsabrufanordnung in den Normalmodus zu schalten, wenn die laufende Befehlsadresse größer/gleich der Quellenadresse ist, welche dem neuen Verzweigungsbefehl zugeordnet ist,
wodurch Befehle von dem Speicher abgerufen werden, wenn sich die Befehlsabrufanordnung im Normalmodus befindet, und direkt vom Ablagepufferspeicher, wenn sich die Befehlsabrufanordnung im Schleifenmodus befindet.
2. Befehlsabrufanordnung nach Anspruch 1, dadurch gekennzeichnet,
daß der Ablagepufferspeicher weiterhin folgendes enthält:
eine Befehlsmatrixanordnung (33) zum Speichern einer bestimmten Höchstzahl von Befehlen, welche während des Normalmodus vom Befehlspufferspeicher im Befehlsregister verriegelt werden,
eine Assoziativmatrixanordnung (34) zum Speichern von Adressbits, welche den in der Befehlsmatrixanordnung gespeicherten Befehlen entsprechen;
eine "gültiges Bitkennzeichen"-Schaltung (35), die mit der Assoziativmatrixanordnung verbunden ist, um die Gültigkeit jeder in der Assoziativmatrixanordnung gespeicherten Adresse zu prüfen,
einen Inkrementierungszeiger (37), der mit der "gültiges Bitkennzeichen"-Schaltung und der Befehlsmatrixanordnung verbunden ist, um einen nächsten Folgeeintrag in der Befehlsmatrixanordnung und der Assoziativmatrixanordnung auszuwählen,
eine dritte Vergleichsschaltung (38), die mit der Assoziativmatrixanordnung verbunden ist, um den Inhalt des Befehlszählers mit den Adressen zu vergleichen, welche in der Assoziativmatrixanordnung gespeichert sind und
eine Trefferlogikschaltung (36), die mit der dritten Vergleichsschaltung und der Befehlsmatrixanordnung verbunden ist, um während des Schleifenmodus einen in der Befehlsmatrixanordnung gespeicherten Befehl in dem Befehlsregister zu verriegeln.
3. Verfahren zum Betrieb einer Befehlsabrufanordnung nach Anspruch 1 oder 2, gekennzeichnet durch folgende Schritte:
Erkennen eines neuen Verzweigungsbefehls,
Verschieben der Zieladresse eines alten Verzweigungsbefehls vom ersten in den zweiten Speicher,
Speichern der Zieladresse des neuen Verzweigungsbefehls in dem ersten Speicher,
Speichern der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse im dritten Speicher,
Vergleichen der Zieladresse des neuen Verzweigungsbefehls mit der Zieladresse des alten Verzweigungsbefehls,
Erzeugen eines ersten Steuersignals, wenn die Zieladresse des neuen Verzweigungsbefehls gleich der Zieladresse des alten Verzweigungsbefehls ist,
Abziehen der Zieladresse des alten Verzweigungsbefehls von der dem neuen Verzweigungsadresse zugeordneten Quellenadresse,
Erzeugen eines zweiten Steuersignals, wenn die Differenz zwischen der Zieladresse des alten Verzweigungsbefehls und der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse innerhalb einer bestimmten Grenze liegt und
Schalten des Datenverarbeitungssystems in den Schleifenmodus, wenn sowohl das erste wie auch das zweite Steuersignal vorliegt.
4. Verfahren nach Anspruch 3, dadurch gekennzeichnet, daß außerdem folgende Schritte vorgesehen sind:
Vergleichen der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse mit der Adresse des laufenden Befehls und
Schalten des Datenverarbeitungssystems in den Normalmodus, wenn die Adresse des laufenden Befehls größer/gleich der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse ist.
5. Verfahren nach Anspruch 4, gekennzeichnet durch folgende Schritte:
Abrufen auszuführender Befehle aus einem Speicher,
Speichern der Befehle in einem Befehlspufferspeicher,
Verriegeln der Befehle in einem Befehlsregister bei gleichzeitigem Speichern einer bestimmten Höchstzahl der Befehle in einer Befehlsmatrixanordnung,
Speichern von Adressbits, welche der bestimmten Höchstzahl von in der Befehlsmatrixanordnung gespeicherten Befehlen in einer Assoziativmatrixanordnung zugeordnet sind,
Verarbeiten der Befehle durch Auslesen derselben aus dem Befehlsregister,
Erkennen eines neuen Verzweigungsbefehls,
Verschieben der Zieladresse eines alten Verzweigungsbefehls vom ersten in den zweiten Speicher,
Speichern der Zieladresse des neuen Verzweigungsbefehls im ersten Speicher,
Speichern der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse im dritten Speicher,
Vergleichen der Zieladresse des neuen Verzweigungsbefehls mit der Zieladresse des alten Verzweigungsbefehls,
Erzeugen eines ersten Steuersignals, wenn die Zieladresse des neuen Verzweigungsbefehls gleich der Zieladresse des alten Verzweigungsbefehls ist,
Abziehen der Zieladresse des alten Verzweigungsbefehls von der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse und Testen der hochstelligen Bits der Differenz zwischen der Zieladresse des alten Verzweigungsbefehls und der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse auf Nullen,
Erzeugen eines zweiten Steuersignals, wenn die Differenz zwischen der Zieladresse des alten Verzweigungsbefehls und der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse innerhalb einer bestimmten Grenze liegt,
Abschliessen des Abrufs auszuführender Befehle aus dem Speicher, wenn sowohl das erste wie auch das zweite Steuersignal vorliegt,
Vergleichen der Adresse des laufenden Befehls mit in der Assoziativmatrixanordnung gespeicherten Adressen,
Verriegeln des Befehls, dessen Adressbits in der Assoziativmatrixanordnung mit denen des laufenden Befehls aus der Assoziativmatrixanordnung uebereinstimmen, direkt im Befehlsregister und
Verarbeiten der Befehle durch Auslesen derselben aus dem Befehlsregister.
6. Verfahren nach Anspruch 5, dadurch gekennzeichnet, daß außerdem folgende Schritte vorgesehen sind:
Vergleichen der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse mit der Adresse des laufenden Befehls und Wiederaufnahme des Abrufs auszuführender Befehle aus dem Speicher und Abschliessen des Verriegelns von Befehlen von der Befehlsmatrixanordnung direkt im Befehlsregister, wenn die Adresse des laufenden Befehls größer/gleich der dem neuen Verzweigungsbefehl zugeordneten Quellenadresse ist.
7. Verfahren nach Anspruch 5 oder 6, weiterhin gekennzeichnet durch die Wiederaufnahme des Abrufs auszuführender Befehle aus dem Speicher und Beenden des Verriegelns von Befehlen aus der Befehlsmatrixanordnung direkt in dem Befehlsregister, wenn zwischen Adressbits des laufenden Befehls und den in der Assoziativmatrixanordnung gespeicherten Bits keine Übereinstimmung besteht.
8. Verfahren nach Anspruch 6, weiterhin gekennzeichnet durch das Ungültigmachen von mindestens einer der in der Assoziativmatrixanordnung gespeicherten Adressen, wenn die Adresse des laufenden Befehls größer als die dem neuen Verzweigungsbefehl zugeordnete Adresse ist.
9. Verfahren nach Anspruch 6 oder 7, weiterhin gekennzeichnet durch das Ungültigmachen der gesamten in der Assoziativmatrixanordnung gespeicherten Adressengruppe, wenn ein Verarbeitungsresultat im Speicher innerhalb einer Grenze des laufenden Befehls gespeichert wird, die durch die bestimmte Höchstzahl von in der Befehlsmatrixanordnung gespeicherten Befehlen definiert ist.
10. Verfahren nach Anspruch 6 oder 7, weiterhin gekennzeichnet durch das Ungültigmachen der gesamten in der Assoziativmatrixanordnung gespeicherten Adressengruppe, wenn die Abbildung der virtuellen zu den echten Adressen geändert wird.
11. Verfahren nach Anspruch 7, weiterhin gekennzeichnet durch das Ungültigmachen von mindestens einer der in der Assoziativmatrixanordnung gespeicherten Adressen, wenn zwischen der Adresse des laufenden Befehls und einer in der Assoziativmatrixanordnung gespeicherten Adresse keine Übereinstimmung besteht.
12. Verfahren nach Anspruch 8, weiterhin gekennzeichnet durch das Ungültigmachen der gesamten in der Assoziativmatrixanordnung gespeicherten Adressengruppe, wenn ein Verarbeitungsresultat im Speicher innerhalb einer Grenze des laufenden Befehls gespeichert wird, die durch die bestimmte Höchstzahl von in der Assoziativmatrixanordnung gespeicherten Befehlen definiert ist.
13. Verfahren nach Anspruch 8, weiterhin gekennzeichnet durch das Ungültigmachen der gesamten in der Assoziativmatrixanordnung gespeicherten Adressengruppe, wenn die Abbildung der virtuellen zu den echten Adressen geändert wird.
14. Verfahren nach Anspruch 10, weiterhin gekennzeichnet durch das Ungültigmachen der gesamten in der Assoziativmatrixanordnung gespeicherten Adressengruppe, wenn die Abbildung der virtuellen zu den echten Adressen geändert wird.
EP84102099A 1983-03-07 1984-02-29 Befehlsabrufanordnung und -verfahren Expired EP0118828B1 (de)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US06/472,467 US4626988A (en) 1983-03-07 1983-03-07 Instruction fetch look-aside buffer with loop mode control
US472467 1983-03-07

Publications (3)

Publication Number Publication Date
EP0118828A2 EP0118828A2 (de) 1984-09-19
EP0118828A3 EP0118828A3 (en) 1986-10-08
EP0118828B1 true EP0118828B1 (de) 1990-08-22

Family

ID=23875613

Family Applications (1)

Application Number Title Priority Date Filing Date
EP84102099A Expired EP0118828B1 (de) 1983-03-07 1984-02-29 Befehlsabrufanordnung und -verfahren

Country Status (4)

Country Link
US (1) US4626988A (de)
EP (1) EP0118828B1 (de)
JP (1) JPS59165144A (de)
DE (1) DE3483010D1 (de)

Families Citing this family (62)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS60168238A (ja) * 1984-02-10 1985-08-31 Hitachi Ltd パイプラインデータ処理装置
JPH0630075B2 (ja) * 1984-08-31 1994-04-20 株式会社日立製作所 キャッシュメモリを有するデータ処理装置
US4691277A (en) * 1984-10-24 1987-09-01 International Business Machines Corp. Small instruction cache using branch target table to effect instruction prefetch
FR2578069B1 (fr) * 1985-02-23 1987-10-23 Nec Corp Dispositif de detection du renouvellement d'instructions pour systeme de traitement de l'information
JPS6341932A (ja) * 1985-08-22 1988-02-23 Nec Corp 分岐命令処理装置
US4755935A (en) * 1986-01-27 1988-07-05 Schlumberger Technology Corporation Prefetch memory system having next-instruction buffer which stores target tracks of jumps prior to CPU access of instruction
JPS6393041A (ja) * 1986-10-07 1988-04-23 Mitsubishi Electric Corp 計算機
US4933837A (en) * 1986-12-01 1990-06-12 Advanced Micro Devices, Inc. Methods and apparatus for optimizing instruction processing in computer systems employing a combination of instruction cache and high speed consecutive transfer memories
EP0306644B1 (de) * 1987-07-06 1997-11-12 Hitachi, Ltd. Datenprozessor mit einer Unterbrechungsfunktion
JP2690921B2 (ja) * 1987-12-25 1997-12-17 株式会社日立製作所 情報処理装置
DE3802025C1 (de) * 1988-01-25 1989-07-20 Otto 7750 Konstanz De Mueller
GB8823980D0 (en) * 1988-10-13 1988-11-23 Glaxo Group Ltd Chemical compounds
US5113515A (en) * 1989-02-03 1992-05-12 Digital Equipment Corporation Virtual instruction cache system using length responsive decoded instruction shifting and merging with prefetch buffer outputs to fill instruction buffer
US5440749A (en) * 1989-08-03 1995-08-08 Nanotronics Corporation High performance, low cost microprocessor architecture
WO1991011765A1 (en) * 1990-01-29 1991-08-08 Teraplex, Inc. Architecture for minimal instruction set computing system
US5257360A (en) * 1990-03-23 1993-10-26 Advanced Micro Devices,Inc. Re-configurable block length cache
DE69129872T2 (de) * 1990-03-27 1999-03-04 Philips Electronics N.V., Eindhoven Datenverarbeitungssystem mit einem leistungsverbessernden Befehlscachespeicher
EP0457403B1 (de) * 1990-05-18 1998-01-21 Koninklijke Philips Electronics N.V. Mehrstufiger Befehlscachespeicher und Verwendungsverfahren dafür
US5226138A (en) * 1990-11-27 1993-07-06 Sun Microsystems, Inc. Method for selectively transferring data instructions to a cache memory
US5285527A (en) * 1991-12-11 1994-02-08 Northern Telecom Limited Predictive historical cache memory
JPH07160585A (ja) * 1993-12-13 1995-06-23 Hitachi Ltd 低電力データ処理装置
US5524223A (en) * 1994-01-31 1996-06-04 Motorola, Inc. Instruction accelerator for processing loop instructions with address generator using multiple stored increment values
KR100206887B1 (ko) * 1995-12-31 1999-07-01 구본준 프로그램 오동작 방지를 위한 씨피유
JPH10177482A (ja) * 1996-10-31 1998-06-30 Texas Instr Inc <Ti> マイクロプロセッサおよび動作方法
US6505295B1 (en) * 1997-02-17 2003-01-07 Hitachi, Ltd. Data processor
US6085315A (en) * 1997-09-12 2000-07-04 Siemens Aktiengesellschaft Data processing device with loop pipeline
US6125440A (en) * 1998-05-21 2000-09-26 Tellabs Operations, Inc. Storing executing instruction sequence for re-execution upon backward branch to reduce power consuming memory fetch
US6321312B1 (en) 1998-07-01 2001-11-20 International Business Machines Corporation System and method for controlling peripheral device memory access in a data processing system
WO2000055724A1 (de) * 1999-03-17 2000-09-21 Infineon Technologies Ag Cachen kurzer programmschleifen innerhalb eines instruktions-fifos
US6963965B1 (en) 1999-11-30 2005-11-08 Texas Instruments Incorporated Instruction-programmable processor with instruction loop cache
US7302557B1 (en) 1999-12-27 2007-11-27 Impact Technologies, Inc. Method and apparatus for modulo scheduled loop execution in a processor architecture
US6732203B2 (en) * 2000-01-31 2004-05-04 Intel Corporation Selectively multiplexing memory coupling global bus data bits to narrower functional unit coupling local bus
JP2002073330A (ja) * 2000-08-28 2002-03-12 Mitsubishi Electric Corp データ処理装置
GB0029796D0 (en) * 2000-12-07 2001-01-17 Smart Card Solutions Ltd Method of developing a software program for a target platform
US20040078608A1 (en) * 2001-04-02 2004-04-22 Ruban Kanapathippillai Method and apparatus for power reduction in a digital signal processor integrated circuit
US7003543B2 (en) 2001-06-01 2006-02-21 Microchip Technology Incorporated Sticky z bit
US6937084B2 (en) 2001-06-01 2005-08-30 Microchip Technology Incorporated Processor with dual-deadtime pulse width modulation generator
US6604169B2 (en) 2001-06-01 2003-08-05 Microchip Technology Incorporated Modulo addressing based on absolute offset
US6552625B2 (en) 2001-06-01 2003-04-22 Microchip Technology Inc. Processor with pulse width modulation generator with fault input prioritization
US6934728B2 (en) 2001-06-01 2005-08-23 Microchip Technology Incorporated Euclidean distance instructions
US7007172B2 (en) 2001-06-01 2006-02-28 Microchip Technology Incorporated Modified Harvard architecture processor having data memory space mapped to program memory space with erroneous execution protection
US6975679B2 (en) 2001-06-01 2005-12-13 Microchip Technology Incorporated Configuration fuses for setting PWM options
US6601160B2 (en) 2001-06-01 2003-07-29 Microchip Technology Incorporated Dynamically reconfigurable data space
US6728856B2 (en) 2001-06-01 2004-04-27 Microchip Technology Incorporated Modified Harvard architecture processor having program memory space mapped to data memory space
US7020788B2 (en) 2001-06-01 2006-03-28 Microchip Technology Incorporated Reduced power option
US6985986B2 (en) 2001-06-01 2006-01-10 Microchip Technology Incorporated Variable cycle interrupt disabling
US6976158B2 (en) 2001-06-01 2005-12-13 Microchip Technology Incorporated Repeat instruction with interrupt
US20020184566A1 (en) 2001-06-01 2002-12-05 Michael Catherwood Register pointer trap
US6952711B2 (en) 2001-06-01 2005-10-04 Microchip Technology Incorporated Maximally negative signed fractional number multiplication
US7467178B2 (en) 2001-06-01 2008-12-16 Microchip Technology Incorporated Dual mode arithmetic saturation processing
US6552567B1 (en) 2001-09-28 2003-04-22 Microchip Technology Incorporated Functional pathway configuration at a system/IC interface
US7493607B2 (en) 2002-07-09 2009-02-17 Bluerisc Inc. Statically speculative compilation and execution
US20050114850A1 (en) 2003-10-29 2005-05-26 Saurabh Chheda Energy-focused re-compilation of executables and hardware mechanisms based on compiler-architecture interaction and compiler-inserted control
EP1531395A1 (de) * 2003-11-17 2005-05-18 Infineon Technologies AG Verfahren zum Ermitteln von Informationen über Prozesse bei der Ausführung eines Programms in einer programmgesteuerten Einheit
US7996671B2 (en) 2003-11-17 2011-08-09 Bluerisc Inc. Security of program executables and microprocessors based on compiler-architecture interaction
US8607209B2 (en) 2004-02-04 2013-12-10 Bluerisc Inc. Energy-focused compiler-assisted branch prediction
JP4086885B2 (ja) * 2004-11-25 2008-05-14 松下電器産業株式会社 命令供給装置
JP2006309337A (ja) * 2005-04-26 2006-11-09 Toshiba Corp プロセッサ及びプロセッサの命令バッファ動作方法
US20080126766A1 (en) 2006-11-03 2008-05-29 Saurabh Chheda Securing microprocessors against information leakage and physical tampering
US20090055589A1 (en) * 2007-08-24 2009-02-26 Arm Limited Cache memory system for a data processing apparatus
US20140215185A1 (en) * 2013-01-29 2014-07-31 Atmel Norway Fetching instructions of a loop routine
JP6155723B2 (ja) * 2013-03-18 2017-07-05 富士通株式会社 レーダ装置及びプログラム

Family Cites Families (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3593306A (en) * 1969-07-25 1971-07-13 Bell Telephone Labor Inc Apparatus for reducing memory fetches in program loops
JPS5021821A (de) * 1973-06-29 1975-03-08
US3928857A (en) * 1973-08-30 1975-12-23 Ibm Instruction fetch apparatus with combined look-ahead and look-behind capability
JPS51115737A (en) * 1975-03-24 1976-10-12 Hitachi Ltd Adress conversion versus control system
JPS52149444A (en) * 1976-06-08 1977-12-12 Fujitsu Ltd Multiplex virtual space processing data processing system
US4053948A (en) * 1976-06-21 1977-10-11 Ibm Corporation Look aside array invalidation mechanism
JPS54100635A (en) * 1978-01-25 1979-08-08 Nec Corp Information processor
US4245302A (en) * 1978-10-10 1981-01-13 Magnuson Computer Systems, Inc. Computer and method for executing target instructions
JPS55112651A (en) * 1979-02-21 1980-08-30 Fujitsu Ltd Virtual computer system
JPS5644942A (en) * 1979-09-19 1981-04-24 Hitachi Ltd Information processing unit

Also Published As

Publication number Publication date
EP0118828A2 (de) 1984-09-19
DE3483010D1 (de) 1990-09-27
JPS59165144A (ja) 1984-09-18
EP0118828A3 (en) 1986-10-08
US4626988A (en) 1986-12-02

Similar Documents

Publication Publication Date Title
EP0118828B1 (de) Befehlsabrufanordnung und -verfahren
EP0302999B1 (de) Abholung von Operanden in Unordnung
US6425075B1 (en) Branch prediction device with two levels of branch prediction cache
EP0592121B1 (de) Verfahren und System zur Aufrechterhaltung der Adressenübersetzungspufferspeicher-Kohärenz eines Multiprozessorsystems
US5377336A (en) Improved method to prefetch load instruction data
EP0706128B1 (de) Verfahren und Gerät zum schnellen Vergleichen für Adressen eines Pufferspeichers mit Fehlerkorrektur
EP0795828B1 (de) Verfahren und Gerät zur dynamischen Vorhersage des Weges für mehrstufige und mehrwege-satz-assoziative Cachespeicher
US5125083A (en) Method and apparatus for resolving a variable number of potential memory access conflicts in a pipelined computer system
US5666506A (en) Apparatus to dynamically control the out-of-order execution of load/store instructions in a processor capable of dispatchng, issuing and executing multiple instructions in a single processor cycle
US5210831A (en) Methods and apparatus for insulating a branch prediction mechanism from data dependent branch table updates that result from variable test operand locations
KR100204741B1 (ko) 제1및 제2캐시 메모리 사용방법
US5392410A (en) History table for prediction of virtual address translation for cache access
US6363336B1 (en) Fine grain translation discrimination
US6360314B1 (en) Data cache having store queue bypass for out-of-order instruction execution and method for same
US4831622A (en) Apparatus for forcing a reload from main memory upon cache memory error
EP0605871B1 (de) Verfahren und System zur Erhöhung der Systemspeichergleichzeitigkeit eines Multiprozessor-Rechnersystems
US6519684B1 (en) Low overhead method for selecting and updating an entry in a cache memory
US5794027A (en) Method and apparatus for managing the execution of instructons with proximate successive branches in a cache-based data processing system
JPH1055276A (ja) 多重レベル分岐予測方法および装置
US6711671B1 (en) Non-speculative instruction fetch in speculative processing
US20020010837A1 (en) Cache memory system and method of controlling cache memory
JP2542565B2 (ja) 分岐予測制御方式
US7069391B1 (en) Method for improved first level cache coherency
JPH06161887A (ja) キャッシュ制御方式
JPH0769809B2 (ja) データ処理装置

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

AK Designated contracting states

Designated state(s): DE FR GB

17P Request for examination filed

Effective date: 19841123

PUAL Search report despatched

Free format text: ORIGINAL CODE: 0009013

AK Designated contracting states

Kind code of ref document: A3

Designated state(s): DE FR GB

17Q First examination report despatched

Effective date: 19880905

GRAA (expected) grant

Free format text: ORIGINAL CODE: 0009210

AK Designated contracting states

Kind code of ref document: B1

Designated state(s): DE FR GB

REF Corresponds to:

Ref document number: 3483010

Country of ref document: DE

Date of ref document: 19900927

ET Fr: translation filed
PLBE No opposition filed within time limit

Free format text: ORIGINAL CODE: 0009261

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: NO OPPOSITION FILED WITHIN TIME LIMIT

26N No opposition filed
PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: GB

Payment date: 19930118

Year of fee payment: 10

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: FR

Payment date: 19930120

Year of fee payment: 10

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: DE

Payment date: 19930127

Year of fee payment: 10

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: GB

Effective date: 19940228

GBPC Gb: european patent ceased through non-payment of renewal fee

Effective date: 19940228

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: FR

Effective date: 19941031

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: DE

Effective date: 19941101

REG Reference to a national code

Ref country code: FR

Ref legal event code: ST