glamor: Rely on nested mappings to handle src==dst and !prepare bugs.

Now that the core deals with that for us, we can avoid all this extra
carefulness.

Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Markus Wick <markus@selfnet.de>
This commit is contained in:
Eric Anholt 2014-01-11 00:00:00 +08:00
parent 4c9a200725
commit 93f1824a0b
16 changed files with 81 additions and 96 deletions

View File

@ -40,8 +40,8 @@ _glamor_add_traps(PicturePtr pPicture,
if (glamor_prepare_access_picture(pPicture, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access_picture(pPicture, GLAMOR_ACCESS_RW)) {
fbAddTraps(pPicture, x_off, y_off, ntrap, traps); fbAddTraps(pPicture, x_off, y_off, ntrap, traps);
glamor_finish_access_picture(pPicture, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_picture(pPicture);
return TRUE; return TRUE;
} }

View File

@ -570,15 +570,13 @@ _glamor_copy_n_to_n(DrawablePtr src,
glamor_get_drawable_location(src), glamor_get_drawable_location(src),
glamor_get_drawable_location(dst)); glamor_get_drawable_location(dst));
if (glamor_prepare_access(dst, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(dst, GLAMOR_ACCESS_RW) &&
if (dst == src || glamor_prepare_access(src, GLAMOR_ACCESS_RO)) { glamor_prepare_access(src, GLAMOR_ACCESS_RO)) {
fbCopyNtoN(src, dst, gc, box, nbox, fbCopyNtoN(src, dst, gc, box, nbox,
dx, dy, reverse, upsidedown, bitplane, closure); dx, dy, reverse, upsidedown, bitplane, closure);
if (dst != src)
glamor_finish_access(src, GLAMOR_ACCESS_RO);
}
glamor_finish_access(dst, GLAMOR_ACCESS_RW);
} }
glamor_finish_access(src);
glamor_finish_access(dst);
ok = TRUE; ok = TRUE;
done: done:

View File

@ -38,12 +38,13 @@ _glamor_copy_plane(DrawablePtr pSrc, DrawablePtr pDst, GCPtr pGC,
&& glamor_ddx_fallback_check_pixmap(pDst)) && glamor_ddx_fallback_check_pixmap(pDst))
goto fail; goto fail;
glamor_prepare_access(pDst, GLAMOR_ACCESS_RW); if (glamor_prepare_access(pDst, GLAMOR_ACCESS_RW) &&
glamor_prepare_access(pSrc, GLAMOR_ACCESS_RO); glamor_prepare_access(pSrc, GLAMOR_ACCESS_RO)) {
*pRegion = fbCopyPlane(pSrc, pDst, pGC, srcx, srcy, w, h, *pRegion = fbCopyPlane(pSrc, pDst, pGC, srcx, srcy, w, h,
dstx, dsty, bitPlane); dstx, dsty, bitPlane);
glamor_finish_access(pSrc, GLAMOR_ACCESS_RO); }
glamor_finish_access(pDst, GLAMOR_ACCESS_RW); glamor_finish_access(pSrc);
glamor_finish_access(pDst);
return TRUE; return TRUE;
fail: fail:

View File

