mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 11:39:35 +00:00
LoopVectorizer: Ignore all dbg intrinisic
Ignore all DbgIntriniscInfo instructions instead of just DbgValueInst. llvm-svn: 176769
This commit is contained in:
parent
652df6a5cb
commit
2a2a785543
@ -2088,8 +2088,8 @@ InnerLoopVectorizer::vectorizeBlockInLoop(LoopVectorizationLegality *Legal,
|
||||
}
|
||||
|
||||
case Instruction::Call: {
|
||||
// Ignore dbg.value instructions.
|
||||
if (isa<DbgValueInst>(it))
|
||||
// Ignore dbg intrinsics.
|
||||
if (isa<DbgInfoIntrinsic>(it))
|
||||
break;
|
||||
|
||||
Module *M = BB->getParent()->getParent();
|
||||
@ -2328,10 +2328,10 @@ bool LoopVectorizationLegality::canVectorizeInstrs() {
|
||||
return false;
|
||||
}// end of PHI handling
|
||||
|
||||
// We still don't handle functions. However, we can ignore dbg.value
|
||||
// We still don't handle functions. However, we can ignore dbg intrinsic
|
||||
// calls and we do handle certain intrinsic and libm functions.
|
||||
CallInst *CI = dyn_cast<CallInst>(it);
|
||||
if (CI && !getIntrinsicIDForCall(CI, TLI) && !isa<DbgValueInst>(CI)) {
|
||||
if (CI && !getIntrinsicIDForCall(CI, TLI) && !isa<DbgInfoIntrinsic>(CI)) {
|
||||
DEBUG(dbgs() << "LV: Found a call site.\n");
|
||||
return false;
|
||||
}
|
||||
@ -3268,8 +3268,8 @@ unsigned LoopVectorizationCostModel::expectedCost(unsigned VF) {
|
||||
|
||||
// For each instruction in the old loop.
|
||||
for (BasicBlock::iterator it = BB->begin(), e = BB->end(); it != e; ++it) {
|
||||
// Skip dbg.value instructions.
|
||||
if (isa<DbgValueInst>(it))
|
||||
// Skip dbg intrinsics.
|
||||
if (isa<DbgInfoIntrinsic>(it))
|
||||
continue;
|
||||
|
||||
unsigned C = getInstructionCost(it, VF);
|
||||
|
Loading…
Reference in New Issue
Block a user