Displaying 1 result from an estimated 1 matches for "hasreservedspillslot".
2012 Aug 31
1
[LLVMdev] Overriding TargetRegisterInfo::hasReservedSpillSlot
To fix some problems with how condition registers are saved/restored for
PowerPC, I need to override TargetRegisterInfo::hasReservedSpillSlot()
in PPCRegisterInfo. I've had some difficulties because of the constness
of the function, and I'm wondering what the best way to handle this
would be.
Essentially I need to add a field to PPCRegisterInfo, and modify that
field in hasReservedSpillSlot. (I need to reserve the spill slot o...