Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/MachineModuleInfo.cpp ----------------------*- C++ -*-===// |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 9 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 10 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 11 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 12 | #include "llvm/Constants.h" |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 13 | #include "llvm/Analysis/ValueTracking.h" |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 15 | #include "llvm/CodeGen/MachineFunction.h" |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineLocation.h" |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineDebugInfoDesc.h" |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetInstrInfo.h" |
| 19 | #include "llvm/Target/TargetMachine.h" |
Jim Laskey | c1c47c3 | 2007-01-29 23:40:33 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetOptions.h" |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 21 | #include "llvm/DerivedTypes.h" |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 22 | #include "llvm/GlobalVariable.h" |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 23 | #include "llvm/Intrinsics.h" |
| 24 | #include "llvm/Instructions.h" |
| 25 | #include "llvm/Module.h" |
| 26 | #include "llvm/Support/Dwarf.h" |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Streams.h" |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Jim Laskey | 9c4447a | 2006-03-01 20:39:36 +0000 | [diff] [blame] | 29 | using namespace llvm::dwarf; |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 30 | |
| 31 | // Handle the Pass registration stuff necessary to use TargetData's. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 32 | static RegisterPass<MachineModuleInfo> |
| 33 | X("machinemoduleinfo", "Module Information"); |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 34 | char MachineModuleInfo::ID = 0; |
Jim Laskey | 063e765 | 2006-01-17 17:31:53 +0000 | [diff] [blame] | 35 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 36 | //===----------------------------------------------------------------------===// |
| 37 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 38 | /// getGlobalVariablesUsing - Return all of the GlobalVariables which have the |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 39 | /// specified value in their initializer somewhere. |
| 40 | static void |
Bill Wendling | 0ac1b6d | 2008-06-27 01:32:08 +0000 | [diff] [blame] | 41 | getGlobalVariablesUsing(Value *V, std::vector<GlobalVariable*> &Result) { |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 42 | // Scan though value users. |
| 43 | for (Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) { |
| 44 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(*I)) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 45 | // If the user is a GlobalVariable then add to result. |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 46 | Result.push_back(GV); |
| 47 | } else if (Constant *C = dyn_cast<Constant>(*I)) { |
| 48 | // If the user is a constant variable then scan its users |
| 49 | getGlobalVariablesUsing(C, Result); |
| 50 | } |
| 51 | } |
| 52 | } |
| 53 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 54 | /// getGlobalVariablesUsing - Return all of the GlobalVariables that use the |
| 55 | /// named GlobalVariable. |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 56 | static void |
| 57 | getGlobalVariablesUsing(Module &M, const std::string &RootName, |
Bill Wendling | 0ac1b6d | 2008-06-27 01:32:08 +0000 | [diff] [blame] | 58 | std::vector<GlobalVariable*> &Result) { |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 59 | std::vector<const Type*> FieldTypes; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 60 | FieldTypes.push_back(Type::Int32Ty); |
| 61 | FieldTypes.push_back(Type::Int32Ty); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 62 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 63 | // Get the GlobalVariable root. |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 64 | GlobalVariable *UseRoot = M.getGlobalVariable(RootName, |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 65 | StructType::get(FieldTypes)); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 66 | |
| 67 | // If present and linkonce then scan for users. |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 68 | if (UseRoot && UseRoot->hasLinkOnceLinkage()) |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 69 | getGlobalVariablesUsing(UseRoot, Result); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 72 | /// isStringValue - Return true if the given value can be coerced to a string. |
| 73 | /// |
| 74 | static bool isStringValue(Value *V) { |
| 75 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) { |
| 76 | if (GV->hasInitializer() && isa<ConstantArray>(GV->getInitializer())) { |
| 77 | ConstantArray *Init = cast<ConstantArray>(GV->getInitializer()); |
| 78 | return Init->isString(); |
| 79 | } |
| 80 | } else if (Constant *C = dyn_cast<Constant>(V)) { |
| 81 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 82 | return isStringValue(GV); |
| 83 | else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 84 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 85 | if (CE->getNumOperands() == 3 && |
| 86 | cast<Constant>(CE->getOperand(1))->isNullValue() && |
| 87 | isa<ConstantInt>(CE->getOperand(2))) { |
| 88 | return isStringValue(CE->getOperand(0)); |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | return false; |
| 94 | } |
| 95 | |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 96 | /// getGlobalVariable - Return either a direct or cast Global value. |
Jim Laskey | d8f77ba | 2006-01-27 15:20:54 +0000 | [diff] [blame] | 97 | /// |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 98 | static GlobalVariable *getGlobalVariable(Value *V) { |
Jim Laskey | d8f77ba | 2006-01-27 15:20:54 +0000 | [diff] [blame] | 99 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) { |
| 100 | return GV; |
| 101 | } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 102 | if (CE->getOpcode() == Instruction::BitCast) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 103 | return dyn_cast<GlobalVariable>(CE->getOperand(0)); |
Dale Johannesen | 7757fff | 2008-01-30 19:00:21 +0000 | [diff] [blame] | 104 | } else if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 105 | for (unsigned int i=1; i<CE->getNumOperands(); i++) { |
Dale Johannesen | 43b8f3b | 2008-01-30 19:44:39 +0000 | [diff] [blame] | 106 | if (!CE->getOperand(i)->isNullValue()) |
Dale Johannesen | 7757fff | 2008-01-30 19:00:21 +0000 | [diff] [blame] | 107 | return NULL; |
| 108 | } |
| 109 | return dyn_cast<GlobalVariable>(CE->getOperand(0)); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 110 | } |
Jim Laskey | d8f77ba | 2006-01-27 15:20:54 +0000 | [diff] [blame] | 111 | } |
| 112 | return NULL; |
| 113 | } |
| 114 | |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 115 | /// isGlobalVariable - Return true if the given value can be coerced to a |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 116 | /// GlobalVariable. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 117 | static bool isGlobalVariable(Value *V) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 118 | if (isa<GlobalVariable>(V) || isa<ConstantPointerNull>(V)) { |
| 119 | return true; |
| 120 | } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) { |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 121 | if (CE->getOpcode() == Instruction::BitCast) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 122 | return isa<GlobalVariable>(CE->getOperand(0)); |
Dale Johannesen | 7757fff | 2008-01-30 19:00:21 +0000 | [diff] [blame] | 123 | } else if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 124 | for (unsigned int i=1; i<CE->getNumOperands(); i++) { |
Dale Johannesen | 43b8f3b | 2008-01-30 19:44:39 +0000 | [diff] [blame] | 125 | if (!CE->getOperand(i)->isNullValue()) |
Dale Johannesen | 7757fff | 2008-01-30 19:00:21 +0000 | [diff] [blame] | 126 | return false; |
| 127 | } |
| 128 | return isa<GlobalVariable>(CE->getOperand(0)); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 129 | } |
| 130 | } |
| 131 | return false; |
| 132 | } |
| 133 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 134 | //===----------------------------------------------------------------------===// |
| 135 | |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 136 | /// ApplyToFields - Target the visitor to each field of the debug information |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 137 | /// descriptor. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 138 | void DIVisitor::ApplyToFields(DebugInfoDesc *DD) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 139 | DD->ApplyToFields(this); |
| 140 | } |
| 141 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 142 | namespace { |
| 143 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 144 | //===----------------------------------------------------------------------===// |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 145 | /// DICountVisitor - This DIVisitor counts all the fields in the supplied debug |
| 146 | /// the supplied DebugInfoDesc. |
| 147 | class DICountVisitor : public DIVisitor { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 148 | private: |
| 149 | unsigned Count; // Running count of fields. |
| 150 | |
| 151 | public: |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 152 | DICountVisitor() : DIVisitor(), Count(0) {} |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 153 | |
| 154 | // Accessors. |
| 155 | unsigned getCount() const { return Count; } |
| 156 | |
| 157 | /// Apply - Count each of the fields. |
| 158 | /// |
| 159 | virtual void Apply(int &Field) { ++Count; } |
| 160 | virtual void Apply(unsigned &Field) { ++Count; } |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 161 | virtual void Apply(int64_t &Field) { ++Count; } |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 162 | virtual void Apply(uint64_t &Field) { ++Count; } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 163 | virtual void Apply(bool &Field) { ++Count; } |
| 164 | virtual void Apply(std::string &Field) { ++Count; } |
| 165 | virtual void Apply(DebugInfoDesc *&Field) { ++Count; } |
| 166 | virtual void Apply(GlobalVariable *&Field) { ++Count; } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 167 | virtual void Apply(std::vector<DebugInfoDesc *> &Field) { |
| 168 | ++Count; |
| 169 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | //===----------------------------------------------------------------------===// |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 173 | /// DIDeserializeVisitor - This DIVisitor deserializes all the fields in the |
| 174 | /// supplied DebugInfoDesc. |
| 175 | class DIDeserializeVisitor : public DIVisitor { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 176 | private: |
| 177 | DIDeserializer &DR; // Active deserializer. |
| 178 | unsigned I; // Current operand index. |
| 179 | ConstantStruct *CI; // GlobalVariable constant initializer. |
| 180 | |
| 181 | public: |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 182 | DIDeserializeVisitor(DIDeserializer &D, GlobalVariable *GV) |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 183 | : DIVisitor(), DR(D), I(0), CI(cast<ConstantStruct>(GV->getInitializer())) |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 184 | {} |
| 185 | |
| 186 | /// Apply - Set the value of each of the fields. |
| 187 | /// |
| 188 | virtual void Apply(int &Field) { |
| 189 | Constant *C = CI->getOperand(I++); |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 190 | Field = cast<ConstantInt>(C)->getSExtValue(); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 191 | } |
| 192 | virtual void Apply(unsigned &Field) { |
| 193 | Constant *C = CI->getOperand(I++); |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 194 | Field = cast<ConstantInt>(C)->getZExtValue(); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 195 | } |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 196 | virtual void Apply(int64_t &Field) { |
| 197 | Constant *C = CI->getOperand(I++); |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 198 | Field = cast<ConstantInt>(C)->getSExtValue(); |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 199 | } |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 200 | virtual void Apply(uint64_t &Field) { |
| 201 | Constant *C = CI->getOperand(I++); |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 202 | Field = cast<ConstantInt>(C)->getZExtValue(); |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 203 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 204 | virtual void Apply(bool &Field) { |
| 205 | Constant *C = CI->getOperand(I++); |
Reid Spencer | 579dca1 | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 206 | Field = cast<ConstantInt>(C)->getZExtValue(); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 207 | } |
| 208 | virtual void Apply(std::string &Field) { |
| 209 | Constant *C = CI->getOperand(I++); |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 210 | // Fills in the string if it succeeds |
| 211 | if (!GetConstantStringInfo(C, Field)) |
| 212 | Field.clear(); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 213 | } |
| 214 | virtual void Apply(DebugInfoDesc *&Field) { |
| 215 | Constant *C = CI->getOperand(I++); |
| 216 | Field = DR.Deserialize(C); |
| 217 | } |
| 218 | virtual void Apply(GlobalVariable *&Field) { |
| 219 | Constant *C = CI->getOperand(I++); |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 220 | Field = getGlobalVariable(C); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 221 | } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 222 | virtual void Apply(std::vector<DebugInfoDesc *> &Field) { |
Jim Laskey | d04c159 | 2006-07-13 15:27:42 +0000 | [diff] [blame] | 223 | Field.resize(0); |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 224 | Constant *C = CI->getOperand(I++); |
| 225 | GlobalVariable *GV = getGlobalVariable(C); |
Jim Laskey | d04c159 | 2006-07-13 15:27:42 +0000 | [diff] [blame] | 226 | if (GV->hasInitializer()) { |
| 227 | if (ConstantArray *CA = dyn_cast<ConstantArray>(GV->getInitializer())) { |
| 228 | for (unsigned i = 0, N = CA->getNumOperands(); i < N; ++i) { |
| 229 | GlobalVariable *GVE = getGlobalVariable(CA->getOperand(i)); |
| 230 | DebugInfoDesc *DE = DR.Deserialize(GVE); |
| 231 | Field.push_back(DE); |
| 232 | } |
| 233 | } else if (GV->getInitializer()->isNullValue()) { |
| 234 | if (const ArrayType *T = |
| 235 | dyn_cast<ArrayType>(GV->getType()->getElementType())) { |
| 236 | Field.resize(T->getNumElements()); |
| 237 | } |
Jim Laskey | 2b0e309 | 2006-03-08 02:07:02 +0000 | [diff] [blame] | 238 | } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 239 | } |
| 240 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 241 | }; |
| 242 | |
| 243 | //===----------------------------------------------------------------------===// |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 244 | /// DISerializeVisitor - This DIVisitor serializes all the fields in |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 245 | /// the supplied DebugInfoDesc. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 246 | class DISerializeVisitor : public DIVisitor { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 247 | private: |
| 248 | DISerializer &SR; // Active serializer. |
| 249 | std::vector<Constant*> &Elements; // Element accumulator. |
| 250 | |
| 251 | public: |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 252 | DISerializeVisitor(DISerializer &S, std::vector<Constant*> &E) |
Bill Wendling | 3a43a7f | 2008-07-02 00:50:02 +0000 | [diff] [blame^] | 253 | : DIVisitor(), SR(S), Elements(E) {} |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 254 | |
| 255 | /// Apply - Set the value of each of the fields. |
| 256 | /// |
| 257 | virtual void Apply(int &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 258 | Elements.push_back(ConstantInt::get(Type::Int32Ty, int32_t(Field))); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 259 | } |
| 260 | virtual void Apply(unsigned &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 261 | Elements.push_back(ConstantInt::get(Type::Int32Ty, uint32_t(Field))); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 262 | } |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 263 | virtual void Apply(int64_t &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 264 | Elements.push_back(ConstantInt::get(Type::Int64Ty, int64_t(Field))); |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 265 | } |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 266 | virtual void Apply(uint64_t &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 267 | Elements.push_back(ConstantInt::get(Type::Int64Ty, uint64_t(Field))); |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 268 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 269 | virtual void Apply(bool &Field) { |
Reid Spencer | 579dca1 | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 270 | Elements.push_back(ConstantInt::get(Type::Int1Ty, Field)); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 271 | } |
| 272 | virtual void Apply(std::string &Field) { |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 273 | Elements.push_back(SR.getString(Field)); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 274 | } |
| 275 | virtual void Apply(DebugInfoDesc *&Field) { |
| 276 | GlobalVariable *GV = NULL; |
| 277 | |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 278 | // If non-NULL then convert to global. |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 279 | if (Field) GV = SR.Serialize(Field); |
| 280 | |
| 281 | // FIXME - At some point should use specific type. |
| 282 | const PointerType *EmptyTy = SR.getEmptyStructPtrType(); |
| 283 | |
| 284 | if (GV) { |
| 285 | // Set to pointer to global. |
Reid Spencer | 15f46d6 | 2006-12-12 01:17:41 +0000 | [diff] [blame] | 286 | Elements.push_back(ConstantExpr::getBitCast(GV, EmptyTy)); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 287 | } else { |
| 288 | // Use NULL. |
| 289 | Elements.push_back(ConstantPointerNull::get(EmptyTy)); |
| 290 | } |
| 291 | } |
| 292 | virtual void Apply(GlobalVariable *&Field) { |
| 293 | const PointerType *EmptyTy = SR.getEmptyStructPtrType(); |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 294 | if (Field) { |
Reid Spencer | 15f46d6 | 2006-12-12 01:17:41 +0000 | [diff] [blame] | 295 | Elements.push_back(ConstantExpr::getBitCast(Field, EmptyTy)); |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 296 | } else { |
| 297 | Elements.push_back(ConstantPointerNull::get(EmptyTy)); |
| 298 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 299 | } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 300 | virtual void Apply(std::vector<DebugInfoDesc *> &Field) { |
| 301 | const PointerType *EmptyTy = SR.getEmptyStructPtrType(); |
| 302 | unsigned N = Field.size(); |
| 303 | ArrayType *AT = ArrayType::get(EmptyTy, N); |
| 304 | std::vector<Constant *> ArrayElements; |
| 305 | |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 306 | for (unsigned i = 0; i < N; ++i) { |
Jim Laskey | d04c159 | 2006-07-13 15:27:42 +0000 | [diff] [blame] | 307 | if (DebugInfoDesc *Element = Field[i]) { |
| 308 | GlobalVariable *GVE = SR.Serialize(Element); |
Reid Spencer | 15f46d6 | 2006-12-12 01:17:41 +0000 | [diff] [blame] | 309 | Constant *CE = ConstantExpr::getBitCast(GVE, EmptyTy); |
Jim Laskey | d04c159 | 2006-07-13 15:27:42 +0000 | [diff] [blame] | 310 | ArrayElements.push_back(cast<Constant>(CE)); |
| 311 | } else { |
| 312 | ArrayElements.push_back(ConstantPointerNull::get(EmptyTy)); |
| 313 | } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | Constant *CA = ConstantArray::get(AT, ArrayElements); |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 317 | GlobalVariable *CAGV = new GlobalVariable(AT, true, |
| 318 | GlobalValue::InternalLinkage, |
| 319 | CA, "llvm.dbg.array", |
| 320 | SR.getModule()); |
Jim Laskey | 7809811 | 2006-03-07 22:00:35 +0000 | [diff] [blame] | 321 | CAGV->setSection("llvm.metadata"); |
Reid Spencer | 15f46d6 | 2006-12-12 01:17:41 +0000 | [diff] [blame] | 322 | Constant *CAE = ConstantExpr::getBitCast(CAGV, EmptyTy); |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 323 | Elements.push_back(CAE); |
| 324 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 325 | }; |
| 326 | |
| 327 | //===----------------------------------------------------------------------===// |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 328 | /// DIGetTypesVisitor - This DIVisitor gathers all the field types in |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 329 | /// the supplied DebugInfoDesc. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 330 | class DIGetTypesVisitor : public DIVisitor { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 331 | private: |
| 332 | DISerializer &SR; // Active serializer. |
| 333 | std::vector<const Type*> &Fields; // Type accumulator. |
| 334 | |
| 335 | public: |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 336 | DIGetTypesVisitor(DISerializer &S, std::vector<const Type*> &F) |
Bill Wendling | 3a43a7f | 2008-07-02 00:50:02 +0000 | [diff] [blame^] | 337 | : DIVisitor(), SR(S), Fields(F) {} |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 338 | |
| 339 | /// Apply - Set the value of each of the fields. |
| 340 | /// |
| 341 | virtual void Apply(int &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 342 | Fields.push_back(Type::Int32Ty); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 343 | } |
| 344 | virtual void Apply(unsigned &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 345 | Fields.push_back(Type::Int32Ty); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 346 | } |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 347 | virtual void Apply(int64_t &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 348 | Fields.push_back(Type::Int64Ty); |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 349 | } |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 350 | virtual void Apply(uint64_t &Field) { |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 351 | Fields.push_back(Type::Int64Ty); |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 352 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 353 | virtual void Apply(bool &Field) { |
Reid Spencer | 4fe16d6 | 2007-01-11 18:21:29 +0000 | [diff] [blame] | 354 | Fields.push_back(Type::Int1Ty); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 355 | } |
| 356 | virtual void Apply(std::string &Field) { |
| 357 | Fields.push_back(SR.getStrPtrType()); |
| 358 | } |
| 359 | virtual void Apply(DebugInfoDesc *&Field) { |
| 360 | // FIXME - At some point should use specific type. |
| 361 | const PointerType *EmptyTy = SR.getEmptyStructPtrType(); |
| 362 | Fields.push_back(EmptyTy); |
| 363 | } |
| 364 | virtual void Apply(GlobalVariable *&Field) { |
| 365 | const PointerType *EmptyTy = SR.getEmptyStructPtrType(); |
| 366 | Fields.push_back(EmptyTy); |
| 367 | } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 368 | virtual void Apply(std::vector<DebugInfoDesc *> &Field) { |
| 369 | const PointerType *EmptyTy = SR.getEmptyStructPtrType(); |
| 370 | Fields.push_back(EmptyTy); |
| 371 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 372 | }; |
| 373 | |
| 374 | //===----------------------------------------------------------------------===// |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 375 | /// DIVerifyVisitor - This DIVisitor verifies all the field types against |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 376 | /// a constant initializer. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 377 | class DIVerifyVisitor : public DIVisitor { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 378 | private: |
| 379 | DIVerifier &VR; // Active verifier. |
| 380 | bool IsValid; // Validity status. |
| 381 | unsigned I; // Current operand index. |
| 382 | ConstantStruct *CI; // GlobalVariable constant initializer. |
| 383 | |
| 384 | public: |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 385 | DIVerifyVisitor(DIVerifier &V, GlobalVariable *GV) |
| 386 | : DIVisitor() |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 387 | , VR(V) |
| 388 | , IsValid(true) |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 389 | , I(0) |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 390 | , CI(cast<ConstantStruct>(GV->getInitializer())) |
| 391 | { |
| 392 | } |
| 393 | |
| 394 | // Accessors. |
| 395 | bool isValid() const { return IsValid; } |
| 396 | |
| 397 | /// Apply - Set the value of each of the fields. |
| 398 | /// |
| 399 | virtual void Apply(int &Field) { |
| 400 | Constant *C = CI->getOperand(I++); |
| 401 | IsValid = IsValid && isa<ConstantInt>(C); |
| 402 | } |
| 403 | virtual void Apply(unsigned &Field) { |
| 404 | Constant *C = CI->getOperand(I++); |
| 405 | IsValid = IsValid && isa<ConstantInt>(C); |
| 406 | } |
Jim Laskey | f8913f1 | 2006-03-01 17:53:02 +0000 | [diff] [blame] | 407 | virtual void Apply(int64_t &Field) { |
| 408 | Constant *C = CI->getOperand(I++); |
| 409 | IsValid = IsValid && isa<ConstantInt>(C); |
| 410 | } |
Jim Laskey | f4afdd9 | 2006-02-23 16:58:18 +0000 | [diff] [blame] | 411 | virtual void Apply(uint64_t &Field) { |
| 412 | Constant *C = CI->getOperand(I++); |
| 413 | IsValid = IsValid && isa<ConstantInt>(C); |
| 414 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 415 | virtual void Apply(bool &Field) { |
| 416 | Constant *C = CI->getOperand(I++); |
Reid Spencer | 4fe16d6 | 2007-01-11 18:21:29 +0000 | [diff] [blame] | 417 | IsValid = IsValid && isa<ConstantInt>(C) && C->getType() == Type::Int1Ty; |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 418 | } |
| 419 | virtual void Apply(std::string &Field) { |
| 420 | Constant *C = CI->getOperand(I++); |
Jim Laskey | 26a3687 | 2007-01-03 13:46:20 +0000 | [diff] [blame] | 421 | IsValid = IsValid && |
| 422 | (!C || isStringValue(C) || C->isNullValue()); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 423 | } |
| 424 | virtual void Apply(DebugInfoDesc *&Field) { |
| 425 | // FIXME - Prepare the correct descriptor. |
| 426 | Constant *C = CI->getOperand(I++); |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 427 | IsValid = IsValid && isGlobalVariable(C); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 428 | } |
| 429 | virtual void Apply(GlobalVariable *&Field) { |
| 430 | Constant *C = CI->getOperand(I++); |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 431 | IsValid = IsValid && isGlobalVariable(C); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 432 | } |
Jim Laskey | 45ccae5 | 2006-02-28 20:15:07 +0000 | [diff] [blame] | 433 | virtual void Apply(std::vector<DebugInfoDesc *> &Field) { |
| 434 | Constant *C = CI->getOperand(I++); |
| 435 | IsValid = IsValid && isGlobalVariable(C); |
| 436 | if (!IsValid) return; |
| 437 | |
| 438 | GlobalVariable *GV = getGlobalVariable(C); |
| 439 | IsValid = IsValid && GV && GV->hasInitializer(); |
| 440 | if (!IsValid) return; |
| 441 | |
| 442 | ConstantArray *CA = dyn_cast<ConstantArray>(GV->getInitializer()); |
| 443 | IsValid = IsValid && CA; |
| 444 | if (!IsValid) return; |
| 445 | |
| 446 | for (unsigned i = 0, N = CA->getNumOperands(); IsValid && i < N; ++i) { |
| 447 | IsValid = IsValid && isGlobalVariable(CA->getOperand(i)); |
| 448 | if (!IsValid) return; |
| 449 | |
| 450 | GlobalVariable *GVE = getGlobalVariable(CA->getOperand(i)); |
| 451 | VR.Verify(GVE); |
| 452 | } |
| 453 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 454 | }; |
| 455 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 456 | } |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 457 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 458 | //===----------------------------------------------------------------------===// |
| 459 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 460 | DebugInfoDesc *DIDeserializer::Deserialize(Value *V) { |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 461 | return Deserialize(getGlobalVariable(V)); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 462 | } |
| 463 | DebugInfoDesc *DIDeserializer::Deserialize(GlobalVariable *GV) { |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 464 | // Handle NULL. |
| 465 | if (!GV) return NULL; |
| 466 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 467 | // Check to see if it has been already deserialized. |
| 468 | DebugInfoDesc *&Slot = GlobalDescs[GV]; |
| 469 | if (Slot) return Slot; |
| 470 | |
| 471 | // Get the Tag from the global. |
| 472 | unsigned Tag = DebugInfoDesc::TagFromGlobal(GV); |
| 473 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 474 | // Create an empty instance of the correct sort. |
| 475 | Slot = DebugInfoDesc::DescFactory(Tag); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 476 | |
Jim Laskey | 2140798 | 2006-03-14 18:37:57 +0000 | [diff] [blame] | 477 | // If not a user defined descriptor. |
| 478 | if (Slot) { |
| 479 | // Deserialize the fields. |
| 480 | DIDeserializeVisitor DRAM(*this, GV); |
| 481 | DRAM.ApplyToFields(Slot); |
| 482 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 483 | |
| 484 | return Slot; |
| 485 | } |
| 486 | |
| 487 | //===----------------------------------------------------------------------===// |
| 488 | |
| 489 | /// getStrPtrType - Return a "sbyte *" type. |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 490 | /// |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 491 | const PointerType *DISerializer::getStrPtrType() { |
| 492 | // If not already defined. |
| 493 | if (!StrPtrTy) { |
| 494 | // Construct the pointer to signed bytes. |
Christopher Lamb | 43ad6b3 | 2007-12-17 01:12:55 +0000 | [diff] [blame] | 495 | StrPtrTy = PointerType::getUnqual(Type::Int8Ty); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | return StrPtrTy; |
| 499 | } |
| 500 | |
| 501 | /// getEmptyStructPtrType - Return a "{ }*" type. |
| 502 | /// |
| 503 | const PointerType *DISerializer::getEmptyStructPtrType() { |
| 504 | // If not already defined. |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 505 | if (EmptyStructPtrTy) return EmptyStructPtrTy; |
Bill Wendling | e6b6bae | 2008-06-27 00:56:36 +0000 | [diff] [blame] | 506 | |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 507 | // Construct the pointer to empty structure type. |
Bill Wendling | 3a43a7f | 2008-07-02 00:50:02 +0000 | [diff] [blame^] | 508 | const StructType *EmptyStructTy = StructType::get(NULL, NULL); |
Bill Wendling | 0ac1b6d | 2008-06-27 01:32:08 +0000 | [diff] [blame] | 509 | |
| 510 | // Construct the pointer to empty structure type. |
| 511 | EmptyStructPtrTy = PointerType::getUnqual(EmptyStructTy); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 512 | return EmptyStructPtrTy; |
| 513 | } |
| 514 | |
| 515 | /// getTagType - Return the type describing the specified descriptor (via tag.) |
| 516 | /// |
| 517 | const StructType *DISerializer::getTagType(DebugInfoDesc *DD) { |
| 518 | // Attempt to get the previously defined type. |
| 519 | StructType *&Ty = TagTypes[DD->getTag()]; |
| 520 | |
| 521 | // If not already defined. |
| 522 | if (!Ty) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 523 | // Set up fields vector. |
| 524 | std::vector<const Type*> Fields; |
Bill Wendling | 3a43a7f | 2008-07-02 00:50:02 +0000 | [diff] [blame^] | 525 | |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 526 | // Get types of fields. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 527 | DIGetTypesVisitor GTAM(*this, Fields); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 528 | GTAM.ApplyToFields(DD); |
| 529 | |
| 530 | // Construct structured type. |
| 531 | Ty = StructType::get(Fields); |
| 532 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 533 | // Register type name with module. |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 534 | M->addTypeName(DD->getTypeString(), Ty); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | return Ty; |
| 538 | } |
| 539 | |
| 540 | /// getString - Construct the string as constant string global. |
| 541 | /// |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 542 | Constant *DISerializer::getString(const std::string &String) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 543 | // Check string cache for previous edition. |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 544 | Constant *&Slot = StringCache[String.c_str()]; |
Bill Wendling | e6b6bae | 2008-06-27 00:56:36 +0000 | [diff] [blame] | 545 | |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 546 | // Return Constant if previously defined. |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 547 | if (Slot) return Slot; |
Bill Wendling | e6b6bae | 2008-06-27 00:56:36 +0000 | [diff] [blame] | 548 | |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 549 | // If empty string then use a sbyte* null instead. |
| 550 | if (String.empty()) { |
| 551 | Slot = ConstantPointerNull::get(getStrPtrType()); |
| 552 | } else { |
| 553 | // Construct string as an llvm constant. |
| 554 | Constant *ConstStr = ConstantArray::get(String); |
Bill Wendling | e6b6bae | 2008-06-27 00:56:36 +0000 | [diff] [blame] | 555 | |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 556 | // Otherwise create and return a new string global. |
| 557 | GlobalVariable *StrGV = new GlobalVariable(ConstStr->getType(), true, |
| 558 | GlobalVariable::InternalLinkage, |
Devang Patel | 1e4c23a | 2007-05-11 23:14:43 +0000 | [diff] [blame] | 559 | ConstStr, ".str", M); |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 560 | StrGV->setSection("llvm.metadata"); |
Bill Wendling | e6b6bae | 2008-06-27 00:56:36 +0000 | [diff] [blame] | 561 | |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 562 | // Convert to generic string pointer. |
Reid Spencer | 15f46d6 | 2006-12-12 01:17:41 +0000 | [diff] [blame] | 563 | Slot = ConstantExpr::getBitCast(StrGV, getStrPtrType()); |
Jim Laskey | 9d0ff8e | 2006-03-15 19:09:58 +0000 | [diff] [blame] | 564 | } |
Bill Wendling | e6b6bae | 2008-06-27 00:56:36 +0000 | [diff] [blame] | 565 | |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 566 | return Slot; |
| 567 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | /// Serialize - Recursively cast the specified descriptor into a GlobalVariable |
| 571 | /// so that it can be serialized to a .bc or .ll file. |
| 572 | GlobalVariable *DISerializer::Serialize(DebugInfoDesc *DD) { |
| 573 | // Check if the DebugInfoDesc is already in the map. |
| 574 | GlobalVariable *&Slot = DescGlobals[DD]; |
| 575 | |
| 576 | // See if DebugInfoDesc exists, if so return prior GlobalVariable. |
| 577 | if (Slot) return Slot; |
| 578 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 579 | // Get the type associated with the Tag. |
| 580 | const StructType *Ty = getTagType(DD); |
| 581 | |
| 582 | // Create the GlobalVariable early to prevent infinite recursion. |
Bill Wendling | a28cd12 | 2008-07-01 22:08:01 +0000 | [diff] [blame] | 583 | GlobalVariable *GV = |
Bill Wendling | 12432cf | 2008-07-02 00:35:47 +0000 | [diff] [blame] | 584 | new GlobalVariable(Ty, true, DD->getLinkage(), |
Bill Wendling | a28cd12 | 2008-07-01 22:08:01 +0000 | [diff] [blame] | 585 | NULL, DD->getDescString(), M); |
Jim Laskey | 7809811 | 2006-03-07 22:00:35 +0000 | [diff] [blame] | 586 | GV->setSection("llvm.metadata"); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 587 | |
| 588 | // Insert new GlobalVariable in DescGlobals map. |
| 589 | Slot = GV; |
| 590 | |
| 591 | // Set up elements vector |
| 592 | std::vector<Constant*> Elements; |
Bill Wendling | 3a43a7f | 2008-07-02 00:50:02 +0000 | [diff] [blame^] | 593 | |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 594 | // Add fields. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 595 | DISerializeVisitor SRAM(*this, Elements); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 596 | SRAM.ApplyToFields(DD); |
| 597 | |
| 598 | // Set the globals initializer. |
| 599 | GV->setInitializer(ConstantStruct::get(Ty, Elements)); |
| 600 | |
| 601 | return GV; |
| 602 | } |
| 603 | |
Devang Patel | 962e075 | 2007-11-30 00:51:33 +0000 | [diff] [blame] | 604 | /// addDescriptor - Directly connect DD with existing GV. |
| 605 | void DISerializer::addDescriptor(DebugInfoDesc *DD, |
| 606 | GlobalVariable *GV) { |
| 607 | DescGlobals[DD] = GV; |
| 608 | } |
| 609 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 610 | //===----------------------------------------------------------------------===// |
| 611 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 612 | /// Verify - Return true if the GlobalVariable appears to be a valid |
| 613 | /// serialization of a DebugInfoDesc. |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 614 | bool DIVerifier::Verify(Value *V) { |
Jim Laskey | aaa80eb | 2006-03-28 01:30:18 +0000 | [diff] [blame] | 615 | return !V || Verify(getGlobalVariable(V)); |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 616 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 617 | bool DIVerifier::Verify(GlobalVariable *GV) { |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 618 | // NULLs are valid. |
| 619 | if (!GV) return true; |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 620 | |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 621 | // Check prior validity. |
| 622 | unsigned &ValiditySlot = Validity[GV]; |
| 623 | |
| 624 | // If visited before then use old state. |
| 625 | if (ValiditySlot) return ValiditySlot == Valid; |
| 626 | |
| 627 | // Assume validity for the time being (recursion.) |
| 628 | ValiditySlot = Valid; |
Jim Laskey | a8299de | 2006-03-27 01:51:47 +0000 | [diff] [blame] | 629 | |
| 630 | // Make sure the global is internal or link once (anchor.) |
| 631 | if (GV->getLinkage() != GlobalValue::InternalLinkage && |
| 632 | GV->getLinkage() != GlobalValue::LinkOnceLinkage) { |
| 633 | ValiditySlot = Invalid; |
| 634 | return false; |
| 635 | } |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 636 | |
Jim Laskey | 2bbff6d | 2006-11-30 18:29:23 +0000 | [diff] [blame] | 637 | // Get the Tag. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 638 | unsigned Tag = DebugInfoDesc::TagFromGlobal(GV); |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 639 | |
| 640 | // Check for user defined descriptors. |
Jim Laskey | 2bbff6d | 2006-11-30 18:29:23 +0000 | [diff] [blame] | 641 | if (Tag == DW_TAG_invalid) { |
| 642 | ValiditySlot = Valid; |
| 643 | return true; |
| 644 | } |
| 645 | |
| 646 | // Get the Version. |
| 647 | unsigned Version = DebugInfoDesc::VersionFromGlobal(GV); |
| 648 | |
| 649 | // Check for version mismatch. |
| 650 | if (Version != LLVMDebugVersion) { |
| 651 | ValiditySlot = Invalid; |
| 652 | return false; |
| 653 | } |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 654 | |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 655 | // Construct an empty DebugInfoDesc. |
| 656 | DebugInfoDesc *DD = DebugInfoDesc::DescFactory(Tag); |
Jim Laskey | 2140798 | 2006-03-14 18:37:57 +0000 | [diff] [blame] | 657 | |
| 658 | // Allow for user defined descriptors. |
| 659 | if (!DD) return true; |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 660 | |
| 661 | // Get the initializer constant. |
| 662 | ConstantStruct *CI = cast<ConstantStruct>(GV->getInitializer()); |
| 663 | |
| 664 | // Get the operand count. |
| 665 | unsigned N = CI->getNumOperands(); |
| 666 | |
| 667 | // Get the field count. |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 668 | unsigned &CountSlot = Counts[Tag]; |
| 669 | if (!CountSlot) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 670 | // Check the operand count to the field count |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 671 | DICountVisitor CTAM; |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 672 | CTAM.ApplyToFields(DD); |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 673 | CountSlot = CTAM.getCount(); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Jim Laskey | 2140798 | 2006-03-14 18:37:57 +0000 | [diff] [blame] | 676 | // Field count must be at most equal operand count. |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 677 | if (CountSlot > N) { |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 678 | delete DD; |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 679 | ValiditySlot = Invalid; |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 680 | return false; |
| 681 | } |
| 682 | |
| 683 | // Check each field for valid type. |
Jim Laskey | c2f0c8d | 2006-02-06 19:12:02 +0000 | [diff] [blame] | 684 | DIVerifyVisitor VRAM(*this, GV); |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 685 | VRAM.ApplyToFields(DD); |
| 686 | |
| 687 | // Release empty DebugInfoDesc. |
| 688 | delete DD; |
| 689 | |
Jim Laskey | 98e0410 | 2006-03-26 22:45:20 +0000 | [diff] [blame] | 690 | // If fields are not valid. |
| 691 | if (!VRAM.isValid()) { |
| 692 | ValiditySlot = Invalid; |
| 693 | return false; |
| 694 | } |
| 695 | |
| 696 | return true; |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 699 | /// isVerified - Return true if the specified GV has already been |
| 700 | /// verified as a debug information descriptor. |
| 701 | bool DIVerifier::isVerified(GlobalVariable *GV) { |
| 702 | unsigned &ValiditySlot = Validity[GV]; |
| 703 | if (ValiditySlot) return ValiditySlot == Valid; |
| 704 | return false; |
| 705 | } |
| 706 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 707 | //===----------------------------------------------------------------------===// |
| 708 | |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 709 | DebugScope::~DebugScope() { |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 710 | for (unsigned i = 0, e = Scopes.size(); i < e; ++i) delete Scopes[i]; |
| 711 | for (unsigned i = 0, e = Variables.size(); i < e; ++i) delete Variables[i]; |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | //===----------------------------------------------------------------------===// |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 715 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 716 | MachineModuleInfo::MachineModuleInfo() |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 717 | : ImmutablePass((intptr_t)&ID) |
| 718 | , DR() |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 719 | , VR() |
Jim Laskey | 86cbdba | 2006-02-06 15:33:21 +0000 | [diff] [blame] | 720 | , CompileUnits() |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 721 | , Directories() |
| 722 | , SourceFiles() |
| 723 | , Lines() |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 724 | , LabelIDList() |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 725 | , ScopeMap() |
| 726 | , RootScope(NULL) |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 727 | , FrameMoves() |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 728 | , LandingPads() |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 729 | , Personalities() |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 730 | , CallsEHReturn(0) |
| 731 | , CallsUnwindInit(0) |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 732 | { |
| 733 | // Always emit "no personality" info |
| 734 | Personalities.push_back(NULL); |
| 735 | } |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 736 | MachineModuleInfo::~MachineModuleInfo() { |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 737 | |
| 738 | } |
| 739 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 740 | /// doInitialization - Initialize the state for a new module. |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 741 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 742 | bool MachineModuleInfo::doInitialization() { |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 743 | return false; |
Jim Laskey | 6af5681 | 2006-01-04 13:36:38 +0000 | [diff] [blame] | 744 | } |
| 745 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 746 | /// doFinalization - Tear down the state after completion of a module. |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 747 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 748 | bool MachineModuleInfo::doFinalization() { |
Jim Laskey | b2efb85 | 2006-01-04 22:28:25 +0000 | [diff] [blame] | 749 | return false; |
| 750 | } |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 751 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 752 | /// BeginFunction - Begin gathering function meta information. |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 753 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 754 | void MachineModuleInfo::BeginFunction(MachineFunction *MF) { |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 755 | // Coming soon. |
| 756 | } |
| 757 | |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 758 | /// EndFunction - Discard function meta information. |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 759 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 760 | void MachineModuleInfo::EndFunction() { |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 761 | // Clean up scope information. |
| 762 | if (RootScope) { |
| 763 | delete RootScope; |
| 764 | ScopeMap.clear(); |
| 765 | RootScope = NULL; |
| 766 | } |
| 767 | |
Jim Laskey | b82313f | 2007-02-01 16:31:34 +0000 | [diff] [blame] | 768 | // Clean up line info. |
| 769 | Lines.clear(); |
| 770 | |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 771 | // Clean up frame info. |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 772 | FrameMoves.clear(); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 773 | |
| 774 | // Clean up exception info. |
| 775 | LandingPads.clear(); |
| 776 | TypeInfos.clear(); |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 777 | FilterIds.clear(); |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 778 | FilterEnds.clear(); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 779 | CallsEHReturn = 0; |
| 780 | CallsUnwindInit = 0; |
Jim Laskey | 4188699 | 2006-04-07 16:34:46 +0000 | [diff] [blame] | 781 | } |
| 782 | |
Jim Laskey | d96185a | 2006-02-13 12:50:39 +0000 | [diff] [blame] | 783 | /// getDescFor - Convert a Value to a debug information descriptor. |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 784 | /// |
Jim Laskey | d96185a | 2006-02-13 12:50:39 +0000 | [diff] [blame] | 785 | // FIXME - use new Value type when available. |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 786 | DebugInfoDesc *MachineModuleInfo::getDescFor(Value *V) { |
Jim Laskey | ce72b17 | 2006-02-11 01:01:30 +0000 | [diff] [blame] | 787 | return DR.Deserialize(V); |
| 788 | } |
| 789 | |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 790 | /// AnalyzeModule - Scan the module for global debug information. |
| 791 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 792 | void MachineModuleInfo::AnalyzeModule(Module &M) { |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 793 | SetupCompileUnits(M); |
Dale Johannesen | 48ae02f | 2008-01-16 19:59:28 +0000 | [diff] [blame] | 794 | |
| 795 | // Insert functions in the llvm.used array into UsedFunctions. |
| 796 | GlobalVariable *GV = M.getGlobalVariable("llvm.used"); |
| 797 | if (!GV || !GV->hasInitializer()) return; |
| 798 | |
| 799 | // Should be an array of 'i8*'. |
| 800 | ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer()); |
| 801 | if (InitList == 0) return; |
| 802 | |
| 803 | for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) { |
| 804 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(InitList->getOperand(i))) |
| 805 | if (CE->getOpcode() == Instruction::BitCast) |
| 806 | if (Function *F = dyn_cast<Function>(CE->getOperand(0))) |
| 807 | UsedFunctions.insert(F); |
| 808 | } |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | /// SetupCompileUnits - Set up the unique vector of compile units. |
| 812 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 813 | void MachineModuleInfo::SetupCompileUnits(Module &M) { |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 814 | std::vector<void*> CUList; |
| 815 | CompileUnitDesc CUD; |
| 816 | getAnchoredDescriptors(M, &CUD, CUList); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 817 | |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 818 | for (unsigned i = 0, e = CUList.size(); i < e; i++) |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 819 | CompileUnits.insert((CompileUnitDesc*)CUList[i]); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Jim Laskey | 6e87c0e | 2006-01-26 21:22:49 +0000 | [diff] [blame] | 822 | /// getCompileUnits - Return a vector of debug compile units. |
| 823 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 824 | const UniqueVector<CompileUnitDesc *> MachineModuleInfo::getCompileUnits()const{ |
Jim Laskey | 6e87c0e | 2006-01-26 21:22:49 +0000 | [diff] [blame] | 825 | return CompileUnits; |
| 826 | } |
| 827 | |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 828 | /// getAnchoredDescriptors - Return a vector of anchored debug descriptors. |
| 829 | /// |
| 830 | void |
| 831 | MachineModuleInfo::getAnchoredDescriptors(Module &M, const AnchoredDesc *Desc, |
| 832 | std::vector<void*> &AnchoredDescs) { |
Bill Wendling | 0ac1b6d | 2008-06-27 01:32:08 +0000 | [diff] [blame] | 833 | std::vector<GlobalVariable*> Globals; |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 834 | getGlobalVariablesUsing(M, Desc->getAnchorString(), Globals); |
| 835 | |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 836 | for (unsigned i = 0, e = Globals.size(); i < e; ++i) { |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 837 | GlobalVariable *GV = Globals[i]; |
| 838 | |
| 839 | // FIXME - In the short term, changes are too drastic to continue. |
| 840 | if (DebugInfoDesc::TagFromGlobal(GV) == Desc->getTag() && |
| 841 | DebugInfoDesc::VersionFromGlobal(GV) == LLVMDebugVersion) |
| 842 | AnchoredDescs.push_back(DR.Deserialize(GV)); |
| 843 | } |
| 844 | } |
| 845 | |
Jim Laskey | 0420f2a | 2006-02-22 19:02:11 +0000 | [diff] [blame] | 846 | /// getGlobalVariablesUsing - Return all of the GlobalVariables that use the |
| 847 | /// named GlobalVariable. |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 848 | void |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 849 | MachineModuleInfo::getGlobalVariablesUsing(Module &M, |
Bill Wendling | 305635a | 2008-06-27 00:09:40 +0000 | [diff] [blame] | 850 | const std::string &RootName, |
| 851 | std::vector<GlobalVariable*> &Globals) { |
| 852 | return ::getGlobalVariablesUsing(M, RootName, Globals); |
Jim Laskey | b3e789a | 2006-01-26 20:21:46 +0000 | [diff] [blame] | 853 | } |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 854 | |
Evan Cheng | a647c92 | 2008-02-01 02:05:57 +0000 | [diff] [blame] | 855 | /// RecordSourceLine - Records location information and associates it with a |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 856 | /// debug label. Returns a unique label ID used to generate a label and |
| 857 | /// provide correspondence to the source line list. |
Evan Cheng | a647c92 | 2008-02-01 02:05:57 +0000 | [diff] [blame] | 858 | unsigned MachineModuleInfo::RecordSourceLine(unsigned Line, unsigned Column, |
| 859 | unsigned Source) { |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 860 | unsigned ID = NextLabelID(); |
Chris Lattner | 8466b21 | 2006-10-17 22:06:46 +0000 | [diff] [blame] | 861 | Lines.push_back(SourceLineInfo(Line, Column, Source, ID)); |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 862 | return ID; |
| 863 | } |
| 864 | |
| 865 | /// RecordSource - Register a source file with debug info. Returns an source |
| 866 | /// ID. |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 867 | unsigned MachineModuleInfo::RecordSource(const std::string &Directory, |
| 868 | const std::string &Source) { |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 869 | unsigned DirectoryID = Directories.insert(Directory); |
| 870 | return SourceFiles.insert(SourceFileInfo(DirectoryID, Source)); |
| 871 | } |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 872 | unsigned MachineModuleInfo::RecordSource(const CompileUnitDesc *CompileUnit) { |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 873 | return RecordSource(CompileUnit->getDirectory(), |
| 874 | CompileUnit->getFileName()); |
| 875 | } |
| 876 | |
| 877 | /// RecordRegionStart - Indicate the start of a region. |
| 878 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 879 | unsigned MachineModuleInfo::RecordRegionStart(Value *V) { |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 880 | // FIXME - need to be able to handle split scopes because of bb cloning. |
| 881 | DebugInfoDesc *ScopeDesc = DR.Deserialize(V); |
| 882 | DebugScope *Scope = getOrCreateScope(ScopeDesc); |
| 883 | unsigned ID = NextLabelID(); |
| 884 | if (!Scope->getStartLabelID()) Scope->setStartLabelID(ID); |
| 885 | return ID; |
| 886 | } |
| 887 | |
| 888 | /// RecordRegionEnd - Indicate the end of a region. |
| 889 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 890 | unsigned MachineModuleInfo::RecordRegionEnd(Value *V) { |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 891 | // FIXME - need to be able to handle split scopes because of bb cloning. |
| 892 | DebugInfoDesc *ScopeDesc = DR.Deserialize(V); |
| 893 | DebugScope *Scope = getOrCreateScope(ScopeDesc); |
| 894 | unsigned ID = NextLabelID(); |
| 895 | Scope->setEndLabelID(ID); |
| 896 | return ID; |
| 897 | } |
| 898 | |
| 899 | /// RecordVariable - Indicate the declaration of a local variable. |
| 900 | /// |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 901 | void MachineModuleInfo::RecordVariable(GlobalValue *GV, unsigned FrameIndex) { |
| 902 | VariableDesc *VD = cast<VariableDesc>(DR.Deserialize(GV)); |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 903 | DebugScope *Scope = getOrCreateScope(VD->getContext()); |
| 904 | DebugVariable *DV = new DebugVariable(VD, FrameIndex); |
| 905 | Scope->AddVariable(DV); |
| 906 | } |
| 907 | |
| 908 | /// getOrCreateScope - Returns the scope associated with the given descriptor. |
| 909 | /// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 910 | DebugScope *MachineModuleInfo::getOrCreateScope(DebugInfoDesc *ScopeDesc) { |
Jim Laskey | b8509c5 | 2006-03-23 18:07:55 +0000 | [diff] [blame] | 911 | DebugScope *&Slot = ScopeMap[ScopeDesc]; |
| 912 | if (!Slot) { |
| 913 | // FIXME - breaks down when the context is an inlined function. |
| 914 | DebugInfoDesc *ParentDesc = NULL; |
| 915 | if (BlockDesc *Block = dyn_cast<BlockDesc>(ScopeDesc)) { |
| 916 | ParentDesc = Block->getContext(); |
| 917 | } |
| 918 | DebugScope *Parent = ParentDesc ? getOrCreateScope(ParentDesc) : NULL; |
| 919 | Slot = new DebugScope(Parent, ScopeDesc); |
| 920 | if (Parent) { |
| 921 | Parent->AddScope(Slot); |
| 922 | } else if (RootScope) { |
| 923 | // FIXME - Add inlined function scopes to the root so we can delete |
| 924 | // them later. Long term, handle inlined functions properly. |
| 925 | RootScope->AddScope(Slot); |
| 926 | } else { |
| 927 | // First function is top level function. |
| 928 | RootScope = Slot; |
| 929 | } |
| 930 | } |
| 931 | return Slot; |
| 932 | } |
| 933 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 934 | //===-EH-------------------------------------------------------------------===// |
| 935 | |
| 936 | /// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the |
| 937 | /// specified MachineBasicBlock. |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 938 | LandingPadInfo & |
| 939 | MachineModuleInfo::getOrCreateLandingPadInfo(MachineBasicBlock *LandingPad) { |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 940 | unsigned N = LandingPads.size(); |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 941 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 942 | for (unsigned i = 0; i < N; ++i) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 943 | LandingPadInfo &LP = LandingPads[i]; |
| 944 | if (LP.LandingPadBlock == LandingPad) |
| 945 | return LP; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | LandingPads.push_back(LandingPadInfo(LandingPad)); |
| 949 | return LandingPads[N]; |
| 950 | } |
| 951 | |
| 952 | /// addInvoke - Provide the begin and end labels of an invoke style call and |
| 953 | /// associate it with a try landing pad block. |
| 954 | void MachineModuleInfo::addInvoke(MachineBasicBlock *LandingPad, |
| 955 | unsigned BeginLabel, unsigned EndLabel) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 956 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 957 | LP.BeginLabels.push_back(BeginLabel); |
| 958 | LP.EndLabels.push_back(EndLabel); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | /// addLandingPad - Provide the label of a try LandingPad block. |
| 962 | /// |
| 963 | unsigned MachineModuleInfo::addLandingPad(MachineBasicBlock *LandingPad) { |
| 964 | unsigned LandingPadLabel = NextLabelID(); |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 965 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
| 966 | LP.LandingPadLabel = LandingPadLabel; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 967 | return LandingPadLabel; |
| 968 | } |
| 969 | |
| 970 | /// addPersonality - Provide the personality function for the exception |
| 971 | /// information. |
| 972 | void MachineModuleInfo::addPersonality(MachineBasicBlock *LandingPad, |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 973 | Function *Personality) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 974 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 975 | LP.Personality = Personality; |
Anton Korobeynikov | 0ff3ca4 | 2007-05-12 22:36:25 +0000 | [diff] [blame] | 976 | |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 977 | for (unsigned i = 0, e = Personalities.size(); i < e; ++i) |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 978 | if (Personalities[i] == Personality) |
| 979 | return; |
| 980 | |
| 981 | Personalities.push_back(Personality); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | /// addCatchTypeInfo - Provide the catch typeinfo for a landing pad. |
| 985 | /// |
| 986 | void MachineModuleInfo::addCatchTypeInfo(MachineBasicBlock *LandingPad, |
| 987 | std::vector<GlobalVariable *> &TyInfo) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 988 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 989 | for (unsigned N = TyInfo.size(); N; --N) |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 990 | LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1])); |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 991 | } |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 992 | |
| 993 | /// addFilterTypeInfo - Provide the filter typeinfo for a landing pad. |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 994 | /// |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 995 | void MachineModuleInfo::addFilterTypeInfo(MachineBasicBlock *LandingPad, |
| 996 | std::vector<GlobalVariable *> &TyInfo) { |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 997 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 998 | unsigned TyInfoSize = TyInfo.size(); |
| 999 | std::vector<unsigned> IdsInFilter(TyInfoSize); |
| 1000 | |
| 1001 | for (unsigned I = 0; I != TyInfoSize; ++I) |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 1002 | IdsInFilter[I] = getTypeIDFor(TyInfo[I]); |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1003 | |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 1004 | LP.TypeIds.push_back(getFilterIDFor(IdsInFilter)); |
Jim Laskey | 59e8434 | 2007-03-01 20:25:32 +0000 | [diff] [blame] | 1005 | } |
| 1006 | |
Duncan Sands | 6590b04 | 2007-08-27 15:47:50 +0000 | [diff] [blame] | 1007 | /// addCleanup - Add a cleanup action for a landing pad. |
| 1008 | /// |
| 1009 | void MachineModuleInfo::addCleanup(MachineBasicBlock *LandingPad) { |
| 1010 | LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); |
| 1011 | LP.TypeIds.push_back(0); |
| 1012 | } |
| 1013 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1014 | /// TidyLandingPads - Remap landing pad labels and remove any deleted landing |
| 1015 | /// pads. |
| 1016 | void MachineModuleInfo::TidyLandingPads() { |
| 1017 | for (unsigned i = 0; i != LandingPads.size(); ) { |
| 1018 | LandingPadInfo &LandingPad = LandingPads[i]; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1019 | LandingPad.LandingPadLabel = MappedLabel(LandingPad.LandingPadLabel); |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 1020 | |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 1021 | // Special case: we *should* emit LPs with null LP MBB. This indicates |
Duncan Sands | 481dc72 | 2007-12-19 07:36:31 +0000 | [diff] [blame] | 1022 | // "nounwind" case. |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 1023 | if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) { |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1024 | LandingPads.erase(LandingPads.begin() + i); |
| 1025 | continue; |
| 1026 | } |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 1027 | |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1028 | for (unsigned j = 0; j != LandingPads[i].BeginLabels.size(); ) { |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 1029 | unsigned BeginLabel = MappedLabel(LandingPad.BeginLabels[j]); |
| 1030 | unsigned EndLabel = MappedLabel(LandingPad.EndLabels[j]); |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 1031 | |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 1032 | if (!BeginLabel || !EndLabel) { |
Anton Korobeynikov | eeb37e0 | 2007-05-10 22:34:59 +0000 | [diff] [blame] | 1033 | LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j); |
| 1034 | LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j); |
| 1035 | continue; |
| 1036 | } |
| 1037 | |
| 1038 | LandingPad.BeginLabels[j] = BeginLabel; |
| 1039 | LandingPad.EndLabels[j] = EndLabel; |
| 1040 | ++j; |
| 1041 | } |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 1042 | |
| 1043 | // Remove landing pads with no try-ranges. |
Dan Gohman | 3035959 | 2008-01-29 13:02:09 +0000 | [diff] [blame] | 1044 | if (LandingPads[i].BeginLabels.empty()) { |
Duncan Sands | 57810cd | 2007-09-05 11:27:52 +0000 | [diff] [blame] | 1045 | LandingPads.erase(LandingPads.begin() + i); |
| 1046 | continue; |
| 1047 | } |
| 1048 | |
| 1049 | // If there is no landing pad, ensure that the list of typeids is empty. |
| 1050 | // If the only typeid is a cleanup, this is the same as having no typeids. |
| 1051 | if (!LandingPad.LandingPadBlock || |
| 1052 | (LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0])) |
| 1053 | LandingPad.TypeIds.clear(); |
| 1054 | |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1055 | ++i; |
| 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | /// getTypeIDFor - Return the type id for the specified typeinfo. This is |
| 1060 | /// function wide. |
| 1061 | unsigned MachineModuleInfo::getTypeIDFor(GlobalVariable *TI) { |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1062 | for (unsigned i = 0, e = TypeInfos.size(); i != e; ++i) |
| 1063 | if (TypeInfos[i] == TI) |
| 1064 | return i + 1; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1065 | |
| 1066 | TypeInfos.push_back(TI); |
| 1067 | return TypeInfos.size(); |
| 1068 | } |
| 1069 | |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 1070 | /// getFilterIDFor - Return the filter id for the specified typeinfos. This is |
| 1071 | /// function wide. |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 1072 | int MachineModuleInfo::getFilterIDFor(std::vector<unsigned> &TyIds) { |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 1073 | // If the new filter coincides with the tail of an existing filter, then |
| 1074 | // re-use the existing filter. Folding filters more than this requires |
| 1075 | // re-ordering filters and/or their elements - probably not worth it. |
| 1076 | for (std::vector<unsigned>::iterator I = FilterEnds.begin(), |
| 1077 | E = FilterEnds.end(); I != E; ++I) { |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 1078 | unsigned i = *I, j = TyIds.size(); |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 1079 | |
| 1080 | while (i && j) |
| 1081 | if (FilterIds[--i] != TyIds[--j]) |
| 1082 | goto try_next; |
| 1083 | |
| 1084 | if (!j) |
| 1085 | // The new filter coincides with range [i, end) of the existing filter. |
| 1086 | return -(1 + i); |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 1087 | |
Duncan Sands | 14da32a | 2007-07-05 15:15:01 +0000 | [diff] [blame] | 1088 | try_next:; |
| 1089 | } |
| 1090 | |
| 1091 | // Add the new filter. |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 1092 | int FilterID = -(1 + FilterIds.size()); |
| 1093 | FilterIds.reserve(FilterIds.size() + TyIds.size() + 1); |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1094 | |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 1095 | for (unsigned I = 0, N = TyIds.size(); I != N; ++I) |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 1096 | FilterIds.push_back(TyIds[I]); |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1097 | |
Bill Wendling | 914c970 | 2008-06-27 01:27:56 +0000 | [diff] [blame] | 1098 | FilterEnds.push_back(FilterIds.size()); |
Duncan Sands | 73ef58a | 2007-06-02 16:53:42 +0000 | [diff] [blame] | 1099 | FilterIds.push_back(0); // terminator |
| 1100 | return FilterID; |
| 1101 | } |
| 1102 | |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 1103 | /// getPersonality - Return the personality function for the current function. |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1104 | Function *MachineModuleInfo::getPersonality() const { |
Anton Korobeynikov | 0ff3ca4 | 2007-05-12 22:36:25 +0000 | [diff] [blame] | 1105 | // FIXME: Until PR1414 will be fixed, we're using 1 personality function per |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 1106 | // function |
| 1107 | return !LandingPads.empty() ? LandingPads[0].Personality : NULL; |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1108 | } |
| 1109 | |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 1110 | /// getPersonalityIndex - Return unique index for current personality |
| 1111 | /// function. NULL personality function should always get zero index. |
| 1112 | unsigned MachineModuleInfo::getPersonalityIndex() const { |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 1113 | const Function* Personality = NULL; |
| 1114 | |
| 1115 | // Scan landing pads. If there is at least one non-NULL personality - use it. |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1116 | for (unsigned i = 0, e = LandingPads.size(); i != e; ++i) |
Anton Korobeynikov | 070280e | 2007-05-23 11:08:31 +0000 | [diff] [blame] | 1117 | if (LandingPads[i].Personality) { |
| 1118 | Personality = LandingPads[i].Personality; |
| 1119 | break; |
| 1120 | } |
| 1121 | |
Bill Wendling | f0e9c56 | 2008-06-27 07:13:44 +0000 | [diff] [blame] | 1122 | for (unsigned i = 0, e = Personalities.size(); i < e; ++i) |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 1123 | if (Personalities[i] == Personality) |
| 1124 | return i; |
Anton Korobeynikov | 8c7c173 | 2007-05-13 15:42:26 +0000 | [diff] [blame] | 1125 | |
| 1126 | // This should never happen |
| 1127 | assert(0 && "Personality function should be set!"); |
| 1128 | return 0; |
| 1129 | } |
Jim Laskey | 59667fe | 2007-02-21 22:38:31 +0000 | [diff] [blame] | 1130 | |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1131 | //===----------------------------------------------------------------------===// |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1132 | /// DebugLabelFolding pass - This pass prunes out redundant labels. This allows |
| 1133 | /// a info consumer to determine if the range of two labels is empty, by seeing |
| 1134 | /// if the labels map to the same reduced label. |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1135 | |
| 1136 | namespace llvm { |
| 1137 | |
| 1138 | struct DebugLabelFolder : public MachineFunctionPass { |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 1139 | static char ID; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 1140 | DebugLabelFolder() : MachineFunctionPass((intptr_t)&ID) {} |
| 1141 | |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1142 | virtual bool runOnMachineFunction(MachineFunction &MF); |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1143 | virtual const char *getPassName() const { return "Label Folder"; } |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1144 | }; |
| 1145 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 1146 | char DebugLabelFolder::ID = 0; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 1147 | |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1148 | bool DebugLabelFolder::runOnMachineFunction(MachineFunction &MF) { |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1149 | // Get machine module info. |
| 1150 | MachineModuleInfo *MMI = getAnalysisToUpdate<MachineModuleInfo>(); |
| 1151 | if (!MMI) return false; |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1152 | |
| 1153 | // Track if change is made. |
| 1154 | bool MadeChange = false; |
| 1155 | // No prior label to begin. |
| 1156 | unsigned PriorLabel = 0; |
| 1157 | |
| 1158 | // Iterate through basic blocks. |
| 1159 | for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); |
| 1160 | BB != E; ++BB) { |
| 1161 | // Iterate through instructions. |
| 1162 | for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) { |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1163 | // Is it a label. |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 1164 | if (I->isDebugLabel()) { |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1165 | // The label ID # is always operand #0, an immediate. |
| 1166 | unsigned NextLabel = I->getOperand(0).getImm(); |
| 1167 | |
| 1168 | // If there was an immediate prior label. |
| 1169 | if (PriorLabel) { |
| 1170 | // Remap the current label to prior label. |
Jim Laskey | 6da1864 | 2007-01-26 21:38:26 +0000 | [diff] [blame] | 1171 | MMI->RemapLabel(NextLabel, PriorLabel); |
Jim Laskey | 9d4209f | 2006-11-07 19:33:46 +0000 | [diff] [blame] | 1172 | // Delete the current label. |
| 1173 | I = BB->erase(I); |
| 1174 | // Indicate a change has been made. |
| 1175 | MadeChange = true; |
| 1176 | continue; |
| 1177 | } else { |
| 1178 | // Start a new round. |
| 1179 | PriorLabel = NextLabel; |
| 1180 | } |
| 1181 | } else { |
| 1182 | // No consecutive labels. |
| 1183 | PriorLabel = 0; |
| 1184 | } |
| 1185 | |
| 1186 | ++I; |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | return MadeChange; |
| 1191 | } |
| 1192 | |
| 1193 | FunctionPass *createDebugLabelFoldingPass() { return new DebugLabelFolder(); } |
| 1194 | |
| 1195 | } |