blob: 2112135aa5d4be29778dccc576c2f2b4cd1a7788 [file] [log] [blame]
Tom Stellard45bb48e2015-06-13 03:28:10 +00001//===-- TargetInfo/AMDGPUTargetInfo.cpp - TargetInfo for AMDGPU -----------===//
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/// \file
11//
12//===----------------------------------------------------------------------===//
13
14#include "AMDGPUTargetMachine.h"
15#include "llvm/Support/TargetRegistry.h"
16
17using namespace llvm;
18
19/// \brief The target which suports all AMD GPUs. This will eventually
20/// be deprecated and there will be a R600 target and a GCN target.
21Target llvm::TheAMDGPUTarget;
22/// \brief The target for GCN GPUs
23Target llvm::TheGCNTarget;
24
25/// \brief Extern function to initialize the targets for the AMDGPU backend
26extern "C" void LLVMInitializeAMDGPUTargetInfo() {
27 RegisterTarget<Triple::r600, false>
28 R600(TheAMDGPUTarget, "r600", "AMD GPUs HD2XXX-HD6XXX");
29 RegisterTarget<Triple::amdgcn, false> GCN(TheGCNTarget, "amdgcn", "AMD GCN GPUs");
30}