/usr/include/pike8.0/pike/code/bytecode.h is in pike8.0-dev 8.0.498-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | /*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
*/
#define UPDATE_PC()
#define ins_pointer(PTR) add_relocated_int_to_program((PTR))
#define read_pointer(OFF) read_int(OFF)
#define upd_pointer(OFF, PTR) upd_int((OFF), (PTR))
#define ins_align(ALIGN) do { \
while (Pike_compiler->new_program->num_program % (ALIGN)) { \
add_to_program(0); \
} \
} while(0)
#define ins_byte(VAL) add_to_program((VAL))
#define ins_data(VAL) add_relocated_int_to_program((VAL))
#define read_program_data(PTR, OFF) EXTRACT_INT((PTR) + (sizeof(INT32)*(OFF)))
#define PROG_COUNTER pc
#define READ_INCR_BYTE(PC) EXTRACT_UCHAR((PC)++)
#define CHECK_RELOC(REL, PROG_SIZE) \
do { \
if ((REL) > (PROG_SIZE)-4) { \
Pike_error("Bad relocation: %"PRINTSIZET"d > %"PRINTSIZET"d\n", \
(REL), (PROG_SIZE)-4); \
} \
} while(0)
/* FIXME: Uses internal variable 'byteorder'. */
#define DECODE_PROGRAM(P) \
do { \
struct program *p_ = (P); \
int num_reloc = (int)p_->num_relocations; \
if (byteorder != PIKE_BYTEORDER) { \
int e; \
/* NOTE: Only 1234 <==> 4321 byte-order relocation supported. */ \
for (e=0; e<num_reloc; e++) { \
size_t reloc = p_->relocations[e]; \
unsigned INT8 tmp1; \
unsigned INT8 tmp2; \
tmp1 = p_->program[reloc]; \
tmp2 = p_->program[reloc+1]; \
p_->program[reloc] = p_->program[reloc+3]; \
p_->program[reloc+1] = p_->program[reloc+2]; \
p_->program[reloc+3] = tmp1; \
p_->program[reloc+2] = tmp2; \
} \
} \
} while(0)
|