-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllvm_bind.h
More file actions
41 lines (31 loc) · 913 Bytes
/
llvm_bind.h
File metadata and controls
41 lines (31 loc) · 913 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef _PHP_LLVM_BIND_H_
# define _PHP_LLVM_BIND_H_
#include <stdarg.h>
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef ZTS
# include "TSRM.h"
#endif
#include "default.h"
#include "php.h"
#include "export.h"
#include "llvm_bind_struct.h"
PHP_MINIT_FUNCTION(llvm_bind);
PHP_MSHUTDOWN_FUNCTION(llvm_bind);
PHP_RINIT_FUNCTION(llvm_bind);
PHP_RSHUTDOWN_FUNCTION(llvm_bind);
PHP_MINFO_FUNCTION(llvm_bind);
PHP_METHOD(LLVMBind, __construct);
PHP_METHOD(LLVMBind, compileAssembly);
PHP_METHOD(LLVMBind, execute);
PHP_METHOD(LLVMBind, getLastError);
PHP_METHOD(LLVMBind, loadBitcode);
PHP_METHOD(LLVMBind, registerFunction);
PHP_FUNCTION(aabbcc);
void freeArgs(int nArgs, zval **args);
void initLLVMBindClass(TSRMLS_D);
zend_object_value create_llvm_resource(zend_class_entry *class_type TSRMLS_DC);
void free_llvm_resource(void *object TSRMLS_DC);
extern zend_module_entry zmq_module_entry;
#endif