remove a dead bool.
[llvm/avr.git] / lib / Target / Alpha / AlphaBranchSelector.cpp
blob719ffaec3eaffe66786cfb00214b14f2f0d06d68
1 //===-- AlphaBranchSelector.cpp - Convert Pseudo branchs ----------*- C++ -*-=//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Replace Pseudo COND_BRANCH_* with their appropriate real branch
11 // Simplified version of the PPC Branch Selector
13 //===----------------------------------------------------------------------===//
15 #include "Alpha.h"
16 #include "AlphaInstrInfo.h"
17 #include "llvm/CodeGen/MachineFunctionPass.h"
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Target/TargetMachine.h"
20 #include "llvm/MC/MCAsmInfo.h"
21 using namespace llvm;
23 namespace {
24 struct VISIBILITY_HIDDEN AlphaBSel : public MachineFunctionPass {
25 static char ID;
26 AlphaBSel() : MachineFunctionPass(&ID) {}
28 virtual bool runOnMachineFunction(MachineFunction &Fn);
30 virtual const char *getPassName() const {
31 return "Alpha Branch Selection";
34 char AlphaBSel::ID = 0;
37 /// createAlphaBranchSelectionPass - returns an instance of the Branch Selection
38 /// Pass
39 ///
40 FunctionPass *llvm::createAlphaBranchSelectionPass() {
41 return new AlphaBSel();
44 bool AlphaBSel::runOnMachineFunction(MachineFunction &Fn) {
46 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
47 ++MFI) {
48 MachineBasicBlock *MBB = MFI;
50 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
51 MBBI != EE; ++MBBI) {
52 if (MBBI->getOpcode() == Alpha::COND_BRANCH_I ||
53 MBBI->getOpcode() == Alpha::COND_BRANCH_F) {
55 // condbranch operands:
56 // 0. bc opcode
57 // 1. reg
58 // 2. target MBB
59 const TargetInstrInfo *TII = Fn.getTarget().getInstrInfo();
60 MBBI->setDesc(TII->get(MBBI->getOperand(0).getImm()));
65 return true;