mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-07 08:24:27 +00:00
Make isAliased property for fixed-offset stack objects adjustable
We used to assume that any fixed-offset stack object was not aliased. This meant that no IR value could point to the memory contained in such an object. This is a reasonable default, but is not a universally-correct target-independent fact. For example, on PowerPC (both Darwin and non-Darwin), some byval arguments are allocated at fixed offsets by the ABI. These, however, certainly can be pointed to by IR values. This change moves the 'isAliased' logic out of FixedStackPseudoSourceValue and into MFI, and allows the isAliased property to be overridden for fixed-offset objects. This will be used by an upcoming commit to the PowerPC backend to fix PR20280. No functionality change intended (the behavior of FixedStackPseudoSourceValue::isAliased has been made more conservative for callers that don't pass an MFI object, but I don't see any in-tree callers that do that). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -109,10 +109,16 @@ class MachineFrameInfo {
|
||||
// block and doesn't need additional handling for allocation beyond that.
|
||||
bool PreAllocated;
|
||||
|
||||
// If true, an LLVM IR value might point to this object.
|
||||
// Normally, spill slots and fixed-offset objects don't alias IR-accessible
|
||||
// objects, but there are exceptions (on PowerPC, for example, some byval
|
||||
// arguments have ABI-prescribed offsets).
|
||||
bool isAliased;
|
||||
|
||||
StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM,
|
||||
bool isSS, const AllocaInst *Val)
|
||||
bool isSS, const AllocaInst *Val, bool A)
|
||||
: SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),
|
||||
isSpillSlot(isSS), Alloca(Val), PreAllocated(false) {}
|
||||
isSpillSlot(isSS), Alloca(Val), PreAllocated(false), isAliased(A) {}
|
||||
};
|
||||
|
||||
const TargetMachine &TM;
|
||||
@ -479,10 +485,11 @@ public:
|
||||
|
||||
/// CreateFixedObject - Create a new object at a fixed location on the stack.
|
||||
/// All fixed objects should be created before other objects are created for
|
||||
/// efficiency. By default, fixed objects are immutable. This returns an
|
||||
/// index with a negative value.
|
||||
/// efficiency. By default, fixed objects are not pointed to by LLVM IR
|
||||
/// values. This returns an index with a negative value.
|
||||
///
|
||||
int CreateFixedObject(uint64_t Size, int64_t SPOffset, bool Immutable);
|
||||
int CreateFixedObject(uint64_t Size, int64_t SPOffset, bool Immutable,
|
||||
bool isAliased = false);
|
||||
|
||||
/// CreateFixedSpillStackObject - Create a spill slot at a fixed location
|
||||
/// on the stack. Returns an index with a negative value.
|
||||
@ -494,6 +501,14 @@ public:
|
||||
return ObjectIdx < 0 && (ObjectIdx >= -(int)NumFixedObjects);
|
||||
}
|
||||
|
||||
/// isAliasedObjectIndex - Returns true if the specified index corresponds
|
||||
/// to an object that might be pointed to by an LLVM IR value.
|
||||
bool isAliasedObjectIndex(int ObjectIdx) const {
|
||||
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
|
||||
"Invalid Object Idx!");
|
||||
return Objects[ObjectIdx+NumFixedObjects].isAliased;
|
||||
}
|
||||
|
||||
/// isImmutableObjectIndex - Returns true if the specified index corresponds
|
||||
/// to an immutable object.
|
||||
bool isImmutableObjectIndex(int ObjectIdx) const {
|
||||
|
Reference in New Issue
Block a user