2009-06-30 02:48:55 +02:00
|
|
|
//===-- LLVMContext.cpp - Implement LLVMContext -----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 19:06:46 +02:00
|
|
|
//
|
|
|
|
// This file implements LLVMContext, as a wrapper around the opaque
|
2009-08-11 19:45:13 +02:00
|
|
|
// class LLVMContextImpl.
|
2009-06-30 19:06:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-30 02:48:55 +02:00
|
|
|
|
|
|
|
#include "llvm/LLVMContext.h"
|
2009-09-03 03:39:20 +02:00
|
|
|
#include "llvm/Metadata.h"
|
2009-06-30 02:48:55 +02:00
|
|
|
#include "llvm/Constants.h"
|
2009-07-13 06:09:18 +02:00
|
|
|
#include "llvm/Instruction.h"
|
2009-07-01 01:39:59 +02: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 01:40:44 +02:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2009-06-30 02:48:55 +02:00
|
|
|
#include "LLVMContextImpl.h"
|
2010-12-19 21:43:38 +01:00
|
|
|
#include <cctype>
|
2009-06-30 02:48:55 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-01 01:39:59 +02:00
|
|
|
static ManagedStatic<LLVMContext> GlobalContext;
|
|
|
|
|
2009-07-02 01:13:44 +02:00
|
|
|
LLVMContext& llvm::getGlobalContext() {
|
2009-07-01 23:22:36 +02:00
|
|
|
return *GlobalContext;
|
2009-07-01 01:39:59 +02:00
|
|
|
}
|
|
|
|
|
2010-03-31 01:03:27 +02:00
|
|
|
LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
|
2010-09-14 23:25:10 +02: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 00:06:32 +01:00
|
|
|
// Create the 'dbg' metadata kind.
|
2010-03-31 01:03:27 +02:00
|
|
|
unsigned DbgID = getMDKindID("dbg");
|
|
|
|
assert(DbgID == MD_dbg && "dbg kind id drifted"); (void)DbgID;
|
2010-09-14 23:25:10 +02:00
|
|
|
|
|
|
|
// Create the 'tbaa' metadata kind.
|
|
|
|
unsigned TBAAID = getMDKindID("tbaa");
|
|
|
|
assert(TBAAID == MD_tbaa && "tbaa kind id drifted"); (void)TBAAID;
|
2011-07-06 20:22:43 +02:00
|
|
|
|
|
|
|
// Create the 'prof' metadata kind.
|
|
|
|
unsigned ProfID = getMDKindID("prof");
|
|
|
|
assert(ProfID == MD_prof && "prof kind id drifted"); (void)ProfID;
|
2011-10-27 21:19:14 +02:00
|
|
|
|
|
|
|
// Create the 'fpaccuracy' metadata kind.
|
|
|
|
unsigned FPAccuracyID = getMDKindID("fpaccuracy");
|
|
|
|
assert(FPAccuracyID == MD_fpaccuracy && "fpaccuracy kind id drifted");
|
|
|
|
(void)FPAccuracyID;
|
2010-03-31 01:03:27 +02:00
|
|
|
}
|
2009-06-30 02:48:55 +02:00
|
|
|
LLVMContext::~LLVMContext() { delete pImpl; }
|
2009-08-05 00:41:48 +02:00
|
|
|
|
2010-09-08 20:03:32 +02: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 01:40:44 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Recoverable Backend Errors
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-17 09:13:01 +01:00
|
|
|
void LLVMContext::
|
2010-12-18 00:06:32 +01:00
|
|
|
setInlineAsmDiagnosticHandler(InlineAsmDiagHandlerTy DiagHandler,
|
2010-11-17 09:13:01 +01:00
|
|
|
void *DiagContext) {
|
2010-04-06 02:44:45 +02:00
|
|
|
pImpl->InlineAsmDiagHandler = DiagHandler;
|
|
|
|
pImpl->InlineAsmDiagContext = DiagContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getInlineAsmDiagnosticHandler - Return the diagnostic handler set by
|
|
|
|
/// setInlineAsmDiagnosticHandler.
|
2010-11-17 09:13:01 +01:00
|
|
|
LLVMContext::InlineAsmDiagHandlerTy
|
|
|
|
LLVMContext::getInlineAsmDiagnosticHandler() const {
|
2010-04-06 02:44:45 +02:00
|
|
|
return pImpl->InlineAsmDiagHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getInlineAsmDiagnosticContext - Return the diagnostic context set by
|
|
|
|
/// setInlineAsmDiagnosticHandler.
|
|
|
|
void *LLVMContext::getInlineAsmDiagnosticContext() const {
|
|
|
|
return pImpl->InlineAsmDiagContext;
|
|
|
|
}
|
2010-03-30 22:48:48 +02: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 01:40:44 +02:00
|
|
|
void LLVMContext::emitError(StringRef ErrorStr) {
|
|
|
|
emitError(0U, ErrorStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMContext::emitError(const Instruction *I, StringRef ErrorStr) {
|
|
|
|
unsigned LocCookie = 0;
|
|
|
|
if (const MDNode *SrcLoc = I->getMetadata("srcloc")) {
|
|
|
|
if (SrcLoc->getNumOperands() != 0)
|
|
|
|
if (const ConstantInt *CI = dyn_cast<ConstantInt>(SrcLoc->getOperand(0)))
|
|
|
|
LocCookie = CI->getZExtValue();
|
|
|
|
}
|
|
|
|
return emitError(LocCookie, ErrorStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMContext::emitError(unsigned LocCookie, StringRef ErrorStr) {
|
|
|
|
// If there is no error handler installed, just print the error and exit.
|
|
|
|
if (pImpl->InlineAsmDiagHandler == 0) {
|
|
|
|
errs() << "error: " << ErrorStr << "\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-12-18 00:06:32 +01: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 01:40:44 +02:00
|
|
|
// If we do have an error handler, we can report the error and keep going.
|
2011-10-16 07:43:57 +02:00
|
|
|
SMDiagnostic Diag("", SourceMgr::DK_Error, ErrorStr.str());
|
2010-12-18 00:06:32 +01:00
|
|
|
|
2010-11-17 09:13:01 +01:00
|
|
|
pImpl->InlineAsmDiagHandler(Diag, pImpl->InlineAsmDiagContext, LocCookie);
|
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 01:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Metadata Kind Uniquing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-30 22:48:48 +02: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 00:06:32 +01:00
|
|
|
|
2010-12-19 21:42:43 +01:00
|
|
|
if (!std::isalpha(MDName[0]))
|
2010-03-30 22:48:48 +02:00
|
|
|
return false;
|
2010-12-18 00:06:32 +01:00
|
|
|
|
2010-03-30 22:48:48 +02:00
|
|
|
for (StringRef::iterator I = MDName.begin() + 1, E = MDName.end(); I != E;
|
|
|
|
++I) {
|
2010-12-19 21:42:43 +01:00
|
|
|
if (!std::isalnum(*I) && *I != '_' && *I != '-' && *I != '.')
|
2010-03-30 22:48:48 +02: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 23:42:28 +02:00
|
|
|
|
2010-03-30 22:48:48 +02:00
|
|
|
// If this is new, assign it its ID.
|
2010-07-20 23:42:28 +02:00
|
|
|
return
|
|
|
|
pImpl->CustomMDKindNames.GetOrCreateValue(
|
|
|
|
Name, pImpl->CustomMDKindNames.size()).second;
|
2009-08-05 00:41:48 +02:00
|
|
|
}
|
2009-08-11 08:31:57 +02:00
|
|
|
|
2010-03-30 22:48:48 +02:00
|
|
|
/// getHandlerNames - Populate client supplied smallvector using custome
|
|
|
|
/// metadata name and ID.
|
|
|
|
void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const {
|
2010-07-20 23:42:28 +02:00
|
|
|
Names.resize(pImpl->CustomMDKindNames.size());
|
2010-03-30 22:48:48 +02:00
|
|
|
for (StringMap<unsigned>::const_iterator I = pImpl->CustomMDKindNames.begin(),
|
|
|
|
E = pImpl->CustomMDKindNames.end(); I != E; ++I)
|
|
|
|
Names[I->second] = I->first();
|
|
|
|
}
|