blob: 6a6a4d6801f00f2b0704b7e50c61cbfaddfe6c57 [file] [log] [blame]
Jeffrey Yasskin2f1efd62010-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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000016#include "llvm/IR/Attributes.h"
17#include "llvm/IR/Module.h"
Jeffrey Yasskinc1dc0672010-03-22 05:23:37 +000018#include <algorithm>
Dan Gohmanb3579832010-04-15 17:08:50 +000019using namespace llvm;
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000020
21LLVMContextImpl::LLVMContextImpl(LLVMContext &C)
22 : TheTrueVal(0), TheFalseVal(0),
23 VoidTy(C, Type::VoidTyID),
24 LabelTy(C, Type::LabelTyID),
Dan Gohmance163392011-12-17 00:04:22 +000025 HalfTy(C, Type::HalfTyID),
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000026 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 Johannesenbb811a22010-09-10 20:55:01 +000032 X86_MMXTy(C, Type::X86_MMXTyID),
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000033 Int1Ty(C, 1),
34 Int8Ty(C, 8),
35 Int16Ty(C, 16),
36 Int32Ty(C, 32),
Chris Lattner1afcace2011-07-09 17:41:24 +000037 Int64Ty(C, 64) {
Bob Wilsonf64c8892013-02-11 05:37:07 +000038 InlineAsmDiagHandler = 0;
39 InlineAsmDiagContext = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +000040 NamedStructTypesUniqueID = 0;
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000041}
42
Jeffrey Yasskinc1dc0672010-03-22 05:23:37 +000043namespace {
44struct 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};
Talin2cb395e2012-02-05 20:54:10 +000052
53// Temporary - drops pair.first instead of second.
54struct 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 Yasskinc1dc0672010-03-22 05:23:37 +000062}
63
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000064LLVMContextImpl::~LLVMContextImpl() {
Owen Anderson30268be2010-09-08 18:03:32 +000065 // 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 Lewycky1852e212011-07-12 00:26:08 +000070 DeleteContainerPointers(Modules);
Owen Anderson30268be2010-09-08 18:03:32 +000071
Chris Lattner9df0fb42012-01-23 15:20:12 +000072 // Free the constants. This is important to do here to ensure that they are
73 // freed before the LeakDetector is torn down.
Jeffrey Yasskinc1dc0672010-03-22 05:23:37 +000074 std::for_each(ExprConstants.map_begin(), ExprConstants.map_end(),
75 DropReferences());
76 std::for_each(ArrayConstants.map_begin(), ArrayConstants.map_end(),
Talin2cb395e2012-02-05 20:54:10 +000077 DropFirst());
Jeffrey Yasskinc1dc0672010-03-22 05:23:37 +000078 std::for_each(StructConstants.map_begin(), StructConstants.map_end(),
Talin2cb395e2012-02-05 20:54:10 +000079 DropFirst());
Jeffrey Yasskinc1dc0672010-03-22 05:23:37 +000080 std::for_each(VectorConstants.map_begin(), VectorConstants.map_end(),
Talin2cb395e2012-02-05 20:54:10 +000081 DropFirst());
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000082 ExprConstants.freeConstants();
83 ArrayConstants.freeConstants();
84 StructConstants.freeConstants();
85 VectorConstants.freeConstants();
Chris Lattner9df0fb42012-01-23 15:20:12 +000086 DeleteContainerSeconds(CAZConstants);
87 DeleteContainerSeconds(CPNConstants);
88 DeleteContainerSeconds(UVConstants);
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +000089 InlineAsms.freeConstants();
Nick Lewycky1852e212011-07-12 00:26:08 +000090 DeleteContainerSeconds(IntConstants);
91 DeleteContainerSeconds(FPConstants);
Chris Lattner1afcace2011-07-09 17:41:24 +000092
Chris Lattner27dd9cf2012-01-23 22:57:10 +000093 for (StringMap<ConstantDataSequential*>::iterator I = CDSConstants.begin(),
94 E = CDSConstants.end(); I != E; ++I)
95 delete I->second;
96 CDSConstants.clear();
Bill Wendling2c79ecb2012-09-26 21:07:29 +000097
98 // Destroy attributes.
Bill Wendlingf6670722012-12-20 01:36:59 +000099 for (FoldingSetIterator<AttributeImpl> I = AttrsSet.begin(),
Bill Wendling0976e002012-11-20 05:09:20 +0000100 E = AttrsSet.end(); I != E; ) {
Bill Wendlingf6670722012-12-20 01:36:59 +0000101 FoldingSetIterator<AttributeImpl> Elem = I++;
Benjamin Kramerfd8d62c2012-10-14 08:48:40 +0000102 delete &*Elem;
103 }
104
Bill Wendling0976e002012-11-20 05:09:20 +0000105 // Destroy attribute lists.
Bill Wendling18e72112012-12-19 22:42:22 +0000106 for (FoldingSetIterator<AttributeSetImpl> I = AttrsLists.begin(),
Bill Wendling0976e002012-11-20 05:09:20 +0000107 E = AttrsLists.end(); I != E; ) {
Bill Wendling18e72112012-12-19 22:42:22 +0000108 FoldingSetIterator<AttributeSetImpl> Elem = I++;
Bill Wendling0976e002012-11-20 05:09:20 +0000109 delete &*Elem;
110 }
111
Bill Wendling8b1f2f32013-01-24 00:14:46 +0000112 // Destroy attribute node lists.
113 for (FoldingSetIterator<AttributeSetNode> I = AttrsSetNodes.begin(),
114 E = AttrsSetNodes.end(); I != E; ) {
115 FoldingSetIterator<AttributeSetNode> Elem = I++;
116 delete &*Elem;
117 }
118
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000119 // Destroy MDNodes. ~MDNode can move and remove nodes between the MDNodeSet
120 // and the NonUniquedMDNodes sets, so copy the values out first.
121 SmallVector<MDNode*, 8> MDNodes;
122 MDNodes.reserve(MDNodeSet.size() + NonUniquedMDNodes.size());
123 for (FoldingSetIterator<MDNode> I = MDNodeSet.begin(), E = MDNodeSet.end();
Chris Lattnerc09ef372011-07-13 04:22:39 +0000124 I != E; ++I)
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000125 MDNodes.push_back(&*I);
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000126 MDNodes.append(NonUniquedMDNodes.begin(), NonUniquedMDNodes.end());
Dan Gohman9b0e47e2010-10-12 00:15:27 +0000127 for (SmallVectorImpl<MDNode *>::iterator I = MDNodes.begin(),
Chris Lattnerc09ef372011-07-13 04:22:39 +0000128 E = MDNodes.end(); I != E; ++I)
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000129 (*I)->destroy();
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000130 assert(MDNodeSet.empty() && NonUniquedMDNodes.empty() &&
131 "Destroying all MDNodes didn't empty the Context's sets.");
Bill Wendling2c79ecb2012-09-26 21:07:29 +0000132
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000133 // Destroy MDStrings.
Nick Lewycky1852e212011-07-12 00:26:08 +0000134 DeleteContainerSeconds(MDStringCache);
Jeffrey Yasskin2f1efd62010-03-21 21:17:34 +0000135}
David Blaikie2d24e2a2011-12-20 02:50:00 +0000136
137// ConstantsContext anchors
138void UnaryConstantExpr::anchor() { }
139
140void BinaryConstantExpr::anchor() { }
141
142void SelectConstantExpr::anchor() { }
143
144void ExtractElementConstantExpr::anchor() { }
145
146void InsertElementConstantExpr::anchor() { }
147
148void ShuffleVectorConstantExpr::anchor() { }
149
150void ExtractValueConstantExpr::anchor() { }
151
152void InsertValueConstantExpr::anchor() { }
153
154void GetElementPtrConstantExpr::anchor() { }
155
156void CompareConstantExpr::anchor() { }