@ -304,7 +304,7 @@ glamor_fini_finish_access_shaders(ScreenPtr screen)
} }
void void
glamor_finish_access(DrawablePtr drawable, glamor_access_t access_mode) glamor_finish_access(DrawablePtr drawable)
{ {
PixmapPtr pixmap = glamor_get_drawable_pixmap(drawable); PixmapPtr pixmap = glamor_get_drawable_pixmap(drawable);
glamor_pixmap_private *pixmap_priv = glamor_get_pixmap_private(pixmap); glamor_pixmap_private *pixmap_priv = glamor_get_pixmap_private(pixmap);
@ -370,7 +370,7 @@ glamor_prepare_access_gc(GCPtr gc)
if (!glamor_prepare_access(&gc->tile.pixmap->drawable, if (!glamor_prepare_access(&gc->tile.pixmap->drawable,
GLAMOR_ACCESS_RO)) { GLAMOR_ACCESS_RO)) {
if (gc->stipple) if (gc->stipple)
glamor_finish_access(&gc->stipple->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&gc->stipple->drawable);
return FALSE; return FALSE;
} }
} }
@ -384,9 +384,9 @@ void
glamor_finish_access_gc(GCPtr gc) glamor_finish_access_gc(GCPtr gc)
{ {
if (gc->fillStyle == FillTiled) if (gc->fillStyle == FillTiled)
glamor_finish_access(&gc->tile.pixmap->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&gc->tile.pixmap->drawable);
if (gc->stipple) if (gc->stipple)
glamor_finish_access(&gc->stipple->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&gc->stipple->drawable);
} }
Bool Bool
@ -460,7 +460,7 @@ glamor_validate_gc(GCPtr gc, unsigned long changes, DrawablePtr drawable)
(&old_tile->drawable, GLAMOR_ACCESS_RO)) { (&old_tile->drawable, GLAMOR_ACCESS_RO)) {
new_tile = new_tile =
fb24_32ReformatTile(old_tile, drawable->bitsPerPixel); fb24_32ReformatTile(old_tile, drawable->bitsPerPixel);
glamor_finish_access(&old_tile->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&old_tile->drawable);
} }
} }
if (new_tile) { if (new_tile) {
@ -483,8 +483,7 @@ glamor_validate_gc(GCPtr gc, unsigned long changes, DrawablePtr drawable)
if (glamor_prepare_access if (glamor_prepare_access
(&gc->tile.pixmap->drawable, GLAMOR_ACCESS_RW)) { (&gc->tile.pixmap->drawable, GLAMOR_ACCESS_RW)) {
fbPadPixmap(gc->tile.pixmap); fbPadPixmap(gc->tile.pixmap);
glamor_finish_access glamor_finish_access(&gc->tile.pixmap->drawable);
(&gc->tile.pixmap->drawable, GLAMOR_ACCESS_RW);
} }
} }
} }
@ -500,7 +499,7 @@ glamor_validate_gc(GCPtr gc, unsigned long changes, DrawablePtr drawable)
*/ */
if (glamor_prepare_access(&gc->stipple->drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(&gc->stipple->drawable, GLAMOR_ACCESS_RW)) {
fbValidateGC(gc, changes, drawable); fbValidateGC(gc, changes, drawable);
glamor_finish_access(&gc->stipple->drawable, GLAMOR_ACCESS_RW); glamor_finish_access(&gc->stipple->drawable);
} }
} }
else { else {
@ -544,7 +543,7 @@ glamor_bitmap_to_region(PixmapPtr pixmap)
if (!glamor_prepare_access(&pixmap->drawable, GLAMOR_ACCESS_RO)) if (!glamor_prepare_access(&pixmap->drawable, GLAMOR_ACCESS_RO))
return NULL; return NULL;
ret = fbPixmapToRegion(pixmap); ret = fbPixmapToRegion(pixmap);
glamor_finish_access(&pixmap->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&pixmap->drawable);
return ret; return ret;
} }

View File

