2009-07-15 06:35:19 +00:00
|
|
|
//===-- CellSPUTargetInfo.cpp - CellSPU Target Implementation -------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-18 23:22:46 +00:00
|
|
|
#include "SPU.h"
|
2009-07-15 06:35:19 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-18 23:03:22 +00:00
|
|
|
Target llvm::TheCellSPUTarget;
|
2009-07-15 06:35:19 +00:00
|
|
|
|
|
|
|
static unsigned CellSPU_JITMatchQuality() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned CellSPU_TripleMatchQuality(const std::string &TT) {
|
|
|
|
// We strongly match "spu-*" or "cellspu-*".
|
|
|
|
if ((TT.size() == 3 && std::string(TT.begin(), TT.begin()+3) == "spu") ||
|
|
|
|
(TT.size() == 7 && std::string(TT.begin(), TT.begin()+7) == "cellspu") ||
|
|
|
|
(TT.size() >= 4 && std::string(TT.begin(), TT.begin()+4) == "spu-") ||
|
|
|
|
(TT.size() >= 8 && std::string(TT.begin(), TT.begin()+8) == "cellspu-"))
|
|
|
|
return 20;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned CellSPU_ModuleMatchQuality(const Module &M) {
|
|
|
|
// Check for a triple match.
|
|
|
|
if (unsigned Q = CellSPU_TripleMatchQuality(M.getTargetTriple()))
|
|
|
|
return Q;
|
|
|
|
|
|
|
|
// Otherwise if the target triple is non-empty, we don't match.
|
|
|
|
if (!M.getTargetTriple().empty()) return 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeCellSPUTargetInfo() {
|
|
|
|
TargetRegistry::RegisterTarget(TheCellSPUTarget, "cellspu",
|
|
|
|
"STI CBEA Cell SPU [experimental]",
|
|
|
|
&CellSPU_TripleMatchQuality,
|
|
|
|
&CellSPU_ModuleMatchQuality,
|
|
|
|
&CellSPU_JITMatchQuality);
|
|
|
|
}
|