source: EcnlProtoTool/trunk/mruby-1.3.0/include/mruby/irep.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 1.2 KB
Line 
1/*
2** mruby/irep.h - mrb_irep structure
3**
4** See Copyright Notice in mruby.h
5*/
6
7#ifndef MRUBY_IREP_H
8#define MRUBY_IREP_H
9
10#include "common.h"
11#include <mruby/compile.h>
12
13/**
14 * Compiled mruby scripts.
15 */
16MRB_BEGIN_DECL
17
18enum irep_pool_type {
19 IREP_TT_STRING,
20 IREP_TT_FIXNUM,
21 IREP_TT_FLOAT,
22};
23
24struct mrb_locals {
25 mrb_sym name;
26 uint16_t r;
27};
28
29/* Program data array struct */
30typedef struct mrb_irep {
31 uint16_t nlocals; /* Number of local variables */
32 uint16_t nregs; /* Number of register variables */
33 uint8_t flags;
34
35 mrb_code *iseq;
36 mrb_value *pool;
37 mrb_sym *syms;
38 struct mrb_irep **reps;
39
40 struct mrb_locals *lv;
41 /* debug info */
42 mrb_bool own_filename;
43 const char *filename;
44 uint16_t *lines;
45 struct mrb_irep_debug_info* debug_info;
46
47 size_t ilen, plen, slen, rlen, refcnt;
48} mrb_irep;
49
50#define MRB_ISEQ_NO_FREE 1
51
52MRB_API mrb_irep *mrb_add_irep(mrb_state *mrb);
53MRB_API mrb_value mrb_load_irep(mrb_state*, const uint8_t*);
54MRB_API mrb_value mrb_load_irep_cxt(mrb_state*, const uint8_t*, mrbc_context*);
55void mrb_irep_free(mrb_state*, struct mrb_irep*);
56void mrb_irep_incref(mrb_state*, struct mrb_irep*);
57void mrb_irep_decref(mrb_state*, struct mrb_irep*);
58
59MRB_END_DECL
60
61#endif /* MRUBY_IREP_H */
Note: See TracBrowser for help on using the repository browser.