OSDN Git Service

AbstractCallSite -- A unified interface for (in)direct and callback calls
[android-x86/external-llvm.git] / lib / IR / LLVMContext.cpp
1 //===-- LLVMContext.cpp - Implement LLVMContext ---------------------------===//
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 LLVMContext, as a wrapper around the opaque
11 //  class LLVMContextImpl.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/IR/LLVMContext.h"
16 #include "LLVMContextImpl.h"
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/ADT/StringMap.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/ADT/Twine.h"
21 #include "llvm/IR/DiagnosticInfo.h"
22 #include "llvm/IR/DiagnosticPrinter.h"
23 #include "llvm/IR/Metadata.h"
24 #include "llvm/IR/Module.h"
25 #include "llvm/Support/Casting.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/raw_ostream.h"
28 #include <cassert>
29 #include <cstdlib>
30 #include <string>
31 #include <utility>
32
33 using namespace llvm;
34
35 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
36   // Create the fixed metadata kinds. This is done in the same order as the
37   // MD_* enum values so that they correspond.
38   std::pair<unsigned, StringRef> MDKinds[] = {
39     {MD_dbg, "dbg"},
40     {MD_tbaa, "tbaa"},
41     {MD_prof, "prof"},
42     {MD_fpmath, "fpmath"},
43     {MD_range, "range"},
44     {MD_tbaa_struct, "tbaa.struct"},
45     {MD_invariant_load, "invariant.load"},
46     {MD_alias_scope, "alias.scope"},
47     {MD_noalias, "noalias"},
48     {MD_nontemporal, "nontemporal"},
49     {MD_mem_parallel_loop_access, "llvm.mem.parallel_loop_access"},
50     {MD_nonnull, "nonnull"},
51     {MD_dereferenceable, "dereferenceable"},
52     {MD_dereferenceable_or_null, "dereferenceable_or_null"},
53     {MD_make_implicit, "make.implicit"},
54     {MD_unpredictable, "unpredictable"},
55     {MD_invariant_group, "invariant.group"},
56     {MD_align, "align"},
57     {MD_loop, "llvm.loop"},
58     {MD_type, "type"},
59     {MD_section_prefix, "section_prefix"},
60     {MD_absolute_symbol, "absolute_symbol"},
61     {MD_associated, "associated"},
62     {MD_callees, "callees"},
63     {MD_irr_loop, "irr_loop"},
64     {MD_access_group, "llvm.access.group"},
65     {MD_callback, "callback"},
66   };
67
68   for (auto &MDKind : MDKinds) {
69     unsigned ID = getMDKindID(MDKind.second);
70     assert(ID == MDKind.first && "metadata kind id drifted");
71     (void)ID;
72   }
73
74   auto *DeoptEntry = pImpl->getOrInsertBundleTag("deopt");
75   assert(DeoptEntry->second == LLVMContext::OB_deopt &&
76          "deopt operand bundle id drifted!");
77   (void)DeoptEntry;
78
79   auto *FuncletEntry = pImpl->getOrInsertBundleTag("funclet");
80   assert(FuncletEntry->second == LLVMContext::OB_funclet &&
81          "funclet operand bundle id drifted!");
82   (void)FuncletEntry;
83
84   auto *GCTransitionEntry = pImpl->getOrInsertBundleTag("gc-transition");
85   assert(GCTransitionEntry->second == LLVMContext::OB_gc_transition &&
86          "gc-transition operand bundle id drifted!");
87   (void)GCTransitionEntry;
88
89   SyncScope::ID SingleThreadSSID =
90       pImpl->getOrInsertSyncScopeID("singlethread");
91   assert(SingleThreadSSID == SyncScope::SingleThread &&
92          "singlethread synchronization scope ID drifted!");
93   (void)SingleThreadSSID;
94
95   SyncScope::ID SystemSSID =
96       pImpl->getOrInsertSyncScopeID("");
97   assert(SystemSSID == SyncScope::System &&
98          "system synchronization scope ID drifted!");
99   (void)SystemSSID;
100 }
101
102 LLVMContext::~LLVMContext() { delete pImpl; }
103
104 void LLVMContext::addModule(Module *M) {
105   pImpl->OwnedModules.insert(M);
106 }
107
108 void LLVMContext::removeModule(Module *M) {
109   pImpl->OwnedModules.erase(M);
110 }
111
112 //===----------------------------------------------------------------------===//
113 // Recoverable Backend Errors
114 //===----------------------------------------------------------------------===//
115
116 void LLVMContext::
117 setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler,
118                               void *DiagContext) {
119   pImpl->InlineAsmDiagHandler = DiagHandler;
120   pImpl->InlineAsmDiagContext = DiagContext;
121 }
122
123 /// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by
124 /// setInlineAsmDiagnosticHandler.
125 LLVMContext::InlineAsmDiagHandlerTy
126 LLVMContext::getInlineAsmDiagnosticHandler() const {
127   return pImpl->InlineAsmDiagHandler;
128 }
129
130 /// getInlineAsmDiagnosticContext - Return the diagnostic context set by
131 /// setInlineAsmDiagnosticHandler.
132 void *LLVMContext::getInlineAsmDiagnosticContext() const {
133   return pImpl->InlineAsmDiagContext;
134 }
135
136 void LLVMContext::setDiagnosticHandlerCallBack(
137     DiagnosticHandler::DiagnosticHandlerTy DiagnosticHandler,
138     void *DiagnosticContext, bool RespectFilters) {
139   pImpl->DiagHandler->DiagHandlerCallback = DiagnosticHandler;
140   pImpl->DiagHandler->DiagnosticContext = DiagnosticContext;
141   pImpl->RespectDiagnosticFilters = RespectFilters;
142 }
143
144 void LLVMContext::setDiagnosticHandler(std::unique_ptr<DiagnosticHandler> &&DH,
145                                       bool RespectFilters) {
146   pImpl->DiagHandler = std::move(DH);
147   pImpl->RespectDiagnosticFilters = RespectFilters;
148 }
149
150 void LLVMContext::setDiagnosticsHotnessRequested(bool Requested) {
151   pImpl->DiagnosticsHotnessRequested = Requested;
152 }
153 bool LLVMContext::getDiagnosticsHotnessRequested() const {
154   return pImpl->DiagnosticsHotnessRequested;
155 }
156
157 void LLVMContext::setDiagnosticsHotnessThreshold(uint64_t Threshold) {
158   pImpl->DiagnosticsHotnessThreshold = Threshold;
159 }
160 uint64_t LLVMContext::getDiagnosticsHotnessThreshold() const {
161   return pImpl->DiagnosticsHotnessThreshold;
162 }
163
164 yaml::Output *LLVMContext::getDiagnosticsOutputFile() {
165   return pImpl->DiagnosticsOutputFile.get();
166 }
167
168 void LLVMContext::setDiagnosticsOutputFile(std::unique_ptr<yaml::Output> F) {
169   pImpl->DiagnosticsOutputFile = std::move(F);
170 }
171
172 DiagnosticHandler::DiagnosticHandlerTy
173 LLVMContext::getDiagnosticHandlerCallBack() const {
174   return pImpl->DiagHandler->DiagHandlerCallback;
175 }
176
177 void *LLVMContext::getDiagnosticContext() const {
178   return pImpl->DiagHandler->DiagnosticContext;
179 }
180
181 void LLVMContext::setYieldCallback(YieldCallbackTy Callback, void *OpaqueHandle)
182 {
183   pImpl->YieldCallback = Callback;
184   pImpl->YieldOpaqueHandle = OpaqueHandle;
185 }
186
187 void LLVMContext::yield() {
188   if (pImpl->YieldCallback)
189     pImpl->YieldCallback(this, pImpl->YieldOpaqueHandle);
190 }
191
192 void LLVMContext::emitError(const Twine &ErrorStr) {
193   diagnose(DiagnosticInfoInlineAsm(ErrorStr));
194 }
195
196 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
197   assert (I && "Invalid instruction");
198   diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
199 }
200
201 static bool isDiagnosticEnabled(const DiagnosticInfo &DI) {
202   // Optimization remarks are selective. They need to check whether the regexp
203   // pattern, passed via one of the -pass-remarks* flags, matches the name of
204   // the pass that is emitting the diagnostic. If there is no match, ignore the
205   // diagnostic and return.
206   //
207   // Also noisy remarks are only enabled if we have hotness information to sort
208   // them.
209   if (auto *Remark = dyn_cast<DiagnosticInfoOptimizationBase>(&DI))
210     return Remark->isEnabled() &&
211            (!Remark->isVerbose() || Remark->getHotness());
212
213   return true;
214 }
215
216 const char *
217 LLVMContext::getDiagnosticMessagePrefix(DiagnosticSeverity Severity) {
218   switch (Severity) {
219   case DS_Error:
220     return "error";
221   case DS_Warning:
222     return "warning";
223   case DS_Remark:
224     return "remark";
225   case DS_Note:
226     return "note";
227   }
228   llvm_unreachable("Unknown DiagnosticSeverity");
229 }
230
231 void LLVMContext::diagnose(const DiagnosticInfo &DI) {
232   if (auto *OptDiagBase = dyn_cast<DiagnosticInfoOptimizationBase>(&DI)) {
233     yaml::Output *Out = getDiagnosticsOutputFile();
234     if (Out) {
235       // For remarks the << operator takes a reference to a pointer.
236       auto *P = const_cast<DiagnosticInfoOptimizationBase *>(OptDiagBase);
237       *Out << P;
238     }
239   }
240   // If there is a report handler, use it.
241   if (pImpl->DiagHandler &&
242       (!pImpl->RespectDiagnosticFilters || isDiagnosticEnabled(DI)) &&
243       pImpl->DiagHandler->handleDiagnostics(DI))
244     return;
245
246   if (!isDiagnosticEnabled(DI))
247     return;
248
249   // Otherwise, print the message with a prefix based on the severity.
250   DiagnosticPrinterRawOStream DP(errs());
251   errs() << getDiagnosticMessagePrefix(DI.getSeverity()) << ": ";
252   DI.print(DP);
253   errs() << "\n";
254   if (DI.getSeverity() == DS_Error)
255     exit(1);
256 }
257
258 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
259   diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
260 }
261
262 //===----------------------------------------------------------------------===//
263 // Metadata Kind Uniquing
264 //===----------------------------------------------------------------------===//
265
266 /// Return a unique non-zero ID for the specified metadata kind.
267 unsigned LLVMContext::getMDKindID(StringRef Name) const {
268   // If this is new, assign it its ID.
269   return pImpl->CustomMDKindNames.insert(
270                                      std::make_pair(
271                                          Name, pImpl->CustomMDKindNames.size()))
272       .first->second;
273 }
274
275 /// getHandlerNames - Populate client-supplied smallvector using custom
276 /// metadata name and ID.
277 void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const {
278   Names.resize(pImpl->CustomMDKindNames.size());
279   for (StringMap<unsigned>::const_iterator I = pImpl->CustomMDKindNames.begin(),
280        E = pImpl->CustomMDKindNames.end(); I != E; ++I)
281     Names[I->second] = I->first();
282 }
283
284 void LLVMContext::getOperandBundleTags(SmallVectorImpl<StringRef> &Tags) const {
285   pImpl->getOperandBundleTags(Tags);
286 }
287
288 uint32_t LLVMContext::getOperandBundleTagID(StringRef Tag) const {
289   return pImpl->getOperandBundleTagID(Tag);
290 }
291
292 SyncScope::ID LLVMContext::getOrInsertSyncScopeID(StringRef SSN) {
293   return pImpl->getOrInsertSyncScopeID(SSN);
294 }
295
296 void LLVMContext::getSyncScopeNames(SmallVectorImpl<StringRef> &SSNs) const {
297   pImpl->getSyncScopeNames(SSNs);
298 }
299
300 void LLVMContext::setGC(const Function &Fn, std::string GCName) {
301   auto It = pImpl->GCNames.find(&Fn);
302
303   if (It == pImpl->GCNames.end()) {
304     pImpl->GCNames.insert(std::make_pair(&Fn, std::move(GCName)));
305     return;
306   }
307   It->second = std::move(GCName);
308 }
309
310 const std::string &LLVMContext::getGC(const Function &Fn) {
311   return pImpl->GCNames[&Fn];
312 }
313
314 void LLVMContext::deleteGC(const Function &Fn) {
315   pImpl->GCNames.erase(&Fn);
316 }
317
318 bool LLVMContext::shouldDiscardValueNames() const {
319   return pImpl->DiscardValueNames;
320 }
321
322 bool LLVMContext::isODRUniquingDebugTypes() const { return !!pImpl->DITypeMap; }
323
324 void LLVMContext::enableDebugTypeODRUniquing() {
325   if (pImpl->DITypeMap)
326     return;
327
328   pImpl->DITypeMap.emplace();
329 }
330
331 void LLVMContext::disableDebugTypeODRUniquing() { pImpl->DITypeMap.reset(); }
332
333 void LLVMContext::setDiscardValueNames(bool Discard) {
334   pImpl->DiscardValueNames = Discard;
335 }
336
337 OptPassGate &LLVMContext::getOptPassGate() const {
338   return pImpl->getOptPassGate();
339 }
340
341 void LLVMContext::setOptPassGate(OptPassGate& OPG) {
342   pImpl->setOptPassGate(OPG);
343 }
344
345 const DiagnosticHandler *LLVMContext::getDiagHandlerPtr() const {
346   return pImpl->DiagHandler.get();
347 }
348
349 std::unique_ptr<DiagnosticHandler> LLVMContext::getDiagnosticHandler() {
350   return std::move(pImpl->DiagHandler);
351 }