• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Digital Signal Processors (DSP) » C6000 Single Core DSP » C67x Single Core DSP Forum » [C6727] Innocent function treated as recursive
Share
C6000 Single Core DSP
  • Forums
  • Announcements
Options
  • Subscribe via RSS

[C6727] Innocent function treated as recursive

[C6727] Innocent function treated as recursive

This question is answered
Harbour
Posted by Harbour
on Jun 18 2009 03:46 AM
Prodigy90 points

Hi,

I have the function :

..........................................................................................................

#define L_add(a,b)     (_sadd((a),(b))) 
#define L_mult(a,b)    (_smpy((a),(b))) 
#define L_macNs(a,b,c) L_add_c((a),L_mult(b,c))

static inline int32_t c67_dot(int16_t *x, int16_t *y, int len)
{
 int32_t dot = 0, i;
 for (i = 0; i < len; i++) 
   L_macNs(dot, x[i], y[i]);
 return dot;
}

.............................................................................................................

After compiling the code fot c6727 with cl6x v6.1.9 with the following options :

INCLUDES= -i. -i/usr/ti/csl/dsp/inc -i/usr/ti/inc -i/usr/ti/csl/intc/dsp/inc
DEFINES= -D=C6727 -D=CHIP_6727 -D=CHIP_C6727
CFLAGS = $(DEFINES) $(INCLUDES) -q -pdv -al -pm -ss -k -mw -on2 -mt -mf=5 -mi=0

I've noticed such lines in *.nfo file :

These functions may be recursive: c67_dot
Inlineable function will be suppressed: c67_dot()

So questions are :

1. What does this message means ?

2. Why compiler emits words "may be" ?

3. If the function really treated as recursive - how to avoid this behaviour ?

Thanks in advance

Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • pf
    Posted by pf
    on Jun 19 2009 14:51 PM
    Verified Answer
    Verified by clam
    Intellectual3000 points

    > These functions may be recursive: c67_dot

    The algorithm that determines whether a function may be recursive operates on the entire call graph, plus some information taken from the compilation options.  Thus it depends on the context of this function and not solely the function itself, and I can't give you a precise answer from what I have.

    That said, it appears that c67_dot() calls L_add_c().  Perhaps L_add_c() makes an indirect call, or perhaps it calls a function that makes an indirect call.  The most common reason for non-obvious may-be-recursive notes is an indirect call for which the set of actual callees can't be determined.

    If a function may be recursive, certain optimisations (mostly related to aliased variables) will be more conservative.

     

    > Inlineable function will be suppressed: c67_dot()

    If all calls to a function are inlined, and it can't be called from outside the compilation unit, there's no need to include the function itself in the output.  That's what we mean by "suppression."

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use