blob: 2eaebaceb1d53575b4bf1d620aa39d8380bb080d [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
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000082 // Destroy MDNodes. ~MDNode can move and remove nodes between the MDNodeSet
83 // and the NonUniquedMDNodes sets, so copy the values out first.
84 SmallVector<MDNode*, 8> MDNodes;
85 MDNodes.reserve(MDNodeSet.size() + NonUniquedMDNodes.size());
86 for (FoldingSetIterator<MDNode> I = MDNodeSet.begin(), E = MDNodeSet.end();
Chris Lattner68ef6942011-07-13 04:22:39 +000087 I != E; ++I)
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000088 MDNodes.push_back(&*I);
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000089 MDNodes.append(NonUniquedMDNodes.begin(), NonUniquedMDNodes.end());
Dan Gohman060d5ba2010-10-12 00:15:27 +000090 for (SmallVectorImpl<MDNode *>::iterator I = MDNodes.begin(),
Chris Lattner68ef6942011-07-13 04:22:39 +000091 E = MDNodes.end(); I != E; ++I)
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000092 (*I)->destroy();
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000093 assert(MDNodeSet.empty() && NonUniquedMDNodes.empty() &&
94 "Destroying all MDNodes didn't empty the Context's sets.");
95 // Destroy MDStrings.
Nick Lewyckye9bb9a02011-07-12 00:26:08 +000096 DeleteContainerSeconds(MDStringCache);
Jeffrey Yasskin4cfb3a72010-03-21 21:17:34 +000097}
David Blaikiea379b1812011-12-20 02:50:00 +000098
99// ConstantsContext anchors
100void UnaryConstantExpr::anchor() { }
101
102void BinaryConstantExpr::anchor() { }
103
104void SelectConstantExpr::anchor() { }
105
106void ExtractElementConstantExpr::anchor() { }
107
108void InsertElementConstantExpr::anchor() { }
109
110void ShuffleVectorConstantExpr::anchor() { }
111
112void ExtractValueConstantExpr::anchor() { }
113
114void InsertValueConstantExpr::anchor() { }
115
116void GetElementPtrConstantExpr::anchor() { }
117
118void CompareConstantExpr::anchor() { }