HomeSort by: relevance | last modified time | path
    Searched defs:call_string (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
call-string.h 42 class call_string class in namespace:ana
45 /* A struct representing an element in the call_string.
68 call_string () : m_elements () {} function in class:ana::call_string
69 call_string (const call_string &other);
70 call_string& operator= (const call_string &other);
72 bool operator== (const call_string &other) const;
92 static int cmp (const call_string &a,
93 const call_string &b)
    [all...]
call-string.cc 46 /* class call_string. */
48 /* struct call_string::element_t. */
50 /* call_string::element_t's equality operator. */
53 call_string::element_t::operator== (const call_string::element_t &other) const
58 /* call_string::element_t's inequality operator. */
60 call_string::element_t::operator!= (const call_string::element_t &other) const
66 call_string::element_t::get_caller_function () const
72 call_string::element_t::get_callee_function () cons
79 call_string::call_string (const call_string &other) function in class:call_string
    [all...]
program-point.cc 316 "call_string": object for the call_string}. */
343 point_obj->set ("call_string", m_call_string.to_json ());
474 const call_string::element_t top_of_stack = m_call_string.pop ();
475 call_string::element_t current_call_string_element (succ->m_dest,
724 const call_string call_string; local
761 const call_string cs;
  /src/external/gpl3/gcc/dist/gcc/analyzer/
call-string.cc 48 /* class call_string. */
50 /* struct call_string::element_t. */
52 /* call_string::element_t's equality operator. */
55 call_string::element_t::operator== (const call_string::element_t &other) const
60 /* call_string::element_t's inequality operator. */
62 call_string::element_t::operator!= (const call_string::element_t &other) const
68 call_string::element_t::get_caller_function () const
74 call_string::element_t::get_callee_function () cons
286 call_string::call_string () function in class:call_string
293 call_string::call_string (const call_string &parent, const element_t &to_push) function in class:call_string
    [all...]
call-string.h 42 Instances of call_string are consolidated by the region_model_manager,
43 which effectively owns them: it owns the root/empty call_string, and each
44 call_string instance tracks its children, lazily creating them on demand,
45 so that the call_string instances form a tree-like hierarchy in memory. */
47 class call_string class in namespace:ana
50 /* A struct representing an element in the call_string.
79 const call_string *push_call (const supergraph &sg,
82 const call_string *push_call (const supernode *src,
84 const call_string *get_parent () const { return m_parent; }
88 static int cmp (const call_string &a
    [all...]
infinite-recursion.cc 607 const call_string &call_string = enode->get_point ().get_call_string (); local
609 if (call_string.count_occurrences_of_function (top_of_stack_fun) < 2)
635 const supernode *caller_snode = call_string.get_top_of_stack ().m_caller;

Completed in 21 milliseconds