Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 1 | //===-- LLVMContextImpl.cpp - Implement LLVMContextImpl -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the opaque LLVMContextImpl. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "LLVMContextImpl.h" |
Bill Wendling | e38b804 | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 15 | #include "llvm/Attributes.h" |
Owen Anderson | 8e89e41 | 2010-09-08 18:03:32 +0000 | [diff] [blame] | 16 | #include "llvm/Module.h" |
Nick Lewycky | e9bb9a0 | 2011-07-12 00:26:08 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/STLExtras.h" |
Jeffrey Yasskin | a6eedc3 | 2010-03-22 05:23:37 +0000 | [diff] [blame] | 18 | #include <algorithm> |
Dan Gohman | b29cda9 | 2010-04-15 17:08:50 +0000 | [diff] [blame] | 19 | using namespace llvm; |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 20 | |
| 21 | LLVMContextImpl::LLVMContextImpl(LLVMContext &C) |
| 22 | : TheTrueVal(0), TheFalseVal(0), |
| 23 | VoidTy(C, Type::VoidTyID), |
| 24 | LabelTy(C, Type::LabelTyID), |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 25 | HalfTy(C, Type::HalfTyID), |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 26 | FloatTy(C, Type::FloatTyID), |
| 27 | DoubleTy(C, Type::DoubleTyID), |
| 28 | MetadataTy(C, Type::MetadataTyID), |
| 29 | X86_FP80Ty(C, Type::X86_FP80TyID), |
| 30 | FP128Ty(C, Type::FP128TyID), |
| 31 | PPC_FP128Ty(C, Type::PPC_FP128TyID), |
Dale Johannesen | baa5d04 | 2010-09-10 20:55:01 +0000 | [diff] [blame] | 32 | X86_MMXTy(C, Type::X86_MMXTyID), |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 33 | Int1Ty(C, 1), |
| 34 | Int8Ty(C, 8), |
| 35 | Int16Ty(C, 16), |
| 36 | Int32Ty(C, 32), |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 37 | Int64Ty(C, 64) { |
Chris Lattner | 60955d4 | 2010-04-06 00:44:45 +0000 | [diff] [blame] | 38 | InlineAsmDiagHandler = 0; |
| 39 | InlineAsmDiagContext = 0; |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 40 | NamedStructTypesUniqueID = 0; |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Jeffrey Yasskin | a6eedc3 | 2010-03-22 05:23:37 +0000 | [diff] [blame] | 43 | namespace { |
| 44 | struct DropReferences { |
| 45 | // Takes the value_type of a ConstantUniqueMap's internal map, whose 'second' |
| 46 | // is a Constant*. |
| 47 | template<typename PairT> |
| 48 | void operator()(const PairT &P) { |
| 49 | P.second->dropAllReferences(); |
| 50 | } |
| 51 | }; |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 52 | |
| 53 | // Temporary - drops pair.first instead of second. |
| 54 | struct DropFirst { |
| 55 | // Takes the value_type of a ConstantUniqueMap's internal map, whose 'second' |
| 56 | // is a Constant*. |
| 57 | template<typename PairT> |
| 58 | void operator()(const PairT &P) { |
| 59 | P.first->dropAllReferences(); |
| 60 | } |
| 61 | }; |
Jeffrey Yasskin | a6eedc3 | 2010-03-22 05:23:37 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 64 | LLVMContextImpl::~LLVMContextImpl() { |
Owen Anderson | 8e89e41 | 2010-09-08 18:03:32 +0000 | [diff] [blame] | 65 | // NOTE: We need to delete the contents of OwnedModules, but we have to |
| 66 | // duplicate it into a temporary vector, because the destructor of Module |
| 67 | // will try to remove itself from OwnedModules set. This would cause |
| 68 | // iterator invalidation if we iterated on the set directly. |
| 69 | std::vector<Module*> Modules(OwnedModules.begin(), OwnedModules.end()); |
Nick Lewycky | e9bb9a0 | 2011-07-12 00:26:08 +0000 | [diff] [blame] | 70 | DeleteContainerPointers(Modules); |
Owen Anderson | 8e89e41 | 2010-09-08 18:03:32 +0000 | [diff] [blame] | 71 | |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 72 | // Free the constants. This is important to do here to ensure that they are |
| 73 | // freed before the LeakDetector is torn down. |
Jeffrey Yasskin | a6eedc3 | 2010-03-22 05:23:37 +0000 | [diff] [blame] | 74 | std::for_each(ExprConstants.map_begin(), ExprConstants.map_end(), |
| 75 | DropReferences()); |
| 76 | std::for_each(ArrayConstants.map_begin(), ArrayConstants.map_end(), |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 77 | DropFirst()); |
Jeffrey Yasskin | a6eedc3 | 2010-03-22 05:23:37 +0000 | [diff] [blame] | 78 | std::for_each(StructConstants.map_begin(), StructConstants.map_end(), |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 79 | DropFirst()); |
Jeffrey Yasskin | a6eedc3 | 2010-03-22 05:23:37 +0000 | [diff] [blame] | 80 | std::for_each(VectorConstants.map_begin(), VectorConstants.map_end(), |
Talin | 46e9b44 | 2012-02-05 20:54:10 +0000 | [diff] [blame] | 81 | DropFirst()); |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 82 | ExprConstants.freeConstants(); |
| 83 | ArrayConstants.freeConstants(); |
| 84 | StructConstants.freeConstants(); |
| 85 | VectorConstants.freeConstants(); |
Chris Lattner | c7f9fd4 | 2012-01-23 15:20:12 +0000 | [diff] [blame] | 86 | DeleteContainerSeconds(CAZConstants); |
| 87 | DeleteContainerSeconds(CPNConstants); |
| 88 | DeleteContainerSeconds(UVConstants); |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 89 | InlineAsms.freeConstants(); |
Nick Lewycky | e9bb9a0 | 2011-07-12 00:26:08 +0000 | [diff] [blame] | 90 | DeleteContainerSeconds(IntConstants); |
| 91 | DeleteContainerSeconds(FPConstants); |
Chris Lattner | b1ed91f | 2011-07-09 17:41:24 +0000 | [diff] [blame] | 92 | |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 93 | for (StringMap<ConstantDataSequential*>::iterator I = CDSConstants.begin(), |
| 94 | E = CDSConstants.end(); I != E; ++I) |
| 95 | delete I->second; |
| 96 | CDSConstants.clear(); |
Bill Wendling | e38b804 | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 97 | |
| 98 | // Destroy attributes. |
| 99 | for (FoldingSetIterator<AttributesImpl> I = AttrsSet.begin(), |
| 100 | E = AttrsSet.end(); I != E; ++I) |
| 101 | delete &*I; |
Chris Lattner | 3756b91 | 2012-01-23 22:57:10 +0000 | [diff] [blame] | 102 | |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 103 | // Destroy MDNodes. ~MDNode can move and remove nodes between the MDNodeSet |
| 104 | // and the NonUniquedMDNodes sets, so copy the values out first. |
| 105 | SmallVector<MDNode*, 8> MDNodes; |
| 106 | MDNodes.reserve(MDNodeSet.size() + NonUniquedMDNodes.size()); |
| 107 | for (FoldingSetIterator<MDNode> I = MDNodeSet.begin(), E = MDNodeSet.end(); |
Chris Lattner | 68ef694 | 2011-07-13 04:22:39 +0000 | [diff] [blame] | 108 | I != E; ++I) |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 109 | MDNodes.push_back(&*I); |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 110 | MDNodes.append(NonUniquedMDNodes.begin(), NonUniquedMDNodes.end()); |
Dan Gohman | 060d5ba | 2010-10-12 00:15:27 +0000 | [diff] [blame] | 111 | for (SmallVectorImpl<MDNode *>::iterator I = MDNodes.begin(), |
Chris Lattner | 68ef694 | 2011-07-13 04:22:39 +0000 | [diff] [blame] | 112 | E = MDNodes.end(); I != E; ++I) |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 113 | (*I)->destroy(); |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 114 | assert(MDNodeSet.empty() && NonUniquedMDNodes.empty() && |
| 115 | "Destroying all MDNodes didn't empty the Context's sets."); |
Bill Wendling | e38b804 | 2012-09-26 21:07:29 +0000 | [diff] [blame] | 116 | |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 117 | // Destroy MDStrings. |
Nick Lewycky | e9bb9a0 | 2011-07-12 00:26:08 +0000 | [diff] [blame] | 118 | DeleteContainerSeconds(MDStringCache); |
Jeffrey Yasskin | 4cfb3a7 | 2010-03-21 21:17:34 +0000 | [diff] [blame] | 119 | } |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 120 | |
| 121 | // ConstantsContext anchors |
| 122 | void UnaryConstantExpr::anchor() { } |
| 123 | |
| 124 | void BinaryConstantExpr::anchor() { } |
| 125 | |
| 126 | void SelectConstantExpr::anchor() { } |
| 127 | |
| 128 | void ExtractElementConstantExpr::anchor() { } |
| 129 | |
| 130 | void InsertElementConstantExpr::anchor() { } |
| 131 | |
| 132 | void ShuffleVectorConstantExpr::anchor() { } |
| 133 | |
| 134 | void ExtractValueConstantExpr::anchor() { } |
| 135 | |
| 136 | void InsertValueConstantExpr::anchor() { } |
| 137 | |
| 138 | void GetElementPtrConstantExpr::anchor() { } |
| 139 | |
| 140 | void CompareConstantExpr::anchor() { } |