@ -112,13 +112,12 @@ glamor_fill(DrawablePtr drawable,
x = 0; x = 0;
y = 0; y = 0;
} }
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW) &&
if (glamor_prepare_access_gc(gc)) { glamor_prepare_access_gc(gc)) {
fbFill(drawable, gc, x, y, width, height); fbFill(drawable, gc, x, y, width, height);
glamor_finish_access_gc(gc);
}
glamor_finish_access(drawable, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_gc(gc);
glamor_finish_access(drawable);
if (sub_pixmap != NULL) { if (sub_pixmap != NULL) {
if (gc->fillStyle != FillSolid) { if (gc->fillStyle != FillSolid) {

View File

@ -79,13 +79,12 @@ _glamor_fill_spans(DrawablePtr drawable,
} }
glamor_fallback("to %p (%c)\n", drawable, glamor_fallback("to %p (%c)\n", drawable,
glamor_get_drawable_location(drawable)); glamor_get_drawable_location(drawable));
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW) &&
if (glamor_prepare_access_gc(gc)) { glamor_prepare_access_gc(gc)) {
fbFillSpans(drawable, gc, n, points, widths, sorted); fbFillSpans(drawable, gc, n, points, widths, sorted);
glamor_finish_access_gc(gc);
}
glamor_finish_access(drawable, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_gc(gc);
glamor_finish_access(drawable);
ret = TRUE; ret = TRUE;
done: done:

View File

@ -69,8 +69,8 @@ _glamor_get_spans(DrawablePtr drawable,
ret = TRUE; ret = TRUE;
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RO)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RO)) {
fbGetSpans(drawable, wmax, points, widths, count, dst); fbGetSpans(drawable, wmax, points, widths, count, dst);
glamor_finish_access(drawable, GLAMOR_ACCESS_RO);
} }
glamor_finish_access(drawable);
done: done:
return ret; return ret;
} }

View File

@ -55,12 +55,12 @@ glamor_prepare_access_picture(PicturePtr picture, glamor_access_t access)
} }
void void
glamor_finish_access_picture(PicturePtr picture, glamor_access_t access) glamor_finish_access_picture(PicturePtr picture)
{ {
if (!picture || !picture->pDrawable) if (!picture || !picture->pDrawable)
return; return;
glamor_finish_access(picture->pDrawable, access); glamor_finish_access(picture->pDrawable);
} }
/* /*

View File

@ -96,13 +96,12 @@ _glamor_poly_fill_rect(DrawablePtr drawable,
glamor_fallback(" to %p (%c)\n", glamor_fallback(" to %p (%c)\n",
drawable, glamor_get_drawable_location(drawable)); drawable, glamor_get_drawable_location(drawable));
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW) &&
if (glamor_prepare_access_gc(gc)) { glamor_prepare_access_gc(gc)) {
fbPolyFillRect(drawable, gc, nrect, prect); fbPolyFillRect(drawable, gc, nrect, prect);
glamor_finish_access_gc(gc);
}
glamor_finish_access(drawable, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_gc(gc);
glamor_finish_access(drawable);
ret = TRUE; ret = TRUE;
done: done:

View File

@ -105,13 +105,12 @@ _glamor_poly_lines(DrawablePtr drawable, GCPtr gc, int mode, int n,
return FALSE; return FALSE;
if (gc->lineWidth == 0) { if (gc->lineWidth == 0) {
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW) &&
if (glamor_prepare_access_gc(gc)) { glamor_prepare_access_gc(gc)) {
fbPolyLine(drawable, gc, mode, n, points); fbPolyLine(drawable, gc, mode, n, points);
glamor_finish_access_gc(gc);
}
glamor_finish_access(drawable, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_gc(gc);
glamor_finish_access(drawable);
} }
else { else {
wide_line: wide_line:

View File

@ -578,7 +578,7 @@ void glamor_copy_window(WindowPtr win, DDXPointRec old_origin,
/* glamor_core.c */ /* glamor_core.c */
Bool glamor_prepare_access(DrawablePtr drawable, glamor_access_t access); Bool glamor_prepare_access(DrawablePtr drawable, glamor_access_t access);
void glamor_finish_access(DrawablePtr drawable, glamor_access_t access); void glamor_finish_access(DrawablePtr drawable);
Bool glamor_prepare_access_window(WindowPtr window); Bool glamor_prepare_access_window(WindowPtr window);
void glamor_finish_access_window(WindowPtr window); void glamor_finish_access_window(WindowPtr window);
Bool glamor_prepare_access_gc(GCPtr gc); Bool glamor_prepare_access_gc(GCPtr gc);
@ -904,7 +904,7 @@ void glamor_set_window_pixmap(WindowPtr pWindow, PixmapPtr pPixmap);
Bool glamor_prepare_access_picture(PicturePtr picture, glamor_access_t access); Bool glamor_prepare_access_picture(PicturePtr picture, glamor_access_t access);
void glamor_finish_access_picture(PicturePtr picture, glamor_access_t access); void glamor_finish_access_picture(PicturePtr picture);
void glamor_destroy_picture(PicturePtr picture); void glamor_destroy_picture(PicturePtr picture);

