2012-12-26 22:00:49 +00:00
|
|
|
//===-- LLVMContext.cpp - Implement LLVMContext ---------------------------===//
|
2009-06-30 00:48:55 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 17:06:46 +00:00
|
|
|
//
|
|
|
|
// This file implements LLVMContext, as a wrapper around the opaque
|
2009-08-11 17:45:13 +00:00
|
|
|
// class LLVMContextImpl.
|
2009-06-30 17:06:46 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 00:48:55 +00:00
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "LLVMContextImpl.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Constants.h"
|
2014-04-08 16:42:34 +00:00
|
|
|
#include "llvm/IR/DebugLoc.h"
|
2013-12-17 17:47:22 +00:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instruction.h"
|
|
|
|
#include "llvm/IR/Metadata.h"
|
2009-06-30 23:39:59 +00: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 :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100723 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-07 23:40:44 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2010-12-19 20:43:38 +00:00
|
|
|
#include <cctype>
|
2009-06-30 00:48:55 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-06-30 23:39:59 +00:00
|
|
|
static ManagedStatic<LLVMContext> GlobalContext;
|
|
|
|
|
2009-07-01 23:13:44 +00:00
|
|
|
LLVMContext& llvm::getGlobalContext() {
|
2009-07-01 21:22:36 +00:00
|
|
|
return *GlobalContext;
|
2009-06-30 23:39:59 +00:00
|
|
|
}
|
|
|
|
|
2010-03-30 23:03:27 +00:00
|
|
|
LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
|
2010-09-14 21:25:10 +00:00
|
|
|
// Create the fixed metadata kinds. This is done in the same order as the
|
|
|
|
// MD_* enum values so that they correspond.
|
|
|
|
|
2010-12-17 23:06:32 +00:00
|
|
|
// Create the 'dbg' metadata kind.
|
2010-03-30 23:03:27 +00:00
|
|
|
unsigned DbgID = getMDKindID("dbg");
|
|
|
|
assert(DbgID == MD_dbg && "dbg kind id drifted"); (void)DbgID;
|
2010-09-14 21:25:10 +00:00
|
|
|
|
|
|
|
// Create the 'tbaa' metadata kind.
|
|
|
|
unsigned TBAAID = getMDKindID("tbaa");
|
|
|
|
assert(TBAAID == MD_tbaa && "tbaa kind id drifted"); (void)TBAAID;
|
2011-07-06 18:22:43 +00:00
|
|
|
|
|
|
|
// Create the 'prof' metadata kind.
|
|
|
|
unsigned ProfID = getMDKindID("prof");
|
|
|
|
assert(ProfID == MD_prof && "prof kind id drifted"); (void)ProfID;
|
2011-10-27 19:19:14 +00:00
|
|
|
|
2012-04-14 12:36:06 +00:00
|
|
|
// Create the 'fpmath' metadata kind.
|
|
|
|
unsigned FPAccuracyID = getMDKindID("fpmath");
|
|
|
|
assert(FPAccuracyID == MD_fpmath && "fpmath kind id drifted");
|
2011-10-27 19:19:14 +00:00
|
|
|
(void)FPAccuracyID;
|
2012-03-24 00:14:51 +00:00
|
|
|
|
|
|
|
// Create the 'range' metadata kind.
|
|
|
|
unsigned RangeID = getMDKindID("range");
|
|
|
|
assert(RangeID == MD_range && "range kind id drifted");
|
|
|
|
(void)RangeID;
|
2012-09-13 17:56:17 +00: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-06 17:48:48 +00: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-30 23:03:27 +00:00
|
|
|
}
|
2009-06-30 00:48:55 +00:00
|
|
|
LLVMContext::~LLVMContext() { delete pImpl; }
|
2009-08-04 22:41:48 +00:00
|
|
|
|
2010-09-08 18:03:32 +00: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 :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100723 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-07 23:40:44 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Recoverable Backend Errors
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-02-11 05:37:07 +00:00
|
|
|
void LLVMContext::
|
|
|
|
setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler,
|
|
|
|
void *DiagContext) {
|
|
|
|
pImpl->InlineAsmDiagHandler = DiagHandler;
|
|
|
|
pImpl->InlineAsmDiagContext = DiagContext;
|
2010-04-06 00:44:45 +00:00
|
|
|
}
|
|
|
|
|
2013-02-11 05:37:07 +00:00
|
|
|
/// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by
|
|
|
|
/// setInlineAsmDiagnosticHandler.
|
|
|
|
LLVMContext::InlineAsmDiagHandlerTy
|
|
|
|
LLVMContext::getInlineAsmDiagnosticHandler() const {
|
|
|
|
return pImpl->InlineAsmDiagHandler;
|
2010-04-06 00:44:45 +00:00
|
|
|
}
|
|
|
|
|
2013-02-11 05:37:07 +00:00
|
|
|
/// getInlineAsmDiagnosticContext - Return the diagnostic context set by
|
|
|
|
/// setInlineAsmDiagnosticHandler.
|
|
|
|
void *LLVMContext::getInlineAsmDiagnosticContext() const {
|
|
|
|
return pImpl->InlineAsmDiagContext;
|
2010-04-06 00:44:45 +00:00
|
|
|
}
|
2010-03-30 20:48:48 +00:00
|
|
|
|
2013-12-17 17:47:22 +00: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-03 23:47:05 +00:00
|
|
|
void LLVMContext::emitError(const Twine &ErrorStr) {
|
2014-02-22 00:34:11 +00: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 :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100723 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-07 23:40:44 +00:00
|
|
|
}
|
|
|
|
|
2013-02-08 21:48:29 +00:00
|
|
|
void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
|
2014-02-22 00:34:11 +00: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 :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100723 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-07 23:40:44 +00:00
|
|
|
}
|
|
|
|
|
2013-12-17 17:47:22 +00:00
|
|
|
void LLVMContext::diagnose(const DiagnosticInfo &DI) {
|
|
|
|
// If there is a report handler, use it.
|
2014-04-09 06:08:46 +00:00
|
|
|
if (pImpl->DiagnosticHandler) {
|
2013-12-17 17:47:22 +00:00
|
|
|
pImpl->DiagnosticHandler(DI, pImpl->DiagnosticContext);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 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 09:08:45 +00:00
|
|
|
case DS_Remark:
|
|
|
|
errs() << "remark: " << MsgStorage << "\n";
|
|
|
|
break;
|
2013-12-17 17:47:22 +00:00
|
|
|
case DS_Note:
|
|
|
|
errs() << "note: " << MsgStorage << "\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-03 23:47:05 +00:00
|
|
|
void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
|
2014-02-22 00:34:11 +00: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 :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100723 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-07 23:40:44 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:42:34 +00:00
|
|
|
void LLVMContext::emitOptimizationRemark(const char *PassName,
|
|
|
|
const Function &Fn,
|
|
|
|
const DebugLoc &DLoc,
|
|
|
|
const Twine &Msg) {
|
2014-04-08 16:42:38 +00:00
|
|
|
if (pImpl->optimizationRemarksEnabledFor(PassName))
|
|
|
|
diagnose(DiagnosticInfoOptimizationRemark(PassName, Fn, DLoc, Msg));
|
2014-04-08 16:42:34 +00: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 :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100723 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-07 23:40:44 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Metadata Kind Uniquing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-30 20:48:48 +00: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-17 23:06:32 +00:00
|
|
|
|
2013-02-12 21:21:59 +00:00
|
|
|
if (!std::isalpha(static_cast<unsigned char>(MDName[0])))
|
2010-03-30 20:48:48 +00:00
|
|
|
return false;
|
2010-12-17 23:06:32 +00:00
|
|
|
|
2010-03-30 20:48:48 +00:00
|
|
|
for (StringRef::iterator I = MDName.begin() + 1, E = MDName.end(); I != E;
|
|
|
|
++I) {
|
2013-02-12 21:21:59 +00:00
|
|
|
if (!std::isalnum(static_cast<unsigned char>(*I)) && *I != '_' &&
|
|
|
|
*I != '-' && *I != '.')
|
2010-03-30 20:48:48 +00: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-20 21:42:28 +00:00
|
|
|
|
2010-03-30 20:48:48 +00:00
|
|
|
// If this is new, assign it its ID.
|
2010-07-20 21:42:28 +00:00
|
|
|
return
|
|
|
|
pImpl->CustomMDKindNames.GetOrCreateValue(
|
|
|
|
Name, pImpl->CustomMDKindNames.size()).second;
|
2009-08-04 22:41:48 +00:00
|
|
|
}
|
2009-08-11 06:31:57 +00:00
|
|
|
|
2010-03-30 20:48:48 +00:00
|
|
|
/// getHandlerNames - Populate client supplied smallvector using custome
|
|
|
|
/// metadata name and ID.
|
|
|
|
void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const {
|
2010-07-20 21:42:28 +00:00
|
|
|
Names.resize(pImpl->CustomMDKindNames.size());
|
2010-03-30 20:48:48 +00:00
|
|
|
for (StringMap<unsigned>::const_iterator I = pImpl->CustomMDKindNames.begin(),
|
|
|
|
E = pImpl->CustomMDKindNames.end(); I != E; ++I)
|
|
|
|
Names[I->second] = I->first();
|
|
|
|
}
|