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