View File

@ -229,8 +229,8 @@ glamor_put_image_xybitmap(DrawablePtr drawable, GCPtr gc,
fail: fail:
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) {
fbPutImage(drawable, gc, 1, x, y, w, h, left_pad, XYBitmap, bits); fbPutImage(drawable, gc, 1, x, y, w, h, left_pad, XYBitmap, bits);
glamor_finish_access(drawable, GLAMOR_ACCESS_RW);
} }
glamor_finish_access(drawable);
} }
#endif #endif

View File

@ -1784,22 +1784,17 @@ _glamor_composite(CARD8 op,
if (mask && mask->pDrawable && !mask->transform) if (mask && mask->pDrawable && !mask->transform)
GET_SUB_PICTURE(mask, GLAMOR_ACCESS_RO); GET_SUB_PICTURE(mask, GLAMOR_ACCESS_RO);
if (glamor_prepare_access_picture(dest, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access_picture(dest, GLAMOR_ACCESS_RW) &&
if (source_pixmap == dest_pixmap || glamor_prepare_access_picture glamor_prepare_access_picture(source, GLAMOR_ACCESS_RO) &&
(source, GLAMOR_ACCESS_RO)) { glamor_prepare_access_picture(mask, GLAMOR_ACCESS_RO)) {
if (!mask || glamor_prepare_access_picture(mask, GLAMOR_ACCESS_RO)) { fbComposite(op,
fbComposite(op, source, mask, dest,
source, mask, dest, x_source, y_source,
x_source, y_source, x_mask, y_mask, x_dest, y_dest, width, height);
x_mask, y_mask, x_dest, y_dest, width, height);
if (mask)
glamor_finish_access_picture(mask, GLAMOR_ACCESS_RO);
}
if (source_pixmap != dest_pixmap)
glamor_finish_access_picture(source, GLAMOR_ACCESS_RO);
}
glamor_finish_access_picture(dest, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_picture(mask);
glamor_finish_access_picture(source);
glamor_finish_access_picture(dest);
#define PUT_SUB_PICTURE(p, access) do { \ #define PUT_SUB_PICTURE(p, access) do { \
if (sub_ ##p ##_pixmap != NULL) { \ if (sub_ ##p ##_pixmap != NULL) { \

View File

@ -88,8 +88,8 @@ _glamor_set_spans(DrawablePtr drawable, GCPtr gc, char *src,
drawable, glamor_get_drawable_location(drawable)); drawable, glamor_get_drawable_location(drawable));
if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access(drawable, GLAMOR_ACCESS_RW)) {
fbSetSpans(drawable, gc, src, points, widths, numPoints, sorted); fbSetSpans(drawable, gc, src, points, widths, numPoints, sorted);
glamor_finish_access(drawable, GLAMOR_ACCESS_RW);
} }
glamor_finish_access(drawable);
ret = TRUE; ret = TRUE;
done: done:

View File

@ -41,16 +41,13 @@ _glamor_triangles(CARD8 op,
|| glamor_ddx_fallback_check_pixmap(pSrc->pDrawable))) || glamor_ddx_fallback_check_pixmap(pSrc->pDrawable)))
return FALSE; return FALSE;
if (glamor_prepare_access_picture(pDst, GLAMOR_ACCESS_RW)) { if (glamor_prepare_access_picture(pDst, GLAMOR_ACCESS_RW) &&
if (glamor_prepare_access_picture(pSrc, GLAMOR_ACCESS_RO)) { glamor_prepare_access_picture(pSrc, GLAMOR_ACCESS_RO)) {
fbTriangles(op, pSrc, pDst, maskFormat, xSrc, ySrc, ntris, tris);
fbTriangles(op, pSrc, pDst, maskFormat, xSrc, ySrc, ntris, tris);
glamor_finish_access_picture(pSrc, GLAMOR_ACCESS_RO);
}
glamor_finish_access_picture(pDst, GLAMOR_ACCESS_RW);
} }
glamor_finish_access_picture(pSrc);
glamor_finish_access_picture(pDst);
return TRUE; return TRUE;
} }

