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