blob: 0f6a1f8834140f8b2c7fc685061f47e14b8fed99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef R600_LLVM_H
#define R600_LLVM_H
#ifdef R600_USE_LLVM
#include "radeon_llvm.h"
#include <llvm-c/Core.h>
struct r600_shader_ctx;
struct radeon_llvm_context;
enum radeon_family;
LLVMModuleRef r600_tgsi_llvm(
struct radeon_llvm_context * ctx,
const struct tgsi_token * tokens);
const char * r600_llvm_gpu_string(enum radeon_family family);
unsigned r600_llvm_compile(
LLVMModuleRef mod,
unsigned char ** inst_bytes,
unsigned * inst_byte_count,
enum radeon_family family,
unsigned dump);
#endif /* R600_USE_LLVM */
#endif /* R600_LLVM_H */
|