android_kernel_oneplus_msm8998/arch/mips/lib
James Hogan cacdb01624 MIPS: Implement __multi3 for GCC7 MIPS64r6 builds
commit ebabcf17bcd7ce968b1631ebe08236275698f39b upstream.

GCC7 is a bit too eager to generate suboptimal __multi3 calls (128bit
multiply with 128bit result) for MIPS64r6 builds, even in code which
doesn't explicitly use 128bit types, such as the following:

unsigned long func(unsigned long a, unsigned long b)
{
	return a > (~0UL) / b;
}

Which GCC rearanges to:

return (unsigned __int128)a * (unsigned __int128)b > 0xffffffffffffffff;

Therefore implement __multi3, but only for MIPS64r6 with GCC7 as under
normal circumstances we wouldn't expect any calls to __multi3 to be
generated from kernel code.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: James Hogan <jhogan@kernel.org>
Tested-by: Waldemar Brodkorb <wbx@openadk.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Maciej W. Rozycki <macro@mips.com>
Cc: Matthew Fortune <matthew.fortune@mips.com>
Cc: Florian Fainelli <florian@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/17890/
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2018-03-03 10:19:46 +01:00
..
ashldi3.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
ashrdi3.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
bitops.c
bswapdi.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
bswapsi.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
cmpdi2.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
csum_partial.S
delay.c
dump_tlb.c MIPS: Rearrange ENTRYLO field definitions 2015-09-03 12:07:48 +02:00
iomap-pci.c
iomap.c
libgcc.h MIPS: Implement __multi3 for GCC7 MIPS64r6 builds 2018-03-03 10:19:46 +01:00
lshrdi3.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
Makefile MIPS: Implement __multi3 for GCC7 MIPS64r6 builds 2018-03-03 10:19:46 +01:00
memcpy.S
memset.S MIPS: uaccess: Take EVA into account in [__]clear_user 2015-12-22 11:58:43 +01:00
mips-atomic.c
multi3.c MIPS: Implement __multi3 for GCC7 MIPS64r6 builds 2018-03-03 10:19:46 +01:00
r3k_dump_tlb.c
strlen_user.S
strncpy_user.S
strnlen_user.S
ucmpdi2.c MIPS: lib: Mark intrinsics notrace 2016-06-07 18:14:32 -07:00
uncached.c