how to identify the number of calls of a fuction

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • contactmayankjain@gmail.com

    how to identify the number of calls of a fuction

    Hi,


    Can you tell me is there some procedure to calculate the number of
    calls of a function during run time?
    How to insert a counter and how to increment it? and possibly which
    function have called it how many times?



    Thanks
    Regards
    Mayank Jain
    +919818390836

  • Victor Bazarov

    #2
    Re: how to identify the number of calls of a fuction

    contactmayankja in@gmail.com wrote:
    Can you tell me is there some procedure to calculate the number of
    calls of a function during run time?
    Yes, it's called "call counter". You place

    unsigned my_function_cou nter;

    right before the function, in the global scope. Then the very first
    statement in the function should be

    ++my_function_c ounter;

    and then at the end of your program you simply print the counter out.
    How to insert a counter and how to increment it? and possibly which
    function have called it how many times?
    Ah... Which function... You need a profiler. Just use the proper
    tool for the job.

    V
    --
    Please remove capital 'A's when replying by e-mail
    I do not respond to top-posted replies, please don't ask


    Comment

    • Victor Bazarov

      #3
      Re: how to identify the number of calls of a fuction

      Erik Wikström wrote:
      [..]
      BTW: A bit off-topic but, is there any good, free profiler for
      windows.
      BTW, a bit off-topic, but, wouldn't it be too much to ask to use
      proper punctuation? You know, like the question mark I put after
      I asked a question...

      "Good" and "free" rarely coexist in a characterisatio n of a piece
      of software, especially when development tools are concerned.
      Just get a trial version of AQtime, you get two weeks of use, it
      should be enough to learn the tool and to improve the performance
      of your program. Then buy it. Don't get cheap when tools are
      concerned. A good tool is worth every penny.
      This seems to be one of those where you can only get two out
      of three. Either it's good but not free, free but not good, or not
      for windows.
      Yep.

      V
      --
      Please remove capital 'A's when replying by e-mail
      I do not respond to top-posted replies, please don't ask


      Comment

      • Shadowman

        #4
        Re: how to identify the number of calls of a fuction

        Victor Bazarov wrote:
        contactmayankja in@gmail.com wrote:
        >Can you tell me is there some procedure to calculate the number of
        >calls of a function during run time?
        >
        Yes, it's called "call counter". You place
        >
        unsigned my_function_cou nter;
        >
        right before the function, in the global scope. Then the very first
        statement in the function should be
        >
        ++my_function_c ounter;
        >
        and then at the end of your program you simply print the counter out.
        >
        Why not a static variable inside the function?


        --
        SM
        rot13 for email

        Comment

        • Victor Bazarov

          #5
          Re: how to identify the number of calls of a fuction

          Shadowman wrote:
          Victor Bazarov wrote:
          >contactmayankja in@gmail.com wrote:
          >>Can you tell me is there some procedure to calculate the number of
          >>calls of a function during run time?
          >>
          >Yes, it's called "call counter". You place
          >>
          >unsigned my_function_cou nter;
          >>
          >right before the function, in the global scope. Then the very first
          >statement in the function should be
          >>
          > ++my_function_c ounter;
          >>
          >and then at the end of your program you simply print the counter out.
          >>
          >
          Why not a static variable inside the function?
          How would you print it out?

          V
          --
          Please remove capital 'A's when replying by e-mail
          I do not respond to top-posted replies, please don't ask


          Comment

          • terminator

            #6
            Re: how to identify the number of calls of a fuction

            On Aug 7, 9:23 pm, Shadowman <funqbjzna...@p bzpnfg.argwrote :
            Victor Bazarov wrote:
            contactmayankj. ..@gmail.com wrote:
            Can you tell me is there some procedure to calculate the number of
            calls of a function during run time?
            >
            Yes, it's called "call counter". You place
            >
            unsigned my_function_cou nter;
            >
            right before the function, in the global scope. Then the very first
            statement in the function should be
            >
            ++my_function_c ounter;
            >
            and then at the end of your program you simply print the counter out.
            >
            Why not a static variable inside the function?
            you will have to either return that variable by value or store it in a
            global variable before return in which case simply using a global is
            more efficient.

            regards,
            FM.

            Comment

            • terminator

              #7
              Re: how to identify the number of calls of a fuction

              On Aug 7, 8:21 pm, "Victor Bazarov" <v.Abaza...@com Acast.netwrote:
              contactmayankj. ..@gmail.com wrote:
              Can you tell me is there some procedure to calculate the number of
              calls of a function during run time?
              >
              Yes, it's called "call counter". You place
              >
              unsigned my_function_cou nter;
              >
              right before the function, in the global scope. Then the very first
              statement in the function should be
              >
              ++my_function_c ounter;
              >
              and then at the end of your program you simply print the counter out.
              >
              How to insert a counter and how to increment it? and possibly which
              function have called it how many times?
              >
              Ah... Which function... You need a profiler. Just use the proper
              tool for the job.
              >
              V
              you can also get a pointer to caller as an argument of the callee
              which is then stored in a container:

              typedef std::pair<void( *)(void),std::s tringmypair;

              inline std::vector< mypair >& call_map(){
              static std::vector< mypair data;
              return data;
              };

              void callee(void (* mycaller)(void) ,std::string caller_name){

              call_map().push _back(mypair(my caller,caller_n ame));
              ...//go on
              };

              void caller(void){
              callee(&caller, "caller");

              };

              void print(const mypair& mp){
              //do some printing on mp
              };

              int main (void){
              caller();
              std::cout<<"cal lee count="<<call_m ap().size()<<en dl;
              std::for_each(c all_map().begin (),call_map.end (),print);
              return 0;
              };

              regards,
              FM.

              Comment

              • James Kanze

                #8
                Re: how to identify the number of calls of a fuction

                On Aug 7, 7:58 pm, "Victor Bazarov" <v.Abaza...@com Acast.netwrote:
                Erik Wikström wrote:
                [..]
                BTW: A bit off-topic but, is there any good, free profiler for
                windows.
                "Good" and "free" rarely coexist in a characterisatio n of a piece
                of software, especially when development tools are concerned.
                I tend to agree, although there are notable exceptions,
                precisely in the domain of development tools: g++ and gprof.
                Also, regrettably "good" and "commercial " rarely coexist either.

                Logically, commercial software has definite advantages: the
                additional leverage over employees can't hurt (although abusing
                it is not the best way to get the process to work).
                Practically, hackers seem to abound in both commercial and free
                software, and even acceptable quality is the exception for both.
                And leverage or not, some non-commercial operations, like g++,
                have managed to implement a fairly good development
                process---better, at any rate, than that in most commercial
                organizations.

                --
                James Kanze (GABI Software) email:james.kan ze@gmail.com
                Conseils en informatique orientée objet/
                Beratung in objektorientier ter Datenverarbeitu ng
                9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

                Comment

                • James Kanze

                  #9
                  Re: how to identify the number of calls of a fuction

                  On Aug 7, 7:16 pm, "contactmayankj ...@gmail.com"
                  <contactmayankj ...@gmail.comwr ote:
                  Can you tell me is there some procedure to calculate the number of
                  calls of a function during run time?
                  How to insert a counter and how to increment it? and possibly which
                  function have called it how many times?
                  It's implementation dependent, but any good compiler should have
                  an option to do this automatically, writing the results out to a
                  file at the end of execution. (With g++, for example, the
                  option is -pg. And the output is written in a binary format, so
                  you need an additional tool, gprof, to read it. On the other
                  hand, you get a lot more than just the counts of how many times
                  each function has been called.)

                  --
                  James Kanze (GABI Software) email:james.kan ze@gmail.com
                  Conseils en informatique orientée objet/
                  Beratung in objektorientier ter Datenverarbeitu ng
                  9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

                  Comment

                  Working...