mirror of https://github.com/stella-emu/stella.git
enhanced duplicated local label handling (fixes #1067)
This commit is contained in:
parent
60e07663d1
commit
d67ac42bbc
|
@ -619,15 +619,27 @@ bool CartDebug::addLabel(const string& label, uInt16 address)
|
|||
case AddrType::IO:
|
||||
return false;
|
||||
default:
|
||||
removeLabel(label);
|
||||
myUserAddresses.emplace(label, address);
|
||||
myUserLabels.emplace(address, label);
|
||||
myLabelLength = std::max(myLabelLength, static_cast<uInt16>(label.size()));
|
||||
string newLabel = uniqueLabel(label);
|
||||
myUserAddresses.emplace(newLabel, address);
|
||||
myUserLabels.emplace(address, newLabel);
|
||||
myLabelLength = std::max(myLabelLength, static_cast<uInt16>(newLabel.size()));
|
||||
mySystem.setDirtyPage(address);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
string CartDebug::uniqueLabel(const string& label)
|
||||
{
|
||||
string uniqueLabel = label;
|
||||
int count = 0;
|
||||
|
||||
while(myUserAddresses.find(uniqueLabel) != myUserAddresses.end())
|
||||
uniqueLabel = label + "." + std::to_string(++count);
|
||||
|
||||
return uniqueLabel;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
bool CartDebug::removeLabel(const string& label)
|
||||
{
|
||||
|
|
|
@ -195,6 +195,11 @@ class CartDebug : public DebuggerSystem
|
|||
*/
|
||||
bool addLabel(const string& label, uInt16 address);
|
||||
|
||||
/**
|
||||
Make given (local) label unique by adding .<count> to it
|
||||
*/
|
||||
string uniqueLabel(const string& label);
|
||||
|
||||
/**
|
||||
Remove the given label and its associated address.
|
||||
Labels that reference either TIA or RIOT spaces will not be processed.
|
||||
|
|
Loading…
Reference in New Issue