From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 106830 invoked by alias); 18 Aug 2015 16:03:57 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 106816 invoked by uid 89); 18 Aug 2015 16:03:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.0 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 18 Aug 2015 16:03:51 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] [AArch64] Cleanup TLS relocation types which don't go through GOT table From: sergiodj+buildbot@redhat.com To: gdb-testers@sourceware.org Message-Id: <44b4145b723b43b175d4378c77bd79faaaa80312@gdb-build> Date: Tue, 18 Aug 2015 16:03:00 -0000 X-SW-Source: 2015-q3/txt/msg08113.txt.bz2 *** TEST RESULTS FOR COMMIT 44b4145b723b43b175d4378c77bd79faaaa80312 *** Author: Jiong Wang Branch: master Commit: 44b4145b723b43b175d4378c77bd79faaaa80312 [AArch64] Cleanup TLS relocation types which don't go through GOT table This patch done two types of cleanup: * in aarch64_reloc_got_type and elfNN_aarch64_relocate_section We don't need those redundant "case" check, as they can be merged with the "default" which just "break". * in elfNN_aarch64_gc_sweep_hook and elfNN_aarch64_check_relocs All TLS local executable relocations and some local dynamic relocations (those calculate module offset) actually don't need GOT entry, so remove them from GOT entry counting. 2015-08-18 Jiong Wang bfd/ * elfnn-aarch64.c (aarch64_reloc_got_type): Delete useless check. (elfNN_aarch64_relocate_section): Likewise. (elfNN_aarch64_gc_sweep_hook): Likewise. (elfNN_aarch64_check_relocs): Likewise.