mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-06 04:18:00 +00:00
Remove more default address space argument usage.
These places are inconsequential in practice. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207021 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -60,6 +60,7 @@ STATISTIC(NumPHIInsert, "Number of PHI nodes inserted");
|
||||
bool llvm::isAllocaPromotable(const AllocaInst *AI) {
|
||||
// FIXME: If the memory unit is of pointer or integer type, we can permit
|
||||
// assignments to subsections of the memory unit.
|
||||
unsigned AS = AI->getType()->getAddressSpace();
|
||||
|
||||
// Only allow direct and non-volatile loads and stores...
|
||||
for (const User *U : AI->users()) {
|
||||
@@ -80,12 +81,12 @@ bool llvm::isAllocaPromotable(const AllocaInst *AI) {
|
||||
II->getIntrinsicID() != Intrinsic::lifetime_end)
|
||||
return false;
|
||||
} else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
|
||||
if (BCI->getType() != Type::getInt8PtrTy(U->getContext()))
|
||||
if (BCI->getType() != Type::getInt8PtrTy(U->getContext(), AS))
|
||||
return false;
|
||||
if (!onlyUsedByLifetimeMarkers(BCI))
|
||||
return false;
|
||||
} else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) {
|
||||
if (GEPI->getType() != Type::getInt8PtrTy(U->getContext()))
|
||||
if (GEPI->getType() != Type::getInt8PtrTy(U->getContext(), AS))
|
||||
return false;
|
||||
if (!GEPI->hasAllZeroIndices())
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user