2012-12-27 06:00:49 +08:00
|
|
|
//===-- LLVMContext.cpp - Implement LLVMContext ---------------------------===//
|
2009-06-30 08:48:55 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-07-01 01:06:46 +08:00
|
|
|
//
|
|
|
|
// This file implements LLVMContext, as a wrapper around the opaque
|
2009-08-12 01:45:13 +08:00
|
|
|
// class LLVMContextImpl.
|
2009-07-01 01:06:46 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 08:48:55 +08:00
|
|
|
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "LLVMContextImpl.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Constants.h"
|
2014-04-09 00:42:34 +08:00
|
|
|
#include "llvm/IR/DebugLoc.h"
|
2013-12-18 01:47:22 +08:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Instruction.h"
|
|
|
|
#include "llvm/IR/Metadata.h"
|
2009-07-01 07:39:59 +08:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
introduce a new recoverable error handling API to LLVMContext
and use it in one place in inline asm handling stuff. Before
we'd generate this for an invalid modifier letter:
$ clang asm.c -c -o t.o
fatal error: error in backend: Invalid operand found in inline asm: 'abc incl ${0:Z}'
INLINEASM <es:abc incl ${0:Z}>, 10, %EAX<def>, 2147483657, %EAX, 14, %EFLAGS<earlyclobber,def,dead>, <!-1>
Now we generate this:
$ clang asm.c -c -o t.o
error: invalid operand in inline asm: 'incl ${0:Z}'
asm.c:3:12: note: generated from here
__asm__ ("incl %Z0" : "+r" (X));
^
1 error generated.
This is much better but still admittedly not great ("why" is the operand
invalid??), codegen should try harder with its diagnostics :)
llvm-svn: 100723
2010-04-08 07:40:44 +08:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2010-12-20 04:43:38 +08:00
|
|
|
#include <cctype>
|
2009-06-30 08:48:55 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-01 07:39:59 +08:00
|
|
|
static ManagedStatic<LLVMContext> GlobalContext;
|
|
|
|
|
2009-07-02 07:13:44 +08:00
|
|
|
LLVMContext& llvm::getGlobalContext() {
|
2009-07-02 05:22:36 +08:00
|
|
|
return *GlobalContext;
|
2009-07-01 07:39:59 +08:00
|
|
|
}
|
|
|
|
|
2010-03-31 07:03:27 +08:00
|
|
|
LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
|
2010-09-15 05:25:10 +08:00
|
|
|
// Create the fixed metadata kinds. This is done in the same order as the
|
|
|
|
// MD_* enum values so that they correspond.
|
|
|
|
|
2010-12-18 07:06:32 +08:00
|
|
|
// Create the 'dbg' metadata kind.
|
2010-03-31 07:03:27 +08:00
|
|
|
unsigned DbgID = getMDKindID("dbg");
|
|
|
|
assert(DbgID == MD_dbg && "dbg kind id drifted"); (void)DbgID;
|
2010-09-15 05:25:10 +08:00
|
|
|
|
|
|
|
// Create the 'tbaa' metadata kind.
|
|
|
|
unsigned TBAAID = getMDKindID("tbaa");
|
|
|
|
assert(TBAAID == MD_tbaa && "tbaa kind id drifted"); (void)TBAAID;
|
2011-07-07 02:22:43 +08:00
|
|
|
|
|
|
|
// Create the 'prof' metadata kind.
|
|
|
|
unsigned ProfID = getMDKindID("prof");
|
|
|
|
assert(ProfID == MD_prof && "prof kind id drifted"); (void)ProfID;
|
2011-10-28 03:19:14 +08:00
|
|
|
|
2012-04-14 20:36:06 +08:00
|
|
|
// Create the 'fpmath' metadata kind.
|
|
|
|
unsigned FPAccuracyID = getMDKindID("fpmath");
|
|
|
|
assert(FPAccuracyID == MD_fpmath && "fpmath kind id drifted");
|
2011-10-28 03:19:14 +08:00
|
|
|
(void)FPAccuracyID;
|
2012-03-24 08:14:51 +08:00
|
|
|
|
|
|
|
// Create the 'range' metadata kind.
|
|
|
|
unsigned RangeID = getMDKindID("range");
|
|
|
|
assert(RangeID == MD_range && "range kind id drifted");
|
|
|
|
(void)RangeID;
|
2012-09-14 01:56:17 +08:00
|
|
|
|
|
|
|
// Create the 'tbaa.struct' metadata kind.
|
|
|
|
unsigned TBAAStructID = getMDKindID("tbaa.struct");
|
|
|
|
assert(TBAAStructID == MD_tbaa_struct && "tbaa.struct kind id drifted");
|
|
|
|
(void)TBAAStructID;
|
2013-03-07 01:48:48 +08:00
|
|
|
|
|
|
|
// Create the 'invariant.load' metadata kind.
|
|
|
|
unsigned InvariantLdId = getMDKindID("invariant.load");
|
|
|
|
assert(InvariantLdId == MD_invariant_load && "invariant.load kind id drifted");
|
|
|
|
(void)InvariantLdId;
|
2010-03-31 07:03:27 +08:00
|
|
|
}
|
2009-06-30 08:48:55 +08:00
|
|
|
LLVMContext::~LLVMContext() { delete pImpl; }
|
2009-08-05 06:41:48 +08:00
|
|
|
|
2010-09-09 02:03:32 +08:00
|
|
|
void LLVMContext::addModule(Module *M) {
|
|
|
|
pImpl->OwnedModules.insert(M);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMContext::removeModule(Module *M) {
|
|
|
|
pImpl->OwnedModules.erase(M);
|
|
|
|
}
|
|
|
|
|
introduce a new recoverable error handling API to LLVMContext
and use it in one place in inline asm handling stuff. Before
we'd generate this for an invalid modifier letter:
$ clang asm.c -c -o t.o
fatal error: error in backend: Invalid operand found in inline asm: 'abc incl ${0:Z}'
INLINEASM <es:abc incl ${0:Z}>, 10, %EAX<def>, 2147483657, %EAX, 14, %EFLAGS<earlyclobber,def,dead>, <!-1>
Now we generate this:
$ clang asm.c -c -o t.o
error: invalid operand in inline asm: 'incl ${0:Z}'
asm.c:3:12: note: generated from here
__asm__ ("incl %Z0" : "+r" (X));
^
1 error generated.
This is much better but still admittedly not great ("why" is the operand
invalid??), codegen should try harder with its diagnostics :)
llvm-svn: 100723
2010-04-08 07:40:44 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Recoverable Backend Errors
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-02-11 13:37:07 +08:00
|
|
|
void LLVMContext::
|
|
|
|
setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler,
|
|
|
|
void *DiagContext) {
|
|
|
|
pImpl->InlineAsmDiagHandler = DiagHandler;
|
|
|
|
pImpl->InlineAsmDiagContext = DiagContext;
|
2010-04-06 08:44:45 +08:00
|
|
|
}
|
|
|
|
|
2013-02-11 13:37:07 +08:00
|
|
|
/// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by
|
|
|
|
/// setInlineAsmDiagnosticHandler.
|
|
|
|
LLVMContext::InlineAsmDiagHandlerTy
|
|
|
|
LLVMContext::getInlineAsmDiagnosticHandler() const {
|
|
|
|
return pImpl->InlineAsmDiagHandler;
|
2010-04-06 08:44:45 +08:00
|
|
|
}
|
|
|
|
|
2013-02-11 13:37:07 +08:00
|
|
|
/// getInlineAsmDiagnosticContext - Return the diagnostic context set by
|
|
|
|
/// setInlineAsmDiagnosticHandler.
|
|
|
|
void *LLVMContext::getInlineAsmDiagnosticContext() const {
|
|
|
|
return pImpl->InlineAsmDiagContext;
|
2010-04-06 08:44:45 +08:00
|
|
|
}
|
2010-03-31 04:48:48 +08:00
|
|
|
|
2013-12-18 01:47:22 +08:00
|
|
|
void LLVMContext::setDiagnosticHandler(DiagnosticHandlerTy DiagnosticHandler,
|
|
|
|
void *DiagnosticContext) {
|
|
|
|
pImpl->DiagnosticHandler = DiagnosticHandler;
|
|
|
|
pImpl->DiagnosticContext = DiagnosticContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMContext::DiagnosticHandlerTy LLVMContext::getDiagnosticHandler() const {
|
|
|
|
return pImpl->DiagnosticHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *LLVMContext::getDiagnosticContext() const {
|
|
|
|
return pImpl->DiagnosticContext;
|
|
|
|
}
|
|
|
|
|
2012-01-04 07:47:05 +08:00
|
|
|
void LLVMContext::emitError(const Twine &ErrorStr) {
|
2014-02-22 08:34:11 +08:00
|
|
|
diagnose(DiagnosticInfoInlineAsm(ErrorStr));
|
introduce a new recoverable error handling API to LLVMContext
and use it in one place in inline asm handling stuff. Before
we'd generate this for an invalid modifier letter:
$ clang asm.c -c -o t.o
fatal error: error in backend: Invalid operand found in inline asm: 'abc incl ${0:Z}'
INLINEASM <es:abc incl ${0:Z}>, 10, %EAX<def>, 2147483657, %EAX, 14, %EFLAGS<earlyclobber,def,dead>, <!-1>
Now we generate this:
$ clang asm.c -c -o t.o
error: invalid operand in inline asm: 'incl ${0:Z}'
asm.c:3:12: note: generated from here
__asm__ ("incl %Z0" : "+r" (X));
^
1 error generated.
This is much better but still admittedly not great ("why" is the operand
invalid??), codegen should try harder with its diagnostics :)
llvm-svn: 100723
2010-04-08 07:40:44 +08:00
|
|
|
}
|
|
|
|
|
2013-02-09 05:48:29 +08:00
|
|
|
void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
|
2014-02-22 08:34:11 +08:00
|
|
|
assert (I && "Invalid instruction");
|
|
|
|
diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
|
introduce a new recoverable error handling API to LLVMContext
and use it in one place in inline asm handling stuff. Before
we'd generate this for an invalid modifier letter:
$ clang asm.c -c -o t.o
fatal error: error in backend: Invalid operand found in inline asm: 'abc incl ${0:Z}'
INLINEASM <es:abc incl ${0:Z}>, 10, %EAX<def>, 2147483657, %EAX, 14, %EFLAGS<earlyclobber,def,dead>, <!-1>
Now we generate this:
$ clang asm.c -c -o t.o
error: invalid operand in inline asm: 'incl ${0:Z}'
asm.c:3:12: note: generated from here
__asm__ ("incl %Z0" : "+r" (X));
^
1 error generated.
This is much better but still admittedly not great ("why" is the operand
invalid??), codegen should try harder with its diagnostics :)
llvm-svn: 100723
2010-04-08 07:40:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-18 01:47:22 +08:00
|
|
|
void LLVMContext::diagnose(const DiagnosticInfo &DI) {
|
|
|
|
// If there is a report handler, use it.
|
2014-04-09 14:08:46 +08:00
|
|
|
if (pImpl->DiagnosticHandler) {
|
2013-12-18 01:47:22 +08:00
|
|
|
pImpl->DiagnosticHandler(DI, pImpl->DiagnosticContext);
|
|
|
|
return;
|
|
|
|
}
|
2014-04-17 00:53:41 +08:00
|
|
|
|
|
|
|
// Optimization remarks are selective. They need to check whether
|
|
|
|
// the regexp pattern, passed via -pass-remarks, matches the name
|
|
|
|
// of the pass that is emitting the diagnostic. If there is no match,
|
|
|
|
// ignore the diagnostic and return.
|
|
|
|
if (DI.getKind() == llvm::DK_OptimizationRemark &&
|
|
|
|
!pImpl->optimizationRemarksEnabledFor(
|
|
|
|
cast<DiagnosticInfoOptimizationRemark>(DI).getPassName()))
|
|
|
|
return;
|
|
|
|
|
2013-12-18 01:47:22 +08:00
|
|
|
// Otherwise, print the message with a prefix based on the severity.
|
|
|
|
std::string MsgStorage;
|
|
|
|
raw_string_ostream Stream(MsgStorage);
|
|
|
|
DiagnosticPrinterRawOStream DP(Stream);
|
|
|
|
DI.print(DP);
|
|
|
|
Stream.flush();
|
|
|
|
switch (DI.getSeverity()) {
|
|
|
|
case DS_Error:
|
|
|
|
errs() << "error: " << MsgStorage << "\n";
|
|
|
|
exit(1);
|
|
|
|
case DS_Warning:
|
|
|
|
errs() << "warning: " << MsgStorage << "\n";
|
|
|
|
break;
|
2014-02-28 17:08:45 +08:00
|
|
|
case DS_Remark:
|
|
|
|
errs() << "remark: " << MsgStorage << "\n";
|
|
|
|
break;
|
2013-12-18 01:47:22 +08:00
|
|
|
case DS_Note:
|
|
|
|
errs() << "note: " << MsgStorage << "\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-04 07:47:05 +08:00
|
|
|
void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
|
2014-02-22 08:34:11 +08:00
|
|
|
diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
|
introduce a new recoverable error handling API to LLVMContext
and use it in one place in inline asm handling stuff. Before
we'd generate this for an invalid modifier letter:
$ clang asm.c -c -o t.o
fatal error: error in backend: Invalid operand found in inline asm: 'abc incl ${0:Z}'
INLINEASM <es:abc incl ${0:Z}>, 10, %EAX<def>, 2147483657, %EAX, 14, %EFLAGS<earlyclobber,def,dead>, <!-1>
Now we generate this:
$ clang asm.c -c -o t.o
error: invalid operand in inline asm: 'incl ${0:Z}'
asm.c:3:12: note: generated from here
__asm__ ("incl %Z0" : "+r" (X));
^
1 error generated.
This is much better but still admittedly not great ("why" is the operand
invalid??), codegen should try harder with its diagnostics :)
llvm-svn: 100723
2010-04-08 07:40:44 +08:00
|
|
|
}
|
|
|
|
|
2014-04-09 00:42:34 +08:00
|
|
|
void LLVMContext::emitOptimizationRemark(const char *PassName,
|
|
|
|
const Function &Fn,
|
|
|
|
const DebugLoc &DLoc,
|
|
|
|
const Twine &Msg) {
|
2014-04-17 00:53:41 +08:00
|
|
|
diagnose(DiagnosticInfoOptimizationRemark(PassName, Fn, DLoc, Msg));
|
2014-04-09 00:42:34 +08:00
|
|
|
}
|
|
|
|
|
introduce a new recoverable error handling API to LLVMContext
and use it in one place in inline asm handling stuff. Before
we'd generate this for an invalid modifier letter:
$ clang asm.c -c -o t.o
fatal error: error in backend: Invalid operand found in inline asm: 'abc incl ${0:Z}'
INLINEASM <es:abc incl ${0:Z}>, 10, %EAX<def>, 2147483657, %EAX, 14, %EFLAGS<earlyclobber,def,dead>, <!-1>
Now we generate this:
$ clang asm.c -c -o t.o
error: invalid operand in inline asm: 'incl ${0:Z}'
asm.c:3:12: note: generated from here
__asm__ ("incl %Z0" : "+r" (X));
^
1 error generated.
This is much better but still admittedly not great ("why" is the operand
invalid??), codegen should try harder with its diagnostics :)
llvm-svn: 100723
2010-04-08 07:40:44 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Metadata Kind Uniquing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-31 04:48:48 +08:00
|
|
|
#ifndef NDEBUG
|
|
|
|
/// isValidName - Return true if Name is a valid custom metadata handler name.
|
|
|
|
static bool isValidName(StringRef MDName) {
|
|
|
|
if (MDName.empty())
|
|
|
|
return false;
|
2010-12-18 07:06:32 +08:00
|
|
|
|
2013-02-13 05:21:59 +08:00
|
|
|
if (!std::isalpha(static_cast<unsigned char>(MDName[0])))
|
2010-03-31 04:48:48 +08:00
|
|
|
return false;
|
2010-12-18 07:06:32 +08:00
|
|
|
|
2010-03-31 04:48:48 +08:00
|
|
|
for (StringRef::iterator I = MDName.begin() + 1, E = MDName.end(); I != E;
|
|
|
|
++I) {
|
2013-02-13 05:21:59 +08:00
|
|
|
if (!std::isalnum(static_cast<unsigned char>(*I)) && *I != '_' &&
|
|
|
|
*I != '-' && *I != '.')
|
2010-03-31 04:48:48 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
|
|
|
|
unsigned LLVMContext::getMDKindID(StringRef Name) const {
|
|
|
|
assert(isValidName(Name) && "Invalid MDNode name");
|
2010-07-21 05:42:28 +08:00
|
|
|
|
2010-03-31 04:48:48 +08:00
|
|
|
// If this is new, assign it its ID.
|
2010-07-21 05:42:28 +08:00
|
|
|
return
|
|
|
|
pImpl->CustomMDKindNames.GetOrCreateValue(
|
|
|
|
Name, pImpl->CustomMDKindNames.size()).second;
|
2009-08-05 06:41:48 +08:00
|
|
|
}
|
2009-08-11 14:31:57 +08:00
|
|
|
|
2010-03-31 04:48:48 +08:00
|
|
|
/// getHandlerNames - Populate client supplied smallvector using custome
|
|
|
|
/// metadata name and ID.
|
|
|
|
void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const {
|
2010-07-21 05:42:28 +08:00
|
|
|
Names.resize(pImpl->CustomMDKindNames.size());
|
2010-03-31 04:48:48 +08:00
|
|
|
for (StringMap<unsigned>::const_iterator I = pImpl->CustomMDKindNames.begin(),
|
|
|
|
E = pImpl->CustomMDKindNames.end(); I != E; ++I)
|
|
|
|
Names[I->second] = I->first();
|
|
|
|
}
|
2014-04-29 02:19:25 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pass Run Listeners
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// Notify that we finished running a pass.
|
|
|
|
void LLVMContext::notifyPassRun(Pass *P, Module *M, Function *F, BasicBlock *BB)
|
|
|
|
{
|
|
|
|
pImpl->notifyPassRun(this, P, M, F, BB);
|
|
|
|
}
|
|
|
|
/// Register the given PassRunListener to receive notifyPassRun() callbacks
|
|
|
|
/// whenever a pass ran. The context will take ownership of the listener and
|
|
|
|
/// free it when the context is destroyed.
|
|
|
|
void LLVMContext::addRunListener(PassRunListener *L) {
|
|
|
|
pImpl->addRunListener(L);
|
|
|
|
}
|
|
|
|
/// Unregister a PassRunListener so that it no longer receives notifyPassRun()
|
|
|
|
/// callbacks. Remove and free the listener from the context.
|
|
|
|
void LLVMContext::removeRunListener(PassRunListener *L) {
|
|
|
|
pImpl->removeRunListener(L);
|
|
|
|
}
|