1 | | |
2 | | |
3 | | |
4 | | |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 | | |
11 | | |
12 | | |
13 | | |
14 | | |
15 | | |
16 | | |
17 | | |
18 | | |
19 | | |
20 | | |
21 | | |
22 | | |
23 | | |
| #ifndef PEEP_H | #define PEEP_H | | #include "dynamic_buffer.h" | extern dynamic_buffer instrbuf; | | | struct p_instr_s; | void init_bytecode(void); | void exit_bytecode(void); | int insert_opcode(unsigned int f, | INT32 b, | INT32 current_line, | struct pike_string *current_file); | int insert_opcode2(int f,int current_line, struct pike_string *current_file); | void update_arg(int instr,INT32 arg); | void ins_f_byte(unsigned int b); | void assemble(void); | | | #endif | | |
|