Remove some gross code by using the Value::dump method to do debug dumps
[oota-llvm.git] / lib / VMCore / iBranch.cpp
1 //===-- iBranch.cpp - Implement the Branch instruction -----------*- C++ -*--=//
2 //
3 // This file implements the 'br' instruction, which can represent either a 
4 // conditional or unconditional branch.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #include "llvm/iTerminators.h"
9 #include "llvm/BasicBlock.h"
10 #ifndef NDEBUG
11 #include "llvm/Type.h"       // Only used for assertions...
12 #include <iostream>
13 #endif
14
15 BranchInst::BranchInst(BasicBlock *True, BasicBlock *False, Value *Cond) 
16   : TerminatorInst(Instruction::Br) {
17   assert(True != 0 && "True branch destination may not be null!!!");
18   Operands.reserve(False ? 3 : 1);
19   Operands.push_back(Use(True, this));
20   if (False) {
21     Operands.push_back(Use(False, this));
22     Operands.push_back(Use(Cond, this));
23   }
24
25   assert(!!False == !!Cond &&
26          "Either both cond and false or neither can be specified!");
27
28 #ifndef NDEBUG
29   if (Cond != 0 && Cond->getType() != Type::BoolTy) {
30     std::cerr << "Bad Condition: ";
31     Cond->dump();
32     std::cerr << "\n";
33   }
34 #endif
35   assert((Cond == 0 || Cond->getType() == Type::BoolTy) && 
36          "May only branch on boolean predicates!!!!");
37 }
38
39 BranchInst::BranchInst(const BranchInst &BI) : TerminatorInst(Instruction::Br) {
40   Operands.reserve(BI.Operands.size());
41   Operands.push_back(Use(BI.Operands[0], this));
42   if (BI.Operands.size() != 1) {
43     assert(BI.Operands.size() == 3 && "BR can have 1 or 3 operands!");
44     Operands.push_back(Use(BI.Operands[1], this));
45     Operands.push_back(Use(BI.Operands[2], this));
46   }
47 }