Move FbGet8() macro into pixman-bits-image.c
[profile/ivi/pixman.git] / pixman / pixman-private.h
1 #ifndef PACKAGE
2 #  error config.h must be included before pixman-private.h
3 #endif
4
5 #ifndef PIXMAN_PRIVATE_H
6 #define PIXMAN_PRIVATE_H
7
8 #include "pixman.h"
9 #include <time.h>
10 #include <assert.h>
11
12 #include "pixman-compiler.h"
13
14 /*
15  * Images
16  */
17 typedef struct image_common image_common_t;
18 typedef struct source_image source_image_t;
19 typedef struct solid_fill solid_fill_t;
20 typedef struct gradient gradient_t;
21 typedef struct linear_gradient linear_gradient_t;
22 typedef struct horizontal_gradient horizontal_gradient_t;
23 typedef struct vertical_gradient vertical_gradient_t;
24 typedef struct conical_gradient conical_gradient_t;
25 typedef struct radial_gradient radial_gradient_t;
26 typedef struct bits_image bits_image_t;
27 typedef struct circle circle_t;
28
29 typedef void     (*fetchProc32)        (bits_image_t *pict,
30                                         int x, int y, int width,
31                                         uint32_t *buffer);
32 typedef uint32_t (*fetchPixelProc32)   (bits_image_t *pict,
33                                         int offset, int line);
34 typedef void     (*storeProc32)        (pixman_image_t *, uint32_t *bits,
35                                         const uint32_t *values,
36                                         int x, int width);
37 typedef void     (*fetchProc64)        (bits_image_t *pict,
38                                         int x, int y, int width,
39                                         uint64_t *buffer);
40 typedef uint64_t (*fetchPixelProc64)   (bits_image_t *pict,
41                                         int offset, int line);
42 typedef void     (*storeProc64)        (pixman_image_t *, uint32_t *bits,
43                                         const uint64_t *values,
44                                         int x, int width);
45 typedef void     (*fetch_pixels_32_t) (bits_image_t *image,
46                                        uint32_t *buffer, int n_pixels);
47 typedef void     (*fetch_pixels_64_t) (bits_image_t *image,
48                                        uint64_t *buffer, int n_pixels);
49 typedef void     (*scanStoreProc)     (bits_image_t *img,
50                                        int x, int y, int width,
51                                        uint32_t *buffer);
52 typedef void     (*scanFetchProc)     (pixman_image_t *,
53                                        int, int, int, uint32_t *,
54                                        uint32_t *, uint32_t);
55
56 typedef enum
57 {
58     BITS,
59     LINEAR,
60     CONICAL,
61     RADIAL,
62     SOLID
63 } image_type_t;
64
65 typedef enum
66 {
67     SOURCE_IMAGE_CLASS_UNKNOWN,
68     SOURCE_IMAGE_CLASS_HORIZONTAL,
69     SOURCE_IMAGE_CLASS_VERTICAL,
70 } source_pict_class_t;
71
72 typedef source_pict_class_t (* classify_func_t) (pixman_image_t *image,
73                                                  int             x,
74                                                  int             y,
75                                                  int             width,
76                                                  int             height);
77 typedef void (* property_changed_func_t)        (pixman_image_t *image);
78
79 struct image_common
80 {
81     image_type_t                type;
82     int32_t                     ref_count;
83     pixman_region32_t           clip_region;
84     pixman_bool_t               have_clip_region;   /* FALSE if there is no clip */
85     pixman_bool_t               client_clip;        /* Whether the source clip was
86                                                        set by a client */
87     pixman_bool_t               clip_sources;       /* Whether the clip applies when
88                                                      * the image is used as a source
89                                                      */
90     pixman_transform_t         *transform;
91     pixman_repeat_t             repeat;
92     pixman_filter_t             filter;
93     pixman_fixed_t             *filter_params;
94     int                         n_filter_params;
95     bits_image_t               *alpha_map;
96     int                         alpha_origin_x;
97     int                         alpha_origin_y;
98     pixman_bool_t               component_alpha;
99     pixman_read_memory_func_t   read_func;
100     pixman_write_memory_func_t  write_func;
101     classify_func_t             classify;
102     property_changed_func_t     property_changed;
103     scanFetchProc               get_scanline_32;
104     scanFetchProc               get_scanline_64;
105
106     pixman_image_destroy_func_t destroy_func;
107     void *                      destroy_data;
108 };
109
110 struct source_image
111 {
112     image_common_t      common;
113     source_pict_class_t class;
114 };
115
116 struct solid_fill
117 {
118     source_image_t      common;
119     uint32_t            color;          /* FIXME: shouldn't this be a pixman_color_t? */
120 };
121
122 struct gradient
123 {
124     source_image_t              common;
125     int                         n_stops;
126     pixman_gradient_stop_t *    stops;
127     int                         stop_range;
128     uint32_t *                  color_table;
129     int                         color_table_size;
130 };
131
132 struct linear_gradient
133 {
134     gradient_t                  common;
135     pixman_point_fixed_t        p1;
136     pixman_point_fixed_t        p2;
137 };
138
139 struct circle
140 {
141     pixman_fixed_t x;
142     pixman_fixed_t y;
143     pixman_fixed_t radius;
144 };
145
146 struct radial_gradient
147 {
148     gradient_t  common;
149
150     circle_t    c1;
151     circle_t    c2;
152     double      cdx;
153     double      cdy;
154     double      dr;
155     double      A;
156 };
157
158 struct conical_gradient
159 {
160     gradient_t                  common;
161     pixman_point_fixed_t        center;
162     pixman_fixed_t              angle;
163 };
164
165 struct bits_image
166 {
167     image_common_t              common;
168     pixman_format_code_t        format;
169     const pixman_indexed_t     *indexed;
170     int                         width;
171     int                         height;
172     uint32_t *                  bits;
173     uint32_t *                  free_me;
174     int                         rowstride; /* in number of uint32_t's */
175
176     /* Fetch raw pixels, with no regard for transformations, alpha map etc. */
177     fetch_pixels_32_t           fetch_pixels_raw_32;
178     fetch_pixels_64_t           fetch_pixels_raw_64;
179
180     /* Fetch raw scanlines, with no regard for transformations, alpha maps etc. */
181     fetchProc32                 fetch_scanline_raw_32;
182     fetchProc64                 fetch_scanline_raw_64;
183
184     /* Store scanlines with no regard for alpha maps */
185     storeProc32                 store_scanline_raw_32;
186     storeProc64                 store_scanline_raw_64;
187
188     /* Store a scanline, taking alpha maps into account */
189     scanStoreProc               store_scanline_32;
190     scanStoreProc               store_scanline_64;
191
192     /* Used for indirect access to the bits */
193     pixman_read_memory_func_t   read_func;
194     pixman_write_memory_func_t  write_func;
195 };
196
197 union pixman_image
198 {
199     image_type_t                type;
200     image_common_t              common;
201     bits_image_t                bits;
202     source_image_t              source;
203     gradient_t                  gradient;
204     linear_gradient_t           linear;
205     conical_gradient_t          conical;
206     radial_gradient_t           radial;
207     solid_fill_t                solid;
208 };
209
210
211 void
212 _pixman_bits_image_setup_raw_accessors (bits_image_t   *image);
213
214 void
215 _pixman_image_get_scanline_64_generic  (pixman_image_t *pict,
216                                         int             x,
217                                         int             y,
218                                         int             width,
219                                         uint64_t       *buffer,
220                                         uint64_t       *mask,
221                                         uint32_t        maskBits);
222
223 source_pict_class_t
224 _pixman_image_classify (pixman_image_t *image,
225                         int             x,
226                         int             y,
227                         int             width,
228                         int             height);
229
230 void
231 _pixman_image_get_scanline_32 (pixman_image_t *image, int x, int y, int width,
232                                uint32_t *buffer, uint32_t *mask,
233                                uint32_t mask_bits);
234
235 /* Even thought the type of buffer is uint32_t *, the function actually expects
236  * a uint64_t *buffer.
237  */
238 void
239 _pixman_image_get_scanline_64 (pixman_image_t *image, int x, int y, int width,
240                                uint32_t *buffer,
241                                uint32_t *unused, uint32_t unused2);
242
243 void
244 _pixman_image_store_scanline_32 (bits_image_t *image, int x, int y, int width,
245                                  uint32_t *buffer);
246 void
247 _pixman_image_fetch_pixels (bits_image_t *image, uint32_t *buffer,
248                             int n_pixels);
249
250 /* Even thought the type of buffer is uint32_t *, the function actually expects
251  * a uint64_t *buffer.
252  */
253 void
254 _pixman_image_store_scanline_64 (bits_image_t *image, int x, int y, int width,
255                                  uint32_t *buffer);
256
257 pixman_image_t *
258 _pixman_image_allocate (void);
259
260 pixman_bool_t
261 _pixman_init_gradient (gradient_t                   *gradient,
262                        const pixman_gradient_stop_t *stops,
263                        int                           n_stops);
264 void
265 _pixman_image_reset_clip_region (pixman_image_t *image);
266
267 pixman_bool_t
268 _pixman_image_is_opaque(pixman_image_t *image);
269
270 pixman_bool_t
271 _pixman_image_is_solid (pixman_image_t *image);
272
273 uint32_t
274 _pixman_image_get_solid (pixman_image_t *image,
275                         pixman_format_code_t format);
276
277 /*
278  * Gradient walker
279  */
280 typedef struct
281 {
282     uint32_t        left_ag;
283     uint32_t        left_rb;
284     uint32_t        right_ag;
285     uint32_t        right_rb;
286     int32_t       left_x;
287     int32_t       right_x;
288     int32_t       stepper;
289
290     pixman_gradient_stop_t      *stops;
291     int                      num_stops;
292     unsigned int             spread;
293
294     int           need_reset;
295 } pixman_gradient_walker_t;
296
297 void
298 _pixman_gradient_walker_init (pixman_gradient_walker_t  *walker,
299                               gradient_t      *gradient,
300                               unsigned int     spread);
301
302 void
303 _pixman_gradient_walker_reset (pixman_gradient_walker_t       *walker,
304                                pixman_fixed_32_32_t  pos);
305
306 uint32_t
307 _pixman_gradient_walker_pixel (pixman_gradient_walker_t       *walker,
308                                pixman_fixed_32_32_t  x);
309
310 #define FbIntMult(a,b,t) ((t) = (a) * (b) + 0x80, ((((t) >> 8) + (t)) >> 8))
311 #define FbIntDiv(a,b)    (((uint16_t) (a) * 255) / (b))
312 #define FbIntAdd(x,y,t) (                                               \
313         (t) = x + y,                                                    \
314         (uint32_t) (uint8_t) ((t) | (0 - ((t) >> 8))))
315 #define div_255(x) (((x) + 0x80 + (((x) + 0x80) >> 8)) >> 8)
316 #define div_65535(x) (((x) + 0x8000 + (((x) + 0x8000) >> 16)) >> 16)
317
318 #define cvt8888to0565(s)    ((((s) >> 3) & 0x001f) | \
319                              (((s) >> 5) & 0x07e0) | \
320                              (((s) >> 8) & 0xf800))
321 #define cvt0565to0888(s)    (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) | \
322                              ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) | \
323                              ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
324
325 #ifdef PIXMAN_FB_ACCESSORS
326
327 #define ACCESS(sym) sym##_accessors
328
329 #define READ(img, ptr)                                                  \
330     ((img)->common.read_func ((ptr), sizeof(*(ptr))))
331 #define WRITE(img, ptr,val)                                             \
332     ((img)->common.write_func ((ptr), (val), sizeof (*(ptr))))
333
334 #define MEMCPY_WRAPPED(img, dst, src, size)                             \
335     do {                                                                \
336         size_t _i;                                                      \
337         uint8_t *_dst = (uint8_t*)(dst), *_src = (uint8_t*)(src);       \
338         for(_i = 0; _i < size; _i++) {                                  \
339             WRITE((img), _dst +_i, READ((img), _src + _i));             \
340         }                                                               \
341     } while (0)
342
343 #define MEMSET_WRAPPED(img, dst, val, size)                             \
344     do {                                                                \
345         size_t _i;                                                      \
346         uint8_t *_dst = (uint8_t*)(dst);                                \
347         for(_i = 0; _i < (size_t) size; _i++) {                         \
348             WRITE((img), _dst +_i, (val));                              \
349         }                                                               \
350     } while (0)
351
352 #else
353
354 #define ACCESS(sym) sym
355
356 #define READ(img, ptr)          (*(ptr))
357 #define WRITE(img, ptr, val)    (*(ptr) = (val))
358 #define MEMCPY_WRAPPED(img, dst, src, size)                             \
359     memcpy(dst, src, size)
360 #define MEMSET_WRAPPED(img, dst, val, size)                             \
361     memset(dst, val, size)
362
363 #endif
364
365 #define fbComposeGetStart(pict,x,y,type,out_stride,line,mul) do {       \
366         uint32_t        *__bits__;                                      \
367         int             __stride__;                                     \
368                                                                         \
369         __bits__ = pict->bits.bits;                                     \
370         __stride__ = pict->bits.rowstride;                              \
371         (out_stride) = __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type);      \
372         (line) = ((type *) __bits__) +                                  \
373             (out_stride) * (y) + (mul) * (x);                           \
374     } while (0)
375
376
377 #define PIXMAN_FORMAT_16BPC(f)  (PIXMAN_FORMAT_A(f) > 8 || \
378                                  PIXMAN_FORMAT_R(f) > 8 || \
379                                  PIXMAN_FORMAT_G(f) > 8 || \
380                                  PIXMAN_FORMAT_B(f) > 8)
381 /*
382  * Edges
383  */
384
385 #define MAX_ALPHA(n)    ((1 << (n)) - 1)
386 #define N_Y_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n)/2)) - 1)
387 #define N_X_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n)/2)) + 1)
388
389 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC(n))
390 #define STEP_Y_BIG(n)   (pixman_fixed_1 - (N_Y_FRAC(n) - 1) * STEP_Y_SMALL(n))
391
392 #define Y_FRAC_FIRST(n) (STEP_Y_SMALL(n) / 2)
393 #define Y_FRAC_LAST(n)  (Y_FRAC_FIRST(n) + (N_Y_FRAC(n) - 1) * STEP_Y_SMALL(n))
394
395 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC(n))
396 #define STEP_X_BIG(n)   (pixman_fixed_1 - (N_X_FRAC(n) - 1) * STEP_X_SMALL(n))
397
398 #define X_FRAC_FIRST(n) (STEP_X_SMALL(n) / 2)
399 #define X_FRAC_LAST(n)  (X_FRAC_FIRST(n) + (N_X_FRAC(n) - 1) * STEP_X_SMALL(n))
400
401 #define RenderSamplesX(x,n)     ((n) == 1 ? 0 : (pixman_fixed_frac (x) + X_FRAC_FIRST(n)) / STEP_X_SMALL(n))
402
403 void
404 pixman_rasterize_edges_accessors (pixman_image_t *image,
405                                   pixman_edge_t *l,
406                                   pixman_edge_t *r,
407                                   pixman_fixed_t        t,
408                                   pixman_fixed_t        b);
409
410 /*
411  * Implementations
412  */
413
414 typedef struct pixman_implementation_t pixman_implementation_t;
415
416 typedef void (* pixman_combine_32_func_t) (pixman_implementation_t *    imp,
417                                            pixman_op_t                  op,
418                                            uint32_t *                   dest,
419                                            const uint32_t *             src,
420                                            const uint32_t *             mask,
421                                            int                          width);
422
423 typedef void (* pixman_combine_64_func_t) (pixman_implementation_t *    imp,
424                                            pixman_op_t                  op,
425                                            uint64_t *                   dest,
426                                            const uint64_t *             src,
427                                            const uint64_t *             mask,
428                                            int                          width);
429
430 typedef void (* pixman_composite_func_t)  (pixman_implementation_t *    imp,
431                                            pixman_op_t                  op,
432                                            pixman_image_t *             src,
433                                            pixman_image_t *             mask,
434                                            pixman_image_t *             dest,
435                                            int32_t                      src_x,
436                                            int32_t                      src_y,
437                                            int32_t                      mask_x,
438                                            int32_t                      mask_y,
439                                            int32_t                      dest_x,
440                                            int32_t                      dest_y,
441                                            int32_t                      width,
442                                            int32_t                      height);
443 typedef pixman_bool_t (* pixman_blt_func_t) (pixman_implementation_t *  imp,
444                                              uint32_t *                 src_bits,
445                                              uint32_t *                 dst_bits,
446                                              int                        src_stride,
447                                              int                        dst_stride,
448                                              int                        src_bpp,
449                                              int                        dst_bpp,
450                                              int                        src_x,
451                                              int                        src_y,
452                                              int                        dst_x,
453                                              int                        dst_y,
454                                              int                        width,
455                                              int                        height);
456 typedef pixman_bool_t (* pixman_fill_func_t) (pixman_implementation_t *imp,
457                                               uint32_t *bits,
458                                               int stride,
459                                               int bpp,
460                                               int x,
461                                               int y,
462                                               int width,
463                                               int height,
464                                               uint32_t xor);
465
466 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
467 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
468
469 struct pixman_implementation_t
470 {
471     pixman_implementation_t *   toplevel;
472     pixman_implementation_t *   delegate;
473
474     pixman_composite_func_t     composite;
475     pixman_blt_func_t           blt;
476     pixman_fill_func_t          fill;
477     
478     pixman_combine_32_func_t    combine_32[PIXMAN_OP_LAST];
479     pixman_combine_32_func_t    combine_32_ca[PIXMAN_OP_LAST];
480     pixman_combine_64_func_t    combine_64[PIXMAN_OP_LAST];
481     pixman_combine_64_func_t    combine_64_ca[PIXMAN_OP_LAST];
482 };
483
484 pixman_implementation_t *
485 _pixman_implementation_create (pixman_implementation_t *delegate);
486
487 void
488 _pixman_implementation_combine_32 (pixman_implementation_t *    imp,
489                                    pixman_op_t                  op,
490                                    uint32_t *                   dest,
491                                    const uint32_t *             src,
492                                    const uint32_t *             mask,
493                                    int                          width);
494 void
495 _pixman_implementation_combine_64 (pixman_implementation_t *    imp,
496                                    pixman_op_t                  op,
497                                    uint64_t *                   dest,
498                                    const uint64_t *             src,
499                                    const uint64_t *             mask,
500                                    int                          width);
501 void
502 _pixman_implementation_combine_32_ca (pixman_implementation_t * imp,
503                                       pixman_op_t               op,
504                                       uint32_t *                dest,
505                                       const uint32_t *          src,
506                                       const uint32_t *          mask,
507                                       int                       width);
508 void
509 _pixman_implementation_combine_64_ca (pixman_implementation_t * imp,
510                                       pixman_op_t               op,
511                                       uint64_t *                dest,
512                                       const uint64_t *          src,
513                                       const uint64_t *          mask,
514                                       int                       width);
515 void
516 _pixman_implementation_composite (pixman_implementation_t *     imp,
517                                   pixman_op_t                   op,
518                                   pixman_image_t *              src,
519                                   pixman_image_t *              mask,
520                                   pixman_image_t *              dest,
521                                   int32_t                       src_x,
522                                   int32_t                       src_y,
523                                   int32_t                       mask_x,
524                                   int32_t                       mask_y,
525                                   int32_t                       dest_x,
526                                   int32_t                       dest_y,
527                                   int32_t                       width,
528                                   int32_t                       height);
529
530 pixman_bool_t
531 _pixman_implementation_blt (pixman_implementation_t *   imp,
532                             uint32_t *                  src_bits,
533                             uint32_t *                  dst_bits,
534                             int                         src_stride,
535                             int                         dst_stride,
536                             int                         src_bpp,
537                             int                         dst_bpp,
538                             int                         src_x,
539                             int                         src_y,
540                             int                         dst_x,
541                             int                         dst_y,
542                             int                         width,
543                             int                         height);
544 pixman_bool_t
545 _pixman_implementation_fill (pixman_implementation_t *   imp,
546                              uint32_t *bits,
547                              int stride,
548                              int bpp,
549                              int x,
550                              int y,
551                              int width,
552                              int height,
553                              uint32_t xor);
554     
555 /* Specific implementations */
556 pixman_implementation_t *
557 _pixman_implementation_create_general (void);
558 pixman_implementation_t *
559 _pixman_implementation_create_fast_path (void);
560 #ifdef USE_MMX
561 pixman_implementation_t *
562 _pixman_implementation_create_mmx (void);
563 #endif
564 #ifdef USE_SSE2
565 pixman_implementation_t *
566 _pixman_implementation_create_sse2 (void);
567 #endif
568 #ifdef USE_ARM_SIMD
569 pixman_implementation_t *
570 _pixman_implementation_create_arm_simd (void);
571 #endif
572 #ifdef USE_ARM_NEON
573 pixman_implementation_t *
574 _pixman_implementation_create_arm_neon (void);
575 #endif
576 #ifdef USE_VMX
577 pixman_implementation_t *
578 _pixman_implementation_create_vmx (void);
579 #endif
580
581 pixman_implementation_t *
582 _pixman_choose_implementation (void);
583
584
585
586 /*
587  * Utilities
588  */
589
590 /* These "formats" both have depth 0, so they
591  * will never clash with any real ones
592  */
593 #define PIXMAN_null             PIXMAN_FORMAT(0,0,0,0,0,0)
594 #define PIXMAN_solid            PIXMAN_FORMAT(0,1,0,0,0,0)
595
596 #define NEED_COMPONENT_ALPHA            (1 << 0)
597 #define NEED_PIXBUF                     (1 << 1)
598 #define NEED_SOLID_MASK                 (1 << 2)
599
600 typedef struct
601 {
602     pixman_op_t                 op;
603     pixman_format_code_t        src_format;
604     pixman_format_code_t        mask_format;
605     pixman_format_code_t        dest_format;
606     pixman_composite_func_t     func;
607     uint32_t                    flags;
608 } pixman_fast_path_t;
609
610 /* Memory allocation helpers */
611 void *
612 pixman_malloc_ab (unsigned int n, unsigned int b);
613
614 void *
615 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
616
617 pixman_bool_t
618 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
619
620 pixman_bool_t
621 pixman_addition_overflows_int (unsigned int a, unsigned int b);
622
623 /* Compositing utilities */
624 pixman_bool_t
625 _pixman_run_fast_path (const pixman_fast_path_t *paths,
626                        pixman_implementation_t *imp,
627                        pixman_op_t op,
628                        pixman_image_t *src,
629                        pixman_image_t *mask,
630                        pixman_image_t *dest,
631                        int32_t src_x,
632                        int32_t src_y,
633                        int32_t mask_x,
634                        int32_t mask_y,
635                        int32_t dest_x,
636                        int32_t dest_y,
637                        int32_t width,
638                        int32_t height);
639     
640 void
641 _pixman_walk_composite_region (pixman_implementation_t *imp,
642                                pixman_op_t op,
643                                pixman_image_t * pSrc,
644                                pixman_image_t * pMask,
645                                pixman_image_t * pDst,
646                                int16_t xSrc,
647                                int16_t ySrc,
648                                int16_t xMask,
649                                int16_t yMask,
650                                int16_t xDst,
651                                int16_t yDst,
652                                uint16_t width,
653                                uint16_t height,
654                                pixman_composite_func_t compositeRect);
655
656 void
657 pixman_expand (uint64_t *dst, const uint32_t *src, pixman_format_code_t, int width);
658
659 void
660 pixman_contract (uint32_t *dst, const uint64_t *src, int width);
661
662
663 /* Region Helpers */
664 pixman_bool_t
665 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
666                                     pixman_region16_t *src);
667
668 pixman_bool_t
669 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
670                                     pixman_region32_t *src);
671
672
673 #ifndef FALSE
674 #   define FALSE 0
675 #endif
676
677 #ifndef TRUE
678 #   define TRUE 1
679 #endif
680
681 #ifndef MIN
682 #  define MIN(a,b) ((a < b)? a : b)
683 #endif
684
685 #ifndef MAX
686 #  define MAX(a,b) ((a > b)? a : b)
687 #endif
688
689 /* Integer division that rounds towards -infinity */
690 #define DIV(a,b) ((((a) < 0) == ((b) < 0)) ? (a) / (b) :                \
691                   ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
692
693 /* Modulus that produces the remainder wrt. DIV */
694 #define MOD(a,b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
695
696 #define CLIP(v,low,high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v)))
697
698
699 /*
700  * Various debugging code
701  */
702
703 #undef DEBUG
704 #define DEBUG 0
705
706 #if DEBUG
707
708 #define return_if_fail(expr)                                            \
709     do                                                                  \
710     {                                                                   \
711         if (!(expr))                                                    \
712         {                                                               \
713             fprintf(stderr, "In %s: %s failed\n", FUNC, #expr);         \
714             return;                                                     \
715         }                                                               \
716     }                                                                   \
717     while (0)
718
719 #define return_val_if_fail(expr, retval)                                \
720     do                                                                  \
721     {                                                                   \
722         if (!(expr))                                                    \
723         {                                                               \
724             fprintf(stderr, "In %s: %s failed\n", FUNC, #expr);         \
725             return (retval);                                            \
726         }                                                               \
727     }                                                                   \
728     while (0)
729
730 #else
731
732 #define return_if_fail(expr)                                            \
733     do                                                                  \
734     {                                                                   \
735         if (!(expr))                                                    \
736             return;                                                     \
737     }                                                                   \
738     while (0)
739
740 #define return_val_if_fail(expr, retval)                                \
741     do                                                                  \
742     {                                                                   \
743         if (!(expr))                                                    \
744             return (retval);                                            \
745     }                                                                   \
746     while (0)
747
748 #endif
749
750 /*
751  * Timers
752  */
753
754 #ifdef PIXMAN_TIMERS
755
756 static inline uint64_t
757 oil_profile_stamp_rdtsc (void)
758 {
759     uint64_t ts;
760     __asm__ __volatile__("rdtsc\n" : "=A" (ts));
761     return ts;
762 }
763 #define OIL_STAMP oil_profile_stamp_rdtsc
764
765 typedef struct pixman_timer_t pixman_timer_t;
766
767 struct pixman_timer_t
768 {
769     int initialized;
770     const char *name;
771     uint64_t n_times;
772     uint64_t total;
773     pixman_timer_t *next;
774 };
775
776 extern int timer_defined;
777 void pixman_timer_register (pixman_timer_t *timer);
778
779 #define TIMER_BEGIN(tname)                                              \
780     {                                                                   \
781         static pixman_timer_t   timer##tname;                           \
782         uint64_t                begin##tname;                           \
783                                                                         \
784         if (!timer##tname.initialized)                                  \
785         {                                                               \
786             timer##tname.initialized = 1;                               \
787             timer##tname.name = #tname;                                 \
788             pixman_timer_register (&timer##tname);                      \
789         }                                                               \
790                                                                         \
791         timer##tname.n_times++;                                         \
792         begin##tname = OIL_STAMP();
793
794 #define TIMER_END(tname)                                                \
795         timer##tname.total += OIL_STAMP() - begin##tname;               \
796     }
797
798 #endif /* PIXMAN_TIMERS */
799
800 #endif /* PIXMAN_PRIVATE_H */