mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
ff9834ab9d
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75892 91177308-0d34-0410-b5e6-96231b3b80d8
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
//===-- Target/TargetMachineRegistry.h - Target Registration ----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file exposes two classes: the TargetMachineRegistry class, which allows
|
|
// tools to inspect all of registered targets, and the RegisterTarget class,
|
|
// which TargetMachine implementations should use to register themselves with
|
|
// the system.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TARGET_TARGETMACHINEREGISTRY_H
|
|
#define LLVM_TARGET_TARGETMACHINEREGISTRY_H
|
|
|
|
#include "llvm/Module.h"
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
namespace llvm {
|
|
class Module;
|
|
class Target;
|
|
class TargetMachine;
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
/// RegisterTarget - This class is used to make targets automatically register
|
|
/// themselves with the tools they are linked with. Targets should define an
|
|
/// single global Target instance and register it using the TargetRegistry
|
|
/// interfaces. Targets must also include a static instance of this class.
|
|
///
|
|
/// The type 'TargetMachineImpl' should provide a constructor with two
|
|
/// parameters:
|
|
/// - const Module& M: the module that is being compiled:
|
|
/// - const std::string& FS: target-specific string describing target
|
|
/// flavour.
|
|
|
|
template<class TargetMachineImpl>
|
|
struct RegisterTarget {
|
|
RegisterTarget(Target &T, const char *Name, const char *ShortDesc) {
|
|
TargetRegistry::RegisterTargetMachine(T, &Allocator);
|
|
}
|
|
|
|
private:
|
|
static TargetMachine *Allocator(const Target &T, const Module &M,
|
|
const std::string &FS) {
|
|
return new TargetMachineImpl(T, M, FS);
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|