View File

@ -1177,7 +1177,7 @@ glamor_dump_pixmap(PixmapPtr pixmap, int x, int y, int w, int h)
default: default:
ErrorF("dump depth %d, not implemented.\n", pixmap->drawable.depth); ErrorF("dump depth %d, not implemented.\n", pixmap->drawable.depth);
} }
glamor_finish_access(&pixmap->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&pixmap->drawable);
} }
static inline void static inline void
@ -1318,13 +1318,12 @@ glamor_compare_pixmaps(PixmapPtr pixmap1, PixmapPtr pixmap2,
{ {
assert(pixmap1->drawable.depth == pixmap2->drawable.depth); assert(pixmap1->drawable.depth == pixmap2->drawable.depth);
glamor_prepare_access(&pixmap1->drawable, GLAMOR_ACCESS_RO); if (glamor_prepare_access(&pixmap1->drawable, GLAMOR_ACCESS_RO) &&
glamor_prepare_access(&pixmap2->drawable, GLAMOR_ACCESS_RO); glamor_prepare_access(&pixmap2->drawable, GLAMOR_ACCESS_RO)) {
_glamor_compare_pixmaps(pixmap1, pixmap2, x, y, w, h, -1, all, diffs);
_glamor_compare_pixmaps(pixmap1, pixmap2, x, y, w, h, -1, all, diffs); }
glamor_finish_access(&pixmap1->drawable);
glamor_finish_access(&pixmap1->drawable, GLAMOR_ACCESS_RO); glamor_finish_access(&pixmap2->drawable);
glamor_finish_access(&pixmap2->drawable, GLAMOR_ACCESS_RO);
} }
/* This function is used to compare two pictures. /* This function is used to compare two pictures.
@ -1432,9 +1431,6 @@ glamor_compare_pictures(ScreenPtr screen,
return; return;
} }
glamor_prepare_access(&fst_pixmap->drawable, GLAMOR_ACCESS_RO);
glamor_prepare_access(&snd_pixmap->drawable, GLAMOR_ACCESS_RO);
if ((fst_type == SourcePictTypeLinear) || if ((fst_type == SourcePictTypeLinear) ||
(fst_type == SourcePictTypeRadial) || (fst_type == SourcePictTypeRadial) ||
(fst_type == SourcePictTypeConical) || (fst_type == SourcePictTypeConical) ||
@ -1444,12 +1440,15 @@ glamor_compare_pictures(ScreenPtr screen,
x_source = y_source = 0; x_source = y_source = 0;
} }
_glamor_compare_pixmaps(fst_pixmap, snd_pixmap, if (glamor_prepare_access(&fst_pixmap->drawable, GLAMOR_ACCESS_RO) &&
x_source, y_source, glamor_prepare_access(&snd_pixmap->drawable, GLAMOR_ACCESS_RO)) {
width, height, fst_picture->format, all, diffs); _glamor_compare_pixmaps(fst_pixmap, snd_pixmap,
x_source, y_source,
glamor_finish_access(&fst_pixmap->drawable, GLAMOR_ACCESS_RO); width, height, fst_picture->format,
glamor_finish_access(&snd_pixmap->drawable, GLAMOR_ACCESS_RO); all, diffs);
}
glamor_finish_access(&fst_pixmap->drawable);
glamor_finish_access(&snd_pixmap->drawable);
if (fst_generated) if (fst_generated)
glamor_destroy_picture(fst_picture); glamor_destroy_picture(fst_picture);