1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
|
/* Callgraph summary data structure.
Copyright (C) 2014-2022 Free Software Foundation, Inc.
Contributed by Martin Liska
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#ifndef GCC_SYMBOL_SUMMARY_H
#define GCC_SYMBOL_SUMMARY_H
/* Base class for function_summary and fast_function_summary classes. */
template <class T>
class function_summary_base
{
public:
/* Default construction takes SYMTAB as an argument. */
function_summary_base (symbol_table *symtab,
cgraph_node_hook symtab_insertion,
cgraph_node_hook symtab_removal,
cgraph_2node_hook symtab_duplication
CXX_MEM_STAT_INFO):
m_symtab (symtab), m_symtab_insertion (symtab_insertion),
m_symtab_removal (symtab_removal),
m_symtab_duplication (symtab_duplication),
m_symtab_insertion_hook (NULL), m_symtab_duplication_hook (NULL),
m_allocator ("function summary" PASS_MEM_STAT)
{
enable_insertion_hook ();
m_symtab_removal_hook
= m_symtab->add_cgraph_removal_hook (m_symtab_removal, this);
enable_duplication_hook ();
}
/* Basic implementation of insert operation. */
virtual void insert (cgraph_node *, T *)
{
/* In most cases, it makes no sense to create summaries without
initializing them. */
gcc_unreachable ();
}
/* Basic implementation of removal operation. */
virtual void remove (cgraph_node *, T *) {}
/* Basic implementation of duplication operation. */
virtual void duplicate (cgraph_node *, cgraph_node *, T *, T *)
{
/* It makes no sense to not copy anything during duplication. */
gcc_unreachable ();
}
/* Enable insertion hook invocation. */
void enable_insertion_hook ()
{
if (m_symtab_insertion_hook == NULL)
m_symtab_insertion_hook
= m_symtab->add_cgraph_insertion_hook (m_symtab_insertion, this);
}
/* Enable insertion hook invocation. */
void disable_insertion_hook ()
{
if (m_symtab_insertion_hook != NULL)
{
m_symtab->remove_cgraph_insertion_hook (m_symtab_insertion_hook);
m_symtab_insertion_hook = NULL;
}
}
/* Enable duplication hook invocation. */
void enable_duplication_hook ()
{
if (m_symtab_duplication_hook == NULL)
m_symtab_duplication_hook
= m_symtab->add_cgraph_duplication_hook (m_symtab_duplication, this);
}
/* Enable duplication hook invocation. */
void disable_duplication_hook ()
{
if (m_symtab_duplication_hook != NULL)
{
m_symtab->remove_cgraph_duplication_hook (m_symtab_duplication_hook);
m_symtab_duplication_hook = NULL;
}
}
protected:
/* Allocates new data that are stored within map. */
T* allocate_new ()
{
/* Call gcc_internal_because we do not want to call finalizer for
a type T. We call dtor explicitly. */
return is_ggc () ? new (ggc_internal_alloc (sizeof (T))) T ()
: m_allocator.allocate () ;
}
/* Release an item that is stored within map. */
void release (T *item)
{
if (is_ggc ())
ggc_delete (item);
else
m_allocator.remove (item);
}
/* Unregister all call-graph hooks. */
void unregister_hooks ();
/* Symbol table the summary is registered to. */
symbol_table *m_symtab;
/* Insertion function defined by a summary. */
cgraph_node_hook m_symtab_insertion;
/* Removal function defined by a summary. */
cgraph_node_hook m_symtab_removal;
/* Duplication function defined by a summary. */
cgraph_2node_hook m_symtab_duplication;
/* Internal summary insertion hook pointer. */
cgraph_node_hook_list *m_symtab_insertion_hook;
/* Internal summary removal hook pointer. */
cgraph_node_hook_list *m_symtab_removal_hook;
/* Internal summary duplication hook pointer. */
cgraph_2node_hook_list *m_symtab_duplication_hook;
private:
/* Return true when the summary uses GGC memory for allocation. */
virtual bool is_ggc () = 0;
/* Object allocator for heap allocation. */
object_allocator<T> m_allocator;
};
template <typename T>
void
function_summary_base<T>::unregister_hooks ()
{
disable_insertion_hook ();
m_symtab->remove_cgraph_removal_hook (m_symtab_removal_hook);
disable_duplication_hook ();
}
/* We want to pass just pointer types as argument for function_summary
template class. */
template <class T>
class function_summary
{
private:
function_summary();
};
/* Function summary is a helper class that is used to associate a data structure
related to a callgraph node. Typical usage can be seen in IPA passes which
create a temporary pass-related structures. The summary class registers
hooks that are triggered when a new node is inserted, duplicated and deleted.
A user of a summary class can ovewrite virtual methods than are triggered by
the summary if such hook is triggered. Apart from a callgraph node, the user
is given a data structure tied to the node.
The function summary class can work both with a heap-allocated memory and
a memory gained by garbage collected memory. */
template <class T>
class GTY((user)) function_summary <T *>: public function_summary_base<T>
{
public:
/* Default construction takes SYMTAB as an argument. */
function_summary (symbol_table *symtab, bool ggc = false CXX_MEM_STAT_INFO);
/* Destructor. */
virtual ~function_summary ();
/* Traverses all summarys with a function F called with
ARG as argument. */
template<typename Arg, bool (*f)(const T &, Arg)>
void traverse (Arg a) const
{
m_map.template traverse <f> (a);
}
/* Getter for summary callgraph node pointer. If a summary for a node
does not exist it will be created. */
T* get_create (cgraph_node *node)
{
bool existed;
T **v = &m_map.get_or_insert (node->get_uid (), &existed);
if (!existed)
*v = this->allocate_new ();
return *v;
}
/* Getter for summary callgraph node pointer. */
T* get (cgraph_node *node) ATTRIBUTE_PURE
{
T **v = m_map.get (node->get_uid ());
return v == NULL ? NULL : *v;
}
/* Remove node from summary. */
using function_summary_base<T>::remove;
void remove (cgraph_node *node)
{
int uid = node->get_uid ();
T **v = m_map.get (uid);
if (v)
{
m_map.remove (uid);
this->release (*v);
}
}
/* Return true if a summary for the given NODE already exists. */
bool exists (cgraph_node *node)
{
return m_map.get (node->get_uid ()) != NULL;
}
/* Symbol insertion hook that is registered to symbol table. */
static void symtab_insertion (cgraph_node *node, void *data);
/* Symbol removal hook that is registered to symbol table. */
static void symtab_removal (cgraph_node *node, void *data);
/* Symbol duplication hook that is registered to symbol table. */
static void symtab_duplication (cgraph_node *node, cgraph_node *node2,
void *data);
protected:
/* Indication if we use ggc summary. */
bool m_ggc;
private:
/* Indication if we use ggc summary. */
virtual bool is_ggc ()
{
return m_ggc;
}
typedef int_hash <int, 0, -1> map_hash;
/* Main summary store, where summary ID is used as key. */
hash_map <map_hash, T *> m_map;
template <typename U> friend void gt_ggc_mx (function_summary <U *> * const &);
template <typename U> friend void gt_pch_nx (function_summary <U *> * const &);
template <typename U> friend void gt_pch_nx (function_summary <U *> * const &,
gt_pointer_operator, void *);
};
template <typename T>
function_summary<T *>::function_summary (symbol_table *symtab, bool ggc
MEM_STAT_DECL):
function_summary_base<T> (symtab, function_summary::symtab_insertion,
function_summary::symtab_removal,
function_summary::symtab_duplication
PASS_MEM_STAT),
m_ggc (ggc), m_map (13, ggc, true, GATHER_STATISTICS PASS_MEM_STAT) {}
template <typename T>
function_summary<T *>::~function_summary ()
{
this->unregister_hooks ();
/* Release all summaries. */
typedef typename hash_map <map_hash, T *>::iterator map_iterator;
for (map_iterator it = m_map.begin (); it != m_map.end (); ++it)
this->release ((*it).second);
}
template <typename T>
void
function_summary<T *>::symtab_insertion (cgraph_node *node, void *data)
{
gcc_checking_assert (node->get_uid ());
function_summary *summary = (function_summary <T *> *) (data);
summary->insert (node, summary->get_create (node));
}
template <typename T>
void
function_summary<T *>::symtab_removal (cgraph_node *node, void *data)
{
gcc_checking_assert (node->get_uid ());
function_summary *summary = (function_summary <T *> *) (data);
summary->remove (node);
}
template <typename T>
void
function_summary<T *>::symtab_duplication (cgraph_node *node,
cgraph_node *node2, void *data)
{
function_summary *summary = (function_summary <T *> *) (data);
T *v = summary->get (node);
if (v)
summary->duplicate (node, node2, v, summary->get_create (node2));
}
template <typename T>
void
gt_ggc_mx(function_summary<T *>* const &summary)
{
gcc_checking_assert (summary->m_ggc);
gt_ggc_mx (&summary->m_map);
}
template <typename T>
void
gt_pch_nx (function_summary<T *> *const &)
{
gcc_unreachable ();
}
template <typename T>
void
gt_pch_nx (function_summary<T *> *const &, gt_pointer_operator, void *)
{
gcc_unreachable ();
}
/* Help template from std c++11. */
template<typename T, typename U>
struct is_same
{
static const bool value = false;
};
template<typename T>
struct is_same<T,T> //specialization
{
static const bool value = true;
};
/* We want to pass just pointer types as argument for fast_function_summary
template class. */
template <class T, class V>
class fast_function_summary
{
private:
fast_function_summary ();
};
/* Function vector summary is a fast implementation of function_summary that
utilizes vector as primary storage of summaries. */
template <class T, class V>
class GTY((user)) fast_function_summary <T *, V>
: public function_summary_base<T>
{
public:
/* Default construction takes SYMTAB as an argument. */
fast_function_summary (symbol_table *symtab CXX_MEM_STAT_INFO);
/* Destructor. */
virtual ~fast_function_summary ();
/* Traverses all summarys with a function F called with
ARG as argument. */
template<typename Arg, bool (*f)(const T &, Arg)>
void traverse (Arg a) const
{
for (unsigned i = 0; i < m_vector->length (); i++)
if ((*m_vector[i]) != NULL)
f ((*m_vector)[i], a);
}
/* Getter for summary callgraph node pointer. If a summary for a node
does not exist it will be created. */
T* get_create (cgraph_node *node)
{
int id = node->get_summary_id ();
if (id == -1)
id = this->m_symtab->assign_summary_id (node);
if ((unsigned int)id >= m_vector->length ())
vec_safe_grow_cleared (m_vector,
this->m_symtab->cgraph_max_summary_id);
if ((*m_vector)[id] == NULL)
(*m_vector)[id] = this->allocate_new ();
return (*m_vector)[id];
}
/* Getter for summary callgraph node pointer. */
T* get (cgraph_node *node) ATTRIBUTE_PURE
{
return exists (node) ? (*m_vector)[node->get_summary_id ()] : NULL;
}
using function_summary_base<T>::remove;
void remove (cgraph_node *node)
{
if (exists (node))
{
int id = node->get_summary_id ();
this->release ((*m_vector)[id]);
(*m_vector)[id] = NULL;
}
}
/* Return true if a summary for the given NODE already exists. */
bool exists (cgraph_node *node)
{
int id = node->get_summary_id ();
return (id != -1
&& (unsigned int)id < m_vector->length ()
&& (*m_vector)[id] != NULL);
}
/* Symbol insertion hook that is registered to symbol table. */
static void symtab_insertion (cgraph_node *node, void *data);
/* Symbol removal hook that is registered to symbol table. */
static void symtab_removal (cgraph_node *node, void *data);
/* Symbol duplication hook that is registered to symbol table. */
static void symtab_duplication (cgraph_node *node, cgraph_node *node2,
void *data);
private:
virtual bool is_ggc ();
/* Summary is stored in the vector. */
vec <T *, V> *m_vector;
template <typename U> friend void gt_ggc_mx (fast_function_summary <U *, va_gc> * const &);
template <typename U> friend void gt_pch_nx (fast_function_summary <U *, va_gc> * const &);
template <typename U> friend void gt_pch_nx (fast_function_summary <U *, va_gc> * const &,
gt_pointer_operator, void *);
};
template <typename T, typename V>
fast_function_summary<T *, V>::fast_function_summary (symbol_table *symtab
MEM_STAT_DECL):
function_summary_base<T> (symtab,
fast_function_summary::symtab_insertion,
fast_function_summary::symtab_removal,
fast_function_summary::symtab_duplication
PASS_MEM_STAT), m_vector (NULL)
{
vec_alloc (m_vector, 13 PASS_MEM_STAT);
}
template <typename T, typename V>
fast_function_summary<T *, V>::~fast_function_summary ()
{
this->unregister_hooks ();
/* Release all summaries. */
for (unsigned i = 0; i < m_vector->length (); i++)
if ((*m_vector)[i] != NULL)
this->release ((*m_vector)[i]);
vec_free (m_vector);
}
template <typename T, typename V>
void
fast_function_summary<T *, V>::symtab_insertion (cgraph_node *node, void *data)
{
gcc_checking_assert (node->get_uid ());
fast_function_summary *summary = (fast_function_summary <T *, V> *) (data);
summary->insert (node, summary->get_create (node));
}
template <typename T, typename V>
void
fast_function_summary<T *, V>::symtab_removal (cgraph_node *node, void *data)
{
gcc_checking_assert (node->get_uid ());
fast_function_summary *summary = (fast_function_summary <T *, V> *) (data);
if (summary->exists (node))
summary->remove (node);
}
template <typename T, typename V>
void
fast_function_summary<T *, V>::symtab_duplication (cgraph_node *node,
cgraph_node *node2,
void *data)
{
fast_function_summary *summary = (fast_function_summary <T *, V> *) (data);
T *v = summary->get (node);
if (v)
{
T *duplicate = summary->get_create (node2);
summary->duplicate (node, node2, v, duplicate);
}
}
template <typename T, typename V>
inline bool
fast_function_summary<T *, V>::is_ggc ()
{
return is_same<V, va_gc>::value;
}
template <typename T>
void
gt_ggc_mx (fast_function_summary<T *, va_heap>* const &)
{
}
template <typename T>
void
gt_pch_nx (fast_function_summary<T *, va_heap>* const &)
{
}
template <typename T>
void
gt_pch_nx (fast_function_summary<T *, va_heap>* const&, gt_pointer_operator,
void *)
{
}
template <typename T>
void
gt_ggc_mx (fast_function_summary<T *, va_gc>* const &summary)
{
ggc_test_and_set_mark (summary->m_vector);
gt_ggc_mx (summary->m_vector);
}
template <typename T>
void
gt_pch_nx (fast_function_summary<T *, va_gc> *const &)
{
gcc_unreachable ();
}
template <typename T>
void
gt_pch_nx (fast_function_summary<T *, va_gc> *const &, gt_pointer_operator,
void *)
{
gcc_unreachable ();
}
/* Base class for call_summary and fast_call_summary classes. */
template <class T>
class call_summary_base
{
public:
/* Default construction takes SYMTAB as an argument. */
call_summary_base (symbol_table *symtab, cgraph_edge_hook symtab_removal,
cgraph_2edge_hook symtab_duplication CXX_MEM_STAT_INFO):
m_symtab (symtab), m_symtab_removal (symtab_removal),
m_symtab_duplication (symtab_duplication), m_symtab_duplication_hook (NULL),
m_initialize_when_cloning (false),
m_allocator ("call summary" PASS_MEM_STAT)
{
m_symtab_removal_hook
= m_symtab->add_edge_removal_hook (m_symtab_removal, this);
enable_duplication_hook ();
}
/* Basic implementation of removal operation. */
virtual void remove (cgraph_edge *, T *) {}
/* Basic implementation of duplication operation. */
virtual void duplicate (cgraph_edge *, cgraph_edge *, T *, T *)
{
gcc_unreachable ();
}
/* Enable duplication hook invocation. */
void enable_duplication_hook ()
{
if (m_symtab_duplication_hook == NULL)
m_symtab_duplication_hook
= m_symtab->add_edge_duplication_hook (m_symtab_duplication,
this);
}
/* Enable duplication hook invocation. */
void disable_duplication_hook ()
{
if (m_symtab_duplication_hook != NULL)
{
m_symtab->remove_edge_duplication_hook (m_symtab_duplication_hook);
m_symtab_duplication_hook = NULL;
}
}
protected:
/* Allocates new data that are stored within map. */
T* allocate_new ()
{
/* Call gcc_internal_because we do not want to call finalizer for
a type T. We call dtor explicitly. */
return is_ggc () ? new (ggc_internal_alloc (sizeof (T))) T ()
: m_allocator.allocate ();
}
/* Release an item that is stored within map. */
void release (T *item)
{
if (is_ggc ())
ggc_delete (item);
else
m_allocator.remove (item);
}
/* Unregister all call-graph hooks. */
void unregister_hooks ();
/* Symbol table the summary is registered to. */
symbol_table *m_symtab;
/* Removal function defined by a summary. */
cgraph_edge_hook m_symtab_removal;
/* Duplication function defined by a summary. */
cgraph_2edge_hook m_symtab_duplication;
/* Internal summary removal hook pointer. */
cgraph_edge_hook_list *m_symtab_removal_hook;
/* Internal summary duplication hook pointer. */
cgraph_2edge_hook_list *m_symtab_duplication_hook;
/* Initialize summary for an edge that is cloned. */
bool m_initialize_when_cloning;
private:
/* Return true when the summary uses GGC memory for allocation. */
virtual bool is_ggc () = 0;
/* Object allocator for heap allocation. */
object_allocator<T> m_allocator;
};
template <typename T>
void
call_summary_base<T>::unregister_hooks ()
{
m_symtab->remove_edge_removal_hook (m_symtab_removal_hook);
disable_duplication_hook ();
}
/* An impossible class templated by non-pointers so, which makes sure that only
summaries gathering pointers can be created. */
template <class T>
class call_summary
{
private:
call_summary ();
};
/* Class to store auxiliary information about call graph edges. */
template <class T>
class GTY((user)) call_summary <T *>: public call_summary_base<T>
{
public:
/* Default construction takes SYMTAB as an argument. */
call_summary (symbol_table *symtab, bool ggc = false
CXX_MEM_STAT_INFO)
: call_summary_base<T> (symtab, call_summary::symtab_removal,
call_summary::symtab_duplication PASS_MEM_STAT),
m_ggc (ggc), m_map (13, ggc, true, GATHER_STATISTICS PASS_MEM_STAT) {}
/* Destructor. */
virtual ~call_summary ();
/* Traverses all summarys with an edge E called with
ARG as argument. */
template<typename Arg, bool (*f)(const T &, Arg)>
void traverse (Arg a) const
{
m_map.template traverse <f> (a);
}
/* Getter for summary callgraph edge pointer.
If a summary for an edge does not exist, it will be created. */
T* get_create (cgraph_edge *edge)
{
bool existed;
T **v = &m_map.get_or_insert (edge->get_uid (), &existed);
if (!existed)
*v = this->allocate_new ();
return *v;
}
/* Getter for summary callgraph edge pointer. */
T* get (cgraph_edge *edge) ATTRIBUTE_PURE
{
T **v = m_map.get (edge->get_uid ());
return v == NULL ? NULL : *v;
}
/* Remove edge from summary. */
using call_summary_base<T>::remove;
void remove (cgraph_edge *edge)
{
int uid = edge->get_uid ();
T **v = m_map.get (uid);
if (v)
{
m_map.remove (uid);
this->release (*v);
}
}
/* Return true if a summary for the given EDGE already exists. */
bool exists (cgraph_edge *edge)
{
return m_map.get (edge->get_uid ()) != NULL;
}
/* Symbol removal hook that is registered to symbol table. */
static void symtab_removal (cgraph_edge *edge, void *data);
/* Symbol duplication hook that is registered to symbol table. */
static void symtab_duplication (cgraph_edge *edge1, cgraph_edge *edge2,
void *data);
protected:
/* Indication if we use ggc summary. */
bool m_ggc;
private:
/* Indication if we use ggc summary. */
virtual bool is_ggc ()
{
return m_ggc;
}
typedef int_hash <int, 0, -1> map_hash;
/* Main summary store, where summary ID is used as key. */
hash_map <map_hash, T *> m_map;
template <typename U> friend void gt_ggc_mx (call_summary <U *> * const &);
template <typename U> friend void gt_pch_nx (call_summary <U *> * const &);
template <typename U> friend void gt_pch_nx (call_summary <U *> * const &,
gt_pointer_operator, void *);
};
template <typename T>
call_summary<T *>::~call_summary ()
{
this->unregister_hooks ();
/* Release all summaries. */
typedef typename hash_map <map_hash, T *>::iterator map_iterator;
for (map_iterator it = m_map.begin (); it != m_map.end (); ++it)
this->release ((*it).second);
}
template <typename T>
void
call_summary<T *>::symtab_removal (cgraph_edge *edge, void *data)
{
call_summary *summary = (call_summary <T *> *) (data);
summary->remove (edge);
}
template <typename T>
void
call_summary<T *>::symtab_duplication (cgraph_edge *edge1,
cgraph_edge *edge2, void *data)
{
call_summary *summary = (call_summary <T *> *) (data);
T *edge1_summary = NULL;
if (summary->m_initialize_when_cloning)
edge1_summary = summary->get_create (edge1);
else
edge1_summary = summary->get (edge1);
if (edge1_summary)
summary->duplicate (edge1, edge2, edge1_summary,
summary->get_create (edge2));
}
template <typename T>
void
gt_ggc_mx(call_summary<T *>* const &summary)
{
gcc_checking_assert (summary->m_ggc);
gt_ggc_mx (&summary->m_map);
}
template <typename T>
void
gt_pch_nx (call_summary<T *> *const &)
{
gcc_unreachable ();
}
template <typename T>
void
gt_pch_nx (call_summary<T *> *const &, gt_pointer_operator, void *)
{
gcc_unreachable ();
}
/* We want to pass just pointer types as argument for fast_call_summary
template class. */
template <class T, class V>
class fast_call_summary
{
private:
fast_call_summary ();
};
/* Call vector summary is a fast implementation of call_summary that
utilizes vector as primary storage of summaries. */
template <class T, class V>
class GTY((user)) fast_call_summary <T *, V>: public call_summary_base<T>
{
public:
/* Default construction takes SYMTAB as an argument. */
fast_call_summary (symbol_table *symtab CXX_MEM_STAT_INFO)
: call_summary_base<T> (symtab, fast_call_summary::symtab_removal,
fast_call_summary::symtab_duplication PASS_MEM_STAT),
m_vector (NULL)
{
vec_alloc (m_vector, 13 PASS_MEM_STAT);
}
/* Destructor. */
virtual ~fast_call_summary ();
/* Traverses all summarys with an edge F called with
ARG as argument. */
template<typename Arg, bool (*f)(const T &, Arg)>
void traverse (Arg a) const
{
for (unsigned i = 0; i < m_vector->length (); i++)
if ((*m_vector[i]) != NULL)
f ((*m_vector)[i], a);
}
/* Getter for summary callgraph edge pointer.
If a summary for an edge does not exist, it will be created. */
T* get_create (cgraph_edge *edge)
{
int id = edge->get_summary_id ();
if (id == -1)
id = this->m_symtab->assign_summary_id (edge);
if ((unsigned)id >= m_vector->length ())
vec_safe_grow_cleared (m_vector, this->m_symtab->edges_max_summary_id);
if ((*m_vector)[id] == NULL)
(*m_vector)[id] = this->allocate_new ();
return (*m_vector)[id];
}
/* Getter for summary callgraph edge pointer. */
T* get (cgraph_edge *edge) ATTRIBUTE_PURE
{
return exists (edge) ? (*m_vector)[edge->get_summary_id ()] : NULL;
}
/* Remove edge from summary. */
using call_summary_base<T>::remove;
void remove (cgraph_edge *edge)
{
if (exists (edge))
{
int id = edge->get_summary_id ();
this->release ((*m_vector)[id]);
(*m_vector)[id] = NULL;
}
}
/* Return true if a summary for the given EDGE already exists. */
bool exists (cgraph_edge *edge)
{
int id = edge->get_summary_id ();
return (id != -1
&& (unsigned)id < m_vector->length ()
&& (*m_vector)[id] != NULL);
}
/* Symbol removal hook that is registered to symbol table. */
static void symtab_removal (cgraph_edge *edge, void *data);
/* Symbol duplication hook that is registered to symbol table. */
static void symtab_duplication (cgraph_edge *edge1, cgraph_edge *edge2,
void *data);
private:
virtual bool is_ggc ();
/* Summary is stored in the vector. */
vec <T *, V> *m_vector;
template <typename U> friend void gt_ggc_mx (fast_call_summary <U *, va_gc> * const &);
template <typename U> friend void gt_pch_nx (fast_call_summary <U *, va_gc> * const &);
template <typename U> friend void gt_pch_nx (fast_call_summary <U *, va_gc> * const &,
gt_pointer_operator, void *);
};
template <typename T, typename V>
fast_call_summary<T *, V>::~fast_call_summary ()
{
this->unregister_hooks ();
/* Release all summaries. */
for (unsigned i = 0; i < m_vector->length (); i++)
if ((*m_vector)[i] != NULL)
this->release ((*m_vector)[i]);
vec_free (m_vector);
}
template <typename T, typename V>
void
fast_call_summary<T *, V>::symtab_removal (cgraph_edge *edge, void *data)
{
fast_call_summary *summary = (fast_call_summary <T *, V> *) (data);
summary->remove (edge);
}
template <typename T, typename V>
void
fast_call_summary<T *, V>::symtab_duplication (cgraph_edge *edge1,
cgraph_edge *edge2, void *data)
{
fast_call_summary *summary = (fast_call_summary <T *, V> *) (data);
T *edge1_summary = NULL;
if (summary->m_initialize_when_cloning)
edge1_summary = summary->get_create (edge1);
else
edge1_summary = summary->get (edge1);
if (edge1_summary)
{
T *duplicate = summary->get_create (edge2);
summary->duplicate (edge1, edge2, edge1_summary, duplicate);
}
}
template <typename T, typename V>
inline bool
fast_call_summary<T *, V>::is_ggc ()
{
return is_same<V, va_gc>::value;
}
template <typename T>
void
gt_ggc_mx (fast_call_summary<T *, va_heap>* const &summary ATTRIBUTE_UNUSED)
{
}
template <typename T>
void
gt_pch_nx (fast_call_summary<T *, va_heap>* const &summary ATTRIBUTE_UNUSED)
{
}
template <typename T>
void
gt_pch_nx (fast_call_summary<T *, va_heap>* const& summary ATTRIBUTE_UNUSED,
gt_pointer_operator op ATTRIBUTE_UNUSED,
void *cookie ATTRIBUTE_UNUSED)
{
}
template <typename T>
void
gt_ggc_mx (fast_call_summary<T *, va_gc>* const &summary)
{
ggc_test_and_set_mark (summary->m_vector);
gt_ggc_mx (&summary->m_vector);
}
template <typename T>
void
gt_pch_nx (fast_call_summary<T *, va_gc> *const &)
{
gcc_unreachable ();
}
template <typename T>
void
gt_pch_nx (fast_call_summary<T *, va_gc> *const &, gt_pointer_operator, void *)
{
gcc_unreachable ();
}
#endif /* GCC_SYMBOL_SUMMARY_H */
|