From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933671AbcFQPMi (ORCPT ); Fri, 17 Jun 2016 11:12:38 -0400 Received: from mx2.suse.de ([195.135.220.15]:51907 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933617AbcFQPMg (ORCPT ); Fri, 17 Jun 2016 11:12:36 -0400 Date: Fri, 17 Jun 2016 17:12:29 +0200 From: "Luis R. Rodriguez" To: Julia Lawall Cc: "Luis R. Rodriguez" , Gilles.Muller@lip6.fr, nicolas.palix@imag.fr, mmarek@suse.com, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, gregkh@linuxfoundation.org, markivx@codeaurora.org, stephen.boyd@linaro.org, zohar@linux.vnet.ibm.com, broonie@kernel.org, ming.lei@canonical.com, tiwai@suse.de, johannes@sipsolutions.net, chunkeey@googlemail.com, hauke@hauke-m.de, jwboyer@fedoraproject.org, dmitry.torokhov@gmail.com, dwmw2@infradead.org, jslaby@suse.com, torvalds@linux-foundation.org, cocci@systeme.lip6.fr Subject: Re: [PATCH v2 3/8] coccicheck: add indexing enhancement options Message-ID: <20160617151229.GO11948@wotan.suse.de> References: <1466116292-21843-1-git-send-email-mcgrof@kernel.org> <1466116292-21843-4-git-send-email-mcgrof@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jun 17, 2016 at 11:47:25AM +0200, Julia Lawall wrote: > > > On Thu, 16 Jun 2016, Luis R. Rodriguez wrote: > > > Coccinelle has support to make use of its own enhanced "grep" > > mechanisms instead of using regular grep for searching code, > > it calls this 'coccigrep'. In lack of any indexing optimization > > information it uses --use-coccigrep by default. > > > > This patch enable indexing optimizations heuristics so that coccigrep > > can automatically detect what indexing options are available and use > > them accordinly without any user input. > > > > Since git has its own index, support for using 'git grep' has been > > added to Coccinelle, that should on average perform better than > > using the internal coccigrep. Coccinelle has had idutils support > > as well for a while now, you however need to refer to the index > > file. We support detecting two idutils index files by default, > > ID and .id-utils.index, assuming you ran either of: > > > > # What you might have done: > > mkid -s > > # as in coccinelle scripts/idutils_index.sh > > mkid -i C --output .id-utils.index * > > > > Lastly, Coccinelle has had support for glimpseindex for a long while, > > however the glimpseindex tool, the agrep library were previously closed > > source, its all now open sourced, and provides the best performance, so > > support that if we can detect you have a glimpse index. > > > > You can always override the index as follows: > > > > $ make coccicheck V=1 MODE=report COCCI_INDEX="--use-idutils ID" > > Why not just have a generic COCCI_ARGS argument? Actually SPFLAGS exists already so we can just document to override using that. Will fix. Luis From mboxrd@z Thu Jan 1 00:00:00 1970 From: mcgrof@kernel.org (Luis R. Rodriguez) Date: Fri, 17 Jun 2016 17:12:29 +0200 Subject: [Cocci] [PATCH v2 3/8] coccicheck: add indexing enhancement options In-Reply-To: References: <1466116292-21843-1-git-send-email-mcgrof@kernel.org> <1466116292-21843-4-git-send-email-mcgrof@kernel.org> Message-ID: <20160617151229.GO11948@wotan.suse.de> To: cocci@systeme.lip6.fr List-Id: cocci@systeme.lip6.fr On Fri, Jun 17, 2016 at 11:47:25AM +0200, Julia Lawall wrote: > > > On Thu, 16 Jun 2016, Luis R. Rodriguez wrote: > > > Coccinelle has support to make use of its own enhanced "grep" > > mechanisms instead of using regular grep for searching code, > > it calls this 'coccigrep'. In lack of any indexing optimization > > information it uses --use-coccigrep by default. > > > > This patch enable indexing optimizations heuristics so that coccigrep > > can automatically detect what indexing options are available and use > > them accordinly without any user input. > > > > Since git has its own index, support for using 'git grep' has been > > added to Coccinelle, that should on average perform better than > > using the internal coccigrep. Coccinelle has had idutils support > > as well for a while now, you however need to refer to the index > > file. We support detecting two idutils index files by default, > > ID and .id-utils.index, assuming you ran either of: > > > > # What you might have done: > > mkid -s > > # as in coccinelle scripts/idutils_index.sh > > mkid -i C --output .id-utils.index * > > > > Lastly, Coccinelle has had support for glimpseindex for a long while, > > however the glimpseindex tool, the agrep library were previously closed > > source, its all now open sourced, and provides the best performance, so > > support that if we can detect you have a glimpse index. > > > > You can always override the index as follows: > > > > $ make coccicheck V=1 MODE=report COCCI_INDEX="--use-idutils ID" > > Why not just have a generic COCCI_ARGS argument? Actually SPFLAGS exists already so we can just document to override using that. Will fix. Luis