blob: 5f033699877d86d5d857bcc81b859d4883e49353 [file] [edit]
// Copyright 2017 The Clspv Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "llvm/IR/Constants.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Module.h"
#include "llvm/Pass.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "UndoBoolPass.h"
using namespace llvm;
#define DEBUG_TYPE "undobool"
PreservedAnalyses clspv::UndoBoolPass::run(Module &M, ModuleAnalysisManager &) {
PreservedAnalyses PA;
SmallVector<Instruction *, 8> WorkList;
for (Function &F : M) {
for (BasicBlock &BB : F) {
for (Instruction &I : BB) {
switch (I.getOpcode()) {
default:
// Skip this instruction as it did not match
continue;
case Instruction::ZExt:
// We are looking for an instruction that produces an i8 from an i1.
if (I.getOperand(0)->getType()->isIntegerTy(1) &&
I.getType()->isIntegerTy(8)) {
WorkList.push_back(&I);
}
break;
}
}
}
}
for (Instruction *I : WorkList) {
SmallVector<Instruction *, 1> ToReplace;
// Walk the users of the instruction looking for a trunc
for (User *U : I->users()) {
if (Instruction *OI = dyn_cast<Instruction>(U)) {
// We are looking for a trunc instruction that produces an i1 from i8.
if ((Instruction::Trunc == OI->getOpcode()) &&
OI->getOperand(0)->getType()->isIntegerTy(8) &&
OI->getType()->isIntegerTy(1)) {
ToReplace.push_back(OI);
}
}
}
for (Instruction *OI : ToReplace) {
OI->replaceAllUsesWith(I->getOperand(0));
OI->eraseFromParent();
}
// Delete trivially dead instructions.
if (I->use_empty()) {
I->eraseFromParent();
}
}
return PA;
}