mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
4cb1e13769
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76344 91177308-0d34-0410-b5e6-96231b3b80d8
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
//===-- XCoreTargetInfo.cpp - XCore Target Implementation -----------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "XCore.h"
|
|
#include "llvm/Module.h"
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
using namespace llvm;
|
|
|
|
Target llvm::TheXCoreTarget;
|
|
|
|
static unsigned XCore_JITMatchQuality() {
|
|
return 0;
|
|
}
|
|
|
|
static unsigned XCore_TripleMatchQuality(const std::string &TT) {
|
|
if (TT.size() >= 6 && std::string(TT.begin(), TT.begin()+6) == "xcore-")
|
|
return 20;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned XCore_ModuleMatchQuality(const Module &M) {
|
|
// Check for a triple match.
|
|
if (unsigned Q = XCore_TripleMatchQuality(M.getTargetTriple()))
|
|
return Q;
|
|
|
|
// Otherwise we don't match.
|
|
return 0;
|
|
}
|
|
|
|
extern "C" void LLVMInitializeXCoreTargetInfo() {
|
|
TargetRegistry::RegisterTarget(TheXCoreTarget, "xcore",
|
|
"XCore",
|
|
&XCore_TripleMatchQuality,
|
|
&XCore_ModuleMatchQuality,
|
|
&XCore_JITMatchQuality);
|
|
}
|