mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Allow for register numbers > 31.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
389dae20ea
commit
3d3d404b8a
@ -1219,12 +1219,22 @@ void DwarfWriter::AddSourceLine(DIE *Die, CompileUnitDesc *File, unsigned Line){
|
||||
void DwarfWriter::AddAddress(DIE *Die, unsigned Attribute,
|
||||
const MachineLocation &Location) {
|
||||
DIEBlock *Block = new DIEBlock();
|
||||
unsigned Reg = RI->getDwarfRegNum(Location.getRegister());
|
||||
|
||||
if (Location.isRegister()) {
|
||||
Block->AddUInt(DW_FORM_data1,
|
||||
DW_OP_reg0 + RI->getDwarfRegNum(Location.getRegister()));
|
||||
if (Reg < 32) {
|
||||
Block->AddUInt(DW_FORM_data1, DW_OP_reg0 + Reg);
|
||||
} else {
|
||||
Block->AddUInt(DW_FORM_data1, DW_OP_regx);
|
||||
Block->AddUInt(DW_FORM_udata, Reg);
|
||||
}
|
||||
} else {
|
||||
Block->AddUInt(DW_FORM_data1,
|
||||
DW_OP_breg0 + RI->getDwarfRegNum(Location.getRegister()));
|
||||
if (Reg < 32) {
|
||||
Block->AddUInt(DW_FORM_data1, DW_OP_breg0 + Reg);
|
||||
} else {
|
||||
Block->AddUInt(DW_FORM_data1, DW_OP_bregx);
|
||||
Block->AddUInt(DW_FORM_udata, Reg);
|
||||
}
|
||||
Block->AddUInt(DW_FORM_sdata, Location.getOffset());
|
||||
}
|
||||
Block->ComputeSize(*this);
|
||||
|
Loading…
Reference in New Issue
Block a user