2013-01-10 21:55:02 +00:00
|
|
|
//===----- LinkAllIR.h - Reference All VMCore Code --------------*- C++ -*-===//
|
2006-06-07 20:00:19 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-06-07 20:00:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-06-07 22:09:38 +00:00
|
|
|
// This header file pulls in all the object modules of the VMCore library so
|
|
|
|
// that tools like llc, opt, and lli can ensure they are linked with all symbols
|
|
|
|
// from libVMCore.a It should only be used from a tool's main program.
|
2006-06-07 20:00:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 21:55:02 +00:00
|
|
|
#ifndef LLVM_LINKALLIR_H
|
|
|
|
#define LLVM_LINKALLIR_H
|
2006-06-07 20:00:19 +00:00
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/InlineAsm.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2014-01-13 09:26:24 +00:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/Support/Dwarf.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/DynamicLibrary.h"
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Memory.h"
|
|
|
|
#include "llvm/Support/Mutex.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/Process.h"
|
|
|
|
#include "llvm/Support/Program.h"
|
|
|
|
#include "llvm/Support/Signals.h"
|
|
|
|
#include "llvm/Support/TimeValue.h"
|
2009-12-03 00:50:42 +00:00
|
|
|
#include <cstdlib>
|
2006-06-07 20:00:19 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct ForceVMCoreLinking {
|
|
|
|
ForceVMCoreLinking() {
|
2006-06-07 22:09:38 +00:00
|
|
|
// We must reference VMCore in such a way that compilers will not
|
2006-06-07 20:00:19 +00:00
|
|
|
// delete it all as dead code, even with whole program optimization,
|
|
|
|
// yet is effectively a NO-OP. As the compiler isn't smart enough
|
|
|
|
// to know that getenv() never returns -1, this will do the job.
|
|
|
|
if (std::getenv("bar") != (char*) -1)
|
|
|
|
return;
|
2010-01-16 21:55:24 +00:00
|
|
|
(void)new llvm::Module("", llvm::getGlobalContext());
|
2009-08-13 21:58:54 +00:00
|
|
|
(void)new llvm::UnreachableInst(llvm::getGlobalContext());
|
2006-06-07 22:09:38 +00:00
|
|
|
(void) llvm::createVerifierPass();
|
2006-06-07 20:00:19 +00:00
|
|
|
}
|
|
|
|
} ForceVMCoreLinking;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|