743cff3f2b81517c57d97ae0eb1b598ad44cfc35
[oota-llvm.git] / include / llvm / CodeGen / BreakCriticalMachineEdge.h
1 //===--------- BreakCriticalMachineEdges.h - Break critical edges ---------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Fernando Pereira and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===---------------------------------------------------------------------===//
9 //
10 // Helper function to break a critical machine edge.
11 //
12 //===---------------------------------------------------------------------===//
13
14 #ifndef LLVM_CODEGEN_ASMPRINTER_H
15 #define LLVM_CODEGEN_ASMPRINTER_H
16
17 #include "llvm/CodeGen/MachineJumpTableInfo.h"
18 #include "llvm/Target/TargetInstrInfo.h"
19 #include "llvm/Target/TargetMachine.h"
20
21 namespace llvm {
22
23 MachineBasicBlock* SplitCriticalMachineEdge(MachineBasicBlock* src,
24                                             MachineBasicBlock* dst) {
25   const BasicBlock* srcBB = src->getBasicBlock();
26
27   MachineBasicBlock* crit_mbb = new MachineBasicBlock(srcBB);
28
29   // modify the llvm control flow graph
30   src->removeSuccessor(dst);
31   src->addSuccessor(crit_mbb);
32   crit_mbb->addSuccessor(dst);
33
34   // insert the new block into the machine function.
35   src->getParent()->getBasicBlockList().insert(src->getParent()->end(),
36                                                crit_mbb);
37
38   // insert a unconditional branch linking the new block to dst
39   const TargetMachine& TM = src->getParent()->getTarget();
40   const TargetInstrInfo* TII = TM.getInstrInfo();
41   std::vector<MachineOperand> emptyConditions;
42   TII->InsertBranch(*crit_mbb, dst, (MachineBasicBlock*)0, emptyConditions);
43
44   // modify every branch in src that points to dst to point to the new
45   // machine basic block instead:
46   MachineBasicBlock::iterator mii = src->end();
47   bool found_branch = false;
48   while (mii != src->begin()) {
49     mii--;
50     // if there are no more branches, finish the loop
51     if (!TII->isTerminatorInstr(mii->getOpcode())) {
52       break;
53     }
54     
55     // Scan the operands of this branch, replacing any uses of dst with
56     // crit_mbb.
57     for (unsigned i = 0, e = mii->getNumOperands(); i != e; ++i) {
58       MachineOperand & mo = mii->getOperand(i);
59       if (mo.isMachineBasicBlock() &&
60           mo.getMachineBasicBlock() == dst) {
61         found_branch = true;
62         mo.setMachineBasicBlock(crit_mbb);
63       }
64     }
65   }
66
67   // TODO: This is tentative. It may be necessary to fix this code. Maybe
68   // I am inserting too many gotos, but I am trusting that the asm printer
69   // will optimize the unnecessary gotos.
70   if(!found_branch) {
71     TII->InsertBranch(*src, crit_mbb, (MachineBasicBlock*)0, emptyConditions);
72   }
73
74   /// Change all the phi functions in dst, so that the incoming block be
75   /// crit_mbb, instead of src
76   for(mii = dst->begin(); mii != dst->end(); mii++) {
77     /// the first instructions are always phi functions.
78     if(mii->getOpcode() != TargetInstrInfo::PHI)
79       break;
80     
81     for (unsigned u = 0; u != mii->getNumOperands(); ++u)
82       if (mii->getOperand(u).isMachineBasicBlock() &&
83           mii->getOperand(u).getMachineBasicBlock() == src)
84         mii->getOperand(u).setMachineBasicBlock(crit_mbb);
85   }
86   
87   return crit_mbb;
88 }
89
90 }
91
92 #endif