blob: c365e013c6fccbbae1d32c017be546c7276cefeb [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- ManagedStatic.cpp - Static Global wrapper -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 {
33 assert(DeleterFn && "ManagedStatic not initialized correctly!");
34 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.
49void llvm::llvm_shutdown() {
50 while (StaticList)
51 StaticList->destroy();
52}
53