OSDN Git Service

radeonsi: initial WIP SI code
[android-x86/external-mesa.git] / src / gallium / drivers / radeon / TargetInfo / AMDILTargetInfo.cpp
1 //===-- TargetInfo/AMDILTargetInfo.cpp - TODO: Add brief description -------===//
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 // TODO: Add full description
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "AMDIL.h"
15 #include "llvm/Support/TargetRegistry.h"
16
17 using namespace llvm;
18
19 /// The target for the AMDIL backend
20 Target llvm::TheAMDILTarget;
21
22 /// The target for the AMDGPU backend
23 Target llvm::TheAMDGPUTarget;
24
25 /// Extern function to initialize the targets for the AMDIL backend
26 extern "C" void LLVMInitializeAMDILTargetInfo() {
27   RegisterTarget<Triple::amdil, false>
28     IL(TheAMDILTarget, "amdil", "ATI graphics cards");
29
30   RegisterTarget<Triple::r600, false>
31     R600(TheAMDGPUTarget, "r600", "AMD GPUs HD2XXX-HD6XXX");
32 }