Daniel Dunbar | c984df8 | 2009-07-15 06:35:19 +0000 | [diff] [blame^] | 1 | //===-- CppBackendTargetInfo.cpp - CppBackend Target Implementation -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/Module.h" |
| 11 | #include "llvm/Target/TargetRegistry.h" |
| 12 | using namespace llvm; |
| 13 | |
| 14 | Target TheCppBackendTarget; |
| 15 | |
| 16 | static unsigned CppBackend_JITMatchQuality() { |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | static unsigned CppBackend_TripleMatchQuality(const std::string &TT) { |
| 21 | // This class always works, but shouldn't be the default in most cases. |
| 22 | return 1; |
| 23 | } |
| 24 | |
| 25 | static unsigned CppBackend_ModuleMatchQuality(const Module &M) { |
| 26 | // This class always works, but shouldn't be the default in most cases. |
| 27 | return 1; |
| 28 | } |
| 29 | |
| 30 | extern "C" void LLVMInitializeCppBackendTargetInfo() { |
| 31 | TargetRegistry::RegisterTarget(TheCppBackendTarget, "cpp", |
| 32 | "C++ backend", |
| 33 | &CppBackend_TripleMatchQuality, |
| 34 | &CppBackend_ModuleMatchQuality, |
| 35 | &CppBackend_JITMatchQuality); |
| 36 | } |