Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 1 | //===-- InstrForest.cpp - Build instruction forest for inst selection -----===// |
| 2 | // |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 3 | // The key goal is to group instructions into a single |
| 4 | // tree if one or more of them might be potentially combined into a single |
| 5 | // complex instruction in the target machine. |
| 6 | // Since this grouping is completely machine-independent, we do it as |
| 7 | // aggressive as possible to exploit any possible taret instructions. |
| 8 | // In particular, we group two instructions O and I if: |
| 9 | // (1) Instruction O computes an operand used by instruction I, |
| 10 | // and (2) O and I are part of the same basic block, |
| 11 | // and (3) O has only a single use, viz., I. |
| 12 | // |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 14 | |
Chris Lattner | 942d99e | 2001-07-21 22:59:56 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/InstrForest.h" |
Chris Lattner | a8bbb6b | 2002-02-03 07:31:41 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineCodeForInstruction.h" |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 17 | #include "llvm/Function.h" |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 18 | #include "llvm/iTerminators.h" |
| 19 | #include "llvm/iMemory.h" |
Chris Lattner | 31bcdb8 | 2002-04-28 19:55:58 +0000 | [diff] [blame] | 20 | #include "llvm/Constant.h" |
Chris Lattner | 86e9187 | 2002-04-29 18:48:55 +0000 | [diff] [blame] | 21 | #include "llvm/Type.h" |
Chris Lattner | 7e583cf | 2001-07-21 20:58:30 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Lattner | cee8f9a | 2001-11-27 00:03:19 +0000 | [diff] [blame] | 23 | #include "Support/STLExtras.h" |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 24 | using std::cerr; |
| 25 | using std::vector; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 26 | |
| 27 | //------------------------------------------------------------------------ |
| 28 | // class InstrTreeNode |
| 29 | //------------------------------------------------------------------------ |
| 30 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 31 | void |
| 32 | InstrTreeNode::dump(int dumpChildren, int indent) const |
| 33 | { |
Chris Lattner | d268ad6 | 2001-09-11 23:52:11 +0000 | [diff] [blame] | 34 | dumpNode(indent); |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 35 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 36 | if (dumpChildren) |
| 37 | { |
| 38 | if (LeftChild) |
| 39 | LeftChild->dump(dumpChildren, indent+1); |
| 40 | if (RightChild) |
| 41 | RightChild->dump(dumpChildren, indent+1); |
| 42 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 46 | InstructionNode::InstructionNode(Instruction* I) |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 47 | : InstrTreeNode(NTInstructionNode, I), |
| 48 | codeIsFoldedIntoParent(false) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 49 | { |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 50 | opLabel = I->getOpcode(); |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 51 | |
| 52 | // Distinguish special cases of some instructions such as Ret and Br |
| 53 | // |
Chris Lattner | b00c582 | 2001-10-02 03:41:24 +0000 | [diff] [blame] | 54 | if (opLabel == Instruction::Ret && cast<ReturnInst>(I)->getReturnValue()) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 55 | { |
| 56 | opLabel = RetValueOp; // ret(value) operation |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 57 | } |
Chris Lattner | b00c582 | 2001-10-02 03:41:24 +0000 | [diff] [blame] | 58 | else if (opLabel ==Instruction::Br && !cast<BranchInst>(I)->isUnconditional()) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 59 | { |
| 60 | opLabel = BrCondOp; // br(cond) operation |
| 61 | } |
| 62 | else if (opLabel >= Instruction::SetEQ && opLabel <= Instruction::SetGT) |
| 63 | { |
| 64 | opLabel = SetCCOp; // common label for all SetCC ops |
| 65 | } |
| 66 | else if (opLabel == Instruction::Alloca && I->getNumOperands() > 0) |
| 67 | { |
| 68 | opLabel = AllocaN; // Alloca(ptr, N) operation |
| 69 | } |
| 70 | else if ((opLabel == Instruction::Load || |
| 71 | opLabel == Instruction::GetElementPtr) && |
Chris Lattner | 65ea171 | 2001-11-14 11:27:58 +0000 | [diff] [blame] | 72 | cast<MemAccessInst>(I)->hasIndices()) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 73 | { |
| 74 | opLabel = opLabel + 100; // load/getElem with index vector |
| 75 | } |
Vikram S. Adve | 85af131 | 2002-08-15 14:19:22 +0000 | [diff] [blame] | 76 | else if (opLabel == Instruction::Xor && |
| 77 | BinaryOperator::isNot(I)) |
| 78 | { |
| 79 | opLabel = (I->getType() == Type::BoolTy)? NotOp // boolean Not operator |
| 80 | : BNotOp; // bitwise Not operator |
| 81 | } |
Vikram S. Adve | be49526 | 2001-11-08 04:47:06 +0000 | [diff] [blame] | 82 | else if (opLabel == Instruction::And || |
| 83 | opLabel == Instruction::Or || |
Vikram S. Adve | 85af131 | 2002-08-15 14:19:22 +0000 | [diff] [blame] | 84 | opLabel == Instruction::Xor) |
Vikram S. Adve | be49526 | 2001-11-08 04:47:06 +0000 | [diff] [blame] | 85 | { |
| 86 | // Distinguish bitwise operators from logical operators! |
| 87 | if (I->getType() != Type::BoolTy) |
| 88 | opLabel = opLabel + 100; // bitwise operator |
| 89 | } |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 90 | else if (opLabel == Instruction::Cast) |
| 91 | { |
| 92 | const Type *ITy = I->getType(); |
| 93 | switch(ITy->getPrimitiveID()) |
| 94 | { |
| 95 | case Type::BoolTyID: opLabel = ToBoolTy; break; |
| 96 | case Type::UByteTyID: opLabel = ToUByteTy; break; |
| 97 | case Type::SByteTyID: opLabel = ToSByteTy; break; |
| 98 | case Type::UShortTyID: opLabel = ToUShortTy; break; |
| 99 | case Type::ShortTyID: opLabel = ToShortTy; break; |
| 100 | case Type::UIntTyID: opLabel = ToUIntTy; break; |
| 101 | case Type::IntTyID: opLabel = ToIntTy; break; |
| 102 | case Type::ULongTyID: opLabel = ToULongTy; break; |
| 103 | case Type::LongTyID: opLabel = ToLongTy; break; |
| 104 | case Type::FloatTyID: opLabel = ToFloatTy; break; |
| 105 | case Type::DoubleTyID: opLabel = ToDoubleTy; break; |
| 106 | case Type::ArrayTyID: opLabel = ToArrayTy; break; |
| 107 | case Type::PointerTyID: opLabel = ToPointerTy; break; |
| 108 | default: |
| 109 | // Just use `Cast' opcode otherwise. It's probably ignored. |
| 110 | break; |
| 111 | } |
| 112 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 115 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 116 | void |
| 117 | InstructionNode::dumpNode(int indent) const |
| 118 | { |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 119 | for (int i=0; i < indent; i++) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 120 | cerr << " "; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 121 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 122 | cerr << getInstruction()->getOpcodeName(); |
Chris Lattner | a8bbb6b | 2002-02-03 07:31:41 +0000 | [diff] [blame] | 123 | const MachineCodeForInstruction &mvec = |
| 124 | MachineCodeForInstruction::get(getInstruction()); |
| 125 | |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 126 | if (!mvec.empty()) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 127 | cerr << "\tMachine Instructions: "; |
Chris Lattner | a8bbb6b | 2002-02-03 07:31:41 +0000 | [diff] [blame] | 128 | |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 129 | for (unsigned i = 0; i < mvec.size(); ++i) { |
Vikram S. Adve | bf82a42 | 2002-07-08 23:01:46 +0000 | [diff] [blame] | 130 | mvec[i]->dump(); |
Chris Lattner | a8bbb6b | 2002-02-03 07:31:41 +0000 | [diff] [blame] | 131 | if (i < mvec.size() - 1) |
| 132 | cerr << "; "; |
| 133 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 134 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 135 | cerr << "\n"; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 139 | void |
| 140 | VRegListNode::dumpNode(int indent) const |
| 141 | { |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 142 | for (int i=0; i < indent; i++) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 143 | cerr << " "; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 144 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 145 | cerr << "List" << "\n"; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 149 | void |
| 150 | VRegNode::dumpNode(int indent) const |
| 151 | { |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 152 | for (int i=0; i < indent; i++) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 153 | cerr << " "; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 154 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 155 | cerr << "VReg " << getValue() << "\t(type " |
| 156 | << (int) getValue()->getValueType() << ")" << "\n"; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 159 | void |
| 160 | ConstantNode::dumpNode(int indent) const |
| 161 | { |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 162 | for (int i=0; i < indent; i++) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 163 | cerr << " "; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 164 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 165 | cerr << "Constant " << getValue() << "\t(type " |
| 166 | << (int) getValue()->getValueType() << ")" << "\n"; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 169 | void |
| 170 | LabelNode::dumpNode(int indent) const |
| 171 | { |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 172 | for (int i=0; i < indent; i++) |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 173 | cerr << " "; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 174 | |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 175 | cerr << "Label " << getValue() << "\n"; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | //------------------------------------------------------------------------ |
| 179 | // class InstrForest |
| 180 | // |
| 181 | // A forest of instruction trees, usually for a single method. |
| 182 | //------------------------------------------------------------------------ |
| 183 | |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 184 | InstrForest::InstrForest(Function *F) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 185 | { |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 186 | for (Function::iterator BB = F->begin(), FE = F->end(); BB != FE; ++BB) { |
| 187 | for(BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 188 | buildTreeForInstruction(I); |
Chris Lattner | 221d688 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 189 | } |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | InstrForest::~InstrForest() |
| 193 | { |
Chris Lattner | 7884cd1 | 2002-04-08 23:09:07 +0000 | [diff] [blame] | 194 | for_each(treeRoots.begin(), treeRoots.end(), deleter<InstructionNode>); |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void |
| 198 | InstrForest::dump() const |
| 199 | { |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 200 | for (const_root_iterator I = roots_begin(); I != roots_end(); ++I) |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 201 | (*I)->dump(/*dumpChildren*/ 1, /*indent*/ 0); |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 204 | inline void |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 205 | InstrForest::eraseRoot(InstructionNode* node) |
| 206 | { |
| 207 | for (RootSet::reverse_iterator RI=treeRoots.rbegin(), RE=treeRoots.rend(); |
| 208 | RI != RE; ++RI) |
| 209 | if (*RI == node) |
| 210 | treeRoots.erase(RI.base()-1); |
| 211 | } |
| 212 | |
| 213 | inline void |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 214 | InstrForest::noteTreeNodeForInstr(Instruction *instr, |
| 215 | InstructionNode *treeNode) |
| 216 | { |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 217 | assert(treeNode->getNodeType() == InstrTreeNode::NTInstructionNode); |
| 218 | (*this)[instr] = treeNode; |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 219 | treeRoots.push_back(treeNode); // mark node as root of a new tree |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 223 | inline void |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 224 | InstrForest::setLeftChild(InstrTreeNode *parent, InstrTreeNode *child) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 225 | { |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 226 | parent->LeftChild = child; |
| 227 | child->Parent = parent; |
| 228 | if (child->getNodeType() == InstrTreeNode::NTInstructionNode) |
| 229 | eraseRoot((InstructionNode*) child); // no longer a tree root |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 230 | } |
| 231 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 232 | inline void |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 233 | InstrForest::setRightChild(InstrTreeNode *parent, InstrTreeNode *child) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 234 | { |
Vikram S. Adve | d95919c | 2002-03-24 03:24:00 +0000 | [diff] [blame] | 235 | parent->RightChild = child; |
| 236 | child->Parent = parent; |
| 237 | if (child->getNodeType() == InstrTreeNode::NTInstructionNode) |
| 238 | eraseRoot((InstructionNode*) child); // no longer a tree root |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 242 | InstructionNode* |
| 243 | InstrForest::buildTreeForInstruction(Instruction *instr) |
| 244 | { |
| 245 | InstructionNode *treeNode = getTreeNodeForInstr(instr); |
| 246 | if (treeNode) |
| 247 | { |
| 248 | // treeNode has already been constructed for this instruction |
| 249 | assert(treeNode->getInstruction() == instr); |
| 250 | return treeNode; |
| 251 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 252 | |
| 253 | // Otherwise, create a new tree node for this instruction. |
| 254 | // |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 255 | treeNode = new InstructionNode(instr); |
| 256 | noteTreeNodeForInstr(instr, treeNode); |
| 257 | |
| 258 | if (instr->getOpcode() == Instruction::Call) |
| 259 | { // Operands of call instruction |
| 260 | return treeNode; |
| 261 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 262 | |
| 263 | // If the instruction has more than 2 instruction operands, |
Vikram S. Adve | e4e77f9 | 2001-07-31 21:49:53 +0000 | [diff] [blame] | 264 | // then we need to create artificial list nodes to hold them. |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 265 | // (Note that we only count operands that get tree nodes, and not |
Vikram S. Adve | e4e77f9 | 2001-07-31 21:49:53 +0000 | [diff] [blame] | 266 | // others such as branch labels for a branch or switch instruction.) |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 267 | // |
| 268 | // To do this efficiently, we'll walk all operands, build treeNodes |
Vikram S. Adve | e4e77f9 | 2001-07-31 21:49:53 +0000 | [diff] [blame] | 269 | // for all appropriate operands and save them in an array. We then |
| 270 | // insert children at the end, creating list nodes where needed. |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 271 | // As a performance optimization, allocate a child array only |
| 272 | // if a fixed array is too small. |
| 273 | // |
| 274 | int numChildren = 0; |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 275 | InstrTreeNode **childArray = |
Chris Lattner | 7884cd1 | 2002-04-08 23:09:07 +0000 | [diff] [blame] | 276 | (InstrTreeNode **)alloca(instr->getNumOperands()*sizeof(InstrTreeNode *)); |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 277 | |
| 278 | // |
| 279 | // Walk the operands of the instruction |
| 280 | // |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 281 | for (Instruction::op_iterator O = instr->op_begin(); O!=instr->op_end(); ++O) |
| 282 | { |
| 283 | Value* operand = *O; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 284 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 285 | // Check if the operand is a data value, not an branch label, type, |
| 286 | // method or module. If the operand is an address type (i.e., label |
| 287 | // or method) that is used in an non-branching operation, e.g., `add'. |
| 288 | // that should be considered a data value. |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 289 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 290 | // Check latter condition here just to simplify the next IF. |
| 291 | bool includeAddressOperand = |
Chris Lattner | 79df7c0 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 292 | (isa<BasicBlock>(operand) || isa<Function>(operand)) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 293 | && !instr->isTerminator(); |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 294 | |
Chris Lattner | 1d87bcf | 2001-10-01 20:11:19 +0000 | [diff] [blame] | 295 | if (includeAddressOperand || isa<Instruction>(operand) || |
Chris Lattner | 73e2142 | 2002-04-09 19:48:49 +0000 | [diff] [blame] | 296 | isa<Constant>(operand) || isa<Argument>(operand) || |
Chris Lattner | 1d87bcf | 2001-10-01 20:11:19 +0000 | [diff] [blame] | 297 | isa<GlobalVariable>(operand)) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 298 | { |
| 299 | // This operand is a data value |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 300 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 301 | // An instruction that computes the incoming value is added as a |
| 302 | // child of the current instruction if: |
| 303 | // the value has only a single use |
| 304 | // AND both instructions are in the same basic block. |
| 305 | // AND the current instruction is not a PHI (because the incoming |
| 306 | // value is conceptually in a predecessor block, |
| 307 | // even though it may be in the same static block) |
| 308 | // |
| 309 | // (Note that if the value has only a single use (viz., `instr'), |
| 310 | // the def of the value can be safely moved just before instr |
| 311 | // and therefore it is safe to combine these two instructions.) |
| 312 | // |
| 313 | // In all other cases, the virtual register holding the value |
| 314 | // is used directly, i.e., made a child of the instruction node. |
| 315 | // |
| 316 | InstrTreeNode* opTreeNode; |
Chris Lattner | 1d87bcf | 2001-10-01 20:11:19 +0000 | [diff] [blame] | 317 | if (isa<Instruction>(operand) && operand->use_size() == 1 && |
| 318 | cast<Instruction>(operand)->getParent() == instr->getParent() && |
Chris Lattner | 7884cd1 | 2002-04-08 23:09:07 +0000 | [diff] [blame] | 319 | instr->getOpcode() != Instruction::PHINode && |
Vikram S. Adve | 64c2ced | 2001-09-30 23:45:08 +0000 | [diff] [blame] | 320 | instr->getOpcode() != Instruction::Call) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 321 | { |
| 322 | // Recursively create a treeNode for it. |
| 323 | opTreeNode = buildTreeForInstruction((Instruction*)operand); |
| 324 | } |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 325 | else if (Constant *CPV = dyn_cast<Constant>(operand)) |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 326 | { |
| 327 | // Create a leaf node for a constant |
| 328 | opTreeNode = new ConstantNode(CPV); |
| 329 | } |
| 330 | else |
| 331 | { |
| 332 | // Create a leaf node for the virtual register |
| 333 | opTreeNode = new VRegNode(operand); |
| 334 | } |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 335 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 336 | childArray[numChildren++] = opTreeNode; |
| 337 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | //-------------------------------------------------------------------- |
| 341 | // Add any selected operands as children in the tree. |
| 342 | // Certain instructions can have more than 2 in some instances (viz., |
| 343 | // a CALL or a memory access -- LOAD, STORE, and GetElemPtr -- to an |
| 344 | // array or struct). Make the operands of every such instruction into |
| 345 | // a right-leaning binary tree with the operand nodes at the leaves |
| 346 | // and VRegList nodes as internal nodes. |
| 347 | //-------------------------------------------------------------------- |
| 348 | |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 349 | InstrTreeNode *parent = treeNode; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 350 | |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 351 | if (numChildren > 2) |
| 352 | { |
| 353 | unsigned instrOpcode = treeNode->getInstruction()->getOpcode(); |
| 354 | assert(instrOpcode == Instruction::PHINode || |
| 355 | instrOpcode == Instruction::Call || |
| 356 | instrOpcode == Instruction::Load || |
| 357 | instrOpcode == Instruction::Store || |
| 358 | instrOpcode == Instruction::GetElementPtr); |
| 359 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 360 | |
| 361 | // Insert the first child as a direct child |
| 362 | if (numChildren >= 1) |
Chris Lattner | 4ddb4c8 | 2001-09-12 01:28:49 +0000 | [diff] [blame] | 363 | setLeftChild(parent, childArray[0]); |
| 364 | |
| 365 | int n; |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 366 | |
| 367 | // Create a list node for children 2 .. N-1, if any |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 368 | for (n = numChildren-1; n >= 2; n--) |
| 369 | { |
| 370 | // We have more than two children |
| 371 | InstrTreeNode *listNode = new VRegListNode(); |
| 372 | setRightChild(parent, listNode); |
| 373 | setLeftChild(listNode, childArray[numChildren - n]); |
| 374 | parent = listNode; |
| 375 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 376 | |
| 377 | // Now insert the last remaining child (if any). |
Vikram S. Adve | 4c31fb5 | 2001-09-18 12:54:27 +0000 | [diff] [blame] | 378 | if (numChildren >= 2) |
| 379 | { |
| 380 | assert(n == 1); |
| 381 | setRightChild(parent, childArray[numChildren - 1]); |
| 382 | } |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 383 | |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 384 | return treeNode; |
| 385 | } |