Rename PIXMAN_FORMAT_16BPC macro to PIXMAN_FORMAT_IS_WIDE
[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
323 /*
324  * Edges
325  */
326
327 #define MAX_ALPHA(n)    ((1 << (n)) - 1)
328 #define N_Y_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n)/2)) - 1)
329 #define N_X_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n)/2)) + 1)
330
331 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC(n))
332 #define STEP_Y_BIG(n)   (pixman_fixed_1 - (N_Y_FRAC(n) - 1) * STEP_Y_SMALL(n))
333
334 #define Y_FRAC_FIRST(n) (STEP_Y_SMALL(n) / 2)
335 #define Y_FRAC_LAST(n)  (Y_FRAC_FIRST(n) + (N_Y_FRAC(n) - 1) * STEP_Y_SMALL(n))
336
337 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC(n))
338 #define STEP_X_BIG(n)   (pixman_fixed_1 - (N_X_FRAC(n) - 1) * STEP_X_SMALL(n))
339
340 #define X_FRAC_FIRST(n) (STEP_X_SMALL(n) / 2)
341 #define X_FRAC_LAST(n)  (X_FRAC_FIRST(n) + (N_X_FRAC(n) - 1) * STEP_X_SMALL(n))
342
343 #define RenderSamplesX(x,n)     ((n) == 1 ? 0 : (pixman_fixed_frac (x) + X_FRAC_FIRST(n)) / STEP_X_SMALL(n))
344
345 void
346 pixman_rasterize_edges_accessors (pixman_image_t *image,
347                                   pixman_edge_t *l,
348                                   pixman_edge_t *r,
349                                   pixman_fixed_t        t,
350                                   pixman_fixed_t        b);
351
352 /*
353  * Implementations
354  */
355
356 typedef struct pixman_implementation_t pixman_implementation_t;
357
358 typedef void (* pixman_combine_32_func_t) (pixman_implementation_t *    imp,
359                                            pixman_op_t                  op,
360                                            uint32_t *                   dest,
361                                            const uint32_t *             src,
362                                            const uint32_t *             mask,
363                                            int                          width);
364
365 typedef void (* pixman_combine_64_func_t) (pixman_implementation_t *    imp,
366                                            pixman_op_t                  op,
367                                            uint64_t *                   dest,
368                                            const uint64_t *             src,
369                                            const uint64_t *             mask,
370                                            int                          width);
371
372 typedef void (* pixman_composite_func_t)  (pixman_implementation_t *    imp,
373                                            pixman_op_t                  op,
374                                            pixman_image_t *             src,
375                                            pixman_image_t *             mask,
376                                            pixman_image_t *             dest,
377                                            int32_t                      src_x,
378                                            int32_t                      src_y,
379                                            int32_t                      mask_x,
380                                            int32_t                      mask_y,
381                                            int32_t                      dest_x,
382                                            int32_t                      dest_y,
383                                            int32_t                      width,
384                                            int32_t                      height);
385 typedef pixman_bool_t (* pixman_blt_func_t) (pixman_implementation_t *  imp,
386                                              uint32_t *                 src_bits,
387                                              uint32_t *                 dst_bits,
388                                              int                        src_stride,
389                                              int                        dst_stride,
390                                              int                        src_bpp,
391                                              int                        dst_bpp,
392                                              int                        src_x,
393                                              int                        src_y,
394                                              int                        dst_x,
395                                              int                        dst_y,
396                                              int                        width,
397                                              int                        height);
398 typedef pixman_bool_t (* pixman_fill_func_t) (pixman_implementation_t *imp,
399                                               uint32_t *bits,
400                                               int stride,
401                                               int bpp,
402                                               int x,
403                                               int y,
404                                               int width,
405                                               int height,
406                                               uint32_t xor);
407
408 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
409 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
410
411 struct pixman_implementation_t
412 {
413     pixman_implementation_t *   toplevel;
414     pixman_implementation_t *   delegate;
415
416     pixman_composite_func_t     composite;
417     pixman_blt_func_t           blt;
418     pixman_fill_func_t          fill;
419     
420     pixman_combine_32_func_t    combine_32[PIXMAN_OP_LAST];
421     pixman_combine_32_func_t    combine_32_ca[PIXMAN_OP_LAST];
422     pixman_combine_64_func_t    combine_64[PIXMAN_OP_LAST];
423     pixman_combine_64_func_t    combine_64_ca[PIXMAN_OP_LAST];
424 };
425
426 pixman_implementation_t *
427 _pixman_implementation_create (pixman_implementation_t *delegate);
428
429 void
430 _pixman_implementation_combine_32 (pixman_implementation_t *    imp,
431                                    pixman_op_t                  op,
432                                    uint32_t *                   dest,
433                                    const uint32_t *             src,
434                                    const uint32_t *             mask,
435                                    int                          width);
436 void
437 _pixman_implementation_combine_64 (pixman_implementation_t *    imp,
438                                    pixman_op_t                  op,
439                                    uint64_t *                   dest,
440                                    const uint64_t *             src,
441                                    const uint64_t *             mask,
442                                    int                          width);
443 void
444 _pixman_implementation_combine_32_ca (pixman_implementation_t * imp,
445                                       pixman_op_t               op,
446                                       uint32_t *                dest,
447                                       const uint32_t *          src,
448                                       const uint32_t *          mask,
449                                       int                       width);
450 void
451 _pixman_implementation_combine_64_ca (pixman_implementation_t * imp,
452                                       pixman_op_t               op,
453                                       uint64_t *                dest,
454                                       const uint64_t *          src,
455                                       const uint64_t *          mask,
456                                       int                       width);
457 void
458 _pixman_implementation_composite (pixman_implementation_t *     imp,
459                                   pixman_op_t                   op,
460                                   pixman_image_t *              src,
461                                   pixman_image_t *              mask,
462                                   pixman_image_t *              dest,
463                                   int32_t                       src_x,
464                                   int32_t                       src_y,
465                                   int32_t                       mask_x,
466                                   int32_t                       mask_y,
467                                   int32_t                       dest_x,
468                                   int32_t                       dest_y,
469                                   int32_t                       width,
470                                   int32_t                       height);
471
472 pixman_bool_t
473 _pixman_implementation_blt (pixman_implementation_t *   imp,
474                             uint32_t *                  src_bits,
475                             uint32_t *                  dst_bits,
476                             int                         src_stride,
477                             int                         dst_stride,
478                             int                         src_bpp,
479                             int                         dst_bpp,
480                             int                         src_x,
481                             int                         src_y,
482                             int                         dst_x,
483                             int                         dst_y,
484                             int                         width,
485                             int                         height);
486 pixman_bool_t
487 _pixman_implementation_fill (pixman_implementation_t *   imp,
488                              uint32_t *bits,
489                              int stride,
490                              int bpp,
491                              int x,
492                              int y,
493                              int width,
494                              int height,
495                              uint32_t xor);
496     
497 /* Specific implementations */
498 pixman_implementation_t *
499 _pixman_implementation_create_general (void);
500 pixman_implementation_t *
501 _pixman_implementation_create_fast_path (void);
502 #ifdef USE_MMX
503 pixman_implementation_t *
504 _pixman_implementation_create_mmx (void);
505 #endif
506 #ifdef USE_SSE2
507 pixman_implementation_t *
508 _pixman_implementation_create_sse2 (void);
509 #endif
510 #ifdef USE_ARM_SIMD
511 pixman_implementation_t *
512 _pixman_implementation_create_arm_simd (void);
513 #endif
514 #ifdef USE_ARM_NEON
515 pixman_implementation_t *
516 _pixman_implementation_create_arm_neon (void);
517 #endif
518 #ifdef USE_VMX
519 pixman_implementation_t *
520 _pixman_implementation_create_vmx (void);
521 #endif
522
523 pixman_implementation_t *
524 _pixman_choose_implementation (void);
525
526
527
528 /*
529  * Utilities
530  */
531
532 /* These "formats" both have depth 0, so they
533  * will never clash with any real ones
534  */
535 #define PIXMAN_null             PIXMAN_FORMAT(0,0,0,0,0,0)
536 #define PIXMAN_solid            PIXMAN_FORMAT(0,1,0,0,0,0)
537
538 #define NEED_COMPONENT_ALPHA            (1 << 0)
539 #define NEED_PIXBUF                     (1 << 1)
540 #define NEED_SOLID_MASK                 (1 << 2)
541
542 typedef struct
543 {
544     pixman_op_t                 op;
545     pixman_format_code_t        src_format;
546     pixman_format_code_t        mask_format;
547     pixman_format_code_t        dest_format;
548     pixman_composite_func_t     func;
549     uint32_t                    flags;
550 } pixman_fast_path_t;
551
552 /* Memory allocation helpers */
553 void *
554 pixman_malloc_ab (unsigned int n, unsigned int b);
555
556 void *
557 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
558
559 pixman_bool_t
560 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
561
562 pixman_bool_t
563 pixman_addition_overflows_int (unsigned int a, unsigned int b);
564
565 /* Compositing utilities */
566 pixman_bool_t
567 _pixman_run_fast_path (const pixman_fast_path_t *paths,
568                        pixman_implementation_t *imp,
569                        pixman_op_t op,
570                        pixman_image_t *src,
571                        pixman_image_t *mask,
572                        pixman_image_t *dest,
573                        int32_t src_x,
574                        int32_t src_y,
575                        int32_t mask_x,
576                        int32_t mask_y,
577                        int32_t dest_x,
578                        int32_t dest_y,
579                        int32_t width,
580                        int32_t height);
581     
582 void
583 _pixman_walk_composite_region (pixman_implementation_t *imp,
584                                pixman_op_t op,
585                                pixman_image_t * pSrc,
586                                pixman_image_t * pMask,
587                                pixman_image_t * pDst,
588                                int16_t xSrc,
589                                int16_t ySrc,
590                                int16_t xMask,
591                                int16_t yMask,
592                                int16_t xDst,
593                                int16_t yDst,
594                                uint16_t width,
595                                uint16_t height,
596                                pixman_composite_func_t compositeRect);
597
598 void
599 pixman_expand (uint64_t *dst, const uint32_t *src, pixman_format_code_t, int width);
600
601 void
602 pixman_contract (uint32_t *dst, const uint64_t *src, int width);
603
604
605 /* Region Helpers */
606 pixman_bool_t
607 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
608                                     pixman_region16_t *src);
609
610 pixman_bool_t
611 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
612                                     pixman_region32_t *src);
613
614
615 /* Misc macros */
616
617 #ifndef FALSE
618 #   define FALSE 0
619 #endif
620
621 #ifndef TRUE
622 #   define TRUE 1
623 #endif
624
625 #ifndef MIN
626 #  define MIN(a,b) ((a < b)? a : b)
627 #endif
628
629 #ifndef MAX
630 #  define MAX(a,b) ((a > b)? a : b)
631 #endif
632
633 /* Integer division that rounds towards -infinity */
634 #define DIV(a,b) ((((a) < 0) == ((b) < 0)) ? (a) / (b) :                \
635                   ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
636
637 /* Modulus that produces the remainder wrt. DIV */
638 #define MOD(a,b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
639
640 #define CLIP(v,low,high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v)))
641
642 /* Conversion between 8888 and 0565 */
643
644 #define cvt8888to0565(s)    ((((s) >> 3) & 0x001f) | \
645                              (((s) >> 5) & 0x07e0) | \
646                              (((s) >> 8) & 0xf800))
647 #define cvt0565to0888(s)    (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) | \
648                              ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) | \
649                              ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
650
651 #define PIXMAN_FORMAT_IS_WIDE(f)        (PIXMAN_FORMAT_A(f) > 8 || \
652                                          PIXMAN_FORMAT_R(f) > 8 || \
653                                          PIXMAN_FORMAT_G(f) > 8 || \
654                                          PIXMAN_FORMAT_B(f) > 8)
655
656 /*
657  * Various debugging code
658  */
659
660 #undef DEBUG
661 #define DEBUG 0
662
663 #if DEBUG
664
665 #define return_if_fail(expr)                                            \
666     do                                                                  \
667     {                                                                   \
668         if (!(expr))                                                    \
669         {                                                               \
670             fprintf(stderr, "In %s: %s failed\n", FUNC, #expr);         \
671             return;                                                     \
672         }                                                               \
673     }                                                                   \
674     while (0)
675
676 #define return_val_if_fail(expr, retval)                                \
677     do                                                                  \
678     {                                                                   \
679         if (!(expr))                                                    \
680         {                                                               \
681             fprintf(stderr, "In %s: %s failed\n", FUNC, #expr);         \
682             return (retval);                                            \
683         }                                                               \
684     }                                                                   \
685     while (0)
686
687 #else
688
689 #define return_if_fail(expr)                                            \
690     do                                                                  \
691     {                                                                   \
692         if (!(expr))                                                    \
693             return;                                                     \
694     }                                                                   \
695     while (0)
696
697 #define return_val_if_fail(expr, retval)                                \
698     do                                                                  \
699     {                                                                   \
700         if (!(expr))                                                    \
701             return (retval);                                            \
702     }                                                                   \
703     while (0)
704
705 #endif
706
707 /*
708  * Timers
709  */
710
711 #ifdef PIXMAN_TIMERS
712
713 static inline uint64_t
714 oil_profile_stamp_rdtsc (void)
715 {
716     uint64_t ts;
717     __asm__ __volatile__("rdtsc\n" : "=A" (ts));
718     return ts;
719 }
720 #define OIL_STAMP oil_profile_stamp_rdtsc
721
722 typedef struct pixman_timer_t pixman_timer_t;
723
724 struct pixman_timer_t
725 {
726     int initialized;
727     const char *name;
728     uint64_t n_times;
729     uint64_t total;
730     pixman_timer_t *next;
731 };
732
733 extern int timer_defined;
734 void pixman_timer_register (pixman_timer_t *timer);
735
736 #define TIMER_BEGIN(tname)                                              \
737     {                                                                   \
738         static pixman_timer_t   timer##tname;                           \
739         uint64_t                begin##tname;                           \
740                                                                         \
741         if (!timer##tname.initialized)                                  \
742         {                                                               \
743             timer##tname.initialized = 1;                               \
744             timer##tname.name = #tname;                                 \
745             pixman_timer_register (&timer##tname);                      \
746         }                                                               \
747                                                                         \
748         timer##tname.n_times++;                                         \
749         begin##tname = OIL_STAMP();
750
751 #define TIMER_END(tname)                                                \
752         timer##tname.total += OIL_STAMP() - begin##tname;               \
753     }
754
755 #endif /* PIXMAN_TIMERS */
756
757 #endif /* PIXMAN_PRIVATE_H */