From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15207 invoked by alias); 24 Jan 2017 09:42:56 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 15197 invoked by uid 89); 24 Jan 2017 09:42:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=gdb.dwarf2, UD:gdb.dwarf2, UD:dwarf2, gdbdwarf2 X-HELO: mail-pf0-f194.google.com Received: from mail-pf0-f194.google.com (HELO mail-pf0-f194.google.com) (209.85.192.194) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 24 Jan 2017 09:42:45 +0000 Received: by mail-pf0-f194.google.com with SMTP id e4so11841347pfg.0 for ; Tue, 24 Jan 2017 01:42:45 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=g8kkz0OrFOSaIyqfahZOA4SatQMy9cCqbeZpXtSQzC4=; b=t1QuOaffJCzDmYBF4hb/zrmG/8eDlr46I2rCi29oLQ9enB+O/Acy1jDuSinhKfPRke dbJ6trUodaXXVRISwtZdndasDKvnCSyVXtOuCjit6ghcQ4yx9EMcAD3vGjrV5ReVtG2/ QAmcTWBnVJ0JcxX9RkpJdrft7lG8y/fO4CoimJiRISIJ7MRnrrsHnMWVpV1dkVQfiuMg yd667ySeflRT/8cpWVua2olN5MRv8CFfh0OvyLtl1YIoLxXkxxftebKZwIOvX3vRaJcj T2m/71wiWIXNsBD4neRhCuD2jsYIq4dQU1ip5YkFU08+tbFk6VtTDSNTDKbA9y3cKgOr DHMA== X-Gm-Message-State: AIkVDXIjvLQXxyR/08wWAO8GElD2OHYt8X9kcWAGDn4DdbX34ne+pZVrT6OKcFh0CiAO0Q== X-Received: by 10.98.79.150 with SMTP id f22mr37004900pfj.55.1485250964221; Tue, 24 Jan 2017 01:42:44 -0800 (PST) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id f65sm43211760pfk.5.2017.01.24.01.42.42 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 24 Jan 2017 01:42:43 -0800 (PST) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Cc: arnez@linux.vnet.ibm.com Subject: [PATCH 0/2] Add DW_OP_implicit_value in dwarf assembler Date: Tue, 24 Jan 2017 09:42:00 -0000 Message-Id: <1485250945-17594-1-git-send-email-yao.qi@linaro.org> In-Reply-To: References: X-IsSubscribed: yes X-SW-Source: 2017-01/txt/msg00488.txt.bz2 Andreas posted a patch https://sourceware.org/ml/gdb-patches/2017-01/msg00251.html and added DW_OP_implicit_value in dwarf assembler. I find DW_OP_implicit_value can be used in gdb.dwarf2/implptr-64bit.exp, so that we can remove implptr-64bit.S and use the generated .S file instead. Patch 1 fixes a minor bug in dwarf assembler, and patch 2 does the major work. Run gdb.dwarf2/*.exp on i686-pc-linux-gnu. There is no change in the .S files generated by dwarf assembler. *** BLURB HERE *** Yao Qi (2): Handle DW_OP_GNU_implicit_pointer in dwarf assembler Use dwarf assembler in gdb.dwarf2/implptr-64bit.exp gdb/testsuite/gdb.dwarf2/implptr-64bit.S | 226 ----------------------------- gdb/testsuite/gdb.dwarf2/implptr-64bit.exp | 118 +++++++++++++-- gdb/testsuite/lib/dwarf.exp | 46 +++++- 3 files changed, 153 insertions(+), 237 deletions(-) delete mode 100644 gdb/testsuite/gdb.dwarf2/implptr-64bit.S -- 1.9.1