Eliminate ConstantBool::True and ConstantBool::False. Instead, provide
[oota-llvm.git] / lib / Transforms / Scalar / CorrelatedExprs.cpp
1 //===- CorrelatedExprs.cpp - Pass to detect and eliminated c.e.'s ---------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Correlated Expression Elimination propagates information from conditional
11 // branches to blocks dominated by destinations of the branch.  It propagates
12 // information from the condition check itself into the body of the branch,
13 // allowing transformations like these for example:
14 //
15 //  if (i == 7)
16 //    ... 4*i;  // constant propagation
17 //
18 //  M = i+1; N = j+1;
19 //  if (i == j)
20 //    X = M-N;  // = M-M == 0;
21 //
22 // This is called Correlated Expression Elimination because we eliminate or
23 // simplify expressions that are correlated with the direction of a branch.  In
24 // this way we use static information to give us some information about the
25 // dynamic value of a variable.
26 //
27 //===----------------------------------------------------------------------===//
28
29 #include "llvm/Transforms/Scalar.h"
30 #include "llvm/Constants.h"
31 #include "llvm/Pass.h"
32 #include "llvm/Function.h"
33 #include "llvm/Instructions.h"
34 #include "llvm/Type.h"
35 #include "llvm/Analysis/Dominators.h"
36 #include "llvm/Assembly/Writer.h"
37 #include "llvm/Transforms/Utils/Local.h"
38 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
39 #include "llvm/Support/ConstantRange.h"
40 #include "llvm/Support/CFG.h"
41 #include "llvm/Support/Debug.h"
42 #include "llvm/ADT/PostOrderIterator.h"
43 #include "llvm/ADT/Statistic.h"
44 #include <algorithm>
45 #include <iostream>
46 using namespace llvm;
47
48 namespace {
49   Statistic<> NumSetCCRemoved("cee", "Number of setcc instruction eliminated");
50   Statistic<> NumOperandsCann("cee", "Number of operands canonicalized");
51   Statistic<> BranchRevectors("cee", "Number of branches revectored");
52
53   class ValueInfo;
54   class Relation {
55     Value *Val;                 // Relation to what value?
56     Instruction::BinaryOps Rel; // SetCC relation, or Add if no information
57   public:
58     Relation(Value *V) : Val(V), Rel(Instruction::Add) {}
59     bool operator<(const Relation &R) const { return Val < R.Val; }
60     Value *getValue() const { return Val; }
61     Instruction::BinaryOps getRelation() const { return Rel; }
62
63     // contradicts - Return true if the relationship specified by the operand
64     // contradicts already known information.
65     //
66     bool contradicts(Instruction::BinaryOps Rel, const ValueInfo &VI) const;
67
68     // incorporate - Incorporate information in the argument into this relation
69     // entry.  This assumes that the information doesn't contradict itself.  If
70     // any new information is gained, true is returned, otherwise false is
71     // returned to indicate that nothing was updated.
72     //
73     bool incorporate(Instruction::BinaryOps Rel, ValueInfo &VI);
74
75     // KnownResult - Whether or not this condition determines the result of a
76     // setcc in the program.  False & True are intentionally 0 & 1 so we can
77     // convert to bool by casting after checking for unknown.
78     //
79     enum KnownResult { KnownFalse = 0, KnownTrue = 1, Unknown = 2 };
80
81     // getImpliedResult - If this relationship between two values implies that
82     // the specified relationship is true or false, return that.  If we cannot
83     // determine the result required, return Unknown.
84     //
85     KnownResult getImpliedResult(Instruction::BinaryOps Rel) const;
86
87     // print - Output this relation to the specified stream
88     void print(std::ostream &OS) const;
89     void dump() const;
90   };
91
92
93   // ValueInfo - One instance of this record exists for every value with
94   // relationships between other values.  It keeps track of all of the
95   // relationships to other values in the program (specified with Relation) that
96   // are known to be valid in a region.
97   //
98   class ValueInfo {
99     // RelationShips - this value is know to have the specified relationships to
100     // other values.  There can only be one entry per value, and this list is
101     // kept sorted by the Val field.
102     std::vector<Relation> Relationships;
103
104     // If information about this value is known or propagated from constant
105     // expressions, this range contains the possible values this value may hold.
106     ConstantRange Bounds;
107
108     // If we find that this value is equal to another value that has a lower
109     // rank, this value is used as it's replacement.
110     //
111     Value *Replacement;
112   public:
113     ValueInfo(const Type *Ty)
114       : Bounds(Ty->isIntegral() ? Ty : Type::IntTy), Replacement(0) {}
115
116     // getBounds() - Return the constant bounds of the value...
117     const ConstantRange &getBounds() const { return Bounds; }
118     ConstantRange &getBounds() { return Bounds; }
119
120     const std::vector<Relation> &getRelationships() { return Relationships; }
121
122     // getReplacement - Return the value this value is to be replaced with if it
123     // exists, otherwise return null.
124     //
125     Value *getReplacement() const { return Replacement; }
126
127     // setReplacement - Used by the replacement calculation pass to figure out
128     // what to replace this value with, if anything.
129     //
130     void setReplacement(Value *Repl) { Replacement = Repl; }
131
132     // getRelation - return the relationship entry for the specified value.
133     // This can invalidate references to other Relations, so use it carefully.
134     //
135     Relation &getRelation(Value *V) {
136       // Binary search for V's entry...
137       std::vector<Relation>::iterator I =
138         std::lower_bound(Relationships.begin(), Relationships.end(),
139                          Relation(V));
140
141       // If we found the entry, return it...
142       if (I != Relationships.end() && I->getValue() == V)
143         return *I;
144
145       // Insert and return the new relationship...
146       return *Relationships.insert(I, V);
147     }
148
149     const Relation *requestRelation(Value *V) const {
150       // Binary search for V's entry...
151       std::vector<Relation>::const_iterator I =
152         std::lower_bound(Relationships.begin(), Relationships.end(),
153                          Relation(V));
154       if (I != Relationships.end() && I->getValue() == V)
155         return &*I;
156       return 0;
157     }
158
159     // print - Output information about this value relation...
160     void print(std::ostream &OS, Value *V) const;
161     void dump() const;
162   };
163
164   // RegionInfo - Keeps track of all of the value relationships for a region.  A
165   // region is the are dominated by a basic block.  RegionInfo's keep track of
166   // the RegionInfo for their dominator, because anything known in a dominator
167   // is known to be true in a dominated block as well.
168   //
169   class RegionInfo {
170     BasicBlock *BB;
171
172     // ValueMap - Tracks the ValueInformation known for this region
173     typedef std::map<Value*, ValueInfo> ValueMapTy;
174     ValueMapTy ValueMap;
175   public:
176     RegionInfo(BasicBlock *bb) : BB(bb) {}
177
178     // getEntryBlock - Return the block that dominates all of the members of
179     // this region.
180     BasicBlock *getEntryBlock() const { return BB; }
181
182     // empty - return true if this region has no information known about it.
183     bool empty() const { return ValueMap.empty(); }
184
185     const RegionInfo &operator=(const RegionInfo &RI) {
186       ValueMap = RI.ValueMap;
187       return *this;
188     }
189
190     // print - Output information about this region...
191     void print(std::ostream &OS) const;
192     void dump() const;
193
194     // Allow external access.
195     typedef ValueMapTy::iterator iterator;
196     iterator begin() { return ValueMap.begin(); }
197     iterator end() { return ValueMap.end(); }
198
199     ValueInfo &getValueInfo(Value *V) {
200       ValueMapTy::iterator I = ValueMap.lower_bound(V);
201       if (I != ValueMap.end() && I->first == V) return I->second;
202       return ValueMap.insert(I, std::make_pair(V, V->getType()))->second;
203     }
204
205     const ValueInfo *requestValueInfo(Value *V) const {
206       ValueMapTy::const_iterator I = ValueMap.find(V);
207       if (I != ValueMap.end()) return &I->second;
208       return 0;
209     }
210
211     /// removeValueInfo - Remove anything known about V from our records.  This
212     /// works whether or not we know anything about V.
213     ///
214     void removeValueInfo(Value *V) {
215       ValueMap.erase(V);
216     }
217   };
218
219   /// CEE - Correlated Expression Elimination
220   class CEE : public FunctionPass {
221     std::map<Value*, unsigned> RankMap;
222     std::map<BasicBlock*, RegionInfo> RegionInfoMap;
223     ETForest *EF;
224     DominatorTree *DT;
225   public:
226     virtual bool runOnFunction(Function &F);
227
228     // We don't modify the program, so we preserve all analyses
229     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
230       AU.addRequired<ETForest>();
231       AU.addRequired<DominatorTree>();
232       AU.addRequiredID(BreakCriticalEdgesID);
233     };
234
235     // print - Implement the standard print form to print out analysis
236     // information.
237     virtual void print(std::ostream &O, const Module *M) const;
238
239   private:
240     RegionInfo &getRegionInfo(BasicBlock *BB) {
241       std::map<BasicBlock*, RegionInfo>::iterator I
242         = RegionInfoMap.lower_bound(BB);
243       if (I != RegionInfoMap.end() && I->first == BB) return I->second;
244       return RegionInfoMap.insert(I, std::make_pair(BB, BB))->second;
245     }
246
247     void BuildRankMap(Function &F);
248     unsigned getRank(Value *V) const {
249       if (isa<Constant>(V)) return 0;
250       std::map<Value*, unsigned>::const_iterator I = RankMap.find(V);
251       if (I != RankMap.end()) return I->second;
252       return 0; // Must be some other global thing
253     }
254
255     bool TransformRegion(BasicBlock *BB, std::set<BasicBlock*> &VisitedBlocks);
256
257     bool ForwardCorrelatedEdgeDestination(TerminatorInst *TI, unsigned SuccNo,
258                                           RegionInfo &RI);
259
260     void ForwardSuccessorTo(TerminatorInst *TI, unsigned Succ, BasicBlock *D,
261                             RegionInfo &RI);
262     void ReplaceUsesOfValueInRegion(Value *Orig, Value *New,
263                                     BasicBlock *RegionDominator);
264     void CalculateRegionExitBlocks(BasicBlock *BB, BasicBlock *OldSucc,
265                                    std::vector<BasicBlock*> &RegionExitBlocks);
266     void InsertRegionExitMerges(PHINode *NewPHI, Instruction *OldVal,
267                              const std::vector<BasicBlock*> &RegionExitBlocks);
268
269     void PropagateBranchInfo(BranchInst *BI);
270     void PropagateSwitchInfo(SwitchInst *SI);
271     void PropagateEquality(Value *Op0, Value *Op1, RegionInfo &RI);
272     void PropagateRelation(Instruction::BinaryOps Opcode, Value *Op0,
273                            Value *Op1, RegionInfo &RI);
274     void UpdateUsersOfValue(Value *V, RegionInfo &RI);
275     void IncorporateInstruction(Instruction *Inst, RegionInfo &RI);
276     void ComputeReplacements(RegionInfo &RI);
277
278
279     // getSetCCResult - Given a setcc instruction, determine if the result is
280     // determined by facts we already know about the region under analysis.
281     // Return KnownTrue, KnownFalse, or Unknown based on what we can determine.
282     //
283     Relation::KnownResult getSetCCResult(SetCondInst *SC, const RegionInfo &RI);
284
285
286     bool SimplifyBasicBlock(BasicBlock &BB, const RegionInfo &RI);
287     bool SimplifyInstruction(Instruction *Inst, const RegionInfo &RI);
288   };
289   RegisterPass<CEE> X("cee", "Correlated Expression Elimination");
290 }
291
292 FunctionPass *llvm::createCorrelatedExpressionEliminationPass() {
293   return new CEE();
294 }
295
296
297 bool CEE::runOnFunction(Function &F) {
298   // Build a rank map for the function...
299   BuildRankMap(F);
300
301   // Traverse the dominator tree, computing information for each node in the
302   // tree.  Note that our traversal will not even touch unreachable basic
303   // blocks.
304   EF = &getAnalysis<ETForest>();
305   DT = &getAnalysis<DominatorTree>();
306
307   std::set<BasicBlock*> VisitedBlocks;
308   bool Changed = TransformRegion(&F.getEntryBlock(), VisitedBlocks);
309
310   RegionInfoMap.clear();
311   RankMap.clear();
312   return Changed;
313 }
314
315 // TransformRegion - Transform the region starting with BB according to the
316 // calculated region information for the block.  Transforming the region
317 // involves analyzing any information this block provides to successors,
318 // propagating the information to successors, and finally transforming
319 // successors.
320 //
321 // This method processes the function in depth first order, which guarantees
322 // that we process the immediate dominator of a block before the block itself.
323 // Because we are passing information from immediate dominators down to
324 // dominatees, we obviously have to process the information source before the
325 // information consumer.
326 //
327 bool CEE::TransformRegion(BasicBlock *BB, std::set<BasicBlock*> &VisitedBlocks){
328   // Prevent infinite recursion...
329   if (VisitedBlocks.count(BB)) return false;
330   VisitedBlocks.insert(BB);
331
332   // Get the computed region information for this block...
333   RegionInfo &RI = getRegionInfo(BB);
334
335   // Compute the replacement information for this block...
336   ComputeReplacements(RI);
337
338   // If debugging, print computed region information...
339   DEBUG(RI.print(std::cerr));
340
341   // Simplify the contents of this block...
342   bool Changed = SimplifyBasicBlock(*BB, RI);
343
344   // Get the terminator of this basic block...
345   TerminatorInst *TI = BB->getTerminator();
346
347   // Loop over all of the blocks that this block is the immediate dominator for.
348   // Because all information known in this region is also known in all of the
349   // blocks that are dominated by this one, we can safely propagate the
350   // information down now.
351   //
352   DominatorTree::Node *BBN = (*DT)[BB];
353   if (!RI.empty())        // Time opt: only propagate if we can change something
354     for (unsigned i = 0, e = BBN->getChildren().size(); i != e; ++i) {
355       BasicBlock *Dominated = BBN->getChildren()[i]->getBlock();
356       assert(RegionInfoMap.find(Dominated) == RegionInfoMap.end() &&
357              "RegionInfo should be calculated in dominanace order!");
358       getRegionInfo(Dominated) = RI;
359     }
360
361   // Now that all of our successors have information if they deserve it,
362   // propagate any information our terminator instruction finds to our
363   // successors.
364   if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
365     if (BI->isConditional())
366       PropagateBranchInfo(BI);
367   } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
368     PropagateSwitchInfo(SI);
369   }
370
371   // If this is a branch to a block outside our region that simply performs
372   // another conditional branch, one whose outcome is known inside of this
373   // region, then vector this outgoing edge directly to the known destination.
374   //
375   for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
376     while (ForwardCorrelatedEdgeDestination(TI, i, RI)) {
377       ++BranchRevectors;
378       Changed = true;
379     }
380
381   // Now that all of our successors have information, recursively process them.
382   for (unsigned i = 0, e = BBN->getChildren().size(); i != e; ++i)
383     Changed |= TransformRegion(BBN->getChildren()[i]->getBlock(),VisitedBlocks);
384
385   return Changed;
386 }
387
388 // isBlockSimpleEnoughForCheck to see if the block is simple enough for us to
389 // revector the conditional branch in the bottom of the block, do so now.
390 //
391 static bool isBlockSimpleEnough(BasicBlock *BB) {
392   assert(isa<BranchInst>(BB->getTerminator()));
393   BranchInst *BI = cast<BranchInst>(BB->getTerminator());
394   assert(BI->isConditional());
395
396   // Check the common case first: empty block, or block with just a setcc.
397   if (BB->size() == 1 ||
398       (BB->size() == 2 && &BB->front() == BI->getCondition() &&
399        BI->getCondition()->hasOneUse()))
400     return true;
401
402   // Check the more complex case now...
403   BasicBlock::iterator I = BB->begin();
404
405   // FIXME: This should be reenabled once the regression with SIM is fixed!
406 #if 0
407   // PHI Nodes are ok, just skip over them...
408   while (isa<PHINode>(*I)) ++I;
409 #endif
410
411   // Accept the setcc instruction...
412   if (&*I == BI->getCondition())
413     ++I;
414
415   // Nothing else is acceptable here yet.  We must not revector... unless we are
416   // at the terminator instruction.
417   if (&*I == BI)
418     return true;
419
420   return false;
421 }
422
423
424 bool CEE::ForwardCorrelatedEdgeDestination(TerminatorInst *TI, unsigned SuccNo,
425                                            RegionInfo &RI) {
426   // If this successor is a simple block not in the current region, which
427   // contains only a conditional branch, we decide if the outcome of the branch
428   // can be determined from information inside of the region.  Instead of going
429   // to this block, we can instead go to the destination we know is the right
430   // target.
431   //
432
433   // Check to see if we dominate the block. If so, this block will get the
434   // condition turned to a constant anyway.
435   //
436   //if (EF->dominates(RI.getEntryBlock(), BB))
437   // return 0;
438
439   BasicBlock *BB = TI->getParent();
440
441   // Get the destination block of this edge...
442   BasicBlock *OldSucc = TI->getSuccessor(SuccNo);
443
444   // Make sure that the block ends with a conditional branch and is simple
445   // enough for use to be able to revector over.
446   BranchInst *BI = dyn_cast<BranchInst>(OldSucc->getTerminator());
447   if (BI == 0 || !BI->isConditional() || !isBlockSimpleEnough(OldSucc))
448     return false;
449
450   // We can only forward the branch over the block if the block ends with a
451   // setcc we can determine the outcome for.
452   //
453   // FIXME: we can make this more generic.  Code below already handles more
454   // generic case.
455   SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition());
456   if (SCI == 0) return false;
457
458   // Make a new RegionInfo structure so that we can simulate the effect of the
459   // PHI nodes in the block we are skipping over...
460   //
461   RegionInfo NewRI(RI);
462
463   // Remove value information for all of the values we are simulating... to make
464   // sure we don't have any stale information.
465   for (BasicBlock::iterator I = OldSucc->begin(), E = OldSucc->end(); I!=E; ++I)
466     if (I->getType() != Type::VoidTy)
467       NewRI.removeValueInfo(I);
468
469   // Put the newly discovered information into the RegionInfo...
470   for (BasicBlock::iterator I = OldSucc->begin(), E = OldSucc->end(); I!=E; ++I)
471     if (PHINode *PN = dyn_cast<PHINode>(I)) {
472       int OpNum = PN->getBasicBlockIndex(BB);
473       assert(OpNum != -1 && "PHI doesn't have incoming edge for predecessor!?");
474       PropagateEquality(PN, PN->getIncomingValue(OpNum), NewRI);
475     } else if (SetCondInst *SCI = dyn_cast<SetCondInst>(I)) {
476       Relation::KnownResult Res = getSetCCResult(SCI, NewRI);
477       if (Res == Relation::Unknown) return false;
478       PropagateEquality(SCI, ConstantBool::get(Res), NewRI);
479     } else {
480       assert(isa<BranchInst>(*I) && "Unexpected instruction type!");
481     }
482
483   // Compute the facts implied by what we have discovered...
484   ComputeReplacements(NewRI);
485
486   ValueInfo &PredicateVI = NewRI.getValueInfo(BI->getCondition());
487   if (PredicateVI.getReplacement() &&
488       isa<Constant>(PredicateVI.getReplacement()) &&
489       !isa<GlobalValue>(PredicateVI.getReplacement())) {
490     ConstantBool *CB = cast<ConstantBool>(PredicateVI.getReplacement());
491
492     // Forward to the successor that corresponds to the branch we will take.
493     ForwardSuccessorTo(TI, SuccNo, BI->getSuccessor(!CB->getValue()), NewRI);
494     return true;
495   }
496
497   return false;
498 }
499
500 static Value *getReplacementOrValue(Value *V, RegionInfo &RI) {
501   if (const ValueInfo *VI = RI.requestValueInfo(V))
502     if (Value *Repl = VI->getReplacement())
503       return Repl;
504   return V;
505 }
506
507 /// ForwardSuccessorTo - We have found that we can forward successor # 'SuccNo'
508 /// of Terminator 'TI' to the 'Dest' BasicBlock.  This method performs the
509 /// mechanics of updating SSA information and revectoring the branch.
510 ///
511 void CEE::ForwardSuccessorTo(TerminatorInst *TI, unsigned SuccNo,
512                              BasicBlock *Dest, RegionInfo &RI) {
513   // If there are any PHI nodes in the Dest BB, we must duplicate the entry
514   // in the PHI node for the old successor to now include an entry from the
515   // current basic block.
516   //
517   BasicBlock *OldSucc = TI->getSuccessor(SuccNo);
518   BasicBlock *BB = TI->getParent();
519
520   DEBUG(std::cerr << "Forwarding branch in basic block %" << BB->getName()
521         << " from block %" << OldSucc->getName() << " to block %"
522         << Dest->getName() << "\n");
523
524   DEBUG(std::cerr << "Before forwarding: " << *BB->getParent());
525
526   // Because we know that there cannot be critical edges in the flow graph, and
527   // that OldSucc has multiple outgoing edges, this means that Dest cannot have
528   // multiple incoming edges.
529   //
530 #ifndef NDEBUG
531   pred_iterator DPI = pred_begin(Dest); ++DPI;
532   assert(DPI == pred_end(Dest) && "Critical edge found!!");
533 #endif
534
535   // Loop over any PHI nodes in the destination, eliminating them, because they
536   // may only have one input.
537   //
538   while (PHINode *PN = dyn_cast<PHINode>(&Dest->front())) {
539     assert(PN->getNumIncomingValues() == 1 && "Crit edge found!");
540     // Eliminate the PHI node
541     PN->replaceAllUsesWith(PN->getIncomingValue(0));
542     Dest->getInstList().erase(PN);
543   }
544
545   // If there are values defined in the "OldSucc" basic block, we need to insert
546   // PHI nodes in the regions we are dealing with to emulate them.  This can
547   // insert dead phi nodes, but it is more trouble to see if they are used than
548   // to just blindly insert them.
549   //
550   if (EF->dominates(OldSucc, Dest)) {
551     // RegionExitBlocks - Find all of the blocks that are not dominated by Dest,
552     // but have predecessors that are.  Additionally, prune down the set to only
553     // include blocks that are dominated by OldSucc as well.
554     //
555     std::vector<BasicBlock*> RegionExitBlocks;
556     CalculateRegionExitBlocks(Dest, OldSucc, RegionExitBlocks);
557
558     for (BasicBlock::iterator I = OldSucc->begin(), E = OldSucc->end();
559          I != E; ++I)
560       if (I->getType() != Type::VoidTy) {
561         // Create and insert the PHI node into the top of Dest.
562         PHINode *NewPN = new PHINode(I->getType(), I->getName()+".fw_merge",
563                                      Dest->begin());
564         // There is definitely an edge from OldSucc... add the edge now
565         NewPN->addIncoming(I, OldSucc);
566
567         // There is also an edge from BB now, add the edge with the calculated
568         // value from the RI.
569         NewPN->addIncoming(getReplacementOrValue(I, RI), BB);
570
571         // Make everything in the Dest region use the new PHI node now...
572         ReplaceUsesOfValueInRegion(I, NewPN, Dest);
573
574         // Make sure that exits out of the region dominated by NewPN get PHI
575         // nodes that merge the values as appropriate.
576         InsertRegionExitMerges(NewPN, I, RegionExitBlocks);
577       }
578   }
579
580   // If there were PHI nodes in OldSucc, we need to remove the entry for this
581   // edge from the PHI node, and we need to replace any references to the PHI
582   // node with a new value.
583   //
584   for (BasicBlock::iterator I = OldSucc->begin(); isa<PHINode>(I); ) {
585     PHINode *PN = cast<PHINode>(I);
586
587     // Get the value flowing across the old edge and remove the PHI node entry
588     // for this edge: we are about to remove the edge!  Don't remove the PHI
589     // node yet though if this is the last edge into it.
590     Value *EdgeValue = PN->removeIncomingValue(BB, false);
591
592     // Make sure that anything that used to use PN now refers to EdgeValue
593     ReplaceUsesOfValueInRegion(PN, EdgeValue, Dest);
594
595     // If there is only one value left coming into the PHI node, replace the PHI
596     // node itself with the one incoming value left.
597     //
598     if (PN->getNumIncomingValues() == 1) {
599       assert(PN->getNumIncomingValues() == 1);
600       PN->replaceAllUsesWith(PN->getIncomingValue(0));
601       PN->getParent()->getInstList().erase(PN);
602       I = OldSucc->begin();
603     } else if (PN->getNumIncomingValues() == 0) {  // Nuke the PHI
604       // If we removed the last incoming value to this PHI, nuke the PHI node
605       // now.
606       PN->replaceAllUsesWith(Constant::getNullValue(PN->getType()));
607       PN->getParent()->getInstList().erase(PN);
608       I = OldSucc->begin();
609     } else {
610       ++I;  // Otherwise, move on to the next PHI node
611     }
612   }
613
614   // Actually revector the branch now...
615   TI->setSuccessor(SuccNo, Dest);
616
617   // If we just introduced a critical edge in the flow graph, make sure to break
618   // it right away...
619   SplitCriticalEdge(TI, SuccNo, this);
620
621   // Make sure that we don't introduce critical edges from oldsucc now!
622   for (unsigned i = 0, e = OldSucc->getTerminator()->getNumSuccessors();
623        i != e; ++i)
624     if (isCriticalEdge(OldSucc->getTerminator(), i))
625       SplitCriticalEdge(OldSucc->getTerminator(), i, this);
626
627   // Since we invalidated the CFG, recalculate the dominator set so that it is
628   // useful for later processing!
629   // FIXME: This is much worse than it really should be!
630   //EF->recalculate();
631
632   DEBUG(std::cerr << "After forwarding: " << *BB->getParent());
633 }
634
635 /// ReplaceUsesOfValueInRegion - This method replaces all uses of Orig with uses
636 /// of New.  It only affects instructions that are defined in basic blocks that
637 /// are dominated by Head.
638 ///
639 void CEE::ReplaceUsesOfValueInRegion(Value *Orig, Value *New,
640                                      BasicBlock *RegionDominator) {
641   assert(Orig != New && "Cannot replace value with itself");
642   std::vector<Instruction*> InstsToChange;
643   std::vector<PHINode*>     PHIsToChange;
644   InstsToChange.reserve(Orig->getNumUses());
645
646   // Loop over instructions adding them to InstsToChange vector, this allows us
647   // an easy way to avoid invalidating the use_iterator at a bad time.
648   for (Value::use_iterator I = Orig->use_begin(), E = Orig->use_end();
649        I != E; ++I)
650     if (Instruction *User = dyn_cast<Instruction>(*I))
651       if (EF->dominates(RegionDominator, User->getParent()))
652         InstsToChange.push_back(User);
653       else if (PHINode *PN = dyn_cast<PHINode>(User)) {
654         PHIsToChange.push_back(PN);
655       }
656
657   // PHIsToChange contains PHI nodes that use Orig that do not live in blocks
658   // dominated by orig.  If the block the value flows in from is dominated by
659   // RegionDominator, then we rewrite the PHI
660   for (unsigned i = 0, e = PHIsToChange.size(); i != e; ++i) {
661     PHINode *PN = PHIsToChange[i];
662     for (unsigned j = 0, e = PN->getNumIncomingValues(); j != e; ++j)
663       if (PN->getIncomingValue(j) == Orig &&
664           EF->dominates(RegionDominator, PN->getIncomingBlock(j)))
665         PN->setIncomingValue(j, New);
666   }
667
668   // Loop over the InstsToChange list, replacing all uses of Orig with uses of
669   // New.  This list contains all of the instructions in our region that use
670   // Orig.
671   for (unsigned i = 0, e = InstsToChange.size(); i != e; ++i)
672     if (PHINode *PN = dyn_cast<PHINode>(InstsToChange[i])) {
673       // PHINodes must be handled carefully.  If the PHI node itself is in the
674       // region, we have to make sure to only do the replacement for incoming
675       // values that correspond to basic blocks in the region.
676       for (unsigned j = 0, e = PN->getNumIncomingValues(); j != e; ++j)
677         if (PN->getIncomingValue(j) == Orig &&
678             EF->dominates(RegionDominator, PN->getIncomingBlock(j)))
679           PN->setIncomingValue(j, New);
680
681     } else {
682       InstsToChange[i]->replaceUsesOfWith(Orig, New);
683     }
684 }
685
686 static void CalcRegionExitBlocks(BasicBlock *Header, BasicBlock *BB,
687                                  std::set<BasicBlock*> &Visited,
688                                  ETForest &EF,
689                                  std::vector<BasicBlock*> &RegionExitBlocks) {
690   if (Visited.count(BB)) return;
691   Visited.insert(BB);
692
693   if (EF.dominates(Header, BB)) {  // Block in the region, recursively traverse
694     for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I)
695       CalcRegionExitBlocks(Header, *I, Visited, EF, RegionExitBlocks);
696   } else {
697     // Header does not dominate this block, but we have a predecessor that does
698     // dominate us.  Add ourself to the list.
699     RegionExitBlocks.push_back(BB);
700   }
701 }
702
703 /// CalculateRegionExitBlocks - Find all of the blocks that are not dominated by
704 /// BB, but have predecessors that are.  Additionally, prune down the set to
705 /// only include blocks that are dominated by OldSucc as well.
706 ///
707 void CEE::CalculateRegionExitBlocks(BasicBlock *BB, BasicBlock *OldSucc,
708                                     std::vector<BasicBlock*> &RegionExitBlocks){
709   std::set<BasicBlock*> Visited;  // Don't infinite loop
710
711   // Recursively calculate blocks we are interested in...
712   CalcRegionExitBlocks(BB, BB, Visited, *EF, RegionExitBlocks);
713
714   // Filter out blocks that are not dominated by OldSucc...
715   for (unsigned i = 0; i != RegionExitBlocks.size(); ) {
716     if (EF->dominates(OldSucc, RegionExitBlocks[i]))
717       ++i;  // Block is ok, keep it.
718     else {
719       // Move to end of list...
720       std::swap(RegionExitBlocks[i], RegionExitBlocks.back());
721       RegionExitBlocks.pop_back();        // Nuke the end
722     }
723   }
724 }
725
726 void CEE::InsertRegionExitMerges(PHINode *BBVal, Instruction *OldVal,
727                              const std::vector<BasicBlock*> &RegionExitBlocks) {
728   assert(BBVal->getType() == OldVal->getType() && "Should be derived values!");
729   BasicBlock *BB = BBVal->getParent();
730   BasicBlock *OldSucc = OldVal->getParent();
731
732   // Loop over all of the blocks we have to place PHIs in, doing it.
733   for (unsigned i = 0, e = RegionExitBlocks.size(); i != e; ++i) {
734     BasicBlock *FBlock = RegionExitBlocks[i];  // Block on the frontier
735
736     // Create the new PHI node
737     PHINode *NewPN = new PHINode(BBVal->getType(),
738                                  OldVal->getName()+".fw_frontier",
739                                  FBlock->begin());
740
741     // Add an incoming value for every predecessor of the block...
742     for (pred_iterator PI = pred_begin(FBlock), PE = pred_end(FBlock);
743          PI != PE; ++PI) {
744       // If the incoming edge is from the region dominated by BB, use BBVal,
745       // otherwise use OldVal.
746       NewPN->addIncoming(EF->dominates(BB, *PI) ? BBVal : OldVal, *PI);
747     }
748
749     // Now make everyone dominated by this block use this new value!
750     ReplaceUsesOfValueInRegion(OldVal, NewPN, FBlock);
751   }
752 }
753
754
755
756 // BuildRankMap - This method builds the rank map data structure which gives
757 // each instruction/value in the function a value based on how early it appears
758 // in the function.  We give constants and globals rank 0, arguments are
759 // numbered starting at one, and instructions are numbered in reverse post-order
760 // from where the arguments leave off.  This gives instructions in loops higher
761 // values than instructions not in loops.
762 //
763 void CEE::BuildRankMap(Function &F) {
764   unsigned Rank = 1;  // Skip rank zero.
765
766   // Number the arguments...
767   for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
768     RankMap[I] = Rank++;
769
770   // Number the instructions in reverse post order...
771   ReversePostOrderTraversal<Function*> RPOT(&F);
772   for (ReversePostOrderTraversal<Function*>::rpo_iterator I = RPOT.begin(),
773          E = RPOT.end(); I != E; ++I)
774     for (BasicBlock::iterator BBI = (*I)->begin(), E = (*I)->end();
775          BBI != E; ++BBI)
776       if (BBI->getType() != Type::VoidTy)
777         RankMap[BBI] = Rank++;
778 }
779
780
781 // PropagateBranchInfo - When this method is invoked, we need to propagate
782 // information derived from the branch condition into the true and false
783 // branches of BI.  Since we know that there aren't any critical edges in the
784 // flow graph, this can proceed unconditionally.
785 //
786 void CEE::PropagateBranchInfo(BranchInst *BI) {
787   assert(BI->isConditional() && "Must be a conditional branch!");
788
789   // Propagate information into the true block...
790   //
791   PropagateEquality(BI->getCondition(), ConstantBool::getTrue(),
792                     getRegionInfo(BI->getSuccessor(0)));
793
794   // Propagate information into the false block...
795   //
796   PropagateEquality(BI->getCondition(), ConstantBool::getFalse(),
797                     getRegionInfo(BI->getSuccessor(1)));
798 }
799
800
801 // PropagateSwitchInfo - We need to propagate the value tested by the
802 // switch statement through each case block.
803 //
804 void CEE::PropagateSwitchInfo(SwitchInst *SI) {
805   // Propagate information down each of our non-default case labels.  We
806   // don't yet propagate information down the default label, because a
807   // potentially large number of inequality constraints provide less
808   // benefit per unit work than a single equality constraint.
809   //
810   Value *cond = SI->getCondition();
811   for (unsigned i = 1; i < SI->getNumSuccessors(); ++i)
812     PropagateEquality(cond, SI->getSuccessorValue(i),
813                       getRegionInfo(SI->getSuccessor(i)));
814 }
815
816
817 // PropagateEquality - If we discover that two values are equal to each other in
818 // a specified region, propagate this knowledge recursively.
819 //
820 void CEE::PropagateEquality(Value *Op0, Value *Op1, RegionInfo &RI) {
821   if (Op0 == Op1) return;  // Gee whiz. Are these really equal each other?
822
823   if (isa<Constant>(Op0))  // Make sure the constant is always Op1
824     std::swap(Op0, Op1);
825
826   // Make sure we don't already know these are equal, to avoid infinite loops...
827   ValueInfo &VI = RI.getValueInfo(Op0);
828
829   // Get information about the known relationship between Op0 & Op1
830   Relation &KnownRelation = VI.getRelation(Op1);
831
832   // If we already know they're equal, don't reprocess...
833   if (KnownRelation.getRelation() == Instruction::SetEQ)
834     return;
835
836   // If this is boolean, check to see if one of the operands is a constant.  If
837   // it's a constant, then see if the other one is one of a setcc instruction,
838   // an AND, OR, or XOR instruction.
839   //
840   if (ConstantBool *CB = dyn_cast<ConstantBool>(Op1)) {
841
842     if (Instruction *Inst = dyn_cast<Instruction>(Op0)) {
843       // If we know that this instruction is an AND instruction, and the result
844       // is true, this means that both operands to the OR are known to be true
845       // as well.
846       //
847       if (CB->getValue() && Inst->getOpcode() == Instruction::And) {
848         PropagateEquality(Inst->getOperand(0), CB, RI);
849         PropagateEquality(Inst->getOperand(1), CB, RI);
850       }
851
852       // If we know that this instruction is an OR instruction, and the result
853       // is false, this means that both operands to the OR are know to be false
854       // as well.
855       //
856       if (!CB->getValue() && Inst->getOpcode() == Instruction::Or) {
857         PropagateEquality(Inst->getOperand(0), CB, RI);
858         PropagateEquality(Inst->getOperand(1), CB, RI);
859       }
860
861       // If we know that this instruction is a NOT instruction, we know that the
862       // operand is known to be the inverse of whatever the current value is.
863       //
864       if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(Inst))
865         if (BinaryOperator::isNot(BOp))
866           PropagateEquality(BinaryOperator::getNotArgument(BOp),
867                             ConstantBool::get(!CB->getValue()), RI);
868
869       // If we know the value of a SetCC instruction, propagate the information
870       // about the relation into this region as well.
871       //
872       if (SetCondInst *SCI = dyn_cast<SetCondInst>(Inst)) {
873         if (CB->getValue()) {  // If we know the condition is true...
874           // Propagate info about the LHS to the RHS & RHS to LHS
875           PropagateRelation(SCI->getOpcode(), SCI->getOperand(0),
876                             SCI->getOperand(1), RI);
877           PropagateRelation(SCI->getSwappedCondition(),
878                             SCI->getOperand(1), SCI->getOperand(0), RI);
879
880         } else {               // If we know the condition is false...
881           // We know the opposite of the condition is true...
882           Instruction::BinaryOps C = SCI->getInverseCondition();
883
884           PropagateRelation(C, SCI->getOperand(0), SCI->getOperand(1), RI);
885           PropagateRelation(SetCondInst::getSwappedCondition(C),
886                             SCI->getOperand(1), SCI->getOperand(0), RI);
887         }
888       }
889     }
890   }
891
892   // Propagate information about Op0 to Op1 & visa versa
893   PropagateRelation(Instruction::SetEQ, Op0, Op1, RI);
894   PropagateRelation(Instruction::SetEQ, Op1, Op0, RI);
895 }
896
897
898 // PropagateRelation - We know that the specified relation is true in all of the
899 // blocks in the specified region.  Propagate the information about Op0 and
900 // anything derived from it into this region.
901 //
902 void CEE::PropagateRelation(Instruction::BinaryOps Opcode, Value *Op0,
903                             Value *Op1, RegionInfo &RI) {
904   assert(Op0->getType() == Op1->getType() && "Equal types expected!");
905
906   // Constants are already pretty well understood.  We will apply information
907   // about the constant to Op1 in another call to PropagateRelation.
908   //
909   if (isa<Constant>(Op0)) return;
910
911   // Get the region information for this block to update...
912   ValueInfo &VI = RI.getValueInfo(Op0);
913
914   // Get information about the known relationship between Op0 & Op1
915   Relation &Op1R = VI.getRelation(Op1);
916
917   // Quick bailout for common case if we are reprocessing an instruction...
918   if (Op1R.getRelation() == Opcode)
919     return;
920
921   // If we already have information that contradicts the current information we
922   // are propagating, ignore this info.  Something bad must have happened!
923   //
924   if (Op1R.contradicts(Opcode, VI)) {
925     Op1R.contradicts(Opcode, VI);
926     std::cerr << "Contradiction found for opcode: "
927               << Instruction::getOpcodeName(Opcode) << "\n";
928     Op1R.print(std::cerr);
929     return;
930   }
931
932   // If the information propagated is new, then we want process the uses of this
933   // instruction to propagate the information down to them.
934   //
935   if (Op1R.incorporate(Opcode, VI))
936     UpdateUsersOfValue(Op0, RI);
937 }
938
939
940 // UpdateUsersOfValue - The information about V in this region has been updated.
941 // Propagate this to all consumers of the value.
942 //
943 void CEE::UpdateUsersOfValue(Value *V, RegionInfo &RI) {
944   for (Value::use_iterator I = V->use_begin(), E = V->use_end();
945        I != E; ++I)
946     if (Instruction *Inst = dyn_cast<Instruction>(*I)) {
947       // If this is an instruction using a value that we know something about,
948       // try to propagate information to the value produced by the
949       // instruction.  We can only do this if it is an instruction we can
950       // propagate information for (a setcc for example), and we only WANT to
951       // do this if the instruction dominates this region.
952       //
953       // If the instruction doesn't dominate this region, then it cannot be
954       // used in this region and we don't care about it.  If the instruction
955       // is IN this region, then we will simplify the instruction before we
956       // get to uses of it anyway, so there is no reason to bother with it
957       // here.  This check is also effectively checking to make sure that Inst
958       // is in the same function as our region (in case V is a global f.e.).
959       //
960       if (EF->properlyDominates(Inst->getParent(), RI.getEntryBlock()))
961         IncorporateInstruction(Inst, RI);
962     }
963 }
964
965 // IncorporateInstruction - We just updated the information about one of the
966 // operands to the specified instruction.  Update the information about the
967 // value produced by this instruction
968 //
969 void CEE::IncorporateInstruction(Instruction *Inst, RegionInfo &RI) {
970   if (SetCondInst *SCI = dyn_cast<SetCondInst>(Inst)) {
971     // See if we can figure out a result for this instruction...
972     Relation::KnownResult Result = getSetCCResult(SCI, RI);
973     if (Result != Relation::Unknown) {
974       PropagateEquality(SCI, ConstantBool::get(Result != 0), RI);
975     }
976   }
977 }
978
979
980 // ComputeReplacements - Some values are known to be equal to other values in a
981 // region.  For example if there is a comparison of equality between a variable
982 // X and a constant C, we can replace all uses of X with C in the region we are
983 // interested in.  We generalize this replacement to replace variables with
984 // other variables if they are equal and there is a variable with lower rank
985 // than the current one.  This offers a canonicalizing property that exposes
986 // more redundancies for later transformations to take advantage of.
987 //
988 void CEE::ComputeReplacements(RegionInfo &RI) {
989   // Loop over all of the values in the region info map...
990   for (RegionInfo::iterator I = RI.begin(), E = RI.end(); I != E; ++I) {
991     ValueInfo &VI = I->second;
992
993     // If we know that this value is a particular constant, set Replacement to
994     // the constant...
995     Value *Replacement = VI.getBounds().getSingleElement();
996
997     // If this value is not known to be some constant, figure out the lowest
998     // rank value that it is known to be equal to (if anything).
999     //
1000     if (Replacement == 0) {
1001       // Find out if there are any equality relationships with values of lower
1002       // rank than VI itself...
1003       unsigned MinRank = getRank(I->first);
1004
1005       // Loop over the relationships known about Op0.
1006       const std::vector<Relation> &Relationships = VI.getRelationships();
1007       for (unsigned i = 0, e = Relationships.size(); i != e; ++i)
1008         if (Relationships[i].getRelation() == Instruction::SetEQ) {
1009           unsigned R = getRank(Relationships[i].getValue());
1010           if (R < MinRank) {
1011             MinRank = R;
1012             Replacement = Relationships[i].getValue();
1013           }
1014         }
1015     }
1016
1017     // If we found something to replace this value with, keep track of it.
1018     if (Replacement)
1019       VI.setReplacement(Replacement);
1020   }
1021 }
1022
1023 // SimplifyBasicBlock - Given information about values in region RI, simplify
1024 // the instructions in the specified basic block.
1025 //
1026 bool CEE::SimplifyBasicBlock(BasicBlock &BB, const RegionInfo &RI) {
1027   bool Changed = false;
1028   for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ) {
1029     Instruction *Inst = I++;
1030
1031     // Convert instruction arguments to canonical forms...
1032     Changed |= SimplifyInstruction(Inst, RI);
1033
1034     if (SetCondInst *SCI = dyn_cast<SetCondInst>(Inst)) {
1035       // Try to simplify a setcc instruction based on inherited information
1036       Relation::KnownResult Result = getSetCCResult(SCI, RI);
1037       if (Result != Relation::Unknown) {
1038         DEBUG(std::cerr << "Replacing setcc with " << Result
1039                         << " constant: " << *SCI);
1040
1041         SCI->replaceAllUsesWith(ConstantBool::get((bool)Result));
1042         // The instruction is now dead, remove it from the program.
1043         SCI->getParent()->getInstList().erase(SCI);
1044         ++NumSetCCRemoved;
1045         Changed = true;
1046       }
1047     }
1048   }
1049
1050   return Changed;
1051 }
1052
1053 // SimplifyInstruction - Inspect the operands of the instruction, converting
1054 // them to their canonical form if possible.  This takes care of, for example,
1055 // replacing a value 'X' with a constant 'C' if the instruction in question is
1056 // dominated by a true seteq 'X', 'C'.
1057 //
1058 bool CEE::SimplifyInstruction(Instruction *I, const RegionInfo &RI) {
1059   bool Changed = false;
1060
1061   for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1062     if (const ValueInfo *VI = RI.requestValueInfo(I->getOperand(i)))
1063       if (Value *Repl = VI->getReplacement()) {
1064         // If we know if a replacement with lower rank than Op0, make the
1065         // replacement now.
1066         DEBUG(std::cerr << "In Inst: " << *I << "  Replacing operand #" << i
1067                         << " with " << *Repl << "\n");
1068         I->setOperand(i, Repl);
1069         Changed = true;
1070         ++NumOperandsCann;
1071       }
1072
1073   return Changed;
1074 }
1075
1076
1077 // getSetCCResult - Try to simplify a setcc instruction based on information
1078 // inherited from a dominating setcc instruction.  V is one of the operands to
1079 // the setcc instruction, and VI is the set of information known about it.  We
1080 // take two cases into consideration here.  If the comparison is against a
1081 // constant value, we can use the constant range to see if the comparison is
1082 // possible to succeed.  If it is not a comparison against a constant, we check
1083 // to see if there is a known relationship between the two values.  If so, we
1084 // may be able to eliminate the check.
1085 //
1086 Relation::KnownResult CEE::getSetCCResult(SetCondInst *SCI,
1087                                           const RegionInfo &RI) {
1088   Value *Op0 = SCI->getOperand(0), *Op1 = SCI->getOperand(1);
1089   Instruction::BinaryOps Opcode = SCI->getOpcode();
1090
1091   if (isa<Constant>(Op0)) {
1092     if (isa<Constant>(Op1)) {
1093       if (Constant *Result = ConstantFoldInstruction(SCI)) {
1094         // Wow, this is easy, directly eliminate the SetCondInst.
1095         DEBUG(std::cerr << "Replacing setcc with constant fold: " << *SCI);
1096         return cast<ConstantBool>(Result)->getValue()
1097           ? Relation::KnownTrue : Relation::KnownFalse;
1098       }
1099     } else {
1100       // We want to swap this instruction so that operand #0 is the constant.
1101       std::swap(Op0, Op1);
1102       Opcode = SCI->getSwappedCondition();
1103     }
1104   }
1105
1106   // Try to figure out what the result of this comparison will be...
1107   Relation::KnownResult Result = Relation::Unknown;
1108
1109   // We have to know something about the relationship to prove anything...
1110   if (const ValueInfo *Op0VI = RI.requestValueInfo(Op0)) {
1111
1112     // At this point, we know that if we have a constant argument that it is in
1113     // Op1.  Check to see if we know anything about comparing value with a
1114     // constant, and if we can use this info to fold the setcc.
1115     //
1116     if (ConstantIntegral *C = dyn_cast<ConstantIntegral>(Op1)) {
1117       // Check to see if we already know the result of this comparison...
1118       ConstantRange R = ConstantRange(Opcode, C);
1119       ConstantRange Int = R.intersectWith(Op0VI->getBounds());
1120
1121       // If the intersection of the two ranges is empty, then the condition
1122       // could never be true!
1123       //
1124       if (Int.isEmptySet()) {
1125         Result = Relation::KnownFalse;
1126
1127       // Otherwise, if VI.getBounds() (the possible values) is a subset of R
1128       // (the allowed values) then we know that the condition must always be
1129       // true!
1130       //
1131       } else if (Int == Op0VI->getBounds()) {
1132         Result = Relation::KnownTrue;
1133       }
1134     } else {
1135       // If we are here, we know that the second argument is not a constant
1136       // integral.  See if we know anything about Op0 & Op1 that allows us to
1137       // fold this anyway.
1138       //
1139       // Do we have value information about Op0 and a relation to Op1?
1140       if (const Relation *Op2R = Op0VI->requestRelation(Op1))
1141         Result = Op2R->getImpliedResult(Opcode);
1142     }
1143   }
1144   return Result;
1145 }
1146
1147 //===----------------------------------------------------------------------===//
1148 //  Relation Implementation
1149 //===----------------------------------------------------------------------===//
1150
1151 // CheckCondition - Return true if the specified condition is false.  Bound may
1152 // be null.
1153 static bool CheckCondition(Constant *Bound, Constant *C,
1154                            Instruction::BinaryOps BO) {
1155   assert(C != 0 && "C is not specified!");
1156   if (Bound == 0) return false;
1157
1158   Constant *Val = ConstantExpr::get(BO, Bound, C);
1159   if (ConstantBool *CB = dyn_cast<ConstantBool>(Val))
1160     return !CB->getValue();  // Return true if the condition is false...
1161   return false;
1162 }
1163
1164 // contradicts - Return true if the relationship specified by the operand
1165 // contradicts already known information.
1166 //
1167 bool Relation::contradicts(Instruction::BinaryOps Op,
1168                            const ValueInfo &VI) const {
1169   assert (Op != Instruction::Add && "Invalid relation argument!");
1170
1171   // If this is a relationship with a constant, make sure that this relationship
1172   // does not contradict properties known about the bounds of the constant.
1173   //
1174   if (ConstantIntegral *C = dyn_cast<ConstantIntegral>(Val))
1175     if (ConstantRange(Op, C).intersectWith(VI.getBounds()).isEmptySet())
1176       return true;
1177
1178   switch (Rel) {
1179   default: assert(0 && "Unknown Relationship code!");
1180   case Instruction::Add: return false;  // Nothing known, nothing contradicts
1181   case Instruction::SetEQ:
1182     return Op == Instruction::SetLT || Op == Instruction::SetGT ||
1183            Op == Instruction::SetNE;
1184   case Instruction::SetNE: return Op == Instruction::SetEQ;
1185   case Instruction::SetLE: return Op == Instruction::SetGT;
1186   case Instruction::SetGE: return Op == Instruction::SetLT;
1187   case Instruction::SetLT:
1188     return Op == Instruction::SetEQ || Op == Instruction::SetGT ||
1189            Op == Instruction::SetGE;
1190   case Instruction::SetGT:
1191     return Op == Instruction::SetEQ || Op == Instruction::SetLT ||
1192            Op == Instruction::SetLE;
1193   }
1194 }
1195
1196 // incorporate - Incorporate information in the argument into this relation
1197 // entry.  This assumes that the information doesn't contradict itself.  If any
1198 // new information is gained, true is returned, otherwise false is returned to
1199 // indicate that nothing was updated.
1200 //
1201 bool Relation::incorporate(Instruction::BinaryOps Op, ValueInfo &VI) {
1202   assert(!contradicts(Op, VI) &&
1203          "Cannot incorporate contradictory information!");
1204
1205   // If this is a relationship with a constant, make sure that we update the
1206   // range that is possible for the value to have...
1207   //
1208   if (ConstantIntegral *C = dyn_cast<ConstantIntegral>(Val))
1209     VI.getBounds() = ConstantRange(Op, C).intersectWith(VI.getBounds());
1210
1211   switch (Rel) {
1212   default: assert(0 && "Unknown prior value!");
1213   case Instruction::Add:   Rel = Op; return true;
1214   case Instruction::SetEQ: return false;  // Nothing is more precise
1215   case Instruction::SetNE: return false;  // Nothing is more precise
1216   case Instruction::SetLT: return false;  // Nothing is more precise
1217   case Instruction::SetGT: return false;  // Nothing is more precise
1218   case Instruction::SetLE:
1219     if (Op == Instruction::SetEQ || Op == Instruction::SetLT) {
1220       Rel = Op;
1221       return true;
1222     } else if (Op == Instruction::SetNE) {
1223       Rel = Instruction::SetLT;
1224       return true;
1225     }
1226     return false;
1227   case Instruction::SetGE: return Op == Instruction::SetLT;
1228     if (Op == Instruction::SetEQ || Op == Instruction::SetGT) {
1229       Rel = Op;
1230       return true;
1231     } else if (Op == Instruction::SetNE) {
1232       Rel = Instruction::SetGT;
1233       return true;
1234     }
1235     return false;
1236   }
1237 }
1238
1239 // getImpliedResult - If this relationship between two values implies that
1240 // the specified relationship is true or false, return that.  If we cannot
1241 // determine the result required, return Unknown.
1242 //
1243 Relation::KnownResult
1244 Relation::getImpliedResult(Instruction::BinaryOps Op) const {
1245   if (Rel == Op) return KnownTrue;
1246   if (Rel == SetCondInst::getInverseCondition(Op)) return KnownFalse;
1247
1248   switch (Rel) {
1249   default: assert(0 && "Unknown prior value!");
1250   case Instruction::SetEQ:
1251     if (Op == Instruction::SetLE || Op == Instruction::SetGE) return KnownTrue;
1252     if (Op == Instruction::SetLT || Op == Instruction::SetGT) return KnownFalse;
1253     break;
1254   case Instruction::SetLT:
1255     if (Op == Instruction::SetNE || Op == Instruction::SetLE) return KnownTrue;
1256     if (Op == Instruction::SetEQ) return KnownFalse;
1257     break;
1258   case Instruction::SetGT:
1259     if (Op == Instruction::SetNE || Op == Instruction::SetGE) return KnownTrue;
1260     if (Op == Instruction::SetEQ) return KnownFalse;
1261     break;
1262   case Instruction::SetNE:
1263   case Instruction::SetLE:
1264   case Instruction::SetGE:
1265   case Instruction::Add:
1266     break;
1267   }
1268   return Unknown;
1269 }
1270
1271
1272 //===----------------------------------------------------------------------===//
1273 // Printing Support...
1274 //===----------------------------------------------------------------------===//
1275
1276 // print - Implement the standard print form to print out analysis information.
1277 void CEE::print(std::ostream &O, const Module *M) const {
1278   O << "\nPrinting Correlated Expression Info:\n";
1279   for (std::map<BasicBlock*, RegionInfo>::const_iterator I =
1280          RegionInfoMap.begin(), E = RegionInfoMap.end(); I != E; ++I)
1281     I->second.print(O);
1282 }
1283
1284 // print - Output information about this region...
1285 void RegionInfo::print(std::ostream &OS) const {
1286   if (ValueMap.empty()) return;
1287
1288   OS << " RegionInfo for basic block: " << BB->getName() << "\n";
1289   for (std::map<Value*, ValueInfo>::const_iterator
1290          I = ValueMap.begin(), E = ValueMap.end(); I != E; ++I)
1291     I->second.print(OS, I->first);
1292   OS << "\n";
1293 }
1294
1295 // print - Output information about this value relation...
1296 void ValueInfo::print(std::ostream &OS, Value *V) const {
1297   if (Relationships.empty()) return;
1298
1299   if (V) {
1300     OS << "  ValueInfo for: ";
1301     WriteAsOperand(OS, V);
1302   }
1303   OS << "\n    Bounds = " << Bounds << "\n";
1304   if (Replacement) {
1305     OS << "    Replacement = ";
1306     WriteAsOperand(OS, Replacement);
1307     OS << "\n";
1308   }
1309   for (unsigned i = 0, e = Relationships.size(); i != e; ++i)
1310     Relationships[i].print(OS);
1311 }
1312
1313 // print - Output this relation to the specified stream
1314 void Relation::print(std::ostream &OS) const {
1315   OS << "    is ";
1316   switch (Rel) {
1317   default:           OS << "*UNKNOWN*"; break;
1318   case Instruction::SetEQ: OS << "== "; break;
1319   case Instruction::SetNE: OS << "!= "; break;
1320   case Instruction::SetLT: OS << "< "; break;
1321   case Instruction::SetGT: OS << "> "; break;
1322   case Instruction::SetLE: OS << "<= "; break;
1323   case Instruction::SetGE: OS << ">= "; break;
1324   }
1325
1326   WriteAsOperand(OS, Val);
1327   OS << "\n";
1328 }
1329
1330 // Don't inline these methods or else we won't be able to call them from GDB!
1331 void Relation::dump() const { print(std::cerr); }
1332 void ValueInfo::dump() const { print(std::cerr, 0); }
1333 void RegionInfo::dump() const { print(std::cerr); }