Displaying 3 results from an estimated 3 matches for "srcbitwidth".
2012 Jun 28
1
[LLVMdev] buildbot with -vectorize
...e consequently not
> really reliable.
FWIW, it looks like almost all (if not all) of the vectorize
compile failures are due to other passes not handling pointer vectors
appropriately. For example, lib/Analysis/ValueTracking.cpp contains
this code:
427 if (SrcTy->isPointerTy())
428 SrcBitWidth = TD->getTypeSizeInBits(SrcTy);
429 else
430 SrcBitWidth = SrcTy->getScalarSizeInBits();
and this does not work for pointer vectors. In this case, the solution
(for the crash, which happens because getScalarSizeInBits returns 0 for
pointer vectors) seems obvious, although fixing it...
2012 Jun 24
0
[LLVMdev] buildbot with -vectorize
On 06/24/2012 02:42 PM, Hal Finkel wrote:
> On Sun, 24 Jun 2012 08:17:32 +0200
> Tobias Grosser<tobias at grosser.es> wrote:
>
>> On 06/24/2012 05:42 AM, Hal Finkel wrote:
>>> On Thu, 21 Jun 2012 16:25:13 +0200
>>> Tobias Grosser<tobias at grosser.es> wrote:
>>>
>>>> On 06/21/2012 04:23 PM, Hal Finkel wrote:
>>>>>
2012 Jun 24
3
[LLVMdev] buildbot with -vectorize
On Sun, 24 Jun 2012 08:17:32 +0200
Tobias Grosser <tobias at grosser.es> wrote:
> On 06/24/2012 05:42 AM, Hal Finkel wrote:
> > On Thu, 21 Jun 2012 16:25:13 +0200
> > Tobias Grosser<tobias at grosser.es> wrote:
> >
> >> On 06/21/2012 04:23 PM, Hal Finkel wrote:
> >>> On Thu, 21 Jun 2012 01:03:46 +0200
> >>> Tobias