2020-09-10 17:20:46 -04:00
|
|
|
#ifndef UJIT_COMPILE_H
|
|
|
|
#define UJIT_COMPILE_H 1
|
|
|
|
|
|
|
|
#include "stddef.h"
|
|
|
|
#include "stdint.h"
|
2020-09-28 07:03:28 -04:00
|
|
|
#include "stdbool.h"
|
2020-09-10 17:20:46 -04:00
|
|
|
|
|
|
|
#ifndef rb_iseq_t
|
|
|
|
typedef struct rb_iseq_struct rb_iseq_t;
|
|
|
|
#define rb_iseq_t rb_iseq_t
|
|
|
|
#endif
|
|
|
|
|
2020-10-16 13:44:09 -04:00
|
|
|
RUBY_SYMBOL_EXPORT_BEGIN
|
2020-10-19 10:27:16 -04:00
|
|
|
RUBY_EXTERN bool rb_ujit_enabled;
|
2020-10-16 13:44:09 -04:00
|
|
|
RUBY_SYMBOL_EXPORT_END
|
2020-10-13 11:15:22 -04:00
|
|
|
|
|
|
|
static inline
|
|
|
|
bool rb_ujit_enabled_p(void)
|
|
|
|
{
|
|
|
|
return rb_ujit_enabled;
|
|
|
|
}
|
|
|
|
|
2020-09-28 07:03:28 -04:00
|
|
|
void rb_ujit_init(void);
|
2020-10-13 11:15:22 -04:00
|
|
|
uint8_t *ujit_compile_insn(const rb_iseq_t *iseq, unsigned int insn_idx, unsigned int *next_ujit_idx);
|
|
|
|
void rb_ujit_compile_iseq(const rb_iseq_t *iseq);
|
2020-09-10 17:20:46 -04:00
|
|
|
|
|
|
|
#endif
|