summaryrefslogtreecommitdiff
path: root/yjit_utils.h
blob: 2a8605aab2d9d355e742db6c9a0fc66276f4090d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef YJIT_UTILS_H
#define YJIT_UTILS_H 1

#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "yjit_asm.h"

void push_regs(codeblock_t *cb);
void pop_regs(codeblock_t *cb);
void print_int(codeblock_t *cb, x86opnd_t opnd);
void print_ptr(codeblock_t *cb, x86opnd_t opnd);
void print_str(codeblock_t *cb, const char *str);

#endif // #ifndef YJIT_UTILS_H