Registers view enhancements (#1098)
This commit is contained in:
parent
a93f9981d9
commit
21d2d1c4e0
|
@ -36,11 +36,17 @@ EditFloatRegister::EditFloatRegister(int RegisterSize, QWidget* parent) :
|
|||
hideUpperPart();
|
||||
ui->labelLowRegister->setText(QString("XMM:"));
|
||||
break;
|
||||
case 64:
|
||||
hideUpperPart();
|
||||
hideNonMMXPart();
|
||||
ui->hexEdit_2->setMaxLength(16);
|
||||
ui->labelLowRegister->setText(QString("MM:"));
|
||||
break;
|
||||
case 256:
|
||||
break;
|
||||
case 512:
|
||||
default:
|
||||
GuiAddLogMessage(QString(tr("Error, register size %1 is not supported.\n")).arg(RegisterSize).toUtf8().constData());
|
||||
GuiAddLogMessage(tr("Error, register size %1 is not supported.\n").arg(RegisterSize).toUtf8().constData());
|
||||
break;
|
||||
}
|
||||
setFixedWidth(width());
|
||||
|
@ -58,54 +64,93 @@ EditFloatRegister::EditFloatRegister(int RegisterSize, QWidget* parent) :
|
|||
connect(ui->shortEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort1FinishedSlot(QString)));
|
||||
connect(ui->shortEdit2_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort2FinishedSlot(QString)));
|
||||
connect(ui->shortEdit3_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort3FinishedSlot(QString)));
|
||||
connect(ui->shortEdit4_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort4FinishedSlot(QString)));
|
||||
connect(ui->shortEdit5_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort5FinishedSlot(QString)));
|
||||
connect(ui->shortEdit6_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort6FinishedSlot(QString)));
|
||||
connect(ui->shortEdit7_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort7FinishedSlot(QString)));
|
||||
connect(ui->shortEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort0FinishedSlot(QString)));
|
||||
connect(ui->shortEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort1FinishedSlot(QString)));
|
||||
connect(ui->shortEdit2, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort2FinishedSlot(QString)));
|
||||
connect(ui->shortEdit3, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort3FinishedSlot(QString)));
|
||||
connect(ui->shortEdit4, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort4FinishedSlot(QString)));
|
||||
connect(ui->shortEdit5, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort5FinishedSlot(QString)));
|
||||
connect(ui->shortEdit6, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort6FinishedSlot(QString)));
|
||||
connect(ui->shortEdit7, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort7FinishedSlot(QString)));
|
||||
if(RegisterSize > 64)
|
||||
{
|
||||
connect(ui->shortEdit4_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort4FinishedSlot(QString)));
|
||||
connect(ui->shortEdit5_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort5FinishedSlot(QString)));
|
||||
connect(ui->shortEdit6_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort6FinishedSlot(QString)));
|
||||
connect(ui->shortEdit7_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerShort7FinishedSlot(QString)));
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
connect(ui->shortEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort0FinishedSlot(QString)));
|
||||
connect(ui->shortEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort1FinishedSlot(QString)));
|
||||
connect(ui->shortEdit2, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort2FinishedSlot(QString)));
|
||||
connect(ui->shortEdit3, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort3FinishedSlot(QString)));
|
||||
connect(ui->shortEdit4, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort4FinishedSlot(QString)));
|
||||
connect(ui->shortEdit5, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort5FinishedSlot(QString)));
|
||||
connect(ui->shortEdit6, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort6FinishedSlot(QString)));
|
||||
connect(ui->shortEdit7, SIGNAL(textEdited(QString)), this, SLOT(editingUpperShort7FinishedSlot(QString)));
|
||||
}
|
||||
}
|
||||
connect(ui->longEdit0_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLong0FinishedSlot(QString)));
|
||||
connect(ui->longEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLong1FinishedSlot(QString)));
|
||||
connect(ui->longEdit2_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLong2FinishedSlot(QString)));
|
||||
connect(ui->longEdit3_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLong3FinishedSlot(QString)));
|
||||
connect(ui->longEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong0FinishedSlot(QString)));
|
||||
connect(ui->longEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong1FinishedSlot(QString)));
|
||||
connect(ui->longEdit2, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong2FinishedSlot(QString)));
|
||||
connect(ui->longEdit3, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong3FinishedSlot(QString)));
|
||||
if(RegisterSize > 64)
|
||||
{
|
||||
connect(ui->longEdit2_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLong2FinishedSlot(QString)));
|
||||
connect(ui->longEdit3_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLong3FinishedSlot(QString)));
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
connect(ui->longEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong0FinishedSlot(QString)));
|
||||
connect(ui->longEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong1FinishedSlot(QString)));
|
||||
connect(ui->longEdit2, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong2FinishedSlot(QString)));
|
||||
connect(ui->longEdit3, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLong3FinishedSlot(QString)));
|
||||
}
|
||||
}
|
||||
connect(ui->floatEdit0_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerFloat0FinishedSlot(QString)));
|
||||
connect(ui->floatEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerFloat1FinishedSlot(QString)));
|
||||
connect(ui->floatEdit2_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerFloat2FinishedSlot(QString)));
|
||||
connect(ui->floatEdit3_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerFloat3FinishedSlot(QString)));
|
||||
connect(ui->floatEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat0FinishedSlot(QString)));
|
||||
connect(ui->floatEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat1FinishedSlot(QString)));
|
||||
connect(ui->floatEdit2, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat2FinishedSlot(QString)));
|
||||
connect(ui->floatEdit3, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat3FinishedSlot(QString)));
|
||||
connect(ui->doubleEdit0_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerDouble0FinishedSlot(QString)));
|
||||
connect(ui->doubleEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerDouble1FinishedSlot(QString)));
|
||||
connect(ui->doubleEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperDouble0FinishedSlot(QString)));
|
||||
connect(ui->doubleEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperDouble1FinishedSlot(QString)));
|
||||
connect(ui->longLongEdit0_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLongLong0FinishedSlot(QString)));
|
||||
connect(ui->longLongEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLongLong1FinishedSlot(QString)));
|
||||
connect(ui->longLongEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLongLong0FinishedSlot(QString)));
|
||||
connect(ui->longLongEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLongLong1FinishedSlot(QString)));
|
||||
if(RegisterSize > 64)
|
||||
{
|
||||
connect(ui->floatEdit2_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerFloat2FinishedSlot(QString)));
|
||||
connect(ui->floatEdit3_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerFloat3FinishedSlot(QString)));
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
connect(ui->floatEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat0FinishedSlot(QString)));
|
||||
connect(ui->floatEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat1FinishedSlot(QString)));
|
||||
connect(ui->floatEdit2, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat2FinishedSlot(QString)));
|
||||
connect(ui->floatEdit3, SIGNAL(textEdited(QString)), this, SLOT(editingUpperFloat3FinishedSlot(QString)));
|
||||
}
|
||||
}
|
||||
if(RegisterSize > 64)
|
||||
{
|
||||
connect(ui->doubleEdit0_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerDouble0FinishedSlot(QString)));
|
||||
connect(ui->doubleEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerDouble1FinishedSlot(QString)));
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
connect(ui->doubleEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperDouble0FinishedSlot(QString)));
|
||||
connect(ui->doubleEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperDouble1FinishedSlot(QString)));
|
||||
}
|
||||
connect(ui->longLongEdit0_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLongLong0FinishedSlot(QString)));
|
||||
connect(ui->longLongEdit1_2, SIGNAL(textEdited(QString)), this, SLOT(editingLowerLongLong1FinishedSlot(QString)));
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
connect(ui->longLongEdit0, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLongLong0FinishedSlot(QString)));
|
||||
connect(ui->longLongEdit1, SIGNAL(textEdited(QString)), this, SLOT(editingUpperLongLong1FinishedSlot(QString)));
|
||||
}
|
||||
}
|
||||
ui->floatEdit0_2->setValidator(&doubleValidator);
|
||||
ui->floatEdit1_2->setValidator(&doubleValidator);
|
||||
ui->floatEdit2_2->setValidator(&doubleValidator);
|
||||
ui->floatEdit3_2->setValidator(&doubleValidator);
|
||||
ui->floatEdit0->setValidator(&doubleValidator);
|
||||
ui->floatEdit1->setValidator(&doubleValidator);
|
||||
ui->floatEdit2->setValidator(&doubleValidator);
|
||||
ui->floatEdit3->setValidator(&doubleValidator);
|
||||
ui->doubleEdit0_2->setValidator(&doubleValidator);
|
||||
ui->doubleEdit1_2->setValidator(&doubleValidator);
|
||||
ui->doubleEdit0->setValidator(&doubleValidator);
|
||||
ui->doubleEdit1->setValidator(&doubleValidator);
|
||||
if(RegisterSize > 64)
|
||||
{
|
||||
ui->floatEdit2_2->setValidator(&doubleValidator);
|
||||
ui->floatEdit3_2->setValidator(&doubleValidator);
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
ui->floatEdit0->setValidator(&doubleValidator);
|
||||
ui->floatEdit1->setValidator(&doubleValidator);
|
||||
ui->floatEdit2->setValidator(&doubleValidator);
|
||||
ui->floatEdit3->setValidator(&doubleValidator);
|
||||
}
|
||||
}
|
||||
if(RegisterSize > 64)
|
||||
{
|
||||
ui->doubleEdit0_2->setValidator(&doubleValidator);
|
||||
ui->doubleEdit1_2->setValidator(&doubleValidator);
|
||||
if(RegisterSize > 128)
|
||||
{
|
||||
ui->doubleEdit0->setValidator(&doubleValidator);
|
||||
ui->doubleEdit1->setValidator(&doubleValidator);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void EditFloatRegister::hideUpperPart()
|
||||
|
@ -149,6 +194,28 @@ void EditFloatRegister::hideUpperPart()
|
|||
ui->longLongEdit1->hide();
|
||||
}
|
||||
|
||||
void EditFloatRegister::hideNonMMXPart()
|
||||
{
|
||||
ui->labelL4->hide();
|
||||
ui->labelL5->hide();
|
||||
ui->labelL6->hide();
|
||||
ui->labelL7->hide();
|
||||
ui->labelLC->hide();
|
||||
ui->labelLD->hide();
|
||||
ui->doubleEdit0_2->hide();
|
||||
ui->doubleEdit1_2->hide();
|
||||
ui->longLongEdit0_2->hide();
|
||||
ui->longLongEdit1_2->hide();
|
||||
ui->shortEdit4_2->hide();
|
||||
ui->shortEdit5_2->hide();
|
||||
ui->shortEdit6_2->hide();
|
||||
ui->shortEdit7_2->hide();
|
||||
ui->longEdit2_2->hide();
|
||||
ui->longEdit3_2->hide();
|
||||
ui->floatEdit2_2->hide();
|
||||
ui->floatEdit3_2->hide();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Load register data into the dialog
|
||||
* @param[in] RegisterData the data to be loaded. It must be at lease the same size as the size specified in RegisterSize
|
||||
|
@ -172,7 +239,8 @@ const char* EditFloatRegister::getData()
|
|||
|
||||
void EditFloatRegister::selectAllText()
|
||||
{
|
||||
ui->hexEdit->selectAll();
|
||||
ui->hexEdit_2->setFocus();
|
||||
ui->hexEdit_2->selectAll();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -182,28 +250,47 @@ void EditFloatRegister::reloadDataLow()
|
|||
{
|
||||
if(mutex == nullptr)
|
||||
mutex = this;
|
||||
int maxBytes;
|
||||
if(RegSize >= 128)
|
||||
maxBytes = 16;
|
||||
else
|
||||
maxBytes = RegSize / 8;
|
||||
if(mutex != ui->hexEdit_2)
|
||||
ui->hexEdit_2->setText(QString(QByteArray(Data, 16).toHex()).toUpper());
|
||||
{
|
||||
if(ConfigBool("Gui", "FpuRegistersLittleEndian"))
|
||||
ui->hexEdit_2->setText(QString(QByteArray(Data, maxBytes).toHex()).toUpper());
|
||||
else
|
||||
ui->hexEdit_2->setText(QString(ByteReverse(QByteArray(Data, maxBytes)).toHex()).toUpper());
|
||||
}
|
||||
reloadLongData(*ui->longEdit0_2, Data);
|
||||
reloadLongData(*ui->longEdit1_2, Data + 4);
|
||||
reloadLongData(*ui->longEdit2_2, Data + 8);
|
||||
reloadLongData(*ui->longEdit3_2, Data + 12);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
reloadLongData(*ui->longEdit2_2, Data + 8);
|
||||
reloadLongData(*ui->longEdit3_2, Data + 12);
|
||||
}
|
||||
reloadShortData(*ui->shortEdit0_2, Data);
|
||||
reloadShortData(*ui->shortEdit1_2, Data + 2);
|
||||
reloadShortData(*ui->shortEdit2_2, Data + 4);
|
||||
reloadShortData(*ui->shortEdit3_2, Data + 6);
|
||||
reloadShortData(*ui->shortEdit4_2, Data + 8);
|
||||
reloadShortData(*ui->shortEdit5_2, Data + 10);
|
||||
reloadShortData(*ui->shortEdit6_2, Data + 12);
|
||||
reloadShortData(*ui->shortEdit7_2, Data + 14);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
reloadShortData(*ui->shortEdit4_2, Data + 8);
|
||||
reloadShortData(*ui->shortEdit5_2, Data + 10);
|
||||
reloadShortData(*ui->shortEdit6_2, Data + 12);
|
||||
reloadShortData(*ui->shortEdit7_2, Data + 14);
|
||||
}
|
||||
reloadFloatData(*ui->floatEdit0_2, Data);
|
||||
reloadFloatData(*ui->floatEdit1_2, Data + 4);
|
||||
reloadFloatData(*ui->floatEdit2_2, Data + 8);
|
||||
reloadFloatData(*ui->floatEdit3_2, Data + 12);
|
||||
reloadDoubleData(*ui->doubleEdit0_2, Data);
|
||||
reloadDoubleData(*ui->doubleEdit1_2, Data + 8);
|
||||
reloadLongLongData(*ui->longLongEdit0_2, Data);
|
||||
reloadLongLongData(*ui->longLongEdit1_2, Data + 8);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
reloadFloatData(*ui->floatEdit2_2, Data + 8);
|
||||
reloadFloatData(*ui->floatEdit3_2, Data + 12);
|
||||
reloadDoubleData(*ui->doubleEdit0_2, Data);
|
||||
reloadDoubleData(*ui->doubleEdit1_2, Data + 8);
|
||||
reloadLongLongData(*ui->longLongEdit0_2, Data);
|
||||
reloadLongLongData(*ui->longLongEdit1_2, Data + 8);
|
||||
}
|
||||
mutex = nullptr;
|
||||
}
|
||||
|
||||
|
@ -215,7 +302,12 @@ void EditFloatRegister::reloadDataHigh()
|
|||
if(mutex == nullptr)
|
||||
mutex = this;
|
||||
if(mutex != ui->hexEdit)
|
||||
ui->hexEdit->setText(QString(QByteArray(Data + 16, 16).toHex()).toUpper());
|
||||
{
|
||||
if(ConfigBool("Gui", "FpuRegistersLittleEndian"))
|
||||
ui->hexEdit->setText(QString(QByteArray(Data + 16, 16).toHex()).toUpper());
|
||||
else
|
||||
ui->hexEdit->setText(QString(ByteReverse(QByteArray(Data + 16, 16)).toHex()).toUpper());
|
||||
}
|
||||
reloadLongData(*ui->longEdit0, Data + 16);
|
||||
reloadLongData(*ui->longEdit1, Data + 20);
|
||||
reloadLongData(*ui->longEdit2, Data + 24);
|
||||
|
@ -257,7 +349,7 @@ void EditFloatRegister::reloadLongData(QLineEdit & txtbox, char* Data)
|
|||
if(mutex != &txtbox)
|
||||
{
|
||||
if(ui->radioHex->isChecked())
|
||||
txtbox.setText(QString().number(*(int*)Data, 16).toUpper());
|
||||
txtbox.setText(QString().number(*(unsigned int*)Data, 16).toUpper());
|
||||
else if(ui->radioSigned->isChecked())
|
||||
txtbox.setText(QString().number(*(int*)Data));
|
||||
else
|
||||
|
@ -303,58 +395,82 @@ void EditFloatRegister::editingModeChangedSlot(bool arg)
|
|||
ui->shortEdit1_2->setMaxLength(4);
|
||||
ui->shortEdit2_2->setMaxLength(4);
|
||||
ui->shortEdit3_2->setMaxLength(4);
|
||||
ui->shortEdit4_2->setMaxLength(4);
|
||||
ui->shortEdit5_2->setMaxLength(4);
|
||||
ui->shortEdit6_2->setMaxLength(4);
|
||||
ui->shortEdit7_2->setMaxLength(4);
|
||||
ui->shortEdit0->setMaxLength(4);
|
||||
ui->shortEdit1->setMaxLength(4);
|
||||
ui->shortEdit2->setMaxLength(4);
|
||||
ui->shortEdit3->setMaxLength(4);
|
||||
ui->shortEdit4->setMaxLength(4);
|
||||
ui->shortEdit5->setMaxLength(4);
|
||||
ui->shortEdit6->setMaxLength(4);
|
||||
ui->shortEdit7->setMaxLength(4);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
ui->shortEdit4_2->setMaxLength(4);
|
||||
ui->shortEdit5_2->setMaxLength(4);
|
||||
ui->shortEdit6_2->setMaxLength(4);
|
||||
ui->shortEdit7_2->setMaxLength(4);
|
||||
if(RegSize > 128)
|
||||
{
|
||||
ui->shortEdit0->setMaxLength(4);
|
||||
ui->shortEdit1->setMaxLength(4);
|
||||
ui->shortEdit2->setMaxLength(4);
|
||||
ui->shortEdit3->setMaxLength(4);
|
||||
ui->shortEdit4->setMaxLength(4);
|
||||
ui->shortEdit5->setMaxLength(4);
|
||||
ui->shortEdit6->setMaxLength(4);
|
||||
ui->shortEdit7->setMaxLength(4);
|
||||
}
|
||||
}
|
||||
ui->longEdit0_2->setMaxLength(8);
|
||||
ui->longEdit1_2->setMaxLength(8);
|
||||
ui->longEdit2_2->setMaxLength(8);
|
||||
ui->longEdit3_2->setMaxLength(8);
|
||||
ui->longEdit0->setMaxLength(8);
|
||||
ui->longEdit1->setMaxLength(8);
|
||||
ui->longEdit2->setMaxLength(8);
|
||||
ui->longEdit3->setMaxLength(8);
|
||||
ui->longLongEdit0->setMaxLength(16);
|
||||
ui->longLongEdit1->setMaxLength(16);
|
||||
ui->longLongEdit0_2->setMaxLength(16);
|
||||
ui->longLongEdit1_2->setMaxLength(16);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
ui->longEdit2_2->setMaxLength(8);
|
||||
ui->longEdit3_2->setMaxLength(8);
|
||||
if(RegSize > 128)
|
||||
{
|
||||
ui->longEdit0->setMaxLength(8);
|
||||
ui->longEdit1->setMaxLength(8);
|
||||
ui->longEdit2->setMaxLength(8);
|
||||
ui->longEdit3->setMaxLength(8);
|
||||
ui->longLongEdit0->setMaxLength(16);
|
||||
ui->longLongEdit1->setMaxLength(16);
|
||||
}
|
||||
ui->longLongEdit0_2->setMaxLength(16);
|
||||
ui->longLongEdit1_2->setMaxLength(16);
|
||||
}
|
||||
ui->shortEdit0_2->setValidator(&hexValidate);
|
||||
ui->shortEdit1_2->setValidator(&hexValidate);
|
||||
ui->shortEdit2_2->setValidator(&hexValidate);
|
||||
ui->shortEdit3_2->setValidator(&hexValidate);
|
||||
ui->shortEdit4_2->setValidator(&hexValidate);
|
||||
ui->shortEdit5_2->setValidator(&hexValidate);
|
||||
ui->shortEdit6_2->setValidator(&hexValidate);
|
||||
ui->shortEdit7_2->setValidator(&hexValidate);
|
||||
ui->shortEdit0->setValidator(&hexValidate);
|
||||
ui->shortEdit1->setValidator(&hexValidate);
|
||||
ui->shortEdit2->setValidator(&hexValidate);
|
||||
ui->shortEdit3->setValidator(&hexValidate);
|
||||
ui->shortEdit4->setValidator(&hexValidate);
|
||||
ui->shortEdit5->setValidator(&hexValidate);
|
||||
ui->shortEdit6->setValidator(&hexValidate);
|
||||
ui->shortEdit7->setValidator(&hexValidate);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
ui->shortEdit4_2->setValidator(&hexValidate);
|
||||
ui->shortEdit5_2->setValidator(&hexValidate);
|
||||
ui->shortEdit6_2->setValidator(&hexValidate);
|
||||
ui->shortEdit7_2->setValidator(&hexValidate);
|
||||
if(RegSize > 128)
|
||||
{
|
||||
ui->shortEdit0->setValidator(&hexValidate);
|
||||
ui->shortEdit1->setValidator(&hexValidate);
|
||||
ui->shortEdit2->setValidator(&hexValidate);
|
||||
ui->shortEdit3->setValidator(&hexValidate);
|
||||
ui->shortEdit4->setValidator(&hexValidate);
|
||||
ui->shortEdit5->setValidator(&hexValidate);
|
||||
ui->shortEdit6->setValidator(&hexValidate);
|
||||
ui->shortEdit7->setValidator(&hexValidate);
|
||||
}
|
||||
}
|
||||
ui->longEdit0_2->setValidator(&hexValidate);
|
||||
ui->longEdit1_2->setValidator(&hexValidate);
|
||||
ui->longEdit2_2->setValidator(&hexValidate);
|
||||
ui->longEdit3_2->setValidator(&hexValidate);
|
||||
ui->longEdit0->setValidator(&hexValidate);
|
||||
ui->longEdit1->setValidator(&hexValidate);
|
||||
ui->longEdit2->setValidator(&hexValidate);
|
||||
ui->longEdit3->setValidator(&hexValidate);
|
||||
ui->longLongEdit0->setValidator(&hexValidate);
|
||||
ui->longLongEdit1->setValidator(&hexValidate);
|
||||
ui->longLongEdit0_2->setValidator(&hexValidate);
|
||||
ui->longLongEdit1_2->setValidator(&hexValidate);
|
||||
if(RegSize > 64)
|
||||
{
|
||||
ui->longEdit2_2->setValidator(&hexValidate);
|
||||
ui->longEdit3_2->setValidator(&hexValidate);
|
||||
if(RegSize > 128)
|
||||
{
|
||||
ui->longEdit0->setValidator(&hexValidate);
|
||||
ui->longEdit1->setValidator(&hexValidate);
|
||||
ui->longEdit2->setValidator(&hexValidate);
|
||||
ui->longEdit3->setValidator(&hexValidate);
|
||||
ui->longLongEdit0->setValidator(&hexValidate);
|
||||
ui->longLongEdit1->setValidator(&hexValidate);
|
||||
}
|
||||
ui->longLongEdit0_2->setValidator(&hexValidate);
|
||||
ui->longLongEdit1_2->setValidator(&hexValidate);
|
||||
}
|
||||
}
|
||||
else if(ui->radioSigned->isChecked())
|
||||
{
|
||||
|
@ -471,7 +587,8 @@ void EditFloatRegister::editingModeChangedSlot(bool arg)
|
|||
ui->longLongEdit1_2->setValidator(&unsignedLongLongValidator);
|
||||
}
|
||||
reloadDataLow();
|
||||
reloadDataHigh();
|
||||
if(RegSize > 128)
|
||||
reloadDataHigh();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -492,9 +609,18 @@ void EditFloatRegister::editingHex1FinishedSlot(QString arg)
|
|||
{
|
||||
mutex = sender();
|
||||
QString filled(arg.toUpper());
|
||||
filled.append(QString(16 - filled.length(), QChar('0')));
|
||||
for(int i = 0; i < 16; i++)
|
||||
Data[i + 16] = filled.mid(i * 2, 2).toInt(0, 16);
|
||||
if(ConfigBool("Gui", "FpuRegistersLittleEndian"))
|
||||
{
|
||||
filled.append(QString(16 - filled.length(), QChar('0')));
|
||||
for(int i = 0; i < 16; i++)
|
||||
Data[i + 16] = filled.mid(i * 2, 2).toInt(0, 16);
|
||||
}
|
||||
else
|
||||
{
|
||||
filled.prepend(QString(16 - filled.length(), QChar('0')));
|
||||
for(int i = 0; i < 16; i++)
|
||||
Data[i + 16] = filled.mid(30 - i * 2, 2).toInt(0, 16);
|
||||
}
|
||||
reloadDataHigh();
|
||||
}
|
||||
|
||||
|
@ -506,9 +632,23 @@ void EditFloatRegister::editingHex2FinishedSlot(QString arg)
|
|||
{
|
||||
mutex = sender();
|
||||
QString filled(arg.toUpper());
|
||||
filled.append(QString(16 - filled.length(), QChar('0')));
|
||||
for(int i = 0; i < 16; i++)
|
||||
Data[i] = filled.mid(i * 2, 2).toInt(0, 16);
|
||||
int maxBytes;
|
||||
if(RegSize >= 128)
|
||||
maxBytes = 16;
|
||||
else
|
||||
maxBytes = RegSize / 8;
|
||||
if(ConfigBool("Gui", "FpuRegistersLittleEndian"))
|
||||
{
|
||||
filled.append(QString(maxBytes - filled.length(), QChar('0')));
|
||||
for(int i = 0; i < maxBytes; i++)
|
||||
Data[i] = filled.mid(i * 2, 2).toInt(0, 16);
|
||||
}
|
||||
else
|
||||
{
|
||||
filled.prepend(QString(maxBytes - filled.length(), QChar('0')));
|
||||
for(int i = 0; i < maxBytes; i++)
|
||||
Data[i] = filled.mid((maxBytes - i - 1) * 2, 2).toInt(0, 16);
|
||||
}
|
||||
reloadDataLow();
|
||||
}
|
||||
|
||||
|
|
|
@ -81,6 +81,7 @@ private:
|
|||
QDoubleValidator doubleValidator;
|
||||
|
||||
void hideUpperPart();
|
||||
void hideNonMMXPart();
|
||||
|
||||
void reloadDataLow();
|
||||
void reloadDataHigh();
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>696</width>
|
||||
<height>456</height>
|
||||
<height>426</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
|
@ -374,7 +374,7 @@
|
|||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="label_18">
|
||||
<widget class="QLabel" name="labelLB">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -400,7 +400,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_29">
|
||||
<widget class="QLabel" name="labelL8">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -413,7 +413,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_17">
|
||||
<widget class="QLabel" name="labelLA">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -426,7 +426,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="label_19">
|
||||
<widget class="QLabel" name="labelLC">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -439,7 +439,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_16">
|
||||
<widget class="QLabel" name="labelL9">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -452,7 +452,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<widget class="QLabel" name="label_20">
|
||||
<widget class="QLabel" name="labelLD">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -554,7 +554,7 @@
|
|||
<enum>QLayout::SetMinimumSize</enum>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_21">
|
||||
<widget class="QLabel" name="labelL0">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -570,7 +570,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_22">
|
||||
<widget class="QLabel" name="labelL1">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -586,7 +586,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_23">
|
||||
<widget class="QLabel" name="labelL2">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -602,7 +602,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_24">
|
||||
<widget class="QLabel" name="labelL3">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -618,7 +618,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_25">
|
||||
<widget class="QLabel" name="labelL4">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -634,7 +634,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_26">
|
||||
<widget class="QLabel" name="labelL5">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -650,7 +650,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_27">
|
||||
<widget class="QLabel" name="labelL6">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -666,7 +666,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_28">
|
||||
<widget class="QLabel" name="labelL7">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
|
@ -738,36 +738,6 @@
|
|||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_30">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Unified hex value follows memory byte order.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="buttonOk">
|
||||
<property name="text">
|
||||
|
@ -835,8 +805,6 @@
|
|||
<tabstop>radioHex</tabstop>
|
||||
<tabstop>radioSigned</tabstop>
|
||||
<tabstop>radioUnsigned</tabstop>
|
||||
<tabstop>buttonOk</tabstop>
|
||||
<tabstop>buttonCancel</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../../resource.qrc"/>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include <QClipboard>
|
||||
#include <QMessageBox>
|
||||
#include <QListWidget>
|
||||
#include <QToolTip>
|
||||
#include <stdint.h>
|
||||
#include "RegistersView.h"
|
||||
#include "CPUWidget.h"
|
||||
|
@ -1133,6 +1134,8 @@ RegistersView::RegistersView(CPUWidget* parent, CPUMultiDump* multiDump) : QScro
|
|||
mButtonHeight = 0;
|
||||
yTopSpacing = 4; //set top spacing (in pixels)
|
||||
|
||||
this->setMouseTracking(true);
|
||||
|
||||
// Context Menu
|
||||
this->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
// foreign messages
|
||||
|
@ -1248,6 +1251,67 @@ bool RegistersView::identifyRegister(const int line, const int offset, REGISTER_
|
|||
return found_flag;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief RegistersView::helpRegister Get the help information of a register. The help information is from Intel's manual.
|
||||
* @param reg The register name
|
||||
* @return The help information, possibly translated to the native language, or empty if the help information is not available yet.
|
||||
*/
|
||||
QString RegistersView::helpRegister(REGISTER_NAME reg)
|
||||
{
|
||||
switch(reg)
|
||||
{
|
||||
//We don't display help messages for general purpose registers as they are very well-known.
|
||||
case CF:
|
||||
return tr("CF (bit 0) : Carry flag - Set if an arithmetic operation generates a carry or a borrow out of the mostsignificant bit of the result; cleared otherwise.\r\n"
|
||||
"This flag indicates an overflow condition for unsigned-integer arithmetic. It is also used in multiple-precision arithmetic.");
|
||||
case PF:
|
||||
return tr("PF (bit 2) : Parity flag - Set if the least-significant byte of the result contains an even number of 1 bits; cleared otherwise.");
|
||||
case AF:
|
||||
return tr("AF (bit 4) : Auxiliary Carry flag - Set if an arithmetic operation generates a carry or a borrow out of bit\r\n"
|
||||
"3 of the result; cleared otherwise. This flag is used in binary-coded decimal (BCD) arithmetic.");
|
||||
case ZF:
|
||||
return tr("ZF (bit 6) : Zero flag - Set if the result is zero; cleared otherwise.");
|
||||
case SF:
|
||||
return tr("SF (bit 7) : Sign flag - Set equal to the most-significant bit of the result, which is the sign bit of a signed\r\n"
|
||||
"integer. (0 indicates a positive value and 1 indicates a negative value.)");
|
||||
case OF:
|
||||
return tr("OF (bit 11) : Overflow flag - Set if the integer result is too large a positive number or too small a negative\r\n"
|
||||
"number (excluding the sign-bit) to fit in the destination operand; cleared otherwise. This flag indicates an overflow\r\n"
|
||||
"condition for signed-integer (two’s complement) arithmetic.");
|
||||
case DF:
|
||||
return tr("DF (bit 10) : The direction flag controls string instructions (MOVS, CMPS, SCAS, LODS, and STOS). Setting the DF flag causes the string instructions\r\n"
|
||||
"to auto-decrement (to process strings from high addresses to low addresses). Clearing the DF flag causes the string instructions to auto-increment\r\n"
|
||||
"(process strings from low addresses to high addresses).");
|
||||
case TF:
|
||||
return tr("TF (bit 8) : Trap flag - Set to enable single-step mode for debugging; clear to disable single-step mode.");
|
||||
case IF:
|
||||
return tr("IF (bit 9) : Interrupt enable flag - Controls the response of the processor to maskable interrupt requests. Set to respond to maskable interrupts; cleared to inhibit maskable interrupts.");
|
||||
case x87ControlWord:
|
||||
return tr("The 16-bit x87 FPU control word controls the precision of the x87 FPU and rounding method used. It also contains the x87 FPU floating-point exception mask bits.");
|
||||
case x87StatusWord:
|
||||
return tr("The 16-bit x87 FPU status register indicates the current state of the x87 FPU.");
|
||||
case x87TagWord:
|
||||
return tr("The 16-bit tag word indicates the contents of each the 8 registers in the x87 FPU data-register stack (one 2-bit tag per register).");
|
||||
case x87SW_SF:
|
||||
return tr("The stack fault flag (bit 6 of the x87 FPU status word) indicates that stack overflow or stack underflow has occurred with data\r\nin the x87 FPU data register stack.");
|
||||
case x87SW_TOP:
|
||||
return tr("A pointer to the x87 FPU data register that is currently at the top of the x87 FPU register stack is contained in bits 11 through 13\r\n"
|
||||
"of the x87 FPU status word. This pointer, which is commonly referred to as TOP (for top-of-stack), is a binary value from 0 to 7.");
|
||||
case MxCsr:
|
||||
return tr("The 32-bit MXCSR register contains control and status information for SIMD floating-point operations.");
|
||||
case MxCsr_FZ:
|
||||
return tr("Bit 15 (FZ) of the MXCSR register enables the flush-to-zero mode, which controls the masked response to a SIMD floating-point underflow condition.");
|
||||
case MxCsr_DAZ:
|
||||
return tr("Bit 6 (DAZ) of the MXCSR register enables the denormals-are-zeros mode, which controls the processor’s response to a SIMD floating-point\r\n"
|
||||
"denormal operand condition.");
|
||||
case LastError:
|
||||
//TODO: display help message of the specific error instead of this very generic message.
|
||||
return tr("The value of GetLastError(). This value is stored in the TEB.");
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
QMenu* RegistersView::CreateDumpNMenu(CPUMultiDump* multiDump)
|
||||
{
|
||||
QMenu* dumpMenu = new QMenu(tr("Follow in &Dump"), this);
|
||||
|
@ -1305,9 +1369,27 @@ void RegistersView::mousePressEvent(QMouseEvent* event)
|
|||
}
|
||||
}
|
||||
|
||||
void RegistersView::mouseMoveEvent(QMouseEvent* event)
|
||||
{
|
||||
if(!DbgIsDebugging())
|
||||
return;
|
||||
|
||||
REGISTER_NAME r = REGISTER_NAME::UNKNOWN;
|
||||
QString registerHelpInformation;
|
||||
// do we find a corresponding register?
|
||||
if(identifyRegister((event->y() - yTopSpacing) / (double)mRowHeight, event->x() / (double)mCharWidth, &r))\
|
||||
registerHelpInformation = helpRegister(r);
|
||||
else
|
||||
registerHelpInformation = "";
|
||||
if(!registerHelpInformation.isEmpty())
|
||||
QToolTip::showText(event->globalPos(), registerHelpInformation, this);
|
||||
else
|
||||
QToolTip::hideText();
|
||||
QScrollArea::mouseMoveEvent(event);
|
||||
}
|
||||
|
||||
void RegistersView::mouseDoubleClickEvent(QMouseEvent* event)
|
||||
{
|
||||
Q_UNUSED(event);
|
||||
if(!DbgIsDebugging() || event->button() != Qt::LeftButton)
|
||||
return;
|
||||
// get mouse position
|
||||
|
@ -1960,6 +2042,18 @@ void RegistersView::displayEditDialog()
|
|||
EditFloatRegister mEditFloat(128, this);
|
||||
mEditFloat.setWindowTitle(tr("Edit XMM register"));
|
||||
mEditFloat.loadData(registerValue(&wRegDumpStruct, mSelected));
|
||||
mEditFloat.show();
|
||||
mEditFloat.selectAllText();
|
||||
if(mEditFloat.exec() == QDialog::Accepted)
|
||||
setRegister(mSelected, (duint)mEditFloat.getData());
|
||||
}
|
||||
else if(mFPUMMX.contains(mSelected))
|
||||
{
|
||||
EditFloatRegister mEditFloat(64, this);
|
||||
mEditFloat.setWindowTitle(tr("Edit MMX register"));
|
||||
mEditFloat.loadData(registerValue(&wRegDumpStruct, mSelected));
|
||||
mEditFloat.show();
|
||||
mEditFloat.selectAllText();
|
||||
if(mEditFloat.exec() == QDialog::Accepted)
|
||||
setRegister(mSelected, (duint)mEditFloat.getData());
|
||||
}
|
||||
|
|
|
@ -119,6 +119,7 @@ protected:
|
|||
// events
|
||||
virtual void mousePressEvent(QMouseEvent* event);
|
||||
virtual void mouseDoubleClickEvent(QMouseEvent* event);
|
||||
virtual void mouseMoveEvent(QMouseEvent* event);
|
||||
virtual void paintEvent(QPaintEvent* event);
|
||||
virtual void keyPressEvent(QKeyEvent* event);
|
||||
|
||||
|
@ -127,6 +128,7 @@ protected:
|
|||
void setRegisters(REGDUMP* reg);
|
||||
char* registerValue(const REGDUMP* regd, const REGISTER_NAME reg);
|
||||
bool identifyRegister(const int y, const int x, REGISTER_NAME* clickedReg);
|
||||
QString helpRegister(REGISTER_NAME reg);
|
||||
QMenu* CreateDumpNMenu(CPUMultiDump* multiDump);
|
||||
|
||||
void displayEditDialog();
|
||||
|
|
Loading…
Reference in New Issue