pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:641:
#include "program_areas.h" #define FOO(NUMTYPE,TYPE,ARGTYPE,NAME) NUMTYPE PIKE_CONCAT(num_,NAME) ; #include "program_areas.h" INT16 lfuns[NUM_LFUNS]; }; PMOD_EXPORT void dump_program_tables (const struct program *p, int indent); #ifdef PIKE_DEBUG
-
static INLINE int
__attribute__
((unused)) CHECK_IDREF_RANGE (int x, const struct program *p)
+
static INLINE int
ATTRIBUTE
((unused)) CHECK_IDREF_RANGE (int x, const struct program *p)
{ if (x < 0 || x >= p->num_identifier_references) { dump_program_tables(p, 4); debug_fatal ("Identifier reference index %d out of range 0..%d\n", x, p->num_identifier_references - 1); } return x; } #else #define CHECK_IDREF_RANGE(X, P) (X)
pike.git/src/program.h:1069:
void string_builder_explain_not_implements(struct string_builder *s, struct program *a, struct program *b); PMOD_EXPORT void *parent_storage(int depth, struct program *expected); PMOD_EXPORT void *get_inherited_storage(int inh, struct program *expected); PMOD_EXPORT void change_compiler_compatibility(int major, int minor); void make_area_executable (char *start, size_t len); void make_program_executable(struct program *p); /* Prototypes end here */
-
static INLINE int
__attribute__
((unused)) FIND_LFUN(struct program * p, int lfun) {
+
static INLINE int
ATTRIBUTE
((unused)) FIND_LFUN(struct program * p, int lfun) {
#ifdef PIKE_DEBUG dmalloc_touch(struct program*, p); if (lfun < 0) return find_lfun_fatal(p, lfun); #endif if (p->flags & PROGRAM_FIXED && lfun < NUM_LFUNS) return p->lfuns[lfun]; return low_find_lfun(p, lfun); } #ifndef PIKE_USE_MACHINE_CODE