blob: 15c5c2467728bd9a0d978accda5c6f3b8247a14b [file] [log] [blame]
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +00001//===-- 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"
Owen Anderson8e89e412010-09-08 18:03:32 +000015#include "llvm/Module.h"
Nick Lewyckye9bb9a02011-07-12 00:26:08 +000016#include "llvm/ADT/STLExtras.h"
Jeffrey Yasskina6eedc32010-03-22 05:23:37 +000017#include <algorithm>
Dan Gohmanb29cda92010-04-15 17:08:50 +000018using namespace llvm;
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000019
20LLVMContextImpl::LLVMContextImpl(LLVMContext &C)
21 : TheTrueVal(0), TheFalseVal(0),
22 VoidTy(C, Type::VoidTyID),
23 LabelTy(C, Type::LabelTyID),
Dan Gohman518cda42011-12-17 00:04:22 +000024 HalfTy(C, Type::HalfTyID),
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000025 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),
Dale Johannesenbaa5d042010-09-10 20:55:01 +000031 X86_MMXTy(C, Type::X86_MMXTyID),
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000032 Int1Ty(C, 1),
33 Int8Ty(C, 8),
34 Int16Ty(C, 16),
35 Int32Ty(C, 32),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000036 Int64Ty(C, 64) {
Chris Lattner60955d42010-04-06 00:44:45 +000037 InlineAsmDiagHandler = 0;
38 InlineAsmDiagContext = 0;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000039 NamedStructTypesUniqueID = 0;
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000040}
41
Jeffrey Yasskina6eedc32010-03-22 05:23:37 +000042namespace {
43struct 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
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000053LLVMContextImpl::~LLVMContextImpl() {
Owen Anderson8e89e412010-09-08 18:03:32 +000054 // 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());
Nick Lewyckye9bb9a02011-07-12 00:26:08 +000059 DeleteContainerPointers(Modules);
Owen Anderson8e89e412010-09-08 18:03:32 +000060
Chris Lattnerc7f9fd42012-01-23 15:20:12 +000061 // Free the constants. This is important to do here to ensure that they are
62 // freed before the LeakDetector is torn down.
Jeffrey Yasskina6eedc32010-03-22 05:23:37 +000063 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());
Jeffrey Yasskina6eedc32010-03-22 05:23:37 +000069 std::for_each(VectorConstants.map_begin(), VectorConstants.map_end(),
70 DropReferences());
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000071 ExprConstants.freeConstants();
72 ArrayConstants.freeConstants();
73 StructConstants.freeConstants();
74 VectorConstants.freeConstants();
Chris Lattnerc7f9fd42012-01-23 15:20:12 +000075 DeleteContainerSeconds(CAZConstants);
76 DeleteContainerSeconds(CPNConstants);
77 DeleteContainerSeconds(UVConstants);
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000078 InlineAsms.freeConstants();
Nick Lewyckye9bb9a02011-07-12 00:26:08 +000079 DeleteContainerSeconds(IntConstants);
80 DeleteContainerSeconds(FPConstants);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000081
Chris Lattner3756b912012-01-23 22:57:10 +000082 for (StringMap<ConstantDataSequential*>::iterator I = CDSConstants.begin(),
83 E = CDSConstants.end(); I != E; ++I)
84 delete I->second;
85 CDSConstants.clear();
86
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000087 // 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();
Chris Lattner68ef6942011-07-13 04:22:39 +000092 I != E; ++I)
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000093 MDNodes.push_back(&*I);
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000094 MDNodes.append(NonUniquedMDNodes.begin(), NonUniquedMDNodes.end());
Dan Gohman060d5ba2010-10-12 00:15:27 +000095 for (SmallVectorImpl<MDNode *>::iterator I = MDNodes.begin(),
Chris Lattner68ef6942011-07-13 04:22:39 +000096 E = MDNodes.end(); I != E; ++I)
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000097 (*I)->destroy();
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000098 assert(MDNodeSet.empty() && NonUniquedMDNodes.empty() &&
99 "Destroying all MDNodes didn't empty the Context's sets.");
100 // Destroy MDStrings.
Nick Lewyckye9bb9a02011-07-12 00:26:08 +0000101 DeleteContainerSeconds(MDStringCache);
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +0000102}
David Blaikiea379b1812011-12-20 02:50:00 +0000103
104// ConstantsContext anchors
105void UnaryConstantExpr::anchor() { }
106
107void BinaryConstantExpr::anchor() { }
108
109void SelectConstantExpr::anchor() { }
110
111void ExtractElementConstantExpr::anchor() { }
112
113void InsertElementConstantExpr::anchor() { }
114
115void ShuffleVectorConstantExpr::anchor() { }
116
117void ExtractValueConstantExpr::anchor() { }
118
119void InsertValueConstantExpr::anchor() { }
120
121void GetElementPtrConstantExpr::anchor() { }
122
123void CompareConstantExpr::anchor() { }