From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 69088 invoked by alias); 3 Sep 2019 18:46:12 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 69072 invoked by uid 89); 3 Sep 2019 18:46:12 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 03 Sep 2019 18:46:11 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id F25A4C057F88; Tue, 3 Sep 2019 18:46:09 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-3.rdu2.redhat.com [10.10.112.3]) by smtp.corp.redhat.com (Postfix) with ESMTP id B14D55C21A; Tue, 3 Sep 2019 18:46:08 +0000 (UTC) Subject: Re: [PATCH V6 05/11] bpf: new GCC port To: "Jose E. Marchesi" , "Jose E. Marchesi" Cc: gcc-patches@gcc.gnu.org, richard.sandiford@arm.com References: <20190829151347.13536-1-jose.marchesi@oracle.com> <87sgpkgfpz.fsf@gnu.org> <87h85zf0td.fsf@oracle.com> From: Jeff Law Openpgp: preference=signencrypt Message-ID: <6055ae30-5c7c-f990-0605-9ee09c492fd0@redhat.com> Date: Tue, 03 Sep 2019 18:46:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 In-Reply-To: <87h85zf0td.fsf@oracle.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00139.txt.bz2 On 8/30/19 3:40 AM, Jose E. Marchesi wrote: > > > This patch adds a port for the Linux kernel eBPF architecture to GCC. > > > > ChangeLog: > > > > * configure.ac: Support for bpf-*-* targets. > > * configure: Regenerate. > > > > contrib/ChangeLog: > > > > * config-list.mk (LIST): Disable go in bpf-*-* targets. > > > > gcc/ChangeLog: > > > > * config.gcc: Support for bpf-*-* targets. > > * common/config/bpf/bpf-common.c: New file. > > * config/bpf/t-bpf: Likewise. > > * config/bpf/predicates.md: Likewise. > > * config/bpf/constraints.md: Likewise. > > * config/bpf/bpf.opt: Likewise. > > * config/bpf/bpf.md: Likewise. > > * config/bpf/bpf.h: Likewise. > > * config/bpf/bpf.c: Likewise. > > * config/bpf/bpf-protos.h: Likewise. > > * config/bpf/bpf-opts.h: Likewise. > > * config/bpf/bpf-helpers.h: Likewise. > > * config/bpf/bpf-helpers.def: Likewise. > > Looks good to me, thanks. > > Thanks to you for the throughful, super useful review. > > Jeff also had detailed comments, so please wait for an ack from him > too. > > Sure. I think the bits are in good enough shape they can go in now. jeff