Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752766AbbDFHM6 (ORCPT ); Mon, 6 Apr 2015 03:12:58 -0400 Received: from smtprelay0015.hostedemail.com ([216.40.44.15]:51839 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752688AbbDFHMu (ORCPT ); Mon, 6 Apr 2015 03:12:50 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::::::::,RULES_HIT:41:355:379:541:599:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:1801:2197:2199:2393:2559:2562:2828:3138:3139:3140:3141:3142:3352:3622:3653:3865:3868:3872:4321:4605:5007:6119:6120:6261:7901:8660:10004:10400:10848:11026:11473:11658:11914:12049:12438:12517:12519:12740:13069:13148:13161:13229:13230:13311:13357:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: jump63_358c8e07d2a01 X-Filterd-Recvd-Size: 2407 Message-ID: <1428304366.2775.98.camel@perches.com> Subject: Re: [PATCH 2/3] time: allow gcc to fold constants when using msecs_to_jiffies From: Joe Perches To: Nicholas Mc Guire Cc: Nicholas Mc Guire , Michal Marek , Masahiro Yamada , Sam Ravnborg , Thomas Gleixner , "H. Peter Alvin" , John Stultz , Andrew Hunter , Paul Turner , linux-kernel@vger.kernel.org Date: Mon, 06 Apr 2015 00:12:46 -0700 In-Reply-To: <20150406064005.GA32350@opentech.at> References: <1428218636-3780-1-git-send-email-hofrat@osadl.org> <1428218636-3780-3-git-send-email-hofrat@osadl.org> <1428278627.2775.75.camel@perches.com> <20150406010025.GA5956@opentech.at> <1428286502.2775.92.camel@perches.com> <20150406042654.GA28155@opentech.at> <1428294823.2775.94.camel@perches.com> <20150406064005.GA32350@opentech.at> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.12.10-0ubuntu1~14.10.1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1210 Lines: 45 On Mon, 2015-04-06 at 08:40 +0200, Nicholas Mc Guire wrote: > #define msecs_to_jiffies(m) \ > (__builtin_constant_p (m) \ > ? ((m) * HZ / MSECS_PER_SEC ) : __msecs_to_jiffies(m)) [] > main: > .LFB12: > .cfi_startproc > subq $8, %rsp #, > .cfi_def_cfa_offset 16 > movl $10, %esi #, > movl $.LC0, %edi #, > xorl %eax, %eax # > call printf # vs: > static inline unsigned long msecs_to_jiffies(int m) > { > return __builtin_constant_p (m) ? > (m) * HZ / MSECS_PER_SEC : __msecs_to_jiffies(m); > } [] > main: > .LFB13: > .cfi_startproc > subq $8, %rsp #, > .cfi_def_cfa_offset 16 > xorl %esi, %esi # > movl $.LC0, %edi #, > xorl %eax, %eax # > call printf # > > giving it another run from scratch somewhere I simply screwed up or > overlooked some detail. If the optimizer was doing it's job properly, wouldn't the macro and inline output object code be the same? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/