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