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