15c5c2467728bd9a0d978accda5c6f3b8247a14b
[oota-llvm.git] / lib / VMCore / LLVMContextImpl.cpp
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"
15 #include "llvm/Module.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include <algorithm>
18 using namespace llvm;
19
20 LLVMContextImpl::LLVMContextImpl(LLVMContext &C)
21   : TheTrueVal(0), TheFalseVal(0),
22     VoidTy(C, Type::VoidTyID),
23     LabelTy(C, Type::LabelTyID),
24     HalfTy(C, Type::HalfTyID),
25     FloatTy(C, Type::FloatTyID),
26     DoubleTy(C, Type::DoubleTyID),
27     MetadataTy(C, Type::MetadataTyID),
28     X86_FP80Ty(C, Type::X86_FP80TyID),
29     FP128Ty(C, Type::FP128TyID),
30     PPC_FP128Ty(C, Type::PPC_FP128TyID),
31     X86_MMXTy(C, Type::X86_MMXTyID),
32     Int1Ty(C, 1),
33     Int8Ty(C, 8),
34     Int16Ty(C, 16),
35     Int32Ty(C, 32),
36     Int64Ty(C, 64) {
37   InlineAsmDiagHandler = 0;
38   InlineAsmDiagContext = 0;
39   NamedStructTypesUniqueID = 0;
40 }
41
42 namespace {
43 struct DropReferences {
44   // Takes the value_type of a ConstantUniqueMap's internal map, whose 'second'
45   // is a Constant*.
46   template<typename PairT>
47   void operator()(const PairT &P) {
48     P.second->dropAllReferences();
49   }
50 };
51 }
52
53 LLVMContextImpl::~LLVMContextImpl() {
54   // NOTE: We need to delete the contents of OwnedModules, but we have to
55   // duplicate it into a temporary vector, because the destructor of Module
56   // will try to remove itself from OwnedModules set.  This would cause
57   // iterator invalidation if we iterated on the set directly.
58   std::vector<Module*> Modules(OwnedModules.begin(), OwnedModules.end());
59   DeleteContainerPointers(Modules);
60   
61   // Free the constants.  This is important to do here to ensure that they are
62   // freed before the LeakDetector is torn down.
63   std::for_each(ExprConstants.map_begin(), ExprConstants.map_end(),
64                 DropReferences());
65   std::for_each(ArrayConstants.map_begin(), ArrayConstants.map_end(),
66                 DropReferences());
67   std::for_each(StructConstants.map_begin(), StructConstants.map_end(),
68                 DropReferences());
69   std::for_each(VectorConstants.map_begin(), VectorConstants.map_end(),
70                 DropReferences());
71   ExprConstants.freeConstants();
72   ArrayConstants.freeConstants();
73   StructConstants.freeConstants();
74   VectorConstants.freeConstants();
75   DeleteContainerSeconds(CAZConstants);
76   DeleteContainerSeconds(CPNConstants);
77   DeleteContainerSeconds(UVConstants);
78   InlineAsms.freeConstants();
79   DeleteContainerSeconds(IntConstants);
80   DeleteContainerSeconds(FPConstants);
81   
82   for (StringMap<ConstantDataSequential*>::iterator I = CDSConstants.begin(),
83        E = CDSConstants.end(); I != E; ++I)
84     delete I->second;
85   CDSConstants.clear();
86   
87   // Destroy MDNodes.  ~MDNode can move and remove nodes between the MDNodeSet
88   // and the NonUniquedMDNodes sets, so copy the values out first.
89   SmallVector<MDNode*, 8> MDNodes;
90   MDNodes.reserve(MDNodeSet.size() + NonUniquedMDNodes.size());
91   for (FoldingSetIterator<MDNode> I = MDNodeSet.begin(), E = MDNodeSet.end();
92        I != E; ++I)
93     MDNodes.push_back(&*I);
94   MDNodes.append(NonUniquedMDNodes.begin(), NonUniquedMDNodes.end());
95   for (SmallVectorImpl<MDNode *>::iterator I = MDNodes.begin(),
96          E = MDNodes.end(); I != E; ++I)
97     (*I)->destroy();
98   assert(MDNodeSet.empty() && NonUniquedMDNodes.empty() &&
99          "Destroying all MDNodes didn't empty the Context's sets.");
100   // Destroy MDStrings.
101   DeleteContainerSeconds(MDStringCache);
102 }
103
104 // ConstantsContext anchors
105 void UnaryConstantExpr::anchor() { }
106
107 void BinaryConstantExpr::anchor() { }
108
109 void SelectConstantExpr::anchor() { }
110
111 void ExtractElementConstantExpr::anchor() { }
112
113 void InsertElementConstantExpr::anchor() { }
114
115 void ShuffleVectorConstantExpr::anchor() { }
116
117 void ExtractValueConstantExpr::anchor() { }
118
119 void InsertValueConstantExpr::anchor() { }
120
121 void GetElementPtrConstantExpr::anchor() { }
122
123 void CompareConstantExpr::anchor() { }