blob: c365e013c6fccbbae1d32c017be546c7276cefeb [file] [log] [blame]
Chris Lattner771cbf32006-09-28 00:31:55 +00001//===-- ManagedStatic.cpp - Static Global wrapper -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner771cbf32006-09-28 00:31:55 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ManagedStatic class and llvm_shutdown().
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/ManagedStatic.h"
15#include <cassert>
16using namespace llvm;
17
18static const ManagedStaticBase *StaticList = 0;
19
20void ManagedStaticBase::RegisterManagedStatic(void *ObjPtr,
21 void (*Deleter)(void*)) const {
22 assert(Ptr == 0 && DeleterFn == 0 && Next == 0 &&
23 "Partially init static?");
24 Ptr = ObjPtr;
25 DeleterFn = Deleter;
26
27 // Add to list of managed statics.
28 Next = StaticList;
29 StaticList = this;
30}
31
32void ManagedStaticBase::destroy() const {
Chris Lattnerd2835662007-02-20 06:18:57 +000033 assert(DeleterFn && "ManagedStatic not initialized correctly!");
Chris Lattner771cbf32006-09-28 00:31:55 +000034 assert(StaticList == this &&
35 "Not destroyed in reverse order of construction?");
36 // Unlink from list.
37 StaticList = Next;
38 Next = 0;
39
40 // Destroy memory.
41 DeleterFn(Ptr);
42
43 // Cleanup.
44 Ptr = 0;
45 DeleterFn = 0;
46}
47
48/// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
Chris Lattner151880b2006-09-29 18:43:14 +000049void llvm::llvm_shutdown() {
Chris Lattner771cbf32006-09-28 00:31:55 +000050 while (StaticList)
51 StaticList->destroy();
52}
53