OSDN Git Service

radeonsi: initial WIP SI code
[android-x86/external-mesa.git] / src / gallium / drivers / radeon / R600KernelParameters.h
1 //===-- R600KernelParameters.h - 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 #ifndef KERNELPARAMETERS_H
15 #define KERNELPARAMETERS_H
16
17 #include "llvm/CodeGen/MachineFunctionPass.h"
18 #include "llvm/Function.h"
19 #include "llvm/Pass.h"
20 #include "llvm/Target/TargetData.h"
21 #include "llvm/Value.h"
22
23 #include <vector>
24
25 llvm::FunctionPass* createR600KernelParametersPass(const llvm::TargetData* TD);
26
27
28 #endif