Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 157224 Details for
Bug 244575
Problem with gcc i386 register allocation
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
The test case
gcc-register.c (text/x-csrc), 944 bytes, created by
Søren Sandmann Pedersen
on 2007-06-17 15:27:03 UTC
(
hide
)
Description:
The test case
Filename:
MIME Type:
Creator:
Søren Sandmann Pedersen
Created:
2007-06-17 15:27:03 UTC
Size:
944 bytes
patch
obsolete
>#include <stdint.h> > >extern int get_src_stride(void); >extern int get_dst_stride(void); > >void >fbCompositeSrc_8888xx888 (uint8_t op, > uint32_t *pSrc, > uint32_t *pMask, > uint32_t *pDst, > int16_t xSrc, > int16_t ySrc, > int16_t xMask, > int16_t yMask, > int16_t xDst, > int16_t yDst, > uint16_t width, > uint16_t height) >{ > uint32_t *dstLine; > register uint32_t *dst; > uint32_t *srcLine; > register uint32_t *src; > int dstStride, srcStride; > uint16_t w; > > src = pSrc; > dst = pDst; > srcStride = get_src_stride(); > dstStride = get_dst_stride(); > dstLine = pDst; > srcLine = pSrc; > > while (height--) > { > dst = dstLine; > dstLine += dstStride; > src = srcLine; > srcLine += srcStride; > w = width; > > while (w--) > { > __asm__ ("# begin inner\n"); > *dst++ = *src++ | 0xFF000000; > __asm__ ("# end inner\n"); > } > } > >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 244575
: 157224 |
157225