/usr/include/pike8.0/pike/pikecode.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 54 55 56 57 58 59 60 61 62 63 64 | /*
|| 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.
*/
/*
* Generic headerfile for the code-generator.
*
* Henrik Grubbstr�m 20010720
*/
#ifndef CODE_PIKECODE_H
#define CODE_PIKECODE_H
#include "program.h"
void ins_pointer(INT32 ptr);
INT32 read_pointer(INT32 off);
void upd_pointer(INT32 off, INT32 ptr);
void ins_byte(INT32 val);
void ins_data(INT32 val);
void ins_align(INT32 align);
void ins_f_byte(unsigned int b);
void ins_f_byte_with_arg(unsigned int a, INT32 b);
void ins_f_byte_with_2_args(unsigned int a, INT32 c, INT32 b);
#if PIKE_BYTECODE_METHOD == PIKE_BYTECODE_AMD64
#ifdef __NT__
#warning using amd64
#endif
#endif
#if PIKE_BYTECODE_METHOD == PIKE_BYTECODE_IA32
#include "code/ia32.h"
#define PIKE_BYTECODE_METHOD_NAME "ia32"
#elif PIKE_BYTECODE_METHOD == PIKE_BYTECODE_AMD64
#include "code/amd64.h"
#define PIKE_BYTECODE_METHOD_NAME "amd64"
#elif PIKE_BYTECODE_METHOD == PIKE_BYTECODE_SPARC
#include "code/sparc.h"
#define PIKE_BYTECODE_METHOD_NAME "sparc"
#elif PIKE_BYTECODE_METHOD == PIKE_BYTECODE_PPC32
#include "code/ppc32.h"
#define PIKE_BYTECODE_METHOD_NAME "ppc32"
#elif PIKE_BYTECODE_METHOD == PIKE_BYTECODE_PPC64
#include "code/ppc64.h"
#define PIKE_BYTECODE_METHOD_NAME "ppc64"
#elif PIKE_BYTECODE_METHOD == PIKE_BYTECODE_GOTO
#include "code/computedgoto.h"
#define PIKE_BYTECODE_METHOD_NAME "computed_goto"
#else
#include "code/bytecode.h"
#define PIKE_BYTECODE_METHOD_NAME "default"
#endif
#ifndef CHECK_RELOC
#define CHECK_RELOC(REL, PROG_SIZE)
#endif /* !CHECK_RELOC */
#endif /* CODE_PIKECODE_H */
|