A test register, in the
Intel 80386
The Intel 386, originally released as 80386 and later renamed i386, is a 32-bit microprocessor introduced in 1985. The first versions had 275,000 transistors[Intel 80486
The Intel 486, officially named i486 and also known as 80486, is a microprocessor. It is a higher-performance follow-up to the Intel 386. The i486 was introduced in 1989. It represents the fourth generation of binary compatible CPUs following t ...]
processor, was a register used by the processor, usually to do a self-test. Most of these registers were undocumented, and used by specialized software. The test registers were named TR3 to TR7. Regular programs don't usually require these registers to work. With the
Pentium
Pentium is a brand used for a series of x86 architecture-compatible microprocessors produced by Intel. The original Pentium processor from which the brand took its name was first released on March 22, 1993. After that, the Pentium II and P ...
, the test registers were replaced by a variety of
model-specific register
A model-specific register (MSR) is any of various control registers in the x86 instruction set used for debugging, program execution tracing, computer performance monitoring, and toggling certain CPU features.
History
With the introduction of th ...
s (MSRs).
In the 80386, two test registers, TR6 and TR7, were provided for the purpose of
TLB testing. TR6 was the test command register, and TR7 was the test data register. The 80486 provided three additional registers, TR3, TR4 and TR5, for testing of the L1 cache. TR3 was a data register, TR4 was an address register and TR5 was a command register. These registers were accessed by variants of the
MOV instruction. A test register may either be the source operand or the destination operand. The MOV instructions are defined in both
real-address mode
Real mode, also called real address mode, is an operating mode of all x86-compatible Central processing unit, CPUs. The mode gets its name from the fact that addresses in real mode always correspond to real locations in memory. Real mode is char ...
and
protected mode
In computing, protected mode, also called protected virtual address mode, is an operational mode of x86-compatible central processing units (CPUs). It allows system software to use features such as virtual memory, paging and safe multi-taskin ...
. The test registers are privileged resources. In protected mode, the MOV instructions that access them can only be executed at
privilege level 0. An attempt to read or write the test registers when executing at any other privilege level causes a general protection exception. Also, those instructions generate invalid opcode exception on most CPUs newer than 80486.
The instruction is encoded in two ways, depending on the flow of data. Moving data from a general purpose register into a test register is encoded as
0F 26 /r
(with
r/m
being the GPR, and
reg
being the test register). Moving data the other way (i.e. from the test register into a general purpose register) is encoded as
0F 24 /r
(with
r/m
being the GPR, and
reg
being the test register).
Only register-register moves are allowed; memory forms of the ModR/M byte are undefined. In other words, the
mod
field (the two
MSBs) must be set to
1
.
The test registers and/or associated opcodes were supported in the following
x86 processors:
See also
*
Control register
A control register is a processor register which changes or controls the general behavior of a CPU or other digital device. Common tasks performed by control registers include interrupt control, switching the addressing mode, paging control, ...
*
x86 debug register
On the x86 architecture, a debug register is a register used by a processor for program debugging. There are six debug registers, named DR0...DR7, with DR4 and DR5 as obsolete synonyms for DR6 and DR7. The debug registers allow programmers to sele ...
References
Digital registers
X86 architecture
{{Microcompu-stub