Re: [BUGS] BUG #14897: Segfault on statitics SQL request

From: Andres Freund <andres(at)anarazel(dot)de>
To: Michael Paquier <michael(dot)paquier(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Dmitry Dolgov <9erthalion6(at)gmail(dot)com>, Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com>, Vincent Lachenal <vincent(dot)lachenal(at)gmail(dot)com>, PostgreSQL mailing lists <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: [BUGS] BUG #14897: Segfault on statitics SQL request
Date: 2017-11-14 06:22:04
Message-ID: 20171114062204.73urnzbmmxxbwz5f@alap3.anarazel.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 2017-11-14 15:16:34 +0900, Michael Paquier wrote:
> Oh, well. I am not sure what went wrong. But I can see the difference
> now, which is what you have:
> @@ -2652,7 +2652,7 @@ numericvar_to_int128:
> pxor %xmm0, %xmm0
> movl $1, %ebx
> testq %rdi, %rdi
> - movups %xmm0, (%r14)
> + movaps %xmm0, (%r14)
> je .L452
> call pfree(at)PLT
> .L452:
> @@ -13856,10 +13856,10 @@ numeric_poly_combine:
> movq 8(%rbp), %rdx
> movq %r12, CurrentMemoryContext(%rip)
> movq %rdx, 8(%rax)
> - movdqu 16(%rbp), %xmm0
> - movups %xmm0, 16(%rax)
> - movdqu 32(%rbp), %xmm0
> - movups %xmm0, 32(%rax)
> + movdqa 16(%rbp), %xmm0
> + movaps %xmm0, 16(%rax)
> + movdqa 32(%rbp), %xmm0
> + movaps %xmm0, 32(%rax)
> jmp .L2110
> .L2124:
> leaq .LC0(%rip), %rdi
> @@ -14338,8 +14338,8 @@ int8_avg_combine:
> movq 8(%rbp), %rdx
> movq %r12, CurrentMemoryContext(%rip)
> movq %rdx, 8(%rax)
> - movdqu 16(%rbp), %xmm0
> - movups %xmm0, 16(%rax)
> + movdqa 16(%rbp), %xmm0
> + movaps %xmm0, 16(%rax)

Just to be sure: This is the diff you're getting when you *back out* the
fix, right? Because movdqa etc are the alignment requiring instructions,
whereas movdqu is unaligned...

Greetings,

Andres Freund

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Michael Paquier 2017-11-14 06:25:24 Re: [BUGS] BUG #14897: Segfault on statitics SQL request
Previous Message Michael Paquier 2017-11-14 06:16:34 Re: [BUGS] BUG #14897: Segfault on statitics SQL request