mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +00:00
[InstCombine] Create zero constants on demand.
No functional change intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235257 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1770,19 +1770,17 @@ Instruction *InstCombiner::visitBitCast(BitCastInst &CI) {
|
||||
// If the source and destination are pointers, and this cast is equivalent
|
||||
// to a getelementptr X, 0, 0, 0... turn it into the appropriate gep.
|
||||
// This can enhance SROA and other transforms that want type-safe pointers.
|
||||
Constant *ZeroUInt =
|
||||
Constant::getNullValue(Type::getInt32Ty(CI.getContext()));
|
||||
unsigned NumZeros = 0;
|
||||
while (SrcElTy != DstElTy &&
|
||||
isa<CompositeType>(SrcElTy) && !SrcElTy->isPointerTy() &&
|
||||
SrcElTy->getNumContainedTypes() /* not "{}" */) {
|
||||
SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(ZeroUInt);
|
||||
SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(0U);
|
||||
++NumZeros;
|
||||
}
|
||||
|
||||
// If we found a path from the src to dest, create the getelementptr now.
|
||||
if (SrcElTy == DstElTy) {
|
||||
SmallVector<Value*, 8> Idxs(NumZeros+1, ZeroUInt);
|
||||
SmallVector<Value *, 8> Idxs(NumZeros + 1, Builder->getInt32(0));
|
||||
return GetElementPtrInst::CreateInBounds(Src, Idxs);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user