mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
38 lines
515 B
C
38 lines
515 B
C
/*
|
|
** irep.h - mrb_irep structure
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#ifndef MRUBY_IREP_H
|
|
#define MRUBY_IREP_H
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct mrb_irep {
|
|
int idx;
|
|
|
|
int flags;
|
|
int nlocals;
|
|
int nregs;
|
|
|
|
mrb_code *iseq;
|
|
mrb_value *pool;
|
|
mrb_sym *syms;
|
|
|
|
int ilen, plen, slen;
|
|
} mrb_irep;
|
|
|
|
#define MRB_IREP_NOFREE 3
|
|
#define MRB_ISEQ_NOFREE 1
|
|
|
|
void mrb_add_irep(mrb_state *mrb, int n);
|
|
|
|
#if defined(__cplusplus)
|
|
} /* extern "C" { */
|
|
#endif
|
|
|
|
#endif /* MRUBY_IREP_H */
|