Add a spot for the condition code portion of the flag register.
This is stored in the integer register file so that it can be renamed, but it should be a misc reg. --HG-- extra : convert_revision : eee48f24dd80b145f14427482047c4d8af2521ab
This commit is contained in:
parent
13ccac1a3c
commit
aad11bf879
2 changed files with 3 additions and 1 deletions
|
@ -104,7 +104,8 @@ namespace X86ISA
|
|||
std::string getIntRegName(RegIndex);
|
||||
|
||||
const int NumIntArchRegs = NUM_INTREGS;
|
||||
const int NumIntRegs = NumIntArchRegs + NumMicroIntRegs;
|
||||
const int NumIntRegs =
|
||||
NumIntArchRegs + NumMicroIntRegs + NumPseudoIntRegs;
|
||||
|
||||
class IntRegFile
|
||||
{
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
namespace X86ISA
|
||||
{
|
||||
const int NumMicroIntRegs = 16;
|
||||
const int NumPseudoIntRegs = 1;
|
||||
|
||||
const int NumMMXRegs = 8;
|
||||
const int NumXMMRegs = 16;
|
||||
|
|
Loading…
Reference in a new issue