contributed by
<shouchengH
>, <greenyo0413
>
init(); //初始化
lex(source); //詞彙解析
int (*jit_main)(int*, void**) = parser(); //語法剖析
jit_main(0, funcTable);
dispose(); //釋放記憶體
將XXX.rb的程式碼做解析,存入tok.tok裡面
typedef struct { char val[32]; int nline; } Token; //nline -> 程式碼第幾行,
struct {
Token *tok; //預備存入所有1~8的起始位置
int size, pos; //size -> 程式碼1~8的總個數,pos -> 1~8個字的id
} tok;
在expression函式中,開始解析識別字,將其分成函式名稱、全域變數、區域變數、型態、關鍵字
typedef struct { //變數的宣告型態
char name[32]; //名稱
unsigned int id; //id ,變數名稱不會重複
int type; //int、double、string
int loctype; //global、local
} Variable;
typedef struct { //函數宣告型態
int address, args, espBgn;
char name[0xFF]; //名稱
} func_t;
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing