Select Git revision
-
Fredrik Hübinette (Hubbe) authored
Rev: src/backend.c:1.41 Rev: src/backend.h:1.7 Rev: src/block_alloc.h:1.11 Rev: src/block_alloc_h.h:1.4 Rev: src/builtin_functions.c:1.168 Rev: src/callback.c:1.17 Rev: src/callback.h:1.8 Rev: src/configure.in:1.281 Rev: src/constants.c:1.18 Rev: src/dmalloc.h:1.11 Rev: src/error.c:1.35 Rev: src/error.h:1.36 Rev: src/gc.c:1.42 Rev: src/gc.h:1.22 Rev: src/interpret.c:1.122 Rev: src/interpret.h:1.31 Rev: src/interpreter.h:1.5 Rev: src/modules/call_out/call_out.c:1.27 Rev: src/modules/files/file.c:1.152 Rev: src/modules/system/system.c:1.70 Rev: src/pike_memory.c:1.37 Rev: src/program.c:1.123 Rev: src/signal_handler.c:1.129 Rev: src/stralloc.c:1.59 Rev: src/threads.c:1.93
Fredrik Hübinette (Hubbe) authoredRev: src/backend.c:1.41 Rev: src/backend.h:1.7 Rev: src/block_alloc.h:1.11 Rev: src/block_alloc_h.h:1.4 Rev: src/builtin_functions.c:1.168 Rev: src/callback.c:1.17 Rev: src/callback.h:1.8 Rev: src/configure.in:1.281 Rev: src/constants.c:1.18 Rev: src/dmalloc.h:1.11 Rev: src/error.c:1.35 Rev: src/error.h:1.36 Rev: src/gc.c:1.42 Rev: src/gc.h:1.22 Rev: src/interpret.c:1.122 Rev: src/interpret.h:1.31 Rev: src/interpreter.h:1.5 Rev: src/modules/call_out/call_out.c:1.27 Rev: src/modules/files/file.c:1.152 Rev: src/modules/system/system.c:1.70 Rev: src/pike_memory.c:1.37 Rev: src/program.c:1.123 Rev: src/signal_handler.c:1.129 Rev: src/stralloc.c:1.59 Rev: src/threads.c:1.93
peep.h 508 B
#ifndef PEEP_H
#define PEEP_H
#include "dynamic_buffer.h"
extern dynamic_buffer instrbuf;
/* Prototypes begin here */
struct p_instr_s;
void init_bytecode();
void exit_bytecode();
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 asm_opt();
/* Prototypes end here */
#endif