Branch: Tag:

2003-04-02

2003-04-02 19:22:44 by Martin Stjernholm <mast@lysator.liu.se>

Extended all integer argument types shorter than int to int since that's
more efficient.

Rev: src/constants.c:1.47
Rev: src/constants.h:1.30
Rev: src/docode.c:1.164
Rev: src/docode.h:1.18
Rev: src/dynamic_buffer.c:1.23
Rev: src/dynamic_buffer.h:1.18
Rev: src/encode.c:1.171
Rev: src/gc.c:1.216
Rev: src/global.h:1.85
Rev: src/las.c:1.334
Rev: src/las.h:1.62
Rev: src/multiset.c:1.71
Rev: src/pike_memory.c:1.145
Rev: src/pike_memory.h:1.44
Rev: src/pike_search.c:1.14
Rev: src/pike_search.h:1.7
Rev: src/pike_types.c:1.214
Rev: src/pike_types.h:1.86
Rev: src/port.h:1.50
Rev: src/program.c:1.497
Rev: src/program.h:1.181
Rev: src/program_areas.h:1.13
Rev: src/rbtree.h:1.10
Rev: src/svalue.h:1.118

2:   || 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. - || $Id: pike_types.h,v 1.85 2003/02/04 18:17:33 mast Exp $ + || $Id: pike_types.h,v 1.86 2003/04/02 19:22:43 mast Exp $   */      #ifndef PIKE_TYPES_H
190:   #define exit_type_stack pop_stack_mark   #endif    - void debug_push_type(unsigned INT16 type); - void debug_push_reverse_type(unsigned INT16 type); + void debug_push_type(unsigned int type); + void debug_push_reverse_type(unsigned int type);   #ifdef DEBUG_MALLOC   #define push_type(T) do { debug_push_type(T); debug_malloc_pass(debug_peek_type_stack()); } while(0)   #define push_reverse_type(T) do { debug_push_reverse_type(T); debug_malloc_pass(debug_peek_type_stack()); } while(0)
219:   void debug_check_type_string(struct pike_type *s);   void init_types(void);   ptrdiff_t pop_stack_mark(void); - void debug_pop_type_stack(unsigned INT16 expected); + void debug_pop_type_stack(unsigned int expected);   void type_stack_pop_to_mark(void);   void type_stack_reverse(void);   struct pike_type *debug_peek_type_stack(void);