2009-10-14 13:57:32 -04:00
|
|
|
//===-- PowerPCTargetInfo.cpp - PowerPC Target Implementation -------------===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "PPC.h"
|
2013-04-08 14:41:23 -04:00
|
|
|
#include "llvm/IR/Module.h"
|
2011-10-20 17:10:27 -04:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2009-10-14 13:57:32 -04:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
Target &llvm::getThePPC32Target() {
|
|
|
|
|
static Target ThePPC32Target;
|
|
|
|
|
return ThePPC32Target;
|
|
|
|
|
}
|
|
|
|
|
Target &llvm::getThePPC64Target() {
|
|
|
|
|
static Target ThePPC64Target;
|
|
|
|
|
return ThePPC64Target;
|
|
|
|
|
}
|
|
|
|
|
Target &llvm::getThePPC64LETarget() {
|
|
|
|
|
static Target ThePPC64LETarget;
|
|
|
|
|
return ThePPC64LETarget;
|
|
|
|
|
}
|
2009-10-14 13:57:32 -04:00
|
|
|
|
2015-05-27 14:44:32 -04:00
|
|
|
extern "C" void LLVMInitializePowerPCTargetInfo() {
|
2017-01-02 14:17:04 -05:00
|
|
|
RegisterTarget<Triple::ppc, /*HasJIT=*/true> X(getThePPC32Target(), "ppc32",
|
|
|
|
|
"PowerPC 32");
|
2009-10-14 13:57:32 -04:00
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
RegisterTarget<Triple::ppc64, /*HasJIT=*/true> Y(getThePPC64Target(), "ppc64",
|
|
|
|
|
"PowerPC 64");
|
2013-12-21 19:04:03 -05:00
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
RegisterTarget<Triple::ppc64le, /*HasJIT=*/true> Z(
|
|
|
|
|
getThePPC64LETarget(), "ppc64le", "PowerPC 64 LE");
|
2009-10-14 13:57:32 -04:00
|
|
|
}
|