1 //===-- LLVMContext.cpp - Implement LLVMContext -----------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements LLVMContext, as a wrapper around the opaque
11 // class LLVMContextImpl.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/LLVMContext.h"
16 #include "llvm/Metadata.h"
17 #include "llvm/Constants.h"
18 #include "llvm/Instruction.h"
19 #include "llvm/Support/ManagedStatic.h"
20 #include "llvm/Support/SourceMgr.h"
21 #include "LLVMContextImpl.h"
25 static ManagedStatic
<LLVMContext
> GlobalContext
;
27 LLVMContext
& llvm::getGlobalContext() {
28 return *GlobalContext
;
31 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
32 // Create the fixed metadata kinds. This is done in the same order as the
33 // MD_* enum values so that they correspond.
35 // Create the 'dbg' metadata kind.
36 unsigned DbgID
= getMDKindID("dbg");
37 assert(DbgID
== MD_dbg
&& "dbg kind id drifted"); (void)DbgID
;
39 // Create the 'tbaa' metadata kind.
40 unsigned TBAAID
= getMDKindID("tbaa");
41 assert(TBAAID
== MD_tbaa
&& "tbaa kind id drifted"); (void)TBAAID
;
43 LLVMContext::~LLVMContext() { delete pImpl
; }
45 void LLVMContext::addModule(Module
*M
) {
46 pImpl
->OwnedModules
.insert(M
);
49 void LLVMContext::removeModule(Module
*M
) {
50 pImpl
->OwnedModules
.erase(M
);
53 //===----------------------------------------------------------------------===//
54 // Recoverable Backend Errors
55 //===----------------------------------------------------------------------===//
58 setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler
,
60 pImpl
->InlineAsmDiagHandler
= DiagHandler
;
61 pImpl
->InlineAsmDiagContext
= DiagContext
;
64 /// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by
65 /// setInlineAsmDiagnosticHandler.
66 LLVMContext::InlineAsmDiagHandlerTy
67 LLVMContext::getInlineAsmDiagnosticHandler() const {
68 return pImpl
->InlineAsmDiagHandler
;
71 /// getInlineAsmDiagnosticContext - Return the diagnostic context set by
72 /// setInlineAsmDiagnosticHandler.
73 void *LLVMContext::getInlineAsmDiagnosticContext() const {
74 return pImpl
->InlineAsmDiagContext
;
77 void LLVMContext::emitError(StringRef ErrorStr
) {
78 emitError(0U, ErrorStr
);
81 void LLVMContext::emitError(const Instruction
*I
, StringRef ErrorStr
) {
82 unsigned LocCookie
= 0;
83 if (const MDNode
*SrcLoc
= I
->getMetadata("srcloc")) {
84 if (SrcLoc
->getNumOperands() != 0)
85 if (const ConstantInt
*CI
= dyn_cast
<ConstantInt
>(SrcLoc
->getOperand(0)))
86 LocCookie
= CI
->getZExtValue();
88 return emitError(LocCookie
, ErrorStr
);
91 void LLVMContext::emitError(unsigned LocCookie
, StringRef ErrorStr
) {
92 // If there is no error handler installed, just print the error and exit.
93 if (pImpl
->InlineAsmDiagHandler
== 0) {
94 errs() << "error: " << ErrorStr
<< "\n";
98 // If we do have an error handler, we can report the error and keep going.
99 SMDiagnostic
Diag("", "error: " + ErrorStr
.str());
101 pImpl
->InlineAsmDiagHandler(Diag
, pImpl
->InlineAsmDiagContext
, LocCookie
);
104 //===----------------------------------------------------------------------===//
105 // Metadata Kind Uniquing
106 //===----------------------------------------------------------------------===//
109 /// isValidName - Return true if Name is a valid custom metadata handler name.
110 static bool isValidName(StringRef MDName
) {
114 if (!std::isalpha(MDName
[0]))
117 for (StringRef::iterator I
= MDName
.begin() + 1, E
= MDName
.end(); I
!= E
;
119 if (!std::isalnum(*I
) && *I
!= '_' && *I
!= '-' && *I
!= '.')
126 /// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
127 unsigned LLVMContext::getMDKindID(StringRef Name
) const {
128 assert(isValidName(Name
) && "Invalid MDNode name");
130 // If this is new, assign it its ID.
132 pImpl
->CustomMDKindNames
.GetOrCreateValue(
133 Name
, pImpl
->CustomMDKindNames
.size()).second
;
136 /// getHandlerNames - Populate client supplied smallvector using custome
137 /// metadata name and ID.
138 void LLVMContext::getMDKindNames(SmallVectorImpl
<StringRef
> &Names
) const {
139 Names
.resize(pImpl
->CustomMDKindNames
.size());
140 for (StringMap
<unsigned>::const_iterator I
= pImpl
->CustomMDKindNames
.begin(),
141 E
= pImpl
->CustomMDKindNames
.end(); I
!= E
; ++I
)
142 Names
[I
->second
] = I
->first();