-- Per Yoshinori-San - Most of the extra time spent in 8.0.23 was from rename_fields_use_old_replica_source_terms() -- https://github.com/mysql/mysql-server/blob/8.0/sql/rpl_utility.cc#L1260-L1285 -- Imho this was intrododuced after WL#14171 -- https://github.com/mysql/mysql-server/commit/e468c3634ba240cc00e83f6e4b1d7a8b31e2c292 -- Setup simple M/S replication with default settings rm -rf master/ bin/mysqld --initialize-insecure --basedir=$PWD --datadir=$PWD/master --log-error-verbosity=3 bin/mysqld --no-defaults --basedir=$PWD --datadir=$PWD/master --core-file --socket=/tmp/mysql_master.sock --port=3306 --log-error=$PWD/master/log.err --log-bin=master-bin --server_id=1 --mysqlx-port=33330 --mysqlx-socket=/tmp/mysql_x_master.sock 2>&1 & rm -rf slave/ bin/mysqld --initialize-insecure --basedir=$PWD --datadir=$PWD/slave --log-error-verbosity=3 bin/mysqld --no-defaults --basedir=$PWD --datadir=$PWD/slave --core-file --socket=/tmp/mysql_slave.sock --port=3307 --log-error=$PWD/slave/log.err --log-bin=slave-bin --server_id=2 --mysqlx-port=33360 --mysqlx-socket=/tmp/mysql_x_slave.sock 2>&1 & -- master bin/mysql -uroot -S /tmp/mysql_master.sock --prompt='Master>' Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 8.0.27 MySQL Community Server - GPL Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. Master> Master>CREATE USER 'repl'@'localhost' IDENTIFIED BY 'slavepass'; Query OK, 0 rows affected (0.01 sec) Master>GRANT REPLICATION SLAVE ON *.* TO 'repl'@'localhost'; Query OK, 0 rows affected (0.00 sec) Master> Master>CREATE USER 'repl'@'127.0.0.1' IDENTIFIED BY 'slavepass'; Query OK, 0 rows affected (0.01 sec) Master>GRANT REPLICATION SLAVE ON *.* TO 'repl'@'127.0.0.1'; Query OK, 0 rows affected (0.00 sec) Master>FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) Master>show master status; +-------------------+----------+--------------+------------------+-------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set | +-------------------+----------+--------------+------------------+-------------------+ | master-bin.000001 | 1421 | | | | +-------------------+----------+--------------+------------------+-------------------+ 1 row in set (0.00 sec) Master>create database mysqlslap; Query OK, 1 row affected (0.01 sec) -- slave bin/mysql -uroot -S /tmp/mysql_slave.sock --prompt='Slave>' Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 8.0.27 MySQL Community Server - GPL Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. Slave>CHANGE MASTER TO -> MASTER_HOST='localhost', -> MASTER_PORT=3306, -> MASTER_USER='repl', -> MASTER_PASSWORD='slavepass', -> MASTER_LOG_FILE='master-bin.000001', -> MASTER_LOG_POS=1421, -> GET_MASTER_PUBLIC_KEY=1; Query OK, 0 rows affected, 10 warnings (0.03 sec) Slave>start slave; Query OK, 0 rows affected, 1 warning (0.01 sec) Slave>show slave status\G *************************** 1. row *************************** Slave_IO_State: Waiting for source to send event Master_Host: localhost Master_User: repl Master_Port: 3306 Connect_Retry: 60 Master_Log_File: master-bin.000001 Read_Master_Log_Pos: 1421 Relay_Log_File: support-cluster03-relay-bin.000002 Relay_Log_Pos: 325 Relay_Master_Log_File: master-bin.000001 Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 1421 Relay_Log_Space: 546 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 0 Master_SSL_Verify_Server_Cert: No Last_IO_Errno: 0 Last_IO_Error: Last_SQL_Errno: 0 Last_SQL_Error: Replicate_Ignore_Server_Ids: Master_Server_Id: 1 Master_UUID: 324b8651-5f28-11ec-97ed-000017016152 Master_Info_File: mysql.slave_master_info SQL_Delay: 0 SQL_Remaining_Delay: NULL Slave_SQL_Running_State: Replica has read all relay log; waiting for more updates Master_Retry_Count: 86400 Master_Bind: Last_IO_Error_Timestamp: Last_SQL_Error_Timestamp: Master_SSL_Crl: Master_SSL_Crlpath: Retrieved_Gtid_Set: Executed_Gtid_Set: Auto_Position: 0 Replicate_Rewrite_DB: Channel_Name: Master_TLS_Version: Master_public_key_path: Get_master_public_key: 1 Network_Namespace: 1 row in set, 1 warning (0.00 sec) ######## Per data captured top -pid 28575 perf top -p 28575 pidstat -t -p 28575 1 # 8.0.27 - before show slave status 11:59:56 AM UID TGID TID %usr %system %guest %CPU CPU Command 12:00:01 PM 10919 751 - 0.20 0.20 0.00 0.40 10 mysqld 12:00:01 PM 10919 - 751 0.00 0.00 0.00 0.00 10 |__mysqld 12:00:01 PM 10919 - 754 0.00 0.00 0.00 0.00 12 |__ib_io_ibuf 12:00:01 PM 10919 - 755 0.00 0.00 0.00 0.00 0 |__ib_io_log 12:00:01 PM 10919 - 756 0.00 0.00 0.00 0.00 15 |__ib_io_rd-1 12:00:01 PM 10919 - 757 0.00 0.00 0.00 0.00 1 |__ib_io_rd-2 12:00:01 PM 10919 - 758 0.00 0.00 0.00 0.00 0 |__ib_io_rd-3 12:00:01 PM 10919 - 759 0.00 0.00 0.00 0.00 8 |__ib_io_rd-4 12:00:01 PM 10919 - 760 0.00 0.00 0.00 0.00 12 |__ib_io_wr-1 12:00:01 PM 10919 - 761 0.00 0.00 0.00 0.00 14 |__ib_io_wr-2 12:00:01 PM 10919 - 762 0.00 0.00 0.00 0.00 12 |__ib_io_wr-3 12:00:01 PM 10919 - 763 0.00 0.00 0.00 0.00 2 |__ib_io_wr-4 12:00:01 PM 10919 - 764 0.00 0.00 0.00 0.00 12 |__ib_pg_flush_co 12:00:01 PM 10919 - 765 0.00 0.00 0.00 0.00 0 |__ib_log_checkpt 12:00:01 PM 10919 - 766 0.00 0.00 0.00 0.00 7 |__ib_log_fl_notif 12:00:01 PM 10919 - 767 0.00 0.00 0.00 0.00 14 |__ib_log_flush 12:00:01 PM 10919 - 768 0.00 0.00 0.00 0.00 8 |__ib_log_wr_notif 12:00:01 PM 10919 - 769 0.00 0.00 0.00 0.00 10 |__ib_log_writer 12:00:01 PM 10919 - 774 0.00 0.00 0.00 0.00 2 |__ib_srv_lock_to 12:00:01 PM 10919 - 775 0.00 0.00 0.00 0.00 7 |__ib_srv_err_mon 12:00:01 PM 10919 - 776 0.00 0.00 0.00 0.00 5 |__ib_srv_mon 12:00:01 PM 10919 - 777 0.00 0.00 0.00 0.00 2 |__ib_buf_resize 12:00:01 PM 10919 - 778 0.00 0.00 0.00 0.00 2 |__ib_src_main 12:00:01 PM 10919 - 779 0.00 0.00 0.00 0.00 11 |__ib_dict_stats 12:00:01 PM 10919 - 780 0.00 0.00 0.00 0.00 0 |__ib_fts_opt 12:00:01 PM 10919 - 781 0.00 0.00 0.00 0.00 6 |__xpl_worker-1 12:00:01 PM 10919 - 782 0.00 0.00 0.00 0.00 1 |__xpl_worker-2 12:00:01 PM 10919 - 783 0.00 0.00 0.00 0.00 5 |__xpl_accept-1 12:00:01 PM 10919 - 787 0.00 0.00 0.00 0.00 0 |__ib_buf_dump 12:00:01 PM 10919 - 788 0.20 0.00 0.00 0.20 4 |__ib_clone_gtid 12:00:01 PM 10919 - 789 0.00 0.00 0.00 0.00 0 |__ib_srv_purge 12:00:01 PM 10919 - 790 0.00 0.00 0.00 0.00 5 |__ib_srv_wkr-1 12:00:01 PM 10919 - 791 0.00 0.00 0.00 0.00 1 |__ib_srv_wkr-2 12:00:01 PM 10919 - 792 0.00 0.00 0.00 0.00 2 |__ib_srv_wkr-3 12:00:01 PM 10919 - 793 0.00 0.00 0.00 0.00 4 |__evt_sched 12:00:01 PM 10919 - 794 0.00 0.00 0.00 0.00 9 |__sig_handler 12:00:01 PM 10919 - 795 0.00 0.00 0.00 0.00 2 |__xpl_accept-2 12:00:01 PM 10919 - 797 0.00 0.00 0.00 0.00 5 |__gtid_zip 12:00:01 PM 10919 - 800 0.00 0.00 0.00 0.00 7 |__connection 12:00:01 PM 10919 - 810 0.00 0.00 0.00 0.00 10 |__rpl_rca_io-0 12:00:01 PM 10919 - 811 0.00 0.00 0.00 0.00 4 |__rpl_rca_sql-0 12:00:01 PM 10919 - 813 0.00 0.00 0.00 0.00 5 |__rpl_rca_wkr-0 12:00:01 PM 10919 - 814 0.00 0.00 0.00 0.00 7 |__rpl_rca_wkr-0 12:00:01 PM 10919 - 815 0.00 0.00 0.00 0.00 15 |__rpl_rca_wkr-0 12:00:01 PM 10919 - 816 0.00 0.00 0.00 0.00 1 |__rpl_rca_wkr-0 -- After show slave status through mysqlslap 12:02:36 PM UID TGID TID %usr %system %guest %CPU CPU Command 12:02:41 PM 10919 751 - 100.00 12.20 0.00 100.00 10 mysqld 12:02:41 PM 10919 - 751 0.20 1.80 0.00 2.00 10 |__mysqld 12:02:41 PM 10919 - 754 0.00 0.00 0.00 0.00 8 |__ib_io_ibuf 12:02:41 PM 10919 - 755 0.00 0.00 0.00 0.00 4 |__ib_io_log 12:02:41 PM 10919 - 756 0.00 0.00 0.00 0.00 14 |__ib_io_rd-1 12:02:41 PM 10919 - 757 0.00 0.00 0.00 0.00 1 |__ib_io_rd-2 12:02:41 PM 10919 - 758 0.00 0.00 0.00 0.00 3 |__ib_io_rd-3 12:02:41 PM 10919 - 759 0.00 0.00 0.00 0.00 13 |__ib_io_rd-4 12:02:41 PM 10919 - 760 0.00 0.00 0.00 0.00 15 |__ib_io_wr-1 12:02:41 PM 10919 - 761 0.00 0.00 0.00 0.00 15 |__ib_io_wr-2 12:02:41 PM 10919 - 762 0.00 0.00 0.00 0.00 15 |__ib_io_wr-3 12:02:41 PM 10919 - 763 0.00 0.00 0.00 0.00 4 |__ib_io_wr-4 12:02:41 PM 10919 - 764 0.00 0.00 0.00 0.00 11 |__ib_pg_flush_co 12:02:41 PM 10919 - 765 0.00 0.00 0.00 0.00 2 |__ib_log_checkpt 12:02:41 PM 10919 - 766 0.00 0.00 0.00 0.00 5 |__ib_log_fl_notif 12:02:41 PM 10919 - 767 0.00 0.00 0.00 0.00 2 |__ib_log_flush 12:02:41 PM 10919 - 768 0.00 0.00 0.00 0.00 2 |__ib_log_wr_notif 12:02:41 PM 10919 - 769 0.00 0.00 0.00 0.00 10 |__ib_log_writer 12:02:41 PM 10919 - 774 0.00 0.00 0.00 0.00 6 |__ib_srv_lock_to 12:02:41 PM 10919 - 775 0.00 0.00 0.00 0.00 2 |__ib_srv_err_mon 12:02:41 PM 10919 - 776 0.00 0.00 0.00 0.00 5 |__ib_srv_mon 12:02:41 PM 10919 - 777 0.00 0.00 0.00 0.00 2 |__ib_buf_resize 12:02:41 PM 10919 - 778 0.00 0.00 0.00 0.00 4 |__ib_src_main 12:02:41 PM 10919 - 779 0.00 0.00 0.00 0.00 14 |__ib_dict_stats 12:02:41 PM 10919 - 780 0.00 0.00 0.00 0.00 1 |__ib_fts_opt 12:02:41 PM 10919 - 781 0.00 0.00 0.00 0.00 6 |__xpl_worker-1 12:02:41 PM 10919 - 782 0.00 0.00 0.00 0.00 1 |__xpl_worker-2 12:02:41 PM 10919 - 783 0.00 0.00 0.00 0.00 5 |__xpl_accept-1 12:02:41 PM 10919 - 787 0.00 0.00 0.00 0.00 0 |__ib_buf_dump 12:02:41 PM 10919 - 788 0.00 0.00 0.00 0.00 0 |__ib_clone_gtid 12:02:41 PM 10919 - 789 0.00 0.00 0.00 0.00 2 |__ib_srv_purge 12:02:41 PM 10919 - 790 0.00 0.00 0.00 0.00 5 |__ib_srv_wkr-1 12:02:41 PM 10919 - 791 0.00 0.00 0.00 0.00 1 |__ib_srv_wkr-2 12:02:41 PM 10919 - 792 0.00 0.00 0.00 0.00 6 |__ib_srv_wkr-3 12:02:41 PM 10919 - 793 0.00 0.00 0.00 0.00 4 |__evt_sched 12:02:41 PM 10919 - 794 0.00 0.00 0.00 0.00 9 |__sig_handler 12:02:41 PM 10919 - 795 0.00 0.00 0.00 0.00 7 |__xpl_accept-2 12:02:41 PM 10919 - 797 0.00 0.00 0.00 0.00 5 |__gtid_zip 12:02:41 PM 10919 - 800 0.00 0.00 0.00 0.00 7 |__connection 12:02:41 PM 10919 - 810 0.00 0.00 0.00 0.00 10 |__rpl_rca_io-0 12:02:41 PM 10919 - 811 0.00 0.00 0.00 0.00 5 |__rpl_rca_sql-0 12:02:41 PM 10919 - 813 0.00 0.00 0.00 0.00 5 |__rpl_rca_wkr-0 12:02:41 PM 10919 - 814 0.00 0.00 0.00 0.00 7 |__rpl_rca_wkr-0 12:02:41 PM 10919 - 815 0.00 0.00 0.00 0.00 15 |__rpl_rca_wkr-0 12:02:41 PM 10919 - 816 0.00 0.00 0.00 0.00 1 |__rpl_rca_wkr-0 12:02:41 PM 10919 - 833 0.00 0.00 0.00 0.00 7 |__connection 12:02:41 PM 10919 - 13318 5.60 0.00 0.00 5.60 6 |__connection 12:02:41 PM 10919 - 13428 4.00 0.00 0.00 4.00 9 |__connection 12:02:41 PM 10919 - 13461 3.40 0.00 0.00 3.40 8 |__connection 12:02:41 PM 10919 - 13497 3.00 0.00 0.00 3.00 15 |__connection 12:02:41 PM 10919 - 13552 2.20 0.00 0.00 2.20 3 |__connection 12:02:41 PM 10919 - 13607 1.40 0.00 0.00 1.40 11 |__connection 12:02:41 PM 10919 - 13640 1.00 0.00 0.00 1.00 7 |__connection 12:02:41 PM 10919 - 13662 0.80 0.00 0.00 0.80 5 |__connection 12:02:41 PM 10919 - 13706 0.20 0.00 0.00 0.20 14 |__connection 12:02:41 PM 10919 - 13717 0.00 0.00 0.00 0.00 1 |__connection - 12:03:36 PM UID TGID TID %usr %system %guest %CPU CPU Command 12:03:41 PM 10919 751 - 100.00 10.40 0.00 100.00 10 mysqld 12:03:41 PM 10919 - 751 0.20 1.60 0.00 1.80 10 |__mysqld 12:03:41 PM 10919 - 754 0.00 0.00 0.00 0.00 8 |__ib_io_ibuf 12:03:41 PM 10919 - 755 0.00 0.00 0.00 0.00 1 |__ib_io_log 12:03:41 PM 10919 - 756 0.00 0.00 0.00 0.00 12 |__ib_io_rd-1 12:03:41 PM 10919 - 757 0.00 0.00 0.00 0.00 2 |__ib_io_rd-2 12:03:41 PM 10919 - 758 0.00 0.00 0.00 0.00 2 |__ib_io_rd-3 12:03:41 PM 10919 - 759 0.00 0.00 0.00 0.00 13 |__ib_io_rd-4 12:03:41 PM 10919 - 760 0.00 0.00 0.00 0.00 8 |__ib_io_wr-1 12:03:41 PM 10919 - 761 0.00 0.00 0.00 0.00 10 |__ib_io_wr-2 12:03:41 PM 10919 - 762 0.00 0.00 0.00 0.00 8 |__ib_io_wr-3 12:03:41 PM 10919 - 763 0.00 0.00 0.00 0.00 2 |__ib_io_wr-4 12:03:41 PM 10919 - 764 0.00 0.00 0.00 0.00 8 |__ib_pg_flush_co 12:03:41 PM 10919 - 765 0.00 0.00 0.00 0.00 6 |__ib_log_checkpt 12:03:41 PM 10919 - 766 0.00 0.00 0.00 0.00 2 |__ib_log_fl_notif 12:03:41 PM 10919 - 767 0.00 0.00 0.00 0.00 2 |__ib_log_flush 12:03:41 PM 10919 - 768 0.00 0.00 0.00 0.00 5 |__ib_log_wr_notif 12:03:41 PM 10919 - 769 0.00 0.00 0.00 0.00 15 |__ib_log_writer 12:03:41 PM 10919 - 774 0.00 0.00 0.00 0.00 2 |__ib_srv_lock_to 12:03:41 PM 10919 - 775 0.00 0.00 0.00 0.00 6 |__ib_srv_err_mon 12:03:41 PM 10919 - 776 0.00 0.00 0.00 0.00 7 |__ib_srv_mon 12:03:41 PM 10919 - 777 0.00 0.00 0.00 0.00 2 |__ib_buf_resize 12:03:41 PM 10919 - 778 0.00 0.00 0.00 0.00 1 |__ib_src_main 12:03:41 PM 10919 - 779 0.00 0.00 0.00 0.00 11 |__ib_dict_stats 12:03:41 PM 10919 - 780 0.00 0.00 0.00 0.00 0 |__ib_fts_opt 12:03:41 PM 10919 - 781 0.00 0.00 0.00 0.00 1 |__xpl_worker-1 12:03:41 PM 10919 - 782 0.00 0.00 0.00 0.00 1 |__xpl_worker-2 12:03:41 PM 10919 - 783 0.00 0.00 0.00 0.00 5 |__xpl_accept-1 12:03:41 PM 10919 - 787 0.00 0.00 0.00 0.00 0 |__ib_buf_dump 12:03:41 PM 10919 - 788 0.00 0.00 0.00 0.00 6 |__ib_clone_gtid 12:03:41 PM 10919 - 789 0.00 0.00 0.00 0.00 2 |__ib_srv_purge 12:03:41 PM 10919 - 790 0.00 0.00 0.00 0.00 5 |__ib_srv_wkr-1 12:03:41 PM 10919 - 791 0.00 0.00 0.00 0.00 1 |__ib_srv_wkr-2 12:03:41 PM 10919 - 792 0.00 0.00 0.00 0.00 6 |__ib_srv_wkr-3 12:03:41 PM 10919 - 793 0.00 0.00 0.00 0.00 4 |__evt_sched 12:03:41 PM 10919 - 794 0.00 0.00 0.00 0.00 9 |__sig_handler 12:03:41 PM 10919 - 795 0.00 0.00 0.00 0.00 2 |__xpl_accept-2 12:03:41 PM 10919 - 797 0.00 0.00 0.00 0.00 5 |__gtid_zip 12:03:41 PM 10919 - 800 0.00 0.00 0.00 0.00 7 |__connection 12:03:41 PM 10919 - 810 0.00 0.00 0.00 0.00 14 |__rpl_rca_io-0 12:03:41 PM 10919 - 811 0.00 0.00 0.00 0.00 2 |__rpl_rca_sql-0 12:03:41 PM 10919 - 813 0.00 0.00 0.00 0.00 5 |__rpl_rca_wkr-0 12:03:41 PM 10919 - 814 0.00 0.00 0.00 0.00 7 |__rpl_rca_wkr-0 12:03:41 PM 10919 - 815 0.00 0.00 0.00 0.00 15 |__rpl_rca_wkr-0 12:03:41 PM 10919 - 816 0.00 0.00 0.00 0.00 1 |__rpl_rca_wkr-0 12:03:41 PM 10919 - 417 0.00 0.00 0.00 0.00 6 |__connection 12:03:41 PM 10919 - 11489 5.60 0.00 0.00 5.60 11 |__connection 12:03:41 PM 10919 - 11599 4.40 0.00 0.00 4.40 14 |__connection 12:03:41 PM 10919 - 11710 2.60 0.00 0.00 2.60 3 |__connection 12:03:41 PM 10919 - 11743 2.20 0.00 0.00 2.20 15 |__connection 12:03:41 PM 10919 - 11787 1.60 0.00 0.00 1.60 9 |__connection 12:03:41 PM 10919 - 11809 1.40 0.00 0.00 1.40 0 |__connection 12:03:41 PM 10919 - 11853 0.60 0.00 0.00 0.60 12 |__connection 12:03:41 PM 10919 - 11875 0.40 0.00 0.00 0.40 13 |__connection 12:03:41 PM 10919 - 11886 0.20 0.00 0.00 0.20 6 |__connection 12:03:41 PM 10919 - 11908 0.00 0.00 0.00 0.00 7 |__connection . . 12:16:46 PM UID TGID TID %usr %system %guest %CPU CPU Command 12:16:51 PM 10919 751 - 100.00 13.00 0.00 100.00 6 mysqld 12:16:51 PM 10919 - 751 0.40 1.80 0.00 2.20 6 |__mysqld 12:16:51 PM 10919 - 754 0.00 0.00 0.00 0.00 11 |__ib_io_ibuf 12:16:51 PM 10919 - 755 0.00 0.00 0.00 0.00 6 |__ib_io_log 12:16:51 PM 10919 - 756 0.00 0.00 0.00 0.00 8 |__ib_io_rd-1 12:16:51 PM 10919 - 757 0.00 0.00 0.00 0.00 6 |__ib_io_rd-2 12:16:51 PM 10919 - 758 0.00 0.00 0.00 0.00 6 |__ib_io_rd-3 12:16:51 PM 10919 - 759 0.00 0.00 0.00 0.00 11 |__ib_io_rd-4 12:16:51 PM 10919 - 760 0.00 0.00 0.00 0.00 6 |__ib_io_wr-1 12:16:51 PM 10919 - 761 0.00 0.00 0.00 0.00 14 |__ib_io_wr-2 12:16:51 PM 10919 - 762 0.00 0.00 0.00 0.00 12 |__ib_io_wr-3 12:16:51 PM 10919 - 763 0.00 0.00 0.00 0.00 11 |__ib_io_wr-4 12:16:51 PM 10919 - 764 0.00 0.00 0.00 0.00 2 |__ib_pg_flush_co 12:16:51 PM 10919 - 765 0.00 0.00 0.00 0.00 1 |__ib_log_checkpt 12:16:51 PM 10919 - 766 0.00 0.00 0.00 0.00 4 |__ib_log_fl_notif 12:16:51 PM 10919 - 767 0.00 0.00 0.00 0.00 3 |__ib_log_flush 12:16:51 PM 10919 - 768 0.00 0.00 0.00 0.00 5 |__ib_log_wr_notif 12:16:51 PM 10919 - 769 0.00 0.00 0.00 0.00 7 |__ib_log_writer 12:16:51 PM 10919 - 774 0.00 0.00 0.00 0.00 7 |__ib_srv_lock_to 12:16:51 PM 10919 - 775 0.00 0.00 0.00 0.00 1 |__ib_srv_err_mon 12:16:51 PM 10919 - 776 0.00 0.00 0.00 0.00 0 |__ib_srv_mon 12:16:51 PM 10919 - 777 0.00 0.00 0.00 0.00 2 |__ib_buf_resize 12:16:51 PM 10919 - 778 0.00 0.00 0.00 0.00 1 |__ib_src_main 12:16:51 PM 10919 - 779 0.00 0.00 0.00 0.00 14 |__ib_dict_stats 12:16:51 PM 10919 - 780 0.00 0.00 0.00 0.00 7 |__ib_fts_opt 12:16:51 PM 10919 - 781 0.00 0.00 0.00 0.00 7 |__xpl_worker-1 12:16:51 PM 10919 - 782 0.00 0.00 0.00 0.00 2 |__xpl_worker-2 12:16:51 PM 10919 - 783 0.00 0.00 0.00 0.00 5 |__xpl_accept-1 12:16:51 PM 10919 - 787 0.00 0.00 0.00 0.00 0 |__ib_buf_dump 12:16:51 PM 10919 - 788 0.00 0.00 0.00 0.00 11 |__ib_clone_gtid 12:16:51 PM 10919 - 789 0.00 0.00 0.00 0.00 2 |__ib_srv_purge 12:16:51 PM 10919 - 790 0.00 0.00 0.00 0.00 5 |__ib_srv_wkr-1 12:16:51 PM 10919 - 791 0.00 0.00 0.00 0.00 1 |__ib_srv_wkr-2 12:16:51 PM 10919 - 792 0.00 0.00 0.00 0.00 6 |__ib_srv_wkr-3 12:16:51 PM 10919 - 793 0.00 0.00 0.00 0.00 4 |__evt_sched 12:16:51 PM 10919 - 794 0.00 0.00 0.00 0.00 9 |__sig_handler 12:16:51 PM 10919 - 795 0.00 0.00 0.00 0.00 4 |__xpl_accept-2 12:16:51 PM 10919 - 797 0.00 0.00 0.00 0.00 5 |__gtid_zip 12:16:51 PM 10919 - 800 0.00 0.00 0.00 0.00 7 |__connection 12:16:51 PM 10919 - 810 0.00 0.00 0.00 0.00 9 |__rpl_rca_io-0 12:16:51 PM 10919 - 811 0.00 0.00 0.00 0.00 2 |__rpl_rca_sql-0 12:16:51 PM 10919 - 813 0.00 0.00 0.00 0.00 5 |__rpl_rca_wkr-0 12:16:51 PM 10919 - 814 0.00 0.00 0.00 0.00 7 |__rpl_rca_wkr-0 12:16:51 PM 10919 - 815 0.00 0.00 0.00 0.00 15 |__rpl_rca_wkr-0 12:16:51 PM 10919 - 816 0.00 0.00 0.00 0.00 1 |__rpl_rca_wkr-0 12:16:51 PM 10919 - 13522 0.00 0.00 0.00 0.00 3 |__connection 12:16:51 PM 10919 - 4871 10.60 0.00 0.00 10.60 11 |__connection 12:16:51 PM 10919 - 5409 4.40 0.00 0.00 4.40 4 |__connection 12:16:51 PM 10919 - 5475 3.60 0.00 0.00 3.60 13 |__connection 12:16:51 PM 10919 - 5519 2.80 0.00 0.00 2.80 8 |__connection 12:16:51 PM 10919 - 5541 2.60 0.00 0.00 2.60 2 |__connection 12:16:51 PM 10919 - 5585 1.80 0.00 0.00 1.80 0 |__connection 12:16:51 PM 10919 - 5662 0.80 0.00 0.00 0.80 9 |__connection 12:16:51 PM 10919 - 5673 0.60 0.00 0.00 0.60 15 |__connection 12:16:51 PM 10919 - 5706 0.20 0.00 0.00 0.20 7 |__connection 12:16:51 PM 10919 - 5717 0.00 0.00 0.00 0.00 12 |__connection -- capture while running bin/mysqlslap -uroot -S /tmp/mysql_slave.sock -e --delimiter=";" --query="SHOW SLAVE STATUS" --concurrency=10 --iterations=2000 nice -n 19 perf record -g -F 10 -o mysql-751.g.perf -p 751 -- sleep 5 nice -n 19 perf record -F 10 -o mysql-751.perf -p 751 -- sleep 20 ####### nice -n 19 perf report --input mysql-751.perf --stdio |c++filt ####### nice -n 19 perf report -i mysql-751.g.perf |c++filt nice -n 19 perf report -i mysql-751.g.perf |c++filt # To display the perf.data header info, please use --header/--header-only options. # # # Total Lost Samples: 0 # # Samples: 375 of event 'cycles' # Event count (approx.): 1842176646 # # Children Self Command Shared Object Symbol # ........ ........ ............... ................... ....................................................................................................................................................................................................................................................... # 90.26% 0.00% connection libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection | --90.26%--do_command(THD*) | --90.22%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) | |--88.85%--mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --1.37%--parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 90.26% 0.00% connection mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection | --90.26%--do_command(THD*) | --90.22%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) | |--88.85%--mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --1.37%--parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 90.26% 0.00% connection mysqld [.] handle_connection | ---handle_connection | --90.26%--do_command(THD*) | --90.22%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) | |--88.85%--mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --1.37%--parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 90.26% 0.00% connection mysqld [.] do_command(THD*) | ---do_command(THD*) | --90.22%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) | |--88.85%--mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --1.37%--parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 90.22% 0.00% connection mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) | ---dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) | |--88.85%--mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --1.37%--parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 90.22% 0.00% connection mysqld [.] dispatch_sql_command(THD*, Parser_state*) | ---dispatch_sql_command(THD*, Parser_state*) | |--88.85%--mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --1.37%--parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 88.85% 0.00% connection mysqld [.] mysql_execute_command(THD*, bool) | ---mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | __dynamic_cast | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--2.76%--__dynamic_cast | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | |--3.66%--__dynamic_cast | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const std::locale::~locale() 88.85% 0.00% connection mysqld [.] show_slave_status_cmd(THD*) | ---show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | __dynamic_cast | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--2.76%--__dynamic_cast | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | |--3.66%--__dynamic_cast | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const std::locale::~locale() 88.85% 0.00% connection mysqld [.] show_slave_status(THD*) | ---show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | __dynamic_cast | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--2.76%--__dynamic_cast | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | |--3.66%--__dynamic_cast | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const std::locale::~locale() 88.85% 0.00% connection mysqld [.] rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | ---rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | __dynamic_cast | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--2.76%--__dynamic_cast | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | |--3.66%--__dynamic_cast | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const std::locale::~locale() 88.85% 3.06% connection mysqld [.] std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | |--85.79%--std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | | | |--83.80%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | | | | | --81.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | |--2.76%--__dynamic_cast | | | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--3.66%--__dynamic_cast | | | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --1.99%--std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | std::locale::~locale() | --3.06%--start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) 83.80% 1.88% connection mysqld [.] bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | |--81.92%--bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --80.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--76.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | __dynamic_cast | | | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | |--2.76%--__dynamic_cast | | | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | | | |--3.66%--__dynamic_cast | | | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --3.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --1.88%--start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) 81.92% 29.28% connection mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | |--52.64%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --52.28%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--45.17%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --45.06%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--39.59%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--35.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--32.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--31.82%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--27.74%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--24.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--24.37%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--22.60%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--21.51%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--19.74%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--17.62%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.74%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --15.42%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --15.32%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--13.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--12.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--3.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | __dynamic_cast | | | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --3.93%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | | | |--2.76%--__dynamic_cast | | | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | | | |--3.66%--__dynamic_cast | | | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | | | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | --29.28%--start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --28.14%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | |--24.28%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --23.02%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --22.95%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--22.07%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --21.52%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --17.36%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --17.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --14.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --13.68%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --12.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--6.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --6.03%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --3.79%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --3.67%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --1.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --0.88%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | --2.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 76.56% 0.00% connection mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | ---std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | |--69.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --68.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--62.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--57.73%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --57.18%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --53.01%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--49.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --46.57%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --46.25%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--44.00%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--39.92%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--33.87%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--31.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--30.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | |--28.63%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | --26.39%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | |--25.31%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | |--23.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | |--21.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | |--19.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --19.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --17.13%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--15.56%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--14.35%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--8.48%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--4.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.21%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | | | |--1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | | | | | | | --1.77%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | | | | | | | --1.54%--__dynamic_cast | | | | | | | | | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | | | |--1.22%--__dynamic_cast | | | | | | | | | | | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --1.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | __dynamic_cast | | | | | | | |--2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --4.81%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --3.82%--std::ctype const& std::use_facet >(std::locale const&) | | | |--2.76%--__dynamic_cast | | | |--1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | |--3.66%--__dynamic_cast | |--2.51%--std::ctype const& std::use_facet >(std::locale const&) | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 19.93% 19.93% connection mysqld [.] std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | ---start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | |--18.99%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--17.11%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--15.08%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--12.49%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | --12.41%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--11.86%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | --11.52%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--10.78%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--8.90%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --8.58%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --8.48%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | | | --0.74%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | | | --0.55%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | | | --2.58%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | | | --2.04%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | | | --1.88%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | --0.94%--std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 17.13% 17.13% connection libstdc++.so.6.0.19 [.] std::ctype const& std::use_facet >(std::locale const&) | ---start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | |--14.62%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--13.79%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--9.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--9.03%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--7.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--4.80%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--4.05%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --3.82%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--2.66%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--1.57%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | | | --1.09%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | --0.85%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | | | --1.16%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | | | --0.75%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | | | --2.74%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | | | --1.49%--std::ctype const& std::use_facet >(std::locale const&) | | | | | | | --0.94%--std::ctype const& std::use_facet >(std::locale const&) | | | | | --3.82%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::ctype const& std::use_facet >(std::locale const&) | | | --0.83%--std::ctype const& std::use_facet >(std::locale const&) | --2.51%--std::ctype const& std::use_facet >(std::locale const&) 16.41% 16.41% connection libstdc++.so.6.0.19 [.] __dynamic_cast | |--15.55%--start_thread | pfs_spawn_thread | handle_connection | do_command(THD*) | dispatch_command(THD*, COM_DATA const*, enum_server_command) | dispatch_sql_command(THD*, Parser_state*) | mysql_execute_command(THD*, bool) | show_slave_status_cmd(THD*) | show_slave_status(THD*) | rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | --15.19%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | |--11.53%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | --11.45%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | |--8.69%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --8.58%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | --8.46%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | |--7.71%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | |--7.16%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | |--5.94%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | |--4.40%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | --4.17%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | |--3.20%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | | | | | | | | | |--2.23%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | | | __dynamic_cast | | | | | | | | | | | | | | | | | --0.97%--__dynamic_cast | | | | | | | | | | | | | | | --0.97%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | | __dynamic_cast | | | | | | | | | | | | | --1.54%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | | | __dynamic_cast | | | | | | | | | | | --1.22%--__dynamic_cast | | | | | | | | | --0.55%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | | __dynamic_cast | | | | | | | --0.75%--std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | | | __dynamic_cast | | | | | --2.76%--__dynamic_cast | | | --3.66%--__dynamic_cast | --0.87%--__dynamic_cast 3.33% 0.00% connection [unknown] [.] 0x6335745300456349 | ---0x6335745300456349 | |--2.71%--__strcmp_sse42 | --0.63%--__cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const 2.71% 2.71% connection libc-2.17.so [.] __strcmp_sse42 | ---0x6335745300456349 __strcmp_sse42 2.09% 2.09% connection libstdc++.so.6.0.19 [.] __cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const | |--1.46%--__cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const | --0.63%--0x6335745300456349 __cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const 1.99% 1.99% connection libstdc++.so.6.0.19 [.] std::locale::~locale() | ---start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const std::locale::~locale() 1.99% 0.00% connection mysqld [.] std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const | ---std::back_insert_iterator, std::allocator > > std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >::format, std::allocator > > >(std::back_insert_iterator, std::allocator > >, char const*, char const*, std::regex_constants::match_flag_type) const std::locale::~locale() 1.99% 0.00% mysqld libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection | --1.99%--do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection | --1.99%--do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] handle_connection | ---handle_connection | --1.99%--do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 1.99% mysqld mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | ---start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] do_command(THD*) | ---do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) | ---dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] dispatch_sql_command(THD*, Parser_state*) | ---dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] mysql_execute_command(THD*, bool) | ---mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] show_slave_status_cmd(THD*) | ---show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] show_slave_status(THD*) | ---show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | ---rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | ---std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | ---bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.99% 0.00% mysqld mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | ---std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 1.41% 0.00% :15267 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection | --1.41%--do_command(THD*) | --1.41%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection | --1.41%--do_command(THD*) | --1.41%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] handle_connection | ---handle_connection | --1.41%--do_command(THD*) | --1.41%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] do_command(THD*) | ---do_command(THD*) | --1.41%--dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 1.41% :15267 mysqld [.] std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) | ---start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) | ---dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] dispatch_sql_command(THD*, Parser_state*) | ---dispatch_sql_command(THD*, Parser_state*) mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] mysql_execute_command(THD*, bool) | ---mysql_execute_command(THD*, bool) show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] show_slave_status_cmd(THD*) | ---show_slave_status_cmd(THD*) show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] show_slave_status(THD*) | ---show_slave_status(THD*) rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) | ---rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) | ---std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) | ---bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | ---std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.41% 0.00% :15267 mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) | ---std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) std::_Function_handler, true, true, false> >::_M_invoke(std::_Any_data const&, char&&) 1.37% 1.37% connection mysqld [.] PFS_connection_slice::reset_errors_stats() | ---start_thread pfs_spawn_thread handle_connection do_command(THD*) dispatch_command(THD*, COM_DATA const*, enum_server_command) dispatch_sql_command(THD*, Parser_state*) parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 1.37% 0.00% connection mysqld [.] MYSQLparse(THD*, Parse_tree_root**) | ---MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 1.37% 0.00% connection mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) | ---parse_sql(THD*, Parser_state*, Object_creation_ctx*) THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 1.37% 0.00% connection mysqld [.] THD::sql_parser() | ---THD::sql_parser() MYSQLparse(THD*, Parse_tree_root**) push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 1.37% 0.00% connection mysqld [.] push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) | ---push_warning_printf(THD*, Sql_condition::enum_severity_level, unsigned int, char const*, ...) THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 1.37% 0.00% connection mysqld [.] THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) | ---THD::raise_condition(unsigned int, char const*, Sql_condition::enum_severity_level, char const*, bool) PFS_connection_slice::reset_errors_stats() 0.30% 0.00% :14781 libpthread-2.17.so [.] start_thread 0.30% 0.00% :14781 mysqld [.] pfs_spawn_thread 0.30% 0.00% :14781 mysqld [.] handle_connection 0.30% 0.00% :14781 mysqld [.] do_command(THD*) 0.30% 0.30% :14781 libstdc++.so.6.0.19 [.] __dynamic_cast 0.30% 0.00% :14781 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.30% 0.00% :14781 mysqld [.] dispatch_sql_command(THD*, Parser_state*) 0.30% 0.00% :14781 mysqld [.] mysql_execute_command(THD*, bool) 0.30% 0.00% :14781 mysqld [.] show_slave_status_cmd(THD*) 0.30% 0.00% :14781 mysqld [.] show_slave_status(THD*) 0.30% 0.00% :14781 mysqld [.] rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) 0.30% 0.00% :14781 mysqld [.] std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) 0.30% 0.00% :14781 mysqld [.] bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) 0.30% 0.00% :14781 mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 0.30% 0.00% :14781 mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 0.23% 0.00% :12432 libpthread-2.17.so [.] start_thread 0.23% 0.00% :12432 mysqld [.] pfs_spawn_thread 0.23% 0.00% :12432 mysqld [.] handle_connection 0.23% 0.00% :12432 mysqld [.] do_command(THD*) 0.23% 0.23% :12432 libstdc++.so.6.0.19 [.] __dynamic_cast 0.23% 0.00% :12432 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.23% 0.00% :12432 mysqld [.] dispatch_sql_command(THD*, Parser_state*) 0.23% 0.00% :12432 mysqld [.] mysql_execute_command(THD*, bool) 0.23% 0.00% :12432 mysqld [.] show_slave_status_cmd(THD*) 0.23% 0.00% :12432 mysqld [.] show_slave_status(THD*) 0.23% 0.00% :12432 mysqld [.] rename_fields_use_old_replica_source_terms(THD*, mem_root_deque&) 0.23% 0.00% :12432 mysqld [.] std::back_insert_iterator, std::allocator > > std::regex_replace, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::regex_traits, char>(std::back_insert_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::basic_regex > const&, char const*, std::regex_constants::match_flag_type) 0.23% 0.00% :12432 mysqld [.] bool std::__detail::__regex_algo_impl<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, char, std::regex_traits, (std::__detail::_RegexExecutorPolicy)0, false>(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::match_results<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > > >&, std::basic_regex > const&, std::regex_constants::match_flag_type) 0.23% 0.00% :12432 mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_dfs(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 0.23% 0.00% :12432 mysqld [.] std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_M_rep_once_more(std::__detail::_Executor<__gnu_cxx::__normal_iterator, std::allocator > >, std::allocator, std::allocator > > > >, std::regex_traits, true>::_Match_mode, long) 0.12% 0.12% connection libstdc++.so.6.0.19 [.] std::locale::operator=(std::locale const&) 0.12% 0.00% connection [unknown] [.] 0x00002825048b4864 0.12% 0.00% connection libstdc++.so.6.0.19 [.] std::basic_stringbuf, std::allocator >::~basic_stringbuf() 0.12% 0.00% connection [unknown] [.] 0x00007f52e8026468 0.04% 0.00% connection mysqld [.] my_net_read(NET*) 0.04% 0.00% connection mysqld [.] net_read_packet(NET*, unsigned long*) 0.03% 0.00% connection mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.03% 0.03% connection mysqld [.] PFS_connection_slice::reset_waits_stats() 0.03% 0.00% connection mysqld [.] net_after_header_psi(NET*, void*, unsigned long, bool) 0.03% 0.03% connection libc-2.17.so [.] vfprintf 0.03% 0.00% connection [unknown] [.] 0x0000000000000100 0.03% 0.00% connection [unknown] [.] 0x00007f5318024480 0.03% 0.00% connection libc-2.17.so [.] _IO_vsnprintf 0.03% 0.03% connection mysqld [.] std::_Function_handler, true, false> >::_M_invoke(std::_Any_data const&, char&&) 0.00% 0.00% connection mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% connection mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% connection mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% connection [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% connection [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% connection libc-2.17.so [.] ppoll 0.00% 0.00% connection [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% connection [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% connection mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% connection mysqld [.] check_connection(THD*) 0.00% 0.00% connection mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% connection mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% connection mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% connection mysqld [.] server_mpvio_read_packet 0.00% 0.00% connection mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% connection mysqld [.] vio_io_wait(Vio*, enum_vio_io_event, int) 0.00% 0.00% connection [kernel.kallsyms] [k] poll_freewait 0.00% 0.00% connection [kernel.kallsyms] [k] remove_wait_queue 0.00% 0.00% connection [kernel.kallsyms] [k] __raw_callee_save___pv_queued_spin_unlock 0.00% 0.00% connection [kernel.kallsyms] [k] _raw_spin_unlock_irqrestore 0.00% 0.00% mysqld [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% mysqld [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% mysqld libc-2.17.so [.] __libc_start_main 0.00% 0.00% mysqld mysqld [.] mysqld_main(int, char**) 0.00% 0.00% mysqld libc-2.17.so [.] 0x00007f539e767c3d 0.00% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_poll 0.00% 0.00% mysqld [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% mysqld [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% mysqld [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% mysqld [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% mysqld [kernel.kallsyms] [k] schedule 0.00% 0.00% mysqld [kernel.kallsyms] [k] __schedule 0.00% 0.00% mysqld [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% mysqld [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% mysqld [kernel.kallsyms] [k] flexible_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] group_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] perf_swevent_add 0.00% 0.00% mysqld [kernel.kallsyms] [k] event_sched_in.isra.114 0.00% 0.00% connection [kernel.kallsyms] [k] unix_poll 0.00% 0.00% connection [kernel.kallsyms] [k] sock_poll 0.00% 0.00% connection [kernel.kallsyms] [k] poll_select_finish 0.00% 0.00% connection [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% connection libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.00% 0.00% connection [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% connection libpthread-2.17.so [.] __lll_lock_wait 0.00% 0.00% connection mysqld [.] Per_thread_connection_handler::block_until_new_connection() 0.00% 0.00% connection [kernel.kallsyms] [k] __fget_light 0.00% 0.00% connection [kernel.kallsyms] [k] syscall_return_via_sysret 0.00% 0.00% connection [kernel.kallsyms] [k] switch_fpu_return 0.00% 0.00% connection [kernel.kallsyms] [k] ktime_get_ts64 0.00% 0.00% connection [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% connection [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% connection [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% mysqld [kernel.kallsyms] [k] perf_event_update_userpage 0.00% 0.00% connection [kernel.kallsyms] [k] do_futex 0.00% 0.00% connection [kernel.kallsyms] [k] __fget 0.00% 0.00% connection [kernel.kallsyms] [k] __fdget 0.00% 0.00% connection [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% connection [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% connection libc-2.17.so [.] __clone 0.00% 0.00% connection [kernel.kallsyms] [k] futex_wait 0.00% 0.00% connection [unknown] [k] 0x0000000000000001 0.00% 0.00% connection [kernel.kallsyms] [k] ret_from_fork 0.00% 0.00% connection [kernel.kallsyms] [k] syscall_return_slowpath 0.00% 0.00% ib_log_fl_notif [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_log_fl_notif mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_log_fl_notif [unknown] [.] 0x00007f538dd2d940 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_log_fl_notif mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_log_fl_notif mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_log_fl_notif mysqld [.] log_flush_notifier(log_t*) 0.00% 0.00% ib_log_fl_notif mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_log_fl_notif libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% connection [kernel.kallsyms] [k] lock_hrtimer_base 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_log_wr_notif [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_log_wr_notif mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_log_wr_notif [unknown] [.] 0x00007f538dd2d940 0.00% 0.00% ib_log_wr_notif mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_log_wr_notif mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_log_wr_notif mysqld [.] log_write_notifier(log_t*) 0.00% 0.00% ib_log_wr_notif mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_log_wr_notif libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% connection [kernel.kallsyms] [k] rb_erase 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% connection [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% connection [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% connection [kernel.kallsyms] [k] swapgs_restore_regs_and_return_to_usermode 0.00% 0.00% ib_clone_gtid [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_clone_gtid mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_clone_gtid [unknown] [.] 0x00007f538c2d4d50 0.00% 0.00% ib_clone_gtid mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_clone_gtid mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_clone_gtid mysqld [.] Clone_persist_gtid::periodic_write() 0.00% 0.00% ib_clone_gtid mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_clone_gtid libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% :15267 mysqld [.] my_net_read(NET*) 0.00% 0.00% :15267 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :15267 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :15267 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :15267 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :15267 libc-2.17.so [.] ppoll 0.00% 0.00% :15267 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :15267 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :15267 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :15267 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% connection [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% mysqld libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.00% 0.00% connection [kernel.kallsyms] [k] native_apic_msr_eoi_write 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] do_futex 0.00% 0.00% connection [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% :11571 libpthread-2.17.so [.] start_thread 0.00% 0.00% :11571 mysqld [.] pfs_spawn_thread 0.00% 0.00% :11571 mysqld [.] handle_connection 0.00% 0.00% :11571 mysqld [.] my_net_read(NET*) 0.00% 0.00% :11571 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :11571 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :11571 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :11571 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :11571 libc-2.17.so [.] ppoll 0.00% 0.00% :11571 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :11571 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :11571 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :11571 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :12255 libpthread-2.17.so [.] start_thread 0.00% 0.00% :12255 mysqld [.] pfs_spawn_thread 0.00% 0.00% :12255 mysqld [.] handle_connection 0.00% 0.00% :12255 mysqld [.] my_net_read(NET*) 0.00% 0.00% :12255 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :12255 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :12255 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :12255 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :12255 libc-2.17.so [.] ppoll 0.00% 0.00% :12255 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :12255 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :12255 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :12255 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :12817 libpthread-2.17.so [.] start_thread 0.00% 0.00% :12817 mysqld [.] pfs_spawn_thread 0.00% 0.00% :12817 mysqld [.] handle_connection 0.00% 0.00% :12817 mysqld [.] my_net_read(NET*) 0.00% 0.00% :12817 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :12817 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :12817 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :12817 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :12817 libc-2.17.so [.] ppoll 0.00% 0.00% :12817 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :12817 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :12817 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :12817 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :12938 libpthread-2.17.so [.] start_thread 0.00% 0.00% :12938 mysqld [.] pfs_spawn_thread 0.00% 0.00% :12938 mysqld [.] handle_connection 0.00% 0.00% :12938 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :12938 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :12960 libpthread-2.17.so [.] start_thread 0.00% 0.00% :12960 mysqld [.] pfs_spawn_thread 0.00% 0.00% :12960 mysqld [.] handle_connection 0.00% 0.00% :12960 mysqld [.] my_net_read(NET*) 0.00% 0.00% :12960 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :12960 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :12960 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :12960 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :12960 libc-2.17.so [.] ppoll 0.00% 0.00% :12960 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :12960 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :12960 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :12960 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :15267 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :15522 libpthread-2.17.so [.] start_thread 0.00% 0.00% :15522 mysqld [.] pfs_spawn_thread 0.00% 0.00% :15522 mysqld [.] handle_connection 0.00% 0.00% :15522 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :15522 mysqld [.] check_connection(THD*) 0.00% 0.00% :15522 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :15522 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :15522 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :15522 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :15522 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :15522 mysqld [.] my_net_read(NET*) 0.00% 0.00% :15522 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :15522 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :15522 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :15522 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :15522 libc-2.17.so [.] ppoll 0.00% 0.00% :15522 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :15522 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :15522 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :15522 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :15522 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :15522 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :15522 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% connection [kernel.kallsyms] [k] __schedule 0.00% 0.00% connection [kernel.kallsyms] [k] apic_timer_interrupt 0.00% 0.00% connection [kernel.kallsyms] [k] kvm_guest_apic_eoi_write 0.00% 0.00% connection [kernel.kallsyms] [k] prepare_exit_to_usermode 0.00% 0.00% connection [kernel.kallsyms] [k] schedule 0.00% 0.00% connection [kernel.kallsyms] [k] smp_apic_timer_interrupt 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_src_main [unknown] [k] 0x5338c78348fc8949 0.00% 0.00% ib_src_main mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_src_main mysqld [.] srv_master_thread() 0.00% 0.00% ib_src_main mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_src_main mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_src_main libpthread-2.17.so [.] 0x00007f53a01ebe9d 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] __x64_sys_nanosleep 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] hrtimer_nanosleep 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] do_nanosleep 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_srv_err_mon [unknown] [k] 0x5338c78348fc8949 0.00% 0.00% ib_srv_err_mon mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_srv_err_mon mysqld [.] srv_error_monitor_thread() 0.00% 0.00% ib_srv_err_mon mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_srv_err_mon mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_srv_err_mon mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_srv_err_mon libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_srv_lock_to [unknown] [k] 0x5338c78348fc8949 0.00% 0.00% ib_srv_lock_to mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_srv_lock_to mysqld [.] lock_wait_timeout_thread() 0.00% 0.00% ib_srv_lock_to mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_srv_lock_to mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_srv_lock_to mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_srv_lock_to libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% :11285 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :11571 [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% :11571 [kernel.kallsyms] [k] __fget 0.00% 0.00% :11836 [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% :12255 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :12255 [kernel.kallsyms] [k] unix_poll 0.00% 0.00% :12432 [kernel.kallsyms] [k] __fget_light 0.00% 0.00% :12443 [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% :12817 [kernel.kallsyms] [k] hrtimer_active 0.00% 0.00% :12817 [kernel.kallsyms] [k] unix_poll 0.00% 0.00% :12938 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :12938 [kernel.kallsyms] [k] switch_fpu_return 0.00% 0.00% :12960 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :12960 [kernel.kallsyms] [k] unix_poll 0.00% 0.00% :13547 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :14010 [kernel.kallsyms] [k] __fget 0.00% 0.00% :14142 [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% :14781 [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% :14825 [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% :14836 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :15012 [kernel.kallsyms] [k] do_futex 0.00% 0.00% :15047 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :15102 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :15267 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :15267 [kernel.kallsyms] [k] __fget 0.00% 0.00% :15267 [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% :15489 [kernel.kallsyms] [k] __fget 0.00% 0.00% :15522 [kernel.kallsyms] [k] rb_erase 0.00% 0.00% :15522 [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% connection [kernel.kallsyms] [k] __pv_queued_spin_unlock_slowpath 0.00% 0.00% connection [kernel.kallsyms] [k] account_kernel_stack 0.00% 0.00% connection [kernel.kallsyms] [k] fput_many 0.00% 0.00% connection [kernel.kallsyms] [k] get_futex_key 0.00% 0.00% connection [kernel.kallsyms] [k] pvclock_clocksource_read 0.00% 0.00% connection libpthread-2.17.so [.] __libc_recv 0.00% 0.00% ib_clone_gtid [kernel.kallsyms] [k] perf_pmu_disable 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% ib_log_fl_notif [kernel.kallsyms] [k] perf_pmu_nop_void 0.00% 0.00% ib_log_wr_notif [kernel.kallsyms] [k] _raw_spin_lock 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] perf_pmu_disable 0.00% 0.00% ib_srv_err_mon [kernel.kallsyms] [k] visit_groups_merge 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] pvclock_clocksource_read 0.00% 0.00% mysqld [kernel.kallsyms] [k] sched_clock_cpu 0.00% 0.00% mysqld [kernel.kallsyms] [k] perf_pmu_nop_void 0.00% 0.00% mysqld [kernel.kallsyms] [k] perf_pmu_disable 0.00% 0.00% mysqld [kernel.kallsyms] [k] switch_fpu_return 0.00% 0.00% :11285 libpthread-2.17.so [.] start_thread 0.00% 0.00% :11285 mysqld [.] pfs_spawn_thread 0.00% 0.00% :11285 mysqld [.] handle_connection 0.00% 0.00% :11285 mysqld [.] do_command(THD*) 0.00% 0.00% :11285 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :11285 mysqld [.] my_net_read(NET*) 0.00% 0.00% :11285 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :11285 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :11285 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :11285 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :11285 libc-2.17.so [.] ppoll 0.00% 0.00% :11285 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :11285 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :11285 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :11285 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :11285 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :11285 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :11285 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :11285 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :11285 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :11285 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :11285 [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% :11571 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :11571 mysqld [.] check_connection(THD*) 0.00% 0.00% :11571 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :11571 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :11571 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :11571 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :11571 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :11571 mysqld [.] do_command(THD*) 0.00% 0.00% :11571 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :11571 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :11571 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :11571 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :11571 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :11571 [kernel.kallsyms] [k] __fdget 0.00% 0.00% :11571 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :11571 [kernel.kallsyms] [k] __fget_light 0.00% 0.00% :11571 [kernel.kallsyms] [k] lock_hrtimer_base 0.00% 0.00% :11836 libpthread-2.17.so [.] start_thread 0.00% 0.00% :11836 mysqld [.] pfs_spawn_thread 0.00% 0.00% :11836 mysqld [.] handle_connection 0.00% 0.00% :11836 mysqld [.] do_command(THD*) 0.00% 0.00% :11836 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :11836 mysqld [.] my_net_read(NET*) 0.00% 0.00% :11836 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :11836 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :11836 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :11836 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :11836 libc-2.17.so [.] ppoll 0.00% 0.00% :11836 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :11836 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :11836 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :11836 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :11836 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :11836 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :11836 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :11836 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :11836 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :11836 [kernel.kallsyms] [k] lock_hrtimer_base 0.00% 0.00% :12255 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :12255 mysqld [.] check_connection(THD*) 0.00% 0.00% :12255 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :12255 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :12255 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :12255 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :12255 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :12255 mysqld [.] do_command(THD*) 0.00% 0.00% :12255 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :12255 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :12255 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :12255 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :12255 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :12255 [kernel.kallsyms] [k] sock_poll 0.00% 0.00% :12432 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :12432 mysqld [.] my_net_read(NET*) 0.00% 0.00% :12432 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :12432 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :12432 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :12432 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :12432 libc-2.17.so [.] ppoll 0.00% 0.00% :12432 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :12432 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :12432 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :12432 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :12443 libpthread-2.17.so [.] start_thread 0.00% 0.00% :12443 mysqld [.] pfs_spawn_thread 0.00% 0.00% :12443 mysqld [.] handle_connection 0.00% 0.00% :12443 mysqld [.] do_command(THD*) 0.00% 0.00% :12443 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :12443 mysqld [.] my_net_read(NET*) 0.00% 0.00% :12443 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :12443 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :12443 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :12443 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :12443 libc-2.17.so [.] ppoll 0.00% 0.00% :12443 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :12443 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :12443 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :12443 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :12443 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :12443 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :12443 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :12443 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :12443 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :12443 [kernel.kallsyms] [k] lock_hrtimer_base 0.00% 0.00% :12817 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :12817 mysqld [.] check_connection(THD*) 0.00% 0.00% :12817 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :12817 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :12817 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :12817 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :12817 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :12817 mysqld [.] do_command(THD*) 0.00% 0.00% :12817 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :12817 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :12817 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :12817 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :12817 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :12817 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :12817 [kernel.kallsyms] [k] sock_poll 0.00% 0.00% :12938 mysqld [.] do_command(THD*) 0.00% 0.00% :12938 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :12938 mysqld [.] my_net_read(NET*) 0.00% 0.00% :12938 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :12938 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :12938 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :12938 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :12938 libc-2.17.so [.] ppoll 0.00% 0.00% :12938 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :12938 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :12938 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :12938 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :12938 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :12938 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :12938 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.00% 0.00% :12938 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :12938 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :12960 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :12960 mysqld [.] check_connection(THD*) 0.00% 0.00% :12960 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :12960 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :12960 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :12960 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :12960 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :12960 mysqld [.] do_command(THD*) 0.00% 0.00% :12960 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :12960 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :12960 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :12960 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :12960 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :12960 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :12960 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :12960 [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% :13547 libpthread-2.17.so [.] start_thread 0.00% 0.00% :13547 mysqld [.] pfs_spawn_thread 0.00% 0.00% :13547 mysqld [.] handle_connection 0.00% 0.00% :13547 mysqld [.] do_command(THD*) 0.00% 0.00% :13547 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :13547 mysqld [.] my_net_read(NET*) 0.00% 0.00% :13547 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :13547 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :13547 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :13547 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :13547 libc-2.17.so [.] ppoll 0.00% 0.00% :13547 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :13547 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :13547 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :13547 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :13547 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :13547 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :13547 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :13547 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :13547 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :13547 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :13547 [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% :14010 libpthread-2.17.so [.] start_thread 0.00% 0.00% :14010 mysqld [.] pfs_spawn_thread 0.00% 0.00% :14010 mysqld [.] handle_connection 0.00% 0.00% :14010 mysqld [.] do_command(THD*) 0.00% 0.00% :14010 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :14010 mysqld [.] my_net_read(NET*) 0.00% 0.00% :14010 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :14010 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :14010 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :14010 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :14010 libc-2.17.so [.] ppoll 0.00% 0.00% :14010 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :14010 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :14010 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :14010 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :14010 [kernel.kallsyms] [k] __fdget 0.00% 0.00% :14010 [kernel.kallsyms] [k] __fget_light 0.00% 0.00% :14142 libpthread-2.17.so [.] start_thread 0.00% 0.00% :14142 mysqld [.] pfs_spawn_thread 0.00% 0.00% :14142 mysqld [.] handle_connection 0.00% 0.00% :14142 mysqld [.] do_command(THD*) 0.00% 0.00% :14142 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :14142 mysqld [.] my_net_read(NET*) 0.00% 0.00% :14142 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :14142 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :14142 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :14142 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :14142 libc-2.17.so [.] ppoll 0.00% 0.00% :14142 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :14142 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :14142 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :14142 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :14142 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :14142 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :14142 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :14142 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :14142 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :14142 [kernel.kallsyms] [k] lock_hrtimer_base 0.00% 0.00% :14781 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :14781 mysqld [.] my_net_read(NET*) 0.00% 0.00% :14781 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :14781 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :14781 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :14781 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :14781 libc-2.17.so [.] ppoll 0.00% 0.00% :14781 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :14781 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :14781 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :14781 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :14781 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :14781 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :14781 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :14781 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :14781 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :14781 [kernel.kallsyms] [k] lock_hrtimer_base 0.00% 0.00% :14825 libpthread-2.17.so [.] start_thread 0.00% 0.00% :14825 mysqld [.] pfs_spawn_thread 0.00% 0.00% :14825 mysqld [.] handle_connection 0.00% 0.00% :14825 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.00% 0.00% :14825 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :14825 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :14836 libpthread-2.17.so [.] start_thread 0.00% 0.00% :14836 mysqld [.] pfs_spawn_thread 0.00% 0.00% :14836 mysqld [.] handle_connection 0.00% 0.00% :14836 mysqld [.] do_command(THD*) 0.00% 0.00% :14836 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :14836 mysqld [.] my_net_read(NET*) 0.00% 0.00% :14836 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :14836 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :14836 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :14836 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :14836 libc-2.17.so [.] ppoll 0.00% 0.00% :14836 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :14836 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :14836 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :14836 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :15012 libpthread-2.17.so [.] start_thread 0.00% 0.00% :15012 mysqld [.] pfs_spawn_thread 0.00% 0.00% :15012 mysqld [.] handle_connection 0.00% 0.00% :15012 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.00% 0.00% :15012 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :15012 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :15012 [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% :15047 libpthread-2.17.so [.] start_thread 0.00% 0.00% :15047 mysqld [.] pfs_spawn_thread 0.00% 0.00% :15047 mysqld [.] handle_connection 0.00% 0.00% :15047 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :15047 mysqld [.] check_connection(THD*) 0.00% 0.00% :15047 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :15047 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :15047 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :15047 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :15047 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :15047 mysqld [.] my_net_read(NET*) 0.00% 0.00% :15047 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :15047 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :15047 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :15047 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :15047 libc-2.17.so [.] ppoll 0.00% 0.00% :15047 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :15047 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :15047 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :15047 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :15047 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :15047 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :15047 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :15047 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :15047 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :15047 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :15047 [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% :15102 libpthread-2.17.so [.] start_thread 0.00% 0.00% :15102 mysqld [.] pfs_spawn_thread 0.00% 0.00% :15102 mysqld [.] handle_connection 0.00% 0.00% :15102 mysqld [.] do_command(THD*) 0.00% 0.00% :15102 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.00% 0.00% :15102 mysqld [.] my_net_read(NET*) 0.00% 0.00% :15102 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :15102 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :15102 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :15102 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :15102 libc-2.17.so [.] ppoll 0.00% 0.00% :15102 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :15102 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :15102 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :15102 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :15102 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.00% 0.00% :15102 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% :15102 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% :15102 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :15102 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :15102 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :15102 [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% :15267 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :15267 mysqld [.] check_connection(THD*) 0.00% 0.00% :15267 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :15267 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :15267 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :15267 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :15267 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :15267 [kernel.kallsyms] [k] __fdget 0.00% 0.00% :15267 [kernel.kallsyms] [k] poll_freewait 0.00% 0.00% :15267 [kernel.kallsyms] [k] __fget_light 0.00% 0.00% :15267 [kernel.kallsyms] [k] remove_wait_queue 0.00% 0.00% :15489 libpthread-2.17.so [.] start_thread 0.00% 0.00% :15489 mysqld [.] pfs_spawn_thread 0.00% 0.00% :15489 mysqld [.] handle_connection 0.00% 0.00% :15489 mysqld [.] thd_prepare_connection(THD*) 0.00% 0.00% :15489 mysqld [.] check_connection(THD*) 0.00% 0.00% :15489 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.00% 0.00% :15489 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.00% 0.00% :15489 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.00% 0.00% :15489 mysqld [.] server_mpvio_read_packet 0.00% 0.00% :15489 mysqld [.] Protocol_classic::read_packet() 0.00% 0.00% :15489 mysqld [.] my_net_read(NET*) 0.00% 0.00% :15489 mysqld [.] net_read_packet(NET*, unsigned long*) 0.00% 0.00% :15489 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.00% 0.00% :15489 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.00% 0.00% :15489 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.00% 0.00% :15489 libc-2.17.so [.] ppoll 0.00% 0.00% :15489 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% :15489 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% :15489 [kernel.kallsyms] [k] __x64_sys_ppoll 0.00% 0.00% :15489 [kernel.kallsyms] [k] do_sys_poll 0.00% 0.00% :15489 [kernel.kallsyms] [k] __fdget 0.00% 0.00% :15489 [kernel.kallsyms] [k] __fget_light 0.00% 0.00% :15522 [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% :15522 [kernel.kallsyms] [k] hrtimer_try_to_cancel 0.00% 0.00% :15522 [kernel.kallsyms] [k] __remove_hrtimer 0.00% 0.00% :15522 [kernel.kallsyms] [k] schedule 0.00% 0.00% :15522 [kernel.kallsyms] [k] __schedule 0.00% 0.00% :15522 [kernel.kallsyms] [k] timerqueue_del 0.00% 0.00% connection [kernel.kallsyms] [k] .slowpath 0.00% 0.00% connection [kernel.kallsyms] [k] __raw_callee_save___pv_queued_spin_unlock_slowpath 0.00% 0.00% connection [kernel.kallsyms] [k] futex_wait_setup 0.00% 0.00% connection [kernel.kallsyms] [k] kvm_clock_get_cycles 0.00% 0.00% connection [kernel.kallsyms] [k] put_task_stack 0.00% 0.00% connection [kernel.kallsyms] [k] schedule_tail 0.00% 0.00% connection libc-2.17.so [.] malloc_consolidate 0.00% 0.00% connection mysqld [.] Channel_info_local_socket::create_thd() 0.00% 0.00% connection mysqld [.] Channel_info::create_thd() 0.00% 0.00% connection mysqld [.] Channel_info_local_socket::create_and_init_vio() const 0.00% 0.00% connection mysqld [.] mysql_socket_vio_new(MYSQL_SOCKET, enum_vio_type, unsigned int) 0.00% 0.00% connection [unknown] [k] 0x00000000000007a1 0.00% 0.00% ib_fts_opt [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_fts_opt mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_fts_opt [unknown] [.] 0x00007f538ed37d80 0.00% 0.00% ib_fts_opt mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_fts_opt mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_fts_opt mysqld [.] fts_optimize_thread(ib_wqueue_t*) 0.00% 0.00% ib_fts_opt mysqld [.] ib_wqueue_timedwait(ib_wqueue_t*, long) 0.00% 0.00% ib_fts_opt mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_fts_opt libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_fts_opt [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_io_log [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_io_log mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_io_log [unknown] [.] 0x0000000000000001 0.00% 0.00% ib_io_log mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_io_log mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_io_log mysqld [.] io_handler_thread(unsigned long) 0.00% 0.00% ib_io_log mysqld [.] fil_aio_wait(unsigned long) 0.00% 0.00% ib_io_log mysqld [.] os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) 0.00% 0.00% ib_io_log mysqld [.] LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) 0.00% 0.00% ib_io_log libaio.so.1.0.1 [.] 0x00007f539f46e644 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] __x64_sys_io_getevents 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] do_io_getevents 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] read_events 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_io_log [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_io_rd-3 [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_io_rd-3 mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_io_rd-3 [unknown] [.] 0x0000000000000004 0.00% 0.00% ib_io_rd-3 mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_io_rd-3 mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_io_rd-3 mysqld [.] io_handler_thread(unsigned long) 0.00% 0.00% ib_io_rd-3 mysqld [.] fil_aio_wait(unsigned long) 0.00% 0.00% ib_io_rd-3 mysqld [.] os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) 0.00% 0.00% ib_io_rd-3 mysqld [.] LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) 0.00% 0.00% ib_io_rd-3 libaio.so.1.0.1 [.] 0x00007f539f46e644 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] __x64_sys_io_getevents 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] do_io_getevents 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] read_events 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_io_rd-3 [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_log_checkpt [unknown] [k] 0x5340c78348fc8949 0.00% 0.00% ib_log_checkpt mysqld [.] std::thread::_State_impl > >::~_State_impl() 0.00% 0.00% ib_log_checkpt [unknown] [.] 0x00007f538dd2d940 0.00% 0.00% ib_log_checkpt mysqld [.] execute_native_thread_routine 0.00% 0.00% ib_log_checkpt mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% ib_log_checkpt mysqld [.] log_checkpointer(log_t*) 0.00% 0.00% ib_log_checkpt mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% ib_log_checkpt libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] do_syscall_64 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] __x64_sys_futex 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] do_futex 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] futex_wait 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] schedule 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] __schedule 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_log_checkpt [kernel.kallsyms] [k] ctx_sched_in 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] __perf_event_task_sched_in 0.00% 0.00% ib_src_main [kernel.kallsyms] [k] perf_event_sched_in 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] sched_clock_cpu 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] sched_clock 0.00% 0.00% ib_srv_lock_to [kernel.kallsyms] [k] kvm_sched_clock_read # # (Cannot load tips.txt file, please install perf!) # ############################################################# 8.0.20 nice -n 19 perf record -g -F 10 -o mysql-28575.g.perf -p 28575 -- sleep 5 nice -n 19 perf record -F 10 -o mysql-28575.perf -p 28575 -- sleep 20 nice -n 19 perf report --input mysql-28575.perf --stdio nice -n 19 perf report -i mysql-28575.g.perf [umshastr@support-cluster03:~/work/binaries/utils]$ nice -n 19 perf report -i mysql-28575.g.perf |c++filt # To display the perf.data header info, please use --header/--header-only options. # # # Total Lost Samples: 0 # # Samples: 287 of event 'cycles' # Event count (approx.): 776485487 # # Children Self Command Shared Object Symbol # ........ ........ ....... ............................ ............................................................................................................................................................................................................................................................................................................................................................................................................................ # 8.46% 0.00% mysqld libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread | --8.09%--handle_connection | |--3.68%--do_command(THD*) | | | --3.31%--dispatch_command(THD*, COM_DATA const*, enum_server_command) | | | |--2.21%--mysql_parse(THD*, Parser_state*) | | | | | --1.84%--mysql_execute_command(THD*, bool) | | | | | --1.47%--show_slave_status_cmd(THD*) | | show_slave_status(THD*) | | | | | --1.10%--THD::send_result_metadata(List*, unsigned int) | | | | | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) | | | --0.74%--pfs_end_statement_v2(PSI_statement_locker*, void*) | |--3.31%--thd_prepare_connection(THD*) | | | --2.94%--check_connection(THD*) | | | --2.57%--acl_authenticate(THD*, enum_server_command) | | | |--1.47%--do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | | caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | | | | | --1.10%--server_mpvio_read_packet | | parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | | find_mpvio_user(THD*, MPVIO_EXT*) | | | | | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const | | | --0.74%--mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) | --0.74%--THD::~THD() THD::~THD() 8.46% 0.00% mysqld mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread | --8.09%--handle_connection | |--3.68%--do_command(THD*) | | | --3.31%--dispatch_command(THD*, COM_DATA const*, enum_server_command) | | | |--2.21%--mysql_parse(THD*, Parser_state*) | | | | | --1.84%--mysql_execute_command(THD*, bool) | | | | | --1.47%--show_slave_status_cmd(THD*) | | show_slave_status(THD*) | | | | | --1.10%--THD::send_result_metadata(List*, unsigned int) | | | | | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) | | | --0.74%--pfs_end_statement_v2(PSI_statement_locker*, void*) | |--3.31%--thd_prepare_connection(THD*) | | | --2.94%--check_connection(THD*) | | | --2.57%--acl_authenticate(THD*, enum_server_command) | | | |--1.47%--do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | | caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | | | | | --1.10%--server_mpvio_read_packet | | parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | | find_mpvio_user(THD*, MPVIO_EXT*) | | | | | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const | | | --0.74%--mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) | --0.74%--THD::~THD() THD::~THD() 8.09% 0.00% mysqld mysqld [.] handle_connection | ---handle_connection | |--3.68%--do_command(THD*) | | | --3.31%--dispatch_command(THD*, COM_DATA const*, enum_server_command) | | | |--2.21%--mysql_parse(THD*, Parser_state*) | | | | | --1.84%--mysql_execute_command(THD*, bool) | | | | | --1.47%--show_slave_status_cmd(THD*) | | show_slave_status(THD*) | | | | | --1.10%--THD::send_result_metadata(List*, unsigned int) | | | | | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) | | | --0.74%--pfs_end_statement_v2(PSI_statement_locker*, void*) | |--3.31%--thd_prepare_connection(THD*) | | | --2.94%--check_connection(THD*) | | | --2.57%--acl_authenticate(THD*, enum_server_command) | | | |--1.47%--do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | | caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | | | | | --1.10%--server_mpvio_read_packet | | parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | | find_mpvio_user(THD*, MPVIO_EXT*) | | | | | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const | | | --0.74%--mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) | --0.74%--THD::~THD() THD::~THD() 3.68% 0.00% mysqld mysqld [.] do_command(THD*) | ---do_command(THD*) | --3.31%--dispatch_command(THD*, COM_DATA const*, enum_server_command) | |--2.21%--mysql_parse(THD*, Parser_state*) | | | --1.84%--mysql_execute_command(THD*, bool) | | | --1.47%--show_slave_status_cmd(THD*) | show_slave_status(THD*) | | | --1.10%--THD::send_result_metadata(List*, unsigned int) | | | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) | --0.74%--pfs_end_statement_v2(PSI_statement_locker*, void*) 3.31% 0.00% mysqld mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) | ---dispatch_command(THD*, COM_DATA const*, enum_server_command) | |--2.21%--mysql_parse(THD*, Parser_state*) | | | --1.84%--mysql_execute_command(THD*, bool) | | | --1.47%--show_slave_status_cmd(THD*) | show_slave_status(THD*) | | | --1.10%--THD::send_result_metadata(List*, unsigned int) | | | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) | --0.74%--pfs_end_statement_v2(PSI_statement_locker*, void*) 3.31% 0.00% mysqld mysqld [.] thd_prepare_connection(THD*) | ---thd_prepare_connection(THD*) | --2.94%--check_connection(THD*) | --2.57%--acl_authenticate(THD*, enum_server_command) | |--1.47%--do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | | | --1.10%--server_mpvio_read_packet | parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | find_mpvio_user(THD*, MPVIO_EXT*) | | | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const | --0.74%--mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 2.94% 0.00% mysqld mysqld [.] check_connection(THD*) | ---check_connection(THD*) | --2.57%--acl_authenticate(THD*, enum_server_command) | |--1.47%--do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | | | --1.10%--server_mpvio_read_packet | parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | find_mpvio_user(THD*, MPVIO_EXT*) | | | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const | --0.74%--mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 2.57% 0.00% mysqld [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe | ---entry_SYSCALL_64_after_hwframe do_syscall_64 | |--0.74%--__x64_sys_futex | do_futex | | | --0.74%--wake_up_q | try_to_wake_up | --0.74%--__x64_sys_clone __do_sys_clone _do_fork copy_process 2.57% 0.00% mysqld [kernel.kallsyms] [k] do_syscall_64 | ---do_syscall_64 | |--0.74%--__x64_sys_futex | do_futex | | | --0.74%--wake_up_q | try_to_wake_up | --0.74%--__x64_sys_clone __do_sys_clone _do_fork copy_process 2.57% 0.00% mysqld mysqld [.] acl_authenticate(THD*, enum_server_command) | ---acl_authenticate(THD*, enum_server_command) | |--1.47%--do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | | | --1.10%--server_mpvio_read_packet | parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | find_mpvio_user(THD*, MPVIO_EXT*) | | | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const | --0.74%--mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 2.21% 0.00% mysqld mysqld [.] mysql_parse(THD*, Parser_state*) | ---mysql_parse(THD*, Parser_state*) | --1.84%--mysql_execute_command(THD*, bool) | --1.47%--show_slave_status_cmd(THD*) show_slave_status(THD*) | --1.10%--THD::send_result_metadata(List*, unsigned int) | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 1.84% 0.00% mysqld mysqld [.] mysql_execute_command(THD*, bool) | ---mysql_execute_command(THD*, bool) | --1.47%--show_slave_status_cmd(THD*) show_slave_status(THD*) | --1.10%--THD::send_result_metadata(List*, unsigned int) | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 1.84% 0.00% mysqld mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | ---do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) | --1.47%--caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | --1.10%--server_mpvio_read_packet parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) find_mpvio_user(THD*, MPVIO_EXT*) | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const 1.47% 0.00% mysqld libc-2.17.so [.] __libc_start_main | ---__libc_start_main mysqld_main(int, char**) | --0.74%--Connection_handler_manager::process_new_connection(Channel_info*) Per_thread_connection_handler::add_connection(Channel_info*) pthread_cond_signal@@GLIBC_2.3.2 entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_futex do_futex wake_up_q try_to_wake_up 1.47% 0.00% mysqld mysqld [.] mysqld_main(int, char**) | ---mysqld_main(int, char**) | --0.74%--Connection_handler_manager::process_new_connection(Channel_info*) Per_thread_connection_handler::add_connection(Channel_info*) pthread_cond_signal@@GLIBC_2.3.2 entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_futex do_futex wake_up_q try_to_wake_up 1.47% 0.00% mysqld mysqld [.] show_slave_status_cmd(THD*) | ---show_slave_status_cmd(THD*) show_slave_status(THD*) | --1.10%--THD::send_result_metadata(List*, unsigned int) | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 1.47% 0.00% mysqld mysqld [.] show_slave_status(THD*) | ---show_slave_status(THD*) | --1.10%--THD::send_result_metadata(List*, unsigned int) | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 1.47% 0.00% mysqld mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | ---caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) | --1.10%--server_mpvio_read_packet parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) find_mpvio_user(THD*, MPVIO_EXT*) | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const 1.10% 0.00% :24147 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 1.10% 0.00% :24147 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 1.10% 0.00% :24147 mysqld [.] handle_connection | ---handle_connection 1.10% 0.00% mysqld [kernel.kallsyms] [k] apic_timer_interrupt | ---apic_timer_interrupt smp_apic_timer_interrupt | --0.74%--hrtimer_interrupt 1.10% 0.00% mysqld [kernel.kallsyms] [k] smp_apic_timer_interrupt | ---smp_apic_timer_interrupt | --0.74%--hrtimer_interrupt 1.10% 0.00% mysqld [kernel.kallsyms] [k] try_to_wake_up | ---try_to_wake_up | --0.74%--select_task_rq_fair 1.10% 0.00% mysqld mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) | ---parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) find_mpvio_user(THD*, MPVIO_EXT*) | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const 1.10% 0.00% mysqld mysqld [.] find_mpvio_user(THD*, MPVIO_EXT*) | ---find_mpvio_user(THD*, MPVIO_EXT*) | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const 1.10% 0.00% mysqld mysqld [.] THD::send_result_metadata(List*, unsigned int) | ---THD::send_result_metadata(List*, unsigned int) | --0.74%--Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 1.10% 0.00% mysqld mysqld [.] server_mpvio_read_packet | ---server_mpvio_read_packet parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) find_mpvio_user(THD*, MPVIO_EXT*) | --0.74%--Acl_restrictions::find_restrictions(ACL_USER const*) const 0.74% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_futex | ---__x64_sys_futex do_futex | --0.74%--wake_up_q try_to_wake_up 0.74% 0.00% mysqld [kernel.kallsyms] [k] do_futex | ---do_futex | --0.74%--wake_up_q try_to_wake_up 0.74% 0.74% mysqld libc-2.17.so [.] malloc | ---malloc 0.74% 0.37% mysqld mysqld [.] pfs_end_statement_v2(PSI_statement_locker*, void*) 0.74% 0.00% :11242 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :11242 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :11242 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :12729 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :12729 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :12729 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :16092 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :16092 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :16092 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :18229 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :18229 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :18229 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :18988 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :18988 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :18988 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :20456 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :20456 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :20456 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :21532 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection thd_prepare_connection(THD*) 0.74% 0.00% :21532 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection thd_prepare_connection(THD*) 0.74% 0.00% :21532 mysqld [.] handle_connection | ---handle_connection thd_prepare_connection(THD*) 0.74% 0.00% :21532 mysqld [.] thd_prepare_connection(THD*) | ---thd_prepare_connection(THD*) 0.74% 0.00% :23341 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :23341 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :23341 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :27608 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :27608 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :27608 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :27608 mysqld [.] lex_start(THD*) | ---lex_start(THD*) LEX::new_top_level_query() LEX::new_query(SELECT_LEX*) LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.74% 0.00% :27608 mysqld [.] LEX::new_top_level_query() | ---LEX::new_top_level_query() LEX::new_query(SELECT_LEX*) LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.74% 0.00% :27608 mysqld [.] LEX::new_query(SELECT_LEX*) | ---LEX::new_query(SELECT_LEX*) LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.74% 0.00% :27608 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) | ---LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.74% 0.00% :28093 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :28093 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :28093 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :2931 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :2931 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :2931 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :2978 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection thd_prepare_connection(THD*) 0.74% 0.00% :2978 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection thd_prepare_connection(THD*) 0.74% 0.00% :2978 mysqld [.] handle_connection | ---handle_connection thd_prepare_connection(THD*) 0.74% 0.00% :2978 mysqld [.] thd_prepare_connection(THD*) | ---thd_prepare_connection(THD*) 0.74% 0.00% :32345 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :32345 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :32345 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :32444 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :32444 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :32444 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :4378 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :4378 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :4378 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :8188 libpthread-2.17.so [.] start_thread | ---start_thread pfs_spawn_thread handle_connection 0.74% 0.00% :8188 mysqld [.] pfs_spawn_thread | ---pfs_spawn_thread handle_connection 0.74% 0.00% :8188 mysqld [.] handle_connection | ---handle_connection 0.74% 0.00% :8188 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe | ---entry_SYSCALL_64_after_hwframe do_syscall_64 0.74% 0.00% :8188 [kernel.kallsyms] [k] do_syscall_64 | ---do_syscall_64 0.74% 0.00% mysqld [unknown] [k] 0x0000000000000001 | ---0x1 __clone entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_clone __do_sys_clone _do_fork copy_process 0.74% 0.00% mysqld libc-2.17.so [.] __clone | ---__clone entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_clone __do_sys_clone _do_fork copy_process 0.74% 0.00% mysqld mysqld [.] Connection_handler_manager::process_new_connection(Channel_info*) | ---Connection_handler_manager::process_new_connection(Channel_info*) Per_thread_connection_handler::add_connection(Channel_info*) pthread_cond_signal@@GLIBC_2.3.2 entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_futex do_futex wake_up_q try_to_wake_up 0.74% 0.00% mysqld mysqld [.] Per_thread_connection_handler::add_connection(Channel_info*) | ---Per_thread_connection_handler::add_connection(Channel_info*) pthread_cond_signal@@GLIBC_2.3.2 entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_futex do_futex wake_up_q try_to_wake_up 0.74% 0.00% mysqld libpthread-2.17.so [.] pthread_cond_signal@@GLIBC_2.3.2 | ---pthread_cond_signal@@GLIBC_2.3.2 entry_SYSCALL_64_after_hwframe do_syscall_64 __x64_sys_futex do_futex wake_up_q try_to_wake_up 0.74% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_clone | ---__x64_sys_clone __do_sys_clone _do_fork copy_process 0.74% 0.00% mysqld [kernel.kallsyms] [k] __do_sys_clone | ---__do_sys_clone _do_fork copy_process 0.74% 0.00% mysqld [kernel.kallsyms] [k] _do_fork | ---_do_fork copy_process 0.74% 0.00% mysqld [kernel.kallsyms] [k] copy_process | ---copy_process 0.74% 0.00% mysqld [kernel.kallsyms] [k] hrtimer_interrupt | ---hrtimer_interrupt 0.74% 0.00% mysqld [kernel.kallsyms] [k] wake_up_q | ---wake_up_q try_to_wake_up 0.74% 0.00% mysqld [kernel.kallsyms] [k] select_task_rq_fair | ---select_task_rq_fair 0.74% 0.00% mysqld mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) | ---mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.74% 0.00% mysqld mysqld [.] my_malloc(unsigned int, unsigned long, int) | ---my_malloc(unsigned int, unsigned long, int) pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.74% 0.00% mysqld mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) | ---pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.74% 0.00% mysqld mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) | ---Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.74% 0.00% mysqld mysqld [.] Acl_cache_lock_guard::lock(bool) [clone .part.55] | ---Acl_cache_lock_guard::lock(bool) [clone .part.55] MDL_context::acquire_lock(MDL_request*, unsigned long) 0.74% 0.00% mysqld mysqld [.] MDL_context::acquire_lock(MDL_request*, unsigned long) | ---MDL_context::acquire_lock(MDL_request*, unsigned long) 0.74% 0.00% mysqld mysqld [.] THD::~THD() | ---THD::~THD() THD::~THD() 0.74% 0.00% mysqld mysqld [.] THD::~THD() | ---THD::~THD() 0.74% 0.00% mysqld mysqld [.] Acl_restrictions::find_restrictions(ACL_USER const*) const | ---Acl_restrictions::find_restrictions(ACL_USER const*) const 0.37% 0.37% :10009 mysqld [.] void dd::cache::Object_registry::create_map >(std::unique_ptr, std::default_delete > >*) 0.37% 0.37% :10792 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.37% :1090 mysqld [.] Protocol_classic::net_store_data_with_conversion(unsigned char const*, unsigned long, CHARSET_INFO const*, CHARSET_INFO const*) 0.37% 0.37% :10979 mysqld [.] PFS_user::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :11023 [kernel.kallsyms] [k] __perf_event_task_sched_out 0.37% 0.37% :11088 mysqld [.] pfs_start_mutex_wait_v1(PSI_mutex_locker_state_v1*, PSI_mutex*, PSI_mutex_operation, char const*, unsigned int) 0.37% 0.37% :11242 mysqld [.] my_convert(char*, unsigned long, CHARSET_INFO const*, char const*, unsigned long, CHARSET_INFO const*, unsigned int*) 0.37% 0.37% :11242 mysqld [.] unsigned long dd::cache::Dictionary_client::release(dd::cache::Object_registry*) 0.37% 0.37% :11518 [kernel.kallsyms] [k] __pv_queued_spin_lock_slowpath 0.37% 0.37% :11518 libstdc++.so.6.0.19 [.] __dynamic_cast 0.37% 0.37% :11628 libstdc++.so.6.0.19 [.] std::basic_string, std::allocator >::_M_replace_safe(unsigned long, unsigned long, char const*, unsigned long) 0.37% 0.37% :1169 [kernel.kallsyms] [k] deactivate_task 0.37% 0.37% :11946 mysqld [.] my_free(void*) 0.37% 0.37% :12729 mysqld [.] lf_dynarray_lvalue(LF_DYNARRAY*, unsigned int) 0.37% 0.37% :12729 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :12950 libc-2.17.so [.] __strlen_sse42 0.37% 0.37% :13027 libcrypto.so.1.1 [.] sha256_block_data_order_shaext 0.37% 0.37% :13127 [kernel.kallsyms] [k] dequeue_task_fair 0.37% 0.37% :1313 mysqld [.] LEX::LEX() 0.37% 0.37% :13204 mysqld [.] aggregate_all_memory(bool, PFS_memory_safe_stat*, PFS_memory_shared_stat*) 0.37% 0.37% :13303 [kernel.kallsyms] [k] enqueue_entity 0.37% 0.37% :13548 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.37% :13570 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :13834 mysqld [.] THD::THD(bool) 0.37% 0.37% :14055 libcrypto.so.1.1 [.] EVP_CIPHER_CTX_get_cipher_data 0.37% 0.37% :14375 mysqld [.] PFS_connection_slice::reset_waits_stats() 0.37% 0.37% :14395 [kernel.kallsyms] [k] native_write_msr 0.37% 0.37% :14408 mysqld [.] bool dd::cache::Dictionary_client::acquire(dd::Item_name_key const&, dd::Schema const**, bool*, bool*) 0.37% 0.37% :1447 mysqld [.] create_mutex(PFS_mutex_class*, void const*) 0.37% 0.37% :14573 mysqld [.] dd::cache::Object_registry::~Object_registry() 0.37% 0.37% :14584 libc-2.17.so [.] _int_free 0.37% 0.37% :15036 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :15115 [kernel.kallsyms] [k] memcg_kmem_get_cache 0.37% 0.37% :15177 mysqld [.] THD::~THD() 0.37% 0.37% :15199 libc-2.17.so [.] __memmove_ssse3 0.37% 0.37% :15324 libc-2.17.so [.] free 0.37% 0.37% :15375 mysqld [.] show_slave_status_metadata(List&, int, int) 0.37% 0.37% :15390 libc-2.17.so [.] _int_malloc 0.37% 0.37% :15453 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :1567 [kernel.kallsyms] [k] lock_hrtimer_base 0.37% 0.37% :15733 mysqld [.] aggregate_all_event_names(PFS_single_stat*, PFS_single_stat*) 0.37% 0.37% :15744 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.37% :16092 mysqld [.] pfs_end_statement_v2(PSI_statement_locker*, void*) 0.37% 0.37% :16092 libpthread-2.17.so [.] __pthread_mutex_cond_lock 0.37% 0.37% :16569 [kernel.kallsyms] [k] kfree 0.37% 0.37% :16599 [kernel.kallsyms] [k] native_write_msr 0.37% 0.37% :16680 mysqld [.] Protocol_classic::net_store_data_with_conversion(unsigned char const*, unsigned long, CHARSET_INFO const*, CHARSET_INFO const*) 0.37% 0.37% :16720 [kernel.kallsyms] [k] native_read_msr 0.37% 0.37% :16811 mysqld [.] PFS_status_stats::aggregate_from(System_status_var const*) 0.37% 0.37% :16841 mysqld [.] create_mutex(PFS_mutex_class*, void const*) 0.37% 0.37% :17241 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.37% :1725 mysqld [.] my_lfind(std::atomic*, CHARSET_INFO*, unsigned int, unsigned char const*, unsigned long, CURSOR*, LF_PINS*) 0.37% 0.37% :1736 mysqld [.] dd::Schema_MDL_locker::ensure_locked(char const*) 0.37% 0.37% :17558 mysqld [.] find_cond_class(unsigned int) 0.37% 0.37% :17810 mysqld [.] create_metadata_lock(void*, MDL_key const*, int, int, int, char const*, unsigned int) 0.37% 0.37% :17889 [kernel.kallsyms] [k] set_task_cpu 0.37% 0.37% :18019 mysqld [.] send_server_handshake_packet(MPVIO_EXT*, char const*, unsigned int) 0.37% 0.37% :18229 mysqld [.] read_client_connect_attrs(THD*, char**, unsigned long*, MPVIO_EXT*) 0.37% 0.37% :18229 mysqld [.] find_memory_class(unsigned int) 0.37% 0.37% :18242 mysqld [.] PFS_host::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :18527 mysqld [.] PFS_connection_slice::reset_waits_stats() 0.37% 0.37% :18614 [kernel.kallsyms] [k] rcu_do_batch 0.37% 0.37% :18749 [kernel.kallsyms] [k] native_apic_msr_eoi_write 0.37% 0.37% :18889 [kernel.kallsyms] [k] __virt_addr_valid 0.37% 0.37% :18988 [kernel.kallsyms] [k] __update_load_avg_cfs_rq 0.37% 0.37% :18988 mysqld [.] unregister_slave(THD*, bool, bool) 0.37% 0.37% :19068 mysqld [.] pfs_start_socket_wait_v1(PSI_socket_locker_state_v1*, PSI_socket*, PSI_socket_operation, unsigned long, char const*, unsigned int) 0.37% 0.37% :1918 libc-2.17.so [.] _int_free 0.37% 0.37% :19197 mysqld [.] Item::Item() 0.37% 0.37% :19366 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :19406 mysqld [.] dd::cache::Object_registry::~Object_registry() 0.37% 0.37% :19539 mysqld [.] Global_THD_manager::remove_thd(THD*) 0.37% 0.37% :19902 [kernel.kallsyms] [k] enqueue_task_fair 0.37% 0.37% :19902 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :20082 mysqld [.] Session_tracker::enable(THD*) 0.37% 0.37% :20230 [kernel.kallsyms] [k] available_idle_cpu 0.37% 0.37% :20373 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :20456 mysqld [.] PFS_connection_slice::reset_waits_stats() 0.37% 0.37% :20456 mysqld [.] lf_pinbox_put_pins(LF_PINS*) 0.37% 0.37% :20472 libc-2.17.so [.] __memset_sse2 0.37% 0.37% :20588 [kernel.kallsyms] [k] memcg_kmem_get_cache 0.37% 0.37% :20727 mysqld [.] mysql_audit_acquire_plugins(THD*, mysql_event_class_t, unsigned long) 0.37% 0.37% :20920 mysqld [.] destroy_metadata_lock(PFS_metadata_lock*) 0.37% 0.37% :2099 libpthread-2.17.so [.] pthread_mutex_unlock 0.37% 0.37% :21208 mysqld [.] Gtid_set::to_string(char*, bool, Gtid_set::String_format const*) const 0.37% 0.37% :21257 mysqld [.] THD::set_command(enum_server_command) 0.37% 0.37% :21301 mysqld [.] std::_Hashtable, std::allocator >, std::pair, std::allocator > const, std::unique_ptr >, Malloc_allocator, std::allocator > const, std::unique_ptr > >, std::__detail::_Select1st, Collation_key_equal, Collation_hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear() 0.37% 0.37% :21307 [kernel.kallsyms] [k] __fget 0.37% 0.37% :2137 mysqld [.] dd::cache::Object_registry::~Object_registry() 0.37% 0.37% :21488 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.37% :21532 [kernel.kallsyms] [k] timerqueue_add 0.37% 0.37% :21532 mysqld [.] PFS_thread::rebase_memory_stats() 0.37% 0.37% :21670 mysqld [.] alloc_query(THD*, char const*, unsigned long) 0.37% 0.37% :21697 mysqld [.] MYSQLparse(THD*, Parse_tree_root**) 0.37% 0.37% :21972 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.37% :22005 [kernel.kallsyms] [k] zap_pte_range 0.37% 0.37% :22016 libc-2.17.so [.] malloc_consolidate 0.37% 0.37% :22290 mysqld [.] lf_hash_search(LF_HASH*, LF_PINS*, void const*, unsigned int) 0.37% 0.37% :22427 libpthread-2.17.so [.] pthread_rwlock_wrlock 0.37% 0.37% :22532 mysqld [.] PFS_host::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :2263 mysqld [.] std::_Rb_tree*>, std::_Select1st*> >, std::less, Malloc_allocator*> > >::_M_erase(std::_Rb_tree_node*> >*) 0.37% 0.37% :22680 [kernel.kallsyms] [k] migrate_task_rq_fair 0.37% 0.37% :22950 libc-2.17.so [.] malloc 0.37% 0.37% :22966 libgcc_s-4.8.5-20150702.so.1 [.] 0x00000000000115c9 0.37% 0.37% :23054 libc-2.17.so [.] malloc_consolidate 0.37% 0.37% :23060 [kernel.kallsyms] [k] copy_user_generic_string 0.37% 0.37% :23341 [kernel.kallsyms] [k] _copy_from_iter 0.37% 0.37% :23341 mysqld [.] pfs_memory_free_v1(unsigned int, unsigned long, PSI_thread*) 0.37% 0.37% :23341 mysqld [.] aggregate_all_memory(bool, PFS_memory_safe_stat*, PFS_memory_shared_stat*) 0.37% 0.37% :23446 libc-2.17.so [.] _int_malloc 0.37% 0.37% :23463 libc-2.17.so [.] _int_malloc 0.37% 0.37% :23546 libc-2.17.so [.] _int_free 0.37% 0.37% :23656 [kernel.kallsyms] [k] __fsnotify_parent 0.37% 0.37% :23843 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.37% :23935 mysqld [.] vio_io_wait(Vio*, enum_vio_io_event, int) 0.37% 0.37% :24133 mysqld [.] PFS_thread::rebase_memory_stats() 0.37% 0.37% :24147 [kernel.kallsyms] [k] x2apic_send_IPI 0.37% 0.37% :24147 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.37% :24147 libc-2.17.so [.] free 0.37% 0.37% :24147 libc-2.17.so [.] __localtime_r 0.37% 0.37% :24518 mysqld [.] Session_tracker::enable(THD*) 0.37% 0.37% :24641 mysqld [.] aggregate_all_memory(bool, PFS_memory_safe_stat*, PFS_memory_shared_stat*) 0.37% 0.37% :24807 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :24928 libc-2.17.so [.] _int_free 0.37% 0.37% :25106 [kernel.kallsyms] [k] dequeue_task_fair 0.37% 0.37% :25173 [kernel.kallsyms] [k] available_idle_cpu 0.37% 0.37% :2530 mysqld [.] carry_global_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :25318 mysqld [.] pfs_end_statement_v2(PSI_statement_locker*, void*) 0.37% 0.37% :2540 [kernel.kallsyms] [k] sock_poll 0.37% 0.37% :26281 mysqld [.] cset_hash_sort_adapter(LF_HASH const*, unsigned char const*, unsigned long) 0.37% 0.37% :26405 libcrypto.so.1.1 [.] evp_EncryptDecryptUpdate 0.37% 0.37% :26601 libc-2.17.so [.] _int_malloc 0.37% 0.37% :26759 [kernel.kallsyms] [k] enqueue_task_fair 0.37% 0.37% :26811 mysqld [.] Security_context::destroy() 0.37% 0.37% :26844 mysqld [.] String::numchars() const 0.37% 0.37% :27068 mysqld [.] Opt_trace_context::~Opt_trace_context() 0.37% 0.37% :27168 libc-2.17.so [.] sigemptyset 0.37% 0.37% :2740 [kernel.kallsyms] [k] __raw_callee_save___pv_queued_spin_unlock 0.37% 0.37% :27453 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.37% :27608 mysqld [.] PFS_host::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :27608 mysqld [.] std::_Deque_base >::_M_initialize_map(unsigned long) 0.37% 0.37% :27679 mysqld [.] thd_increment_bytes_received(unsigned long) 0.37% 0.37% :27690 libc-2.17.so [.] _int_malloc 0.37% 0.37% :27743 mysqld [.] net_send_ok(THD*, unsigned int, unsigned int, unsigned long long, unsigned long long, char const*, bool) 0.37% 0.37% :27944 mysqld [.] Item::Item() 0.37% 0.37% :28093 mysqld [.] Protocol_classic::flush() 0.37% 0.37% :28093 mysqld [.] thd_get_ha_data 0.37% 0.37% :28127 mysqld [.] unsigned long dd::cache::Dictionary_client::release(dd::cache::Object_registry*) 0.37% 0.37% :28151 mysqld [.] my_hash_sort_uca_900 0.37% 0.37% :2832 mysqld [.] Session_tracker::init(CHARSET_INFO const*) 0.37% 0.37% :2842 mysqld [.] set_system_user_flag(THD*, bool) 0.37% 0.37% :28530 [vdso] [.] __vdso_clock_gettime 0.37% 0.37% :28541 [kernel.kallsyms] [k] __x2apic_send_IPI_dest 0.37% 0.37% :28550 libc-2.17.so [.] _int_free 0.37% 0.37% :28623 mysqld [.] alloc_and_copy_thd_dynamic_variables(THD*, bool) 0.37% 0.37% :28805 mysqld [.] aggregate_all_memory(bool, PFS_memory_safe_stat*, PFS_memory_shared_stat*) 0.37% 0.37% :28894 mysqld [.] destroy_cond(PFS_cond*) 0.37% 0.37% :28966 [kernel.kallsyms] [k] __sys_setsockopt 0.37% 0.37% :2931 mysqld [.] find_or_create_account(PFS_thread*, char const*, unsigned int, char const*, unsigned int) 0.37% 0.37% :2931 mysqld [.] Transaction_state_tracker::clear_trx_state(THD*, unsigned int) 0.37% 0.37% :29342 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.37% :29695 mysqld [.] std::_Rb_tree, std::less, Malloc_allocator >::_M_erase(std::_Rb_tree_node*) 0.37% 0.37% :2978 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :2978 mysqld [.] pfs_start_rwlock_wait_v2(PSI_rwlock_locker_state_v1*, PSI_rwlock*, PSI_rwlock_operation, char const*, unsigned int) 0.37% 0.37% :30135 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :30147 mysqld [.] pfs_memory_free_v1(unsigned int, unsigned long, PSI_thread*) 0.37% 0.37% :30210 [kernel.kallsyms] [k] task_cputime 0.37% 0.37% :30213 mysqld [.] find_thread_by_internal_id(unsigned long long) 0.37% 0.37% :30496 libcrypto.so.1.1 [.] update256 0.37% 0.37% :30521 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :30551 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :30661 mysqld [.] void dd::cache::Object_registry::create_map >(std::unique_ptr, std::default_delete > >*) 0.37% 0.37% :30741 mysqld [.] PFS_thread::rebase_memory_stats() 0.37% 0.37% :30862 libc-2.17.so [.] malloc_consolidate 0.37% 0.37% :30928 libcrypto.so.1.1 [.] ctr_BCC_update 0.37% 0.37% :31013 mysqld [.] Item::init_make_field(Send_field*, enum_field_types) 0.37% 0.37% :31101 mysqld [.] std::_Rb_tree*>, std::_Select1st*> >, std::less, Malloc_allocator*> > >::_M_erase(std::_Rb_tree_node*> >*) 0.37% 0.37% :31156 mysqld [.] MYSQLparse(THD*, Parse_tree_root**) 0.37% 0.37% :31387 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :31882 mysqld [.] Protocol_classic::store_string(char const*, unsigned long, CHARSET_INFO const*) 0.37% 0.37% :31926 [kernel.kallsyms] [k] __x64_sys_futex 0.37% 0.37% :32202 mysqld [.] Session_sysvar_resource_manager::deinit() 0.37% 0.37% :32212 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.37% :32345 libc-2.17.so [.] __strcmp_sse42 0.37% 0.37% :32345 [kernel.kallsyms] [k] _raw_spin_lock 0.37% 0.37% :32356 mysqld [.] my_convert(char*, unsigned long, CHARSET_INFO const*, char const*, unsigned long, CHARSET_INFO const*, unsigned int*) 0.37% 0.37% :32444 mysqld [.] Protocol_classic::net_store_data_with_conversion(unsigned char const*, unsigned long, CHARSET_INFO const*, CHARSET_INFO const*) 0.37% 0.37% :32444 mysqld [.] set_thread_resource_group(PFS_thread*, char const*, int, void*) 0.37% 0.37% :32510 libcrypto.so.1.1 [.] EVP_CIPHER_CTX_block_size 0.37% 0.37% :3759 libprotobuf-lite.so.3.6.1 [.] operator delete(void*, unsigned long) 0.37% 0.37% :3935 mysqld [.] create_mutex(PFS_mutex_class*, void const*) 0.37% 0.37% :3991 mysqld [.] THD::reset_for_next_command() 0.37% 0.37% :3994 mysqld [.] create_cond(PFS_cond_class*, void const*) 0.37% 0.37% :4378 mysqld [.] create_mutex(PFS_mutex_class*, void const*) 0.37% 0.37% :4378 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.37% :4505 mysqld [.] plugin_thdvar_init(THD*, bool) 0.37% 0.37% :4704 libstdc++.so.6.0.19 [.] std::locale::id::_M_id() const 0.37% 0.37% :4767 mysqld [.] handle_connection 0.37% 0.37% :4880 libc-2.17.so [.] _int_free 0.37% 0.37% :4899 mysqld [.] THD::init() 0.37% 0.37% :4989 libstdc++.so.6.0.19 [.] __cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const 0.37% 0.37% :5373 [kernel.kallsyms] [k] __virt_addr_valid 0.37% 0.37% :5373 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.37% :5437 mysqld [.] Protocol_classic::get_vio() 0.37% 0.37% :5971 [kernel.kallsyms] [k] _copy_from_user 0.37% 0.37% :6015 [kernel.kallsyms] [k] account_entity_enqueue 0.37% 0.37% :6015 [vdso] [.] __vdso_clock_gettime 0.37% 0.37% :6189 libc-2.17.so [.] _int_malloc 0.37% 0.37% :6501 mysqld [.] void my_hash_sort_uca_900_tmpl(CHARSET_INFO const*, Mb_wc_utf8mb4, unsigned char const*, unsigned long, unsigned long*) [clone .isra.113] 0.37% 0.37% :6786 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.37% :682 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.37% :6830 mysqld [.] aggregate_all_statements(PFS_statement_stat*, PFS_statement_stat*) 0.37% 0.37% :6956 mysqld [.] Item::charset_for_protocol() const 0.37% 0.37% :6978 [kernel.kallsyms] [k] dput 0.37% 0.37% :7111 [kernel.kallsyms] [k] enqueue_task_fair 0.37% 0.37% :7122 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% :7273 mysqld [.] void dd::cache::Object_registry::create_map >(std::unique_ptr, std::default_delete > >*) 0.37% 0.37% :7328 mysqld [.] std::_Rb_tree*>, std::_Select1st*> >, std::less, Malloc_allocator*> > >::_M_erase(std::_Rb_tree_node*> >*) 0.37% 0.37% :7408 mysqld [.] THD::THD(bool) 0.37% 0.37% :7530 mysqld [.] MYSQLparse(THD*, Parse_tree_root**) 0.37% 0.37% :7560 libgcc_s-4.8.5-20150702.so.1 [.] 0x000000000000d5a6 0.37% 0.37% :767 [kernel.kallsyms] [k] bit_waitqueue 0.37% 0.37% :7692 [kernel.kallsyms] [k] __sys_setsockopt 0.37% 0.37% :7882 [kernel.kallsyms] [k] select_idle_sibling 0.37% 0.37% :8045 libc-2.17.so [.] malloc 0.37% 0.37% :8067 [kernel.kallsyms] [k] __update_load_avg_cfs_rq 0.37% 0.37% :8070 libpthread-2.17.so [.] pthread_mutex_lock 0.37% 0.37% :8168 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.37% :8188 [kernel.kallsyms] [k] put_timespec64 0.37% 0.37% :8188 [kernel.kallsyms] [k] __sys_setsockopt 0.37% 0.37% :8419 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.37% :8617 mysqld [.] dd::Dictionary_impl::instance() 0.37% 0.37% :8749 libc-2.17.so [.] __strlen_sse42 0.37% 0.37% :8936 mysqld [.] create_authid_from(ACL_USER const*) 0.37% 0.37% :9170 mysqld [.] PFS_connection_slice::reset_waits_stats() 0.37% 0.37% :9336 libc-2.17.so [.] _int_malloc 0.37% 0.37% :955 [kernel.kallsyms] [k] set_next_task_idle 0.37% 0.37% :9892 mysqld [.] Lex_input_stream::reset(char const*, unsigned long) 0.37% 0.37% mysqld [kernel.kallsyms] [k] memcg_kmem_put_cache 0.37% 0.37% mysqld [kernel.kallsyms] [k] memset 0.37% 0.37% mysqld [kernel.kallsyms] [k] add_wait_queue 0.37% 0.37% mysqld [kernel.kallsyms] [k] account_kernel_stack 0.37% 0.37% mysqld [kernel.kallsyms] [k] ktime_get_update_offsets_now 0.37% 0.37% mysqld [kernel.kallsyms] [k] native_apic_msr_eoi_write 0.37% 0.37% mysqld [kernel.kallsyms] [k] native_write_msr 0.37% 0.37% mysqld [kernel.kallsyms] [k] scheduler_tick 0.37% 0.37% mysqld [kernel.kallsyms] [k] select_idle_sibling 0.37% 0.37% mysqld [kernel.kallsyms] [k] update_cfs_rq_h_load 0.37% 0.37% mysqld libc-2.17.so [.] __clock_gettime 0.37% 0.37% mysqld libc-2.17.so [.] __memset_sse2 0.37% 0.37% mysqld libc-2.17.so [.] _int_malloc 0.37% 0.37% mysqld libc-2.17.so [.] free 0.37% 0.37% mysqld libcrypto.so.1.1 [.] CRYPTO_clear_free 0.37% 0.37% mysqld libcrypto.so.1.1 [.] OPENSSL_cleanse 0.37% 0.37% mysqld mysqld [.] create_metadata_lock(void*, MDL_key const*, int, int, int, char const*, unsigned int) 0.37% 0.37% mysqld libpthread-2.17.so [.] __libc_recv 0.37% 0.37% mysqld libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.37% 0.37% mysqld mysqld [.] my_convert(char*, unsigned long, CHARSET_INFO const*, char const*, unsigned long, CHARSET_INFO const*, unsigned int*) 0.37% 0.37% mysqld mysqld [.] vio_io_wait(Vio*, enum_vio_io_event, int) 0.37% 0.37% mysqld mysqld [.] mysql_change_db_impl(THD*, MYSQL_LEX_CSTRING const&, unsigned long, CHARSET_INFO const*) 0.37% 0.37% mysqld mysqld [.] my_lfind(std::atomic*, CHARSET_INFO*, unsigned int, unsigned char const*, unsigned long, CURSOR*, LF_PINS*) 0.37% 0.37% mysqld mysqld [.] MYSQL_BIN_LOG::commit(THD*, bool) 0.37% 0.37% mysqld mysqld [.] bool dd::cache::Dictionary_client::acquire(std::basic_string, Stateless_allocator > const&, dd::Schema const**) 0.37% 0.37% mysqld mysqld [.] THD::release_resources() 0.37% 0.37% mysqld mysqld [.] Item::init_make_field(Send_field*, enum_field_types) 0.37% 0.37% mysqld mysqld [.] PFS_host::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.37% mysqld mysqld [.] Protocol::store(char const*, CHARSET_INFO const*) 0.37% 0.37% mysqld mysqld [.] std::_Rb_tree*>, std::_Select1st*> >, std::less, Malloc_allocator*> > >::_M_erase(std::_Rb_tree_node*> >*) 0.37% 0.37% mysqld mysqld [.] strcmp@plt 0.37% 0.00% :10009 libpthread-2.17.so [.] start_thread 0.37% 0.00% :10009 mysqld [.] pfs_spawn_thread 0.37% 0.00% :10009 mysqld [.] handle_connection 0.37% 0.00% :10009 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :10009 mysqld [.] check_connection(THD*) 0.37% 0.00% :10009 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :10009 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :10009 mysqld [.] dd::cache::Dictionary_client::Auto_releaser::~Auto_releaser() 0.37% 0.00% :10792 libpthread-2.17.so [.] start_thread 0.37% 0.00% :10792 mysqld [.] pfs_spawn_thread 0.37% 0.00% :10792 mysqld [.] handle_connection 0.37% 0.00% :10792 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :10792 mysqld [.] check_connection(THD*) 0.37% 0.00% :10792 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :10792 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :10792 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :10792 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :10792 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :10792 mysqld [.] my_strndup(unsigned int, char const*, unsigned long, int) 0.37% 0.00% :10792 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :1090 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1090 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1090 mysqld [.] handle_connection 0.37% 0.00% :1090 mysqld [.] do_command(THD*) 0.37% 0.00% :1090 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :1090 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :1090 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :1090 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :1090 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :1090 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :1090 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.00% :10979 libpthread-2.17.so [.] start_thread 0.37% 0.00% :10979 mysqld [.] pfs_spawn_thread 0.37% 0.00% :10979 mysqld [.] handle_connection 0.37% 0.00% :10979 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :10979 mysqld [.] lex_start(THD*) 0.37% 0.00% :10979 mysqld [.] LEX::new_top_level_query() 0.37% 0.00% :10979 mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% :10979 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% :10979 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :10979 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :10979 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :10979 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :10979 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.00% :11023 libpthread-2.17.so [.] start_thread 0.37% 0.00% :11023 mysqld [.] pfs_spawn_thread 0.37% 0.00% :11023 mysqld [.] handle_connection 0.37% 0.00% :11023 mysqld [.] do_command(THD*) 0.37% 0.00% :11023 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :11023 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :11023 mysqld [.] my_net_read(NET*) 0.37% 0.00% :11023 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :11023 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :11023 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :11023 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :11023 libc-2.17.so [.] ppoll 0.37% 0.00% :11023 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :11023 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :11023 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :11023 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :11023 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :11023 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :11023 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :11023 [kernel.kallsyms] [k] schedule 0.37% 0.00% :11023 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :11088 libpthread-2.17.so [.] start_thread 0.37% 0.00% :11088 mysqld [.] pfs_spawn_thread 0.37% 0.00% :11088 mysqld [.] handle_connection 0.37% 0.00% :11242 mysqld [.] do_command(THD*) 0.37% 0.00% :11242 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :11242 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :11242 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :11242 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :11242 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :11242 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :11242 mysqld [.] THD::~THD() 0.37% 0.00% :11242 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.00% :11242 mysqld [.] THD::~THD() 0.37% 0.00% :11242 mysqld [.] Protocol_classic::net_store_data_with_conversion(unsigned char const*, unsigned long, CHARSET_INFO const*, CHARSET_INFO const*) 0.37% 0.00% :11242 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :11518 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :11518 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :11518 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :11518 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :11518 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :11518 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :11518 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :11518 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :11518 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :11518 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :11518 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :11518 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :11518 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :11518 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :11518 [unknown] [.] 0x00000000801f0fc7 0.37% 0.00% :11518 [kernel.kallsyms] [k] _raw_spin_lock 0.37% 0.00% :11518 libstdc++.so.6.0.19 [.] virtual thunk to std::basic_istream >::~basic_istream() 0.37% 0.00% :11518 [kernel.kallsyms] [k] queued_spin_lock_slowpath 0.37% 0.00% :11518 [unknown] [.] 0x0000000000000006 0.37% 0.00% :11628 libpthread-2.17.so [.] start_thread 0.37% 0.00% :11628 mysqld [.] pfs_spawn_thread 0.37% 0.00% :11628 mysqld [.] handle_connection 0.37% 0.00% :11628 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :11628 mysqld [.] check_connection(THD*) 0.37% 0.00% :11628 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :11628 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :11628 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :11628 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :11628 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :11628 mysqld [.] find_mpvio_user(THD*, MPVIO_EXT*) 0.37% 0.00% :11628 mysqld [.] Acl_restrictions::find_restrictions(ACL_USER const*) const 0.37% 0.00% :1169 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1169 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1169 mysqld [.] handle_connection 0.37% 0.00% :1169 mysqld [.] do_command(THD*) 0.37% 0.00% :1169 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :1169 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :1169 mysqld [.] my_net_read(NET*) 0.37% 0.00% :1169 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :1169 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :1169 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :1169 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :1169 libc-2.17.so [.] ppoll 0.37% 0.00% :1169 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :1169 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :1169 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :1169 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :1169 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :1169 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :1169 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :1169 [kernel.kallsyms] [k] schedule 0.37% 0.00% :11946 libpthread-2.17.so [.] start_thread 0.37% 0.00% :11946 mysqld [.] pfs_spawn_thread 0.37% 0.00% :11946 mysqld [.] handle_connection 0.37% 0.00% :11946 mysqld [.] THD::release_resources() 0.37% 0.00% :11946 mysqld [.] THD::cleanup() 0.37% 0.00% :11946 mysqld [.] Session_sysvars_tracker::~Session_sysvars_tracker() 0.37% 0.00% :11946 mysqld [.] std::_Hashtable, std::allocator >, std::pair, std::allocator > const, std::unique_ptr >, Malloc_allocator, std::allocator > const, std::unique_ptr > >, std::__detail::_Select1st, Collation_key_equal, Collation_hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable() 0.37% 0.00% :11946 mysqld [.] std::_Hashtable, std::allocator >, std::pair, std::allocator > const, std::unique_ptr >, Malloc_allocator, std::allocator > const, std::unique_ptr > >, std::__detail::_Select1st, Collation_key_equal, Collation_hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear() 0.37% 0.00% :12729 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :12729 mysqld [.] check_connection(THD*) 0.37% 0.00% :12729 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :12729 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :12729 mysqld [.] dd::mdl_lock_schema(THD*, char const*, enum_mdl_duration, MDL_ticket**) 0.37% 0.00% :12729 mysqld [.] MDL_context::acquire_lock(MDL_request*, unsigned long) 0.37% 0.00% :12729 mysqld [.] do_command(THD*) 0.37% 0.00% :12729 mysqld [.] MDL_context::try_acquire_lock_impl(MDL_request*, MDL_ticket**) 0.37% 0.00% :12729 mysqld [.] lf_hash_search(LF_HASH*, LF_PINS*, void const*, unsigned int) 0.37% 0.00% :12729 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :12950 libpthread-2.17.so [.] start_thread 0.37% 0.00% :12950 mysqld [.] pfs_spawn_thread 0.37% 0.00% :12950 mysqld [.] handle_connection 0.37% 0.00% :12950 mysqld [.] do_command(THD*) 0.37% 0.00% :12950 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :12950 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :12950 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :12950 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :12950 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :12950 mysqld [.] show_slave_status_send_data(THD*, Master_info*, char*, char*) 0.37% 0.00% :13027 libpthread-2.17.so [.] start_thread 0.37% 0.00% :13027 mysqld [.] pfs_spawn_thread 0.37% 0.00% :13027 mysqld [.] handle_connection 0.37% 0.00% :13027 mysqld [.] do_command(THD*) 0.37% 0.00% :13027 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :13027 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :13027 mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) 0.37% 0.00% :13027 mysqld [.] pfs_digest_end_v2(PSI_digest_locker*, sql_digest_storage const*) 0.37% 0.00% :13027 mysqld [.] SHA_EVP256(unsigned char const*, unsigned long, unsigned char*) 0.37% 0.00% :13027 libcrypto.so.1.1 [.] EVP_DigestFinal_ex 0.37% 0.00% :13027 libcrypto.so.1.1 [.] final256 0.37% 0.00% :13127 libpthread-2.17.so [.] start_thread 0.37% 0.00% :13127 mysqld [.] pfs_spawn_thread 0.37% 0.00% :13127 mysqld [.] handle_connection 0.37% 0.00% :13127 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.37% 0.00% :13127 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :13127 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :13127 [kernel.kallsyms] [k] __x64_sys_futex 0.37% 0.00% :13127 [kernel.kallsyms] [k] do_futex 0.37% 0.00% :13127 [kernel.kallsyms] [k] futex_wait 0.37% 0.00% :13127 [kernel.kallsyms] [k] futex_wait_queue_me 0.37% 0.00% :13127 [kernel.kallsyms] [k] schedule 0.37% 0.00% :13127 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :13127 [kernel.kallsyms] [k] deactivate_task 0.37% 0.00% :1313 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1313 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1313 mysqld [.] handle_connection 0.37% 0.00% :1313 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :1313 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :1313 mysqld [.] THD::THD(bool) 0.37% 0.00% :13204 libpthread-2.17.so [.] start_thread 0.37% 0.00% :13204 mysqld [.] pfs_spawn_thread 0.37% 0.00% :13204 mysqld [.] handle_connection 0.37% 0.00% :13204 mysqld [.] pfs_delete_current_thread_vc() 0.37% 0.00% :13204 mysqld [.] aggregate_thread(PFS_thread*, PFS_account*, PFS_user*, PFS_host*) 0.37% 0.00% :13303 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :13303 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :13303 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :13303 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :13303 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :13303 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :13303 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :13303 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :13303 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :13303 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :13303 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :13303 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :13303 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :13303 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :13303 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :13303 [kernel.kallsyms] [k] activate_task 0.37% 0.00% :13303 [kernel.kallsyms] [k] enqueue_task_fair 0.37% 0.00% :13548 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :13548 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :13548 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :13548 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :13548 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :13548 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :13548 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :13570 libpthread-2.17.so [.] start_thread 0.37% 0.00% :13570 mysqld [.] pfs_spawn_thread 0.37% 0.00% :13570 mysqld [.] handle_connection 0.37% 0.00% :13570 mysqld [.] do_command(THD*) 0.37% 0.00% :13570 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :13834 libpthread-2.17.so [.] start_thread 0.37% 0.00% :13834 mysqld [.] pfs_spawn_thread 0.37% 0.00% :13834 mysqld [.] handle_connection 0.37% 0.00% :13834 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :13834 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :14055 libpthread-2.17.so [.] start_thread 0.37% 0.00% :14055 mysqld [.] pfs_spawn_thread 0.37% 0.00% :14055 mysqld [.] handle_connection 0.37% 0.00% :14055 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :14055 mysqld [.] check_connection(THD*) 0.37% 0.00% :14055 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :14055 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :14055 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :14055 mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% :14055 libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% :14055 libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% :14055 libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% :14055 libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% :14055 libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% :14055 libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% :14055 libcrypto.so.1.1 [.] EVP_CipherUpdate 0.37% 0.00% :14055 libcrypto.so.1.1 [.] EVP_EncryptUpdate 0.37% 0.00% :14055 libcrypto.so.1.1 [.] evp_EncryptDecryptUpdate 0.37% 0.00% :14375 libpthread-2.17.so [.] start_thread 0.37% 0.00% :14375 mysqld [.] pfs_spawn_thread 0.37% 0.00% :14375 mysqld [.] handle_connection 0.37% 0.00% :14375 mysqld [.] do_command(THD*) 0.37% 0.00% :14375 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :14375 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :14375 mysqld [.] my_net_read(NET*) 0.37% 0.00% :14375 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :14375 mysqld [.] net_after_header_psi(NET*, void*, unsigned long, bool) 0.37% 0.00% :14395 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :14395 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :14395 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :14395 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :14395 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :14395 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :14395 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :14395 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :14395 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :14395 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :14395 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :14395 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :14395 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :14395 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :14395 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :14395 [kernel.kallsyms] [k] ttwu_do_wakeup 0.37% 0.00% :14395 [kernel.kallsyms] [k] check_preempt_curr 0.37% 0.00% :14395 [kernel.kallsyms] [k] resched_curr 0.37% 0.00% :14395 [kernel.kallsyms] [k] native_smp_send_reschedule 0.37% 0.00% :14395 [kernel.kallsyms] [k] x2apic_send_IPI 0.37% 0.00% :14408 libpthread-2.17.so [.] start_thread 0.37% 0.00% :14408 mysqld [.] pfs_spawn_thread 0.37% 0.00% :14408 mysqld [.] handle_connection 0.37% 0.00% :14408 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :14408 mysqld [.] check_connection(THD*) 0.37% 0.00% :14408 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :14408 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :14408 mysqld [.] bool dd::cache::Dictionary_client::acquire(std::basic_string, Stateless_allocator > const&, dd::Schema const**) 0.37% 0.00% :1447 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1447 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1447 mysqld [.] handle_connection 0.37% 0.00% :1447 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :1447 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :1447 mysqld [.] THD::THD(bool) 0.37% 0.00% :14573 libpthread-2.17.so [.] start_thread 0.37% 0.00% :14573 mysqld [.] pfs_spawn_thread 0.37% 0.00% :14573 mysqld [.] handle_connection 0.37% 0.00% :14573 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :14573 mysqld [.] check_connection(THD*) 0.37% 0.00% :14573 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :14573 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :14573 mysqld [.] bool dd::cache::Dictionary_client::acquire(std::basic_string, Stateless_allocator > const&, dd::Schema const**) 0.37% 0.00% :14584 [unknown] [.] 0000000000000000 0.37% 0.00% :15036 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15036 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15036 mysqld [.] handle_connection 0.37% 0.00% :15036 mysqld [.] do_command(THD*) 0.37% 0.00% :15036 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :15036 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :15036 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :15036 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :15036 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :15036 mysqld [.] show_slave_status_metadata(List&, int, int) 0.37% 0.00% :15036 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :15036 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :15036 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :15036 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :15115 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :15115 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :15115 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :15115 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :15115 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :15115 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :15115 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :15115 [kernel.kallsyms] [k] sock_alloc_send_pskb 0.37% 0.00% :15115 [kernel.kallsyms] [k] alloc_skb_with_frags 0.37% 0.00% :15115 [kernel.kallsyms] [k] __alloc_skb 0.37% 0.00% :15115 [kernel.kallsyms] [k] __kmalloc_reserve.isra.58 0.37% 0.00% :15115 [kernel.kallsyms] [k] __kmalloc_node_track_caller 0.37% 0.00% :15177 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15177 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15177 mysqld [.] handle_connection 0.37% 0.00% :15177 mysqld [.] THD::~THD() 0.37% 0.00% :15199 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15199 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15199 mysqld [.] handle_connection 0.37% 0.00% :15199 mysqld [.] do_command(THD*) 0.37% 0.00% :15324 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15324 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15324 mysqld [.] handle_connection 0.37% 0.00% :15375 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15375 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15375 mysqld [.] handle_connection 0.37% 0.00% :15375 mysqld [.] do_command(THD*) 0.37% 0.00% :15375 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :15375 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :15375 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :15375 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :15375 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :15390 [unknown] [.] 0000000000000000 0.37% 0.00% :15453 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15453 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15453 mysqld [.] handle_connection 0.37% 0.00% :15453 mysqld [.] do_command(THD*) 0.37% 0.00% :15453 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :1567 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1567 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1567 mysqld [.] handle_connection 0.37% 0.00% :1567 mysqld [.] do_command(THD*) 0.37% 0.00% :1567 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :1567 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :1567 mysqld [.] my_net_read(NET*) 0.37% 0.00% :1567 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :1567 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :1567 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :1567 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :1567 libc-2.17.so [.] ppoll 0.37% 0.00% :1567 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :1567 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :1567 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :1567 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :1567 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :1567 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :1567 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :1567 [kernel.kallsyms] [k] hrtimer_start_range_ns 0.37% 0.00% :15733 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15733 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15733 mysqld [.] handle_connection 0.37% 0.00% :15733 mysqld [.] pfs_delete_current_thread_vc() 0.37% 0.00% :15744 libpthread-2.17.so [.] start_thread 0.37% 0.00% :15744 mysqld [.] pfs_spawn_thread 0.37% 0.00% :15744 mysqld [.] handle_connection 0.37% 0.00% :15744 mysqld [.] close_connection(THD*, unsigned int, bool, bool) 0.37% 0.00% :15744 mysqld [.] THD::disconnect(bool) 0.37% 0.00% :15744 mysqld [.] THD::shutdown_active_vio() 0.37% 0.00% :15744 libpthread-2.17.so [.] __libc_close 0.37% 0.00% :15744 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :15744 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :15744 [kernel.kallsyms] [k] exit_to_usermode_loop 0.37% 0.00% :15744 [kernel.kallsyms] [k] task_work_run 0.37% 0.00% :15744 [kernel.kallsyms] [k] ____fput 0.37% 0.00% :15744 [kernel.kallsyms] [k] __fput 0.37% 0.00% :15744 [kernel.kallsyms] [k] sock_close 0.37% 0.00% :15744 [kernel.kallsyms] [k] __sock_release 0.37% 0.00% :15744 [kernel.kallsyms] [k] unix_release 0.37% 0.00% :15744 [kernel.kallsyms] [k] unix_release_sock 0.37% 0.00% :15744 [kernel.kallsyms] [k] __wake_up 0.37% 0.00% :16092 mysqld [.] do_command(THD*) 0.37% 0.00% :16092 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :16569 libpthread-2.17.so [.] start_thread 0.37% 0.00% :16569 mysqld [.] pfs_spawn_thread 0.37% 0.00% :16569 mysqld [.] handle_connection 0.37% 0.00% :16569 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.37% 0.00% :16569 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :16569 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :16569 [kernel.kallsyms] [k] __x64_sys_futex 0.37% 0.00% :16569 [kernel.kallsyms] [k] do_futex 0.37% 0.00% :16569 [kernel.kallsyms] [k] futex_wait 0.37% 0.00% :16569 [kernel.kallsyms] [k] futex_wait_queue_me 0.37% 0.00% :16569 [kernel.kallsyms] [k] schedule 0.37% 0.00% :16569 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :16569 [kernel.kallsyms] [k] finish_task_switch 0.37% 0.00% :16569 [kernel.kallsyms] [k] apic_timer_interrupt 0.37% 0.00% :16569 [kernel.kallsyms] [k] smp_apic_timer_interrupt 0.37% 0.00% :16569 [kernel.kallsyms] [k] irq_exit 0.37% 0.00% :16569 [kernel.kallsyms] [k] __do_softirq 0.37% 0.00% :16569 [kernel.kallsyms] [k] rcu_core_si 0.37% 0.00% :16569 [kernel.kallsyms] [k] rcu_core 0.37% 0.00% :16569 [kernel.kallsyms] [k] rcu_do_batch 0.37% 0.00% :16569 [kernel.kallsyms] [k] free_event_rcu 0.37% 0.00% :16599 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :16599 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :16599 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :16599 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :16599 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :16599 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :16599 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :16599 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :16599 [kernel.kallsyms] [k] consume_skb 0.37% 0.00% :16599 [kernel.kallsyms] [k] skb_release_all 0.37% 0.00% :16599 [kernel.kallsyms] [k] skb_release_head_state 0.37% 0.00% :16599 [kernel.kallsyms] [k] unix_destruct_scm 0.37% 0.00% :16599 [kernel.kallsyms] [k] sock_wfree 0.37% 0.00% :16599 [kernel.kallsyms] [k] unix_write_space 0.37% 0.00% :16599 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :16599 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :16599 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :16599 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :16599 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :16599 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :16599 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :16599 [kernel.kallsyms] [k] ttwu_do_wakeup 0.37% 0.00% :16599 [kernel.kallsyms] [k] check_preempt_curr 0.37% 0.00% :16599 [kernel.kallsyms] [k] resched_curr 0.37% 0.00% :16599 [kernel.kallsyms] [k] native_smp_send_reschedule 0.37% 0.00% :16599 [kernel.kallsyms] [k] x2apic_send_IPI 0.37% 0.00% :16680 libpthread-2.17.so [.] start_thread 0.37% 0.00% :16680 mysqld [.] pfs_spawn_thread 0.37% 0.00% :16680 mysqld [.] handle_connection 0.37% 0.00% :16680 mysqld [.] do_command(THD*) 0.37% 0.00% :16680 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :16680 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :16680 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :16680 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :16680 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :16680 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :16680 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.00% :16720 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :16720 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :16720 [kernel.kallsyms] [k] __x64_sys_exit 0.37% 0.00% :16720 [kernel.kallsyms] [k] do_exit 0.37% 0.00% :16720 [kernel.kallsyms] [k] perf_event_exit_task 0.37% 0.00% :16720 [kernel.kallsyms] [k] task_ctx_sched_out 0.37% 0.00% :16720 [kernel.kallsyms] [k] ctx_sched_out 0.37% 0.00% :16720 [kernel.kallsyms] [k] perf_pmu_disable 0.37% 0.00% :16720 [kernel.kallsyms] [k] x86_pmu_disable 0.37% 0.00% :16720 [kernel.kallsyms] [k] amd_pmu_disable_all 0.37% 0.00% :16720 [kernel.kallsyms] [k] x86_pmu_disable_all 0.37% 0.00% :16811 libpthread-2.17.so [.] start_thread 0.37% 0.00% :16811 mysqld [.] pfs_spawn_thread 0.37% 0.00% :16811 mysqld [.] handle_connection 0.37% 0.00% :16811 mysqld [.] THD::release_resources() 0.37% 0.00% :16841 libpthread-2.17.so [.] start_thread 0.37% 0.00% :16841 mysqld [.] pfs_spawn_thread 0.37% 0.00% :16841 mysqld [.] handle_connection 0.37% 0.00% :16841 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :16841 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :16841 mysqld [.] THD::THD(bool) 0.37% 0.00% :17241 libpthread-2.17.so [.] start_thread 0.37% 0.00% :17241 mysqld [.] pfs_spawn_thread 0.37% 0.00% :17241 mysqld [.] handle_connection 0.37% 0.00% :17241 mysqld [.] do_command(THD*) 0.37% 0.00% :17241 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :17241 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :17241 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :17241 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :17241 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :17241 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :1725 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1725 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1725 mysqld [.] handle_connection 0.37% 0.00% :1725 mysqld [.] do_command(THD*) 0.37% 0.00% :1725 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :1725 mysqld [.] pfs_end_statement_v2(PSI_statement_locker*, void*) 0.37% 0.00% :1725 mysqld [.] find_or_create_digest(PFS_thread*, sql_digest_storage const*, char const*, unsigned int) 0.37% 0.00% :1725 mysqld [.] lf_hash_search(LF_HASH*, LF_PINS*, void const*, unsigned int) 0.37% 0.00% :1736 libpthread-2.17.so [.] start_thread 0.37% 0.00% :1736 mysqld [.] pfs_spawn_thread 0.37% 0.00% :1736 mysqld [.] handle_connection 0.37% 0.00% :1736 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :1736 mysqld [.] check_connection(THD*) 0.37% 0.00% :1736 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :17558 libpthread-2.17.so [.] start_thread 0.37% 0.00% :17558 mysqld [.] pfs_spawn_thread 0.37% 0.00% :17558 mysqld [.] handle_connection 0.37% 0.00% :17558 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :17558 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :17558 mysqld [.] THD::THD(bool) 0.37% 0.00% :17810 libpthread-2.17.so [.] start_thread 0.37% 0.00% :17810 mysqld [.] pfs_spawn_thread 0.37% 0.00% :17810 mysqld [.] handle_connection 0.37% 0.00% :17810 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :17810 mysqld [.] check_connection(THD*) 0.37% 0.00% :17810 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :17810 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :17810 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :17810 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :17810 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :17810 mysqld [.] find_mpvio_user(THD*, MPVIO_EXT*) 0.37% 0.00% :17810 mysqld [.] Acl_cache_lock_guard::lock(bool) [clone .part.55] 0.37% 0.00% :17810 mysqld [.] MDL_context::acquire_lock(MDL_request*, unsigned long) 0.37% 0.00% :17810 mysqld [.] MDL_context::try_acquire_lock_impl(MDL_request*, MDL_ticket**) 0.37% 0.00% :17810 mysqld [.] pfs_create_metadata_lock_v1(void*, MDL_key const*, int, int, int, char const*, unsigned int) 0.37% 0.00% :17889 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :17889 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :17889 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :17889 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :17889 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :17889 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :17889 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :17889 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :17889 [kernel.kallsyms] [k] consume_skb 0.37% 0.00% :17889 [kernel.kallsyms] [k] skb_release_all 0.37% 0.00% :17889 [kernel.kallsyms] [k] skb_release_head_state 0.37% 0.00% :17889 [kernel.kallsyms] [k] unix_destruct_scm 0.37% 0.00% :17889 [kernel.kallsyms] [k] sock_wfree 0.37% 0.00% :17889 [kernel.kallsyms] [k] unix_write_space 0.37% 0.00% :17889 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :17889 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :17889 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :17889 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :17889 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :17889 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :18019 libpthread-2.17.so [.] start_thread 0.37% 0.00% :18019 mysqld [.] pfs_spawn_thread 0.37% 0.00% :18019 mysqld [.] handle_connection 0.37% 0.00% :18019 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :18019 mysqld [.] check_connection(THD*) 0.37% 0.00% :18019 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :18019 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :18019 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :18019 mysqld [.] server_mpvio_write_packet 0.37% 0.00% :18229 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :18229 mysqld [.] check_connection(THD*) 0.37% 0.00% :18229 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :18229 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :18229 mysqld [.] THD::release_resources() 0.37% 0.00% :18229 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :18229 mysqld [.] Protocol_classic::end_net() 0.37% 0.00% :18229 mysqld [.] net_end(NET*) 0.37% 0.00% :18229 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :18229 mysqld [.] my_free(void*) 0.37% 0.00% :18229 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :18242 libpthread-2.17.so [.] start_thread 0.37% 0.00% :18242 mysqld [.] pfs_spawn_thread 0.37% 0.00% :18242 mysqld [.] handle_connection 0.37% 0.00% :18242 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :18242 mysqld [.] check_connection(THD*) 0.37% 0.00% :18242 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :18242 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :18242 mysqld [.] my_strndup(unsigned int, char const*, unsigned long, int) 0.37% 0.00% :18242 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :18242 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :18242 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.00% :18527 libpthread-2.17.so [.] start_thread 0.37% 0.00% :18527 mysqld [.] pfs_spawn_thread 0.37% 0.00% :18527 mysqld [.] handle_connection 0.37% 0.00% :18527 mysqld [.] do_command(THD*) 0.37% 0.00% :18527 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :18527 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :18527 mysqld [.] my_net_read(NET*) 0.37% 0.00% :18527 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :18527 mysqld [.] net_after_header_psi(NET*, void*, unsigned long, bool) 0.37% 0.00% :18614 libpthread-2.17.so [.] start_thread 0.37% 0.00% :18614 mysqld [.] pfs_spawn_thread 0.37% 0.00% :18614 mysqld [.] handle_connection 0.37% 0.00% :18614 mysqld [.] do_command(THD*) 0.37% 0.00% :18614 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :18614 [kernel.kallsyms] [k] apic_timer_interrupt 0.37% 0.00% :18614 [kernel.kallsyms] [k] smp_apic_timer_interrupt 0.37% 0.00% :18614 [kernel.kallsyms] [k] irq_exit 0.37% 0.00% :18614 [kernel.kallsyms] [k] __do_softirq 0.37% 0.00% :18614 [kernel.kallsyms] [k] rcu_core_si 0.37% 0.00% :18614 [kernel.kallsyms] [k] rcu_core 0.37% 0.00% :18749 libpthread-2.17.so [.] start_thread 0.37% 0.00% :18749 mysqld [.] pfs_spawn_thread 0.37% 0.00% :18749 mysqld [.] handle_connection 0.37% 0.00% :18749 mysqld [.] do_command(THD*) 0.37% 0.00% :18749 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :18749 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :18749 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :18749 mysqld [.] trans_commit_stmt(THD*, bool) 0.37% 0.00% :18749 mysqld [.] thd_get_ha_data 0.37% 0.00% :18749 [kernel.kallsyms] [k] apic_timer_interrupt 0.37% 0.00% :18749 [kernel.kallsyms] [k] smp_apic_timer_interrupt 0.37% 0.00% :18749 [kernel.kallsyms] [k] kvm_guest_apic_eoi_write 0.37% 0.00% :18889 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :18889 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :18889 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :18889 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :18889 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :18889 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :18889 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :18889 [kernel.kallsyms] [k] skb_copy_datagram_from_iter 0.37% 0.00% :18988 mysqld [.] do_command(THD*) 0.37% 0.00% :18988 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :18988 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :18988 mysqld [.] my_net_read(NET*) 0.37% 0.00% :18988 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :18988 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :18988 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :18988 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :18988 libc-2.17.so [.] ppoll 0.37% 0.00% :18988 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :18988 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :18988 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :18988 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :18988 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :18988 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :18988 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :18988 [kernel.kallsyms] [k] schedule 0.37% 0.00% :18988 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :18988 [kernel.kallsyms] [k] deactivate_task 0.37% 0.00% :18988 mysqld [.] THD::~THD() 0.37% 0.00% :18988 [kernel.kallsyms] [k] dequeue_task_fair 0.37% 0.00% :18988 mysqld [.] THD::~THD() 0.37% 0.00% :19068 libpthread-2.17.so [.] start_thread 0.37% 0.00% :19068 mysqld [.] pfs_spawn_thread 0.37% 0.00% :19068 mysqld [.] handle_connection 0.37% 0.00% :19068 mysqld [.] do_command(THD*) 0.37% 0.00% :19068 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :19068 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :19068 mysqld [.] my_net_read(NET*) 0.37% 0.00% :19068 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :19068 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :1918 [unknown] [.] 0x00007fd0d000dee0 0.37% 0.00% :19197 libpthread-2.17.so [.] start_thread 0.37% 0.00% :19197 mysqld [.] pfs_spawn_thread 0.37% 0.00% :19197 mysqld [.] handle_connection 0.37% 0.00% :19197 mysqld [.] do_command(THD*) 0.37% 0.00% :19197 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :19197 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :19197 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :19197 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :19197 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :19197 mysqld [.] show_slave_status_metadata(List&, int, int) 0.37% 0.00% :19197 mysqld [.] Item_empty_string::Item_empty_string(char const*, unsigned long, CHARSET_INFO const*) 0.37% 0.00% :19366 libpthread-2.17.so [.] start_thread 0.37% 0.00% :19366 mysqld [.] pfs_spawn_thread 0.37% 0.00% :19366 mysqld [.] handle_connection 0.37% 0.00% :19366 mysqld [.] do_command(THD*) 0.37% 0.00% :19366 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :19406 libpthread-2.17.so [.] start_thread 0.37% 0.00% :19406 mysqld [.] pfs_spawn_thread 0.37% 0.00% :19406 mysqld [.] handle_connection 0.37% 0.00% :19406 mysqld [.] THD::~THD() 0.37% 0.00% :19406 mysqld [.] THD::~THD() 0.37% 0.00% :19406 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :19539 libpthread-2.17.so [.] start_thread 0.37% 0.00% :19539 mysqld [.] pfs_spawn_thread 0.37% 0.00% :19539 mysqld [.] handle_connection 0.37% 0.00% :19902 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :19902 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :19902 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :19902 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :19902 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :19902 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :19902 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :19902 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :19902 [kernel.kallsyms] [k] consume_skb 0.37% 0.00% :19902 [kernel.kallsyms] [k] skb_release_all 0.37% 0.00% :19902 [kernel.kallsyms] [k] skb_release_head_state 0.37% 0.00% :19902 [kernel.kallsyms] [k] unix_destruct_scm 0.37% 0.00% :19902 [kernel.kallsyms] [k] sock_wfree 0.37% 0.00% :19902 [kernel.kallsyms] [k] unix_write_space 0.37% 0.00% :19902 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :19902 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :19902 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :19902 libpthread-2.17.so [.] start_thread 0.37% 0.00% :19902 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :19902 mysqld [.] pfs_spawn_thread 0.37% 0.00% :19902 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :19902 mysqld [.] handle_connection 0.37% 0.00% :19902 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :19902 mysqld [.] do_command(THD*) 0.37% 0.00% :19902 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :19902 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :20082 libpthread-2.17.so [.] start_thread 0.37% 0.00% :20082 mysqld [.] pfs_spawn_thread 0.37% 0.00% :20082 mysqld [.] handle_connection 0.37% 0.00% :20082 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :20082 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :20082 mysqld [.] THD::THD(bool) 0.37% 0.00% :20230 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :20230 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :20230 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :20230 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :20230 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :20230 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :20230 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :20230 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :20230 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :20230 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :20230 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :20230 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :20230 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :20230 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :20230 [kernel.kallsyms] [k] select_task_rq_fair 0.37% 0.00% :20230 [kernel.kallsyms] [k] select_idle_sibling 0.37% 0.00% :20373 libpthread-2.17.so [.] start_thread 0.37% 0.00% :20373 mysqld [.] pfs_spawn_thread 0.37% 0.00% :20373 mysqld [.] handle_connection 0.37% 0.00% :20373 mysqld [.] do_command(THD*) 0.37% 0.00% :20373 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :20373 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :20373 mysqld [.] lex_start(THD*) 0.37% 0.00% :20373 mysqld [.] LEX::new_top_level_query() 0.37% 0.00% :20373 mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% :20373 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% :20373 mysqld [.] SELECT_LEX::SELECT_LEX(MEM_ROOT*, Item*, Item*) 0.37% 0.00% :20373 mysqld [.] std::_Deque_base >::_M_initialize_map(unsigned long) 0.37% 0.00% :20373 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :20373 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :20373 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :20373 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :20456 mysqld [.] do_command(THD*) 0.37% 0.00% :20456 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :20456 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :20456 mysqld [.] my_net_read(NET*) 0.37% 0.00% :20456 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :20456 mysqld [.] net_after_header_psi(NET*, void*, unsigned long, bool) 0.37% 0.00% :20456 mysqld [.] THD::release_resources() 0.37% 0.00% :20472 libpthread-2.17.so [.] start_thread 0.37% 0.00% :20472 mysqld [.] pfs_spawn_thread 0.37% 0.00% :20472 mysqld [.] handle_connection 0.37% 0.00% :20472 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :20472 mysqld [.] check_connection(THD*) 0.37% 0.00% :20472 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :20472 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :20472 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :20472 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :20472 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :20472 mysqld [.] find_mpvio_user(THD*, MPVIO_EXT*) 0.37% 0.00% :20472 mysqld [.] DB_restrictions::~DB_restrictions() 0.37% 0.00% :20588 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :20588 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :20588 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :20588 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :20588 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :20588 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :20588 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :20588 [kernel.kallsyms] [k] sock_alloc_send_pskb 0.37% 0.00% :20588 [kernel.kallsyms] [k] alloc_skb_with_frags 0.37% 0.00% :20588 [kernel.kallsyms] [k] __alloc_skb 0.37% 0.00% :20588 [kernel.kallsyms] [k] kmem_cache_alloc_node 0.37% 0.00% :20727 libpthread-2.17.so [.] start_thread 0.37% 0.00% :20727 mysqld [.] pfs_spawn_thread 0.37% 0.00% :20727 mysqld [.] handle_connection 0.37% 0.00% :20727 mysqld [.] do_command(THD*) 0.37% 0.00% :20727 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :20727 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :20727 mysqld [.] invoke_pre_parse_rewrite_plugins(THD*) 0.37% 0.00% :20920 libpthread-2.17.so [.] start_thread 0.37% 0.00% :20920 mysqld [.] pfs_spawn_thread 0.37% 0.00% :20920 mysqld [.] handle_connection 0.37% 0.00% :20920 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :20920 mysqld [.] check_connection(THD*) 0.37% 0.00% :20920 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :20920 mysqld [.] set_system_user_flag(THD*, bool) 0.37% 0.00% :20920 mysqld [.] Security_context::has_global_grant(char const*, unsigned long) 0.37% 0.00% :20920 mysqld [.] Acl_cache_lock_guard::unlock() 0.37% 0.00% :20920 mysqld [.] MDL_context::release_locks(MDL_release_locks_visitor*) 0.37% 0.00% :20920 mysqld [.] MDL_context::release_lock(enum_mdl_duration, MDL_ticket*) 0.37% 0.00% :2099 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2099 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2099 mysqld [.] handle_connection 0.37% 0.00% :2099 mysqld [.] do_command(THD*) 0.37% 0.00% :2099 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :2099 mysqld [.] alloc_query(THD*, char const*, unsigned long) 0.37% 0.00% :21208 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21208 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21208 mysqld [.] handle_connection 0.37% 0.00% :21208 mysqld [.] do_command(THD*) 0.37% 0.00% :21208 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :21208 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :21208 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :21208 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :21208 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :21208 mysqld [.] Gtid_set::to_string(char**, bool, Gtid_set::String_format const*) const 0.37% 0.00% :21257 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21257 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21257 mysqld [.] handle_connection 0.37% 0.00% :21257 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :21257 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :21301 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21301 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21301 mysqld [.] handle_connection 0.37% 0.00% :21301 mysqld [.] THD::release_resources() 0.37% 0.00% :21301 mysqld [.] THD::cleanup() 0.37% 0.00% :21301 mysqld [.] Session_sysvars_tracker::~Session_sysvars_tracker() 0.37% 0.00% :21301 mysqld [.] std::_Hashtable, std::allocator >, std::pair, std::allocator > const, std::unique_ptr >, Malloc_allocator, std::allocator > const, std::unique_ptr > >, std::__detail::_Select1st, Collation_key_equal, Collation_hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable() 0.37% 0.00% :21307 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21307 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21307 mysqld [.] handle_connection 0.37% 0.00% :21307 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :21307 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :21307 mysqld [.] my_net_init(NET*, Vio*) 0.37% 0.00% :21307 libc-2.17.so [.] __GI___setsockopt 0.37% 0.00% :21307 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :21307 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :21307 [kernel.kallsyms] [k] __x64_sys_setsockopt 0.37% 0.00% :21307 [kernel.kallsyms] [k] __sys_setsockopt 0.37% 0.00% :21307 [kernel.kallsyms] [k] sockfd_lookup_light 0.37% 0.00% :21307 [kernel.kallsyms] [k] __fdget 0.37% 0.00% :21307 [kernel.kallsyms] [k] __fget_light 0.37% 0.00% :2137 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2137 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2137 mysqld [.] handle_connection 0.37% 0.00% :2137 mysqld [.] THD::~THD() 0.37% 0.00% :2137 mysqld [.] THD::~THD() 0.37% 0.00% :2137 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :21488 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21488 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21488 mysqld [.] handle_connection 0.37% 0.00% :21488 mysqld [.] do_command(THD*) 0.37% 0.00% :21488 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :21488 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :21488 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :21488 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :21488 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :21488 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :21532 mysqld [.] check_connection(THD*) 0.37% 0.00% :21532 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :21532 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :21532 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :21532 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :21532 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :21532 mysqld [.] my_net_read(NET*) 0.37% 0.00% :21532 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :21532 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :21532 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :21532 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :21532 libc-2.17.so [.] ppoll 0.37% 0.00% :21532 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :21532 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :21532 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :21532 mysqld [.] lex_start(THD*) 0.37% 0.00% :21532 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :21532 mysqld [.] LEX::new_top_level_query() 0.37% 0.00% :21532 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :21532 mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% :21532 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :21532 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% :21532 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :21532 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :21532 [kernel.kallsyms] [k] hrtimer_start_range_ns 0.37% 0.00% :21532 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :21532 [kernel.kallsyms] [k] enqueue_hrtimer 0.37% 0.00% :21532 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :21670 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21670 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21670 mysqld [.] handle_connection 0.37% 0.00% :21670 mysqld [.] do_command(THD*) 0.37% 0.00% :21697 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21697 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21697 mysqld [.] handle_connection 0.37% 0.00% :21697 mysqld [.] do_command(THD*) 0.37% 0.00% :21697 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :21697 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :21697 mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) 0.37% 0.00% :21697 mysqld [.] THD::sql_parser() 0.37% 0.00% :21972 libpthread-2.17.so [.] start_thread 0.37% 0.00% :21972 mysqld [.] pfs_spawn_thread 0.37% 0.00% :21972 mysqld [.] handle_connection 0.37% 0.00% :21972 mysqld [.] do_command(THD*) 0.37% 0.00% :21972 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :21972 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :21972 mysqld [.] my_net_read(NET*) 0.37% 0.00% :22005 libc-2.17.so [.] __madvise 0.37% 0.00% :22005 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :22005 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :22005 [kernel.kallsyms] [k] __x64_sys_madvise 0.37% 0.00% :22005 [kernel.kallsyms] [k] __do_sys_madvise 0.37% 0.00% :22005 [kernel.kallsyms] [k] zap_page_range 0.37% 0.00% :22005 [kernel.kallsyms] [k] unmap_single_vma 0.37% 0.00% :22005 [kernel.kallsyms] [k] unmap_page_range 0.37% 0.00% :22016 [unknown] [.] 0x00007fd05c00e020 0.37% 0.00% :22290 libpthread-2.17.so [.] start_thread 0.37% 0.00% :22290 mysqld [.] pfs_spawn_thread 0.37% 0.00% :22290 mysqld [.] handle_connection 0.37% 0.00% :22290 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :22290 mysqld [.] check_connection(THD*) 0.37% 0.00% :22290 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :22290 mysqld [.] pfs_set_thread_account_vc(char const*, int, char const*, int) 0.37% 0.00% :22290 mysqld [.] set_thread_account(PFS_thread*) 0.37% 0.00% :22290 mysqld [.] find_or_create_account(PFS_thread*, char const*, unsigned int, char const*, unsigned int) 0.37% 0.00% :22427 libpthread-2.17.so [.] start_thread 0.37% 0.00% :22427 mysqld [.] pfs_spawn_thread 0.37% 0.00% :22427 mysqld [.] handle_connection 0.37% 0.00% :22427 mysqld [.] do_command(THD*) 0.37% 0.00% :22427 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :22427 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :22427 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :22427 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :22532 libpthread-2.17.so [.] start_thread 0.37% 0.00% :22532 mysqld [.] pfs_spawn_thread 0.37% 0.00% :22532 mysqld [.] handle_connection 0.37% 0.00% :22532 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :22532 mysqld [.] check_connection(THD*) 0.37% 0.00% :22532 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :22532 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :22532 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :22532 mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% :22532 libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% :22532 libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% :22532 libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% :22532 libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% :22532 libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% :22532 libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% :22532 libcrypto.so.1.1 [.] EVP_CipherInit_ex 0.37% 0.00% :22532 libcrypto.so.1.1 [.] EVP_CIPHER_CTX_reset 0.37% 0.00% :22532 libcrypto.so.1.1 [.] CRYPTO_free 0.37% 0.00% :22532 mysqld [.] my_free(void*) 0.37% 0.00% :22532 mysqld [.] pfs_memory_free_v1(unsigned int, unsigned long, PSI_thread*) 0.37% 0.00% :22532 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.00% :2263 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2263 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2263 mysqld [.] handle_connection 0.37% 0.00% :2263 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :2263 mysqld [.] check_connection(THD*) 0.37% 0.00% :2263 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :2263 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :2263 mysqld [.] bool dd::cache::Dictionary_client::acquire(std::basic_string, Stateless_allocator > const&, dd::Schema const**) 0.37% 0.00% :2263 mysqld [.] void dd::cache::Dictionary_client::Auto_releaser::transfer_release(dd::Schema const*) 0.37% 0.00% :2263 mysqld [.] dd::cache::Multi_map_base::remove_single_element(dd::cache::Cache_element*) 0.37% 0.00% :22680 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :22680 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :22680 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :22680 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :22680 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :22680 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :22680 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :22680 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :22680 [kernel.kallsyms] [k] consume_skb 0.37% 0.00% :22680 [kernel.kallsyms] [k] skb_release_all 0.37% 0.00% :22680 [kernel.kallsyms] [k] skb_release_head_state 0.37% 0.00% :22680 [kernel.kallsyms] [k] unix_destruct_scm 0.37% 0.00% :22680 [kernel.kallsyms] [k] sock_wfree 0.37% 0.00% :22680 [kernel.kallsyms] [k] unix_write_space 0.37% 0.00% :22680 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :22680 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :22680 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :22680 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :22680 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :22680 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :22680 [kernel.kallsyms] [k] set_task_cpu 0.37% 0.00% :22950 libpthread-2.17.so [.] start_thread 0.37% 0.00% :22950 mysqld [.] pfs_spawn_thread 0.37% 0.00% :22950 mysqld [.] handle_connection 0.37% 0.00% :22950 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :22966 libgcc_s-4.8.5-20150702.so.1 [.] 0x00007fd20a1ac5c9 0.37% 0.00% :23054 [unknown] [.] 0x0000000000000081 0.37% 0.00% :23060 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :23060 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :23060 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :23060 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :23060 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :23060 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :23060 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :23060 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :23060 [kernel.kallsyms] [k] unix_stream_read_actor 0.37% 0.00% :23060 [kernel.kallsyms] [k] skb_copy_datagram_iter 0.37% 0.00% :23060 [kernel.kallsyms] [k] __skb_datagram_iter 0.37% 0.00% :23060 [kernel.kallsyms] [k] simple_copy_to_iter 0.37% 0.00% :23060 [kernel.kallsyms] [k] _copy_to_iter 0.37% 0.00% :23341 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :23341 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :23341 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :23341 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :23341 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :23341 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :23341 mysqld [.] THD::~THD() 0.37% 0.00% :23341 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :23341 mysqld [.] pfs_delete_current_thread_vc() 0.37% 0.00% :23341 mysqld [.] THD::~THD() 0.37% 0.00% :23341 [kernel.kallsyms] [k] skb_copy_datagram_from_iter 0.37% 0.00% :23341 mysqld [.] aggregate_thread(PFS_thread*, PFS_account*, PFS_user*, PFS_host*) 0.37% 0.00% :23341 mysqld [.] my_free(void*) 0.37% 0.00% :23446 [unknown] [.] 0000000000000000 0.37% 0.00% :23463 [unknown] [.] 0000000000000000 0.37% 0.00% :23546 [unknown] [.] 0000000000000000 0.37% 0.00% :23656 libpthread-2.17.so [.] start_thread 0.37% 0.00% :23656 mysqld [.] pfs_spawn_thread 0.37% 0.00% :23656 mysqld [.] handle_connection 0.37% 0.00% :23656 mysqld [.] close_connection(THD*, unsigned int, bool, bool) 0.37% 0.00% :23656 mysqld [.] THD::disconnect(bool) 0.37% 0.00% :23656 mysqld [.] THD::shutdown_active_vio() 0.37% 0.00% :23656 libpthread-2.17.so [.] __libc_close 0.37% 0.00% :23656 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :23656 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :23656 [kernel.kallsyms] [k] exit_to_usermode_loop 0.37% 0.00% :23656 [kernel.kallsyms] [k] task_work_run 0.37% 0.00% :23656 [kernel.kallsyms] [k] ____fput 0.37% 0.00% :23656 [kernel.kallsyms] [k] __fput 0.37% 0.00% :23843 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :23843 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :23843 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :23843 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :23935 libpthread-2.17.so [.] start_thread 0.37% 0.00% :23935 mysqld [.] pfs_spawn_thread 0.37% 0.00% :23935 mysqld [.] handle_connection 0.37% 0.00% :23935 mysqld [.] do_command(THD*) 0.37% 0.00% :23935 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :23935 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :23935 mysqld [.] my_net_read(NET*) 0.37% 0.00% :23935 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :23935 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :23935 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :23935 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :24133 libpthread-2.17.so [.] start_thread 0.37% 0.00% :24133 mysqld [.] pfs_spawn_thread 0.37% 0.00% :24133 mysqld [.] handle_connection 0.37% 0.00% :24133 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :24133 mysqld [.] lex_start(THD*) 0.37% 0.00% :24133 mysqld [.] LEX::new_top_level_query() 0.37% 0.00% :24133 mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% :24133 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% :24133 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :24133 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :24133 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :24147 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :24147 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :24147 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :24147 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :24147 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :24147 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :24147 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :24147 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :24147 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :24147 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :24147 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :24147 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :24147 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :24147 mysqld [.] do_command(THD*) 0.37% 0.00% :24147 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :24147 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :24147 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :24147 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :24147 [kernel.kallsyms] [k] ttwu_do_wakeup 0.37% 0.00% :24147 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :24147 mysqld [.] THD::~THD() 0.37% 0.00% :24147 [kernel.kallsyms] [k] check_preempt_curr 0.37% 0.00% :24147 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :24147 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :24147 mysqld [.] THD::~THD() 0.37% 0.00% :24147 [kernel.kallsyms] [k] resched_curr 0.37% 0.00% :24147 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :24147 mysqld [.] check_connection(THD*) 0.37% 0.00% :24147 mysqld [.] Security_context::~Security_context() 0.37% 0.00% :24147 [kernel.kallsyms] [k] native_smp_send_reschedule 0.37% 0.00% :24147 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :24147 mysqld [.] Mem_root_base::~Mem_root_base() 0.37% 0.00% :24147 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :24518 libpthread-2.17.so [.] start_thread 0.37% 0.00% :24518 mysqld [.] pfs_spawn_thread 0.37% 0.00% :24518 mysqld [.] handle_connection 0.37% 0.00% :24518 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :24518 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :24518 mysqld [.] THD::THD(bool) 0.37% 0.00% :24518 mysqld [.] THD::init() 0.37% 0.00% :24641 libpthread-2.17.so [.] start_thread 0.37% 0.00% :24641 mysqld [.] pfs_spawn_thread 0.37% 0.00% :24641 mysqld [.] handle_connection 0.37% 0.00% :24641 mysqld [.] pfs_delete_current_thread_vc() 0.37% 0.00% :24641 mysqld [.] aggregate_thread(PFS_thread*, PFS_account*, PFS_user*, PFS_host*) 0.37% 0.00% :24807 libpthread-2.17.so [.] start_thread 0.37% 0.00% :24807 mysqld [.] pfs_spawn_thread 0.37% 0.00% :24807 mysqld [.] handle_connection 0.37% 0.00% :24807 mysqld [.] do_command(THD*) 0.37% 0.00% :24807 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :24928 [unknown] [.] 0000000000000000 0.37% 0.00% :25106 libpthread-2.17.so [.] start_thread 0.37% 0.00% :25106 mysqld [.] pfs_spawn_thread 0.37% 0.00% :25106 mysqld [.] handle_connection 0.37% 0.00% :25106 mysqld [.] do_command(THD*) 0.37% 0.00% :25106 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :25106 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :25106 mysqld [.] my_net_read(NET*) 0.37% 0.00% :25106 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :25106 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :25106 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :25106 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :25106 libc-2.17.so [.] ppoll 0.37% 0.00% :25106 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :25106 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :25106 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :25106 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :25106 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :25106 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :25106 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :25106 [kernel.kallsyms] [k] schedule 0.37% 0.00% :25106 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :25106 [kernel.kallsyms] [k] deactivate_task 0.37% 0.00% :25173 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :25173 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :25173 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :25173 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :25173 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :25173 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :25173 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :25173 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :25173 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :25173 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :25173 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :25173 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :25173 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :25173 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :25173 [kernel.kallsyms] [k] select_task_rq_fair 0.37% 0.00% :25173 [kernel.kallsyms] [k] select_idle_sibling 0.37% 0.00% :2530 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2530 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2530 mysqld [.] handle_connection 0.37% 0.00% :2530 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :2530 mysqld [.] lex_start(THD*) 0.37% 0.00% :2530 mysqld [.] LEX::new_top_level_query() 0.37% 0.00% :2530 mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% :2530 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% :2530 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :2530 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :2530 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :2530 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :2530 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.00% :25318 libpthread-2.17.so [.] start_thread 0.37% 0.00% :25318 mysqld [.] pfs_spawn_thread 0.37% 0.00% :25318 mysqld [.] handle_connection 0.37% 0.00% :25318 mysqld [.] do_command(THD*) 0.37% 0.00% :25318 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :2540 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2540 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2540 mysqld [.] handle_connection 0.37% 0.00% :2540 mysqld [.] do_command(THD*) 0.37% 0.00% :2540 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :2540 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :2540 mysqld [.] my_net_read(NET*) 0.37% 0.00% :2540 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :2540 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :2540 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :2540 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :2540 libc-2.17.so [.] ppoll 0.37% 0.00% :2540 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :2540 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :2540 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :26281 libpthread-2.17.so [.] start_thread 0.37% 0.00% :26281 mysqld [.] pfs_spawn_thread 0.37% 0.00% :26281 mysqld [.] handle_connection 0.37% 0.00% :26281 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :26281 mysqld [.] check_connection(THD*) 0.37% 0.00% :26281 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :26281 mysqld [.] pfs_set_thread_account_vc(char const*, int, char const*, int) 0.37% 0.00% :26281 mysqld [.] set_thread_account(PFS_thread*) 0.37% 0.00% :26281 mysqld [.] find_or_create_account(PFS_thread*, char const*, unsigned int, char const*, unsigned int) 0.37% 0.00% :26405 libpthread-2.17.so [.] start_thread 0.37% 0.00% :26405 mysqld [.] pfs_spawn_thread 0.37% 0.00% :26405 mysqld [.] handle_connection 0.37% 0.00% :26405 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :26405 mysqld [.] check_connection(THD*) 0.37% 0.00% :26405 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :26405 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :26405 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :26405 mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% :26405 libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% :26405 libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% :26405 libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% :26405 libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% :26405 libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% :26405 libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% :26405 libcrypto.so.1.1 [.] ctr_BCC_block 0.37% 0.00% :26405 libcrypto.so.1.1 [.] EVP_CipherUpdate 0.37% 0.00% :26405 libcrypto.so.1.1 [.] EVP_EncryptUpdate 0.37% 0.00% :26601 [unknown] [.] 0000000000000000 0.37% 0.00% :26759 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :26759 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :26759 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :26759 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :26759 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :26759 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :26759 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :26759 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :26759 [kernel.kallsyms] [k] consume_skb 0.37% 0.00% :26759 [kernel.kallsyms] [k] skb_release_all 0.37% 0.00% :26759 [kernel.kallsyms] [k] skb_release_head_state 0.37% 0.00% :26759 [kernel.kallsyms] [k] unix_destruct_scm 0.37% 0.00% :26759 [kernel.kallsyms] [k] sock_wfree 0.37% 0.00% :26759 [kernel.kallsyms] [k] unix_write_space 0.37% 0.00% :26759 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :26759 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :26759 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :26759 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :26759 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :26759 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :26759 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :26759 [kernel.kallsyms] [k] activate_task 0.37% 0.00% :26811 libpthread-2.17.so [.] start_thread 0.37% 0.00% :26811 mysqld [.] pfs_spawn_thread 0.37% 0.00% :26811 mysqld [.] handle_connection 0.37% 0.00% :26811 mysqld [.] THD::~THD() 0.37% 0.00% :26811 mysqld [.] THD::~THD() 0.37% 0.00% :26811 mysqld [.] Security_context::~Security_context() 0.37% 0.00% :26844 libpthread-2.17.so [.] start_thread 0.37% 0.00% :26844 mysqld [.] pfs_spawn_thread 0.37% 0.00% :26844 mysqld [.] handle_connection 0.37% 0.00% :26844 mysqld [.] do_command(THD*) 0.37% 0.00% :26844 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :26844 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :26844 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :26844 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :26844 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :26844 mysqld [.] show_slave_status_metadata(List&, int, int) 0.37% 0.00% :27068 libpthread-2.17.so [.] start_thread 0.37% 0.00% :27068 mysqld [.] pfs_spawn_thread 0.37% 0.00% :27068 mysqld [.] handle_connection 0.37% 0.00% :27068 mysqld [.] THD::~THD() 0.37% 0.00% :27168 libpthread-2.17.so [.] start_thread 0.37% 0.00% :27168 mysqld [.] pfs_spawn_thread 0.37% 0.00% :27168 mysqld [.] handle_connection 0.37% 0.00% :27168 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :27168 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :27168 mysqld [.] Channel_info_local_socket::create_and_init_vio() const 0.37% 0.00% :27168 mysqld [.] mysql_socket_vio_new(MYSQL_SOCKET, enum_vio_type, unsigned int) 0.37% 0.00% :27168 mysqld [.] internal_vio_create(unsigned int) 0.37% 0.00% :2740 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :2740 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :2740 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :2740 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :2740 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :2740 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :2740 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :2740 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :2740 [kernel.kallsyms] [k] skb_unlink 0.37% 0.00% :2740 [kernel.kallsyms] [k] _raw_spin_unlock_irqrestore 0.37% 0.00% :27453 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :27453 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :27608 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :27608 mysqld [.] do_command(THD*) 0.37% 0.00% :27608 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :27608 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :27608 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :27608 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :27608 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :27608 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :27608 mysqld [.] SELECT_LEX::SELECT_LEX(MEM_ROOT*, Item*, Item*) 0.37% 0.00% :27608 mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.00% :27679 libpthread-2.17.so [.] start_thread 0.37% 0.00% :27679 mysqld [.] pfs_spawn_thread 0.37% 0.00% :27679 mysqld [.] handle_connection 0.37% 0.00% :27679 mysqld [.] do_command(THD*) 0.37% 0.00% :27679 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :27679 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :27679 mysqld [.] my_net_read(NET*) 0.37% 0.00% :27679 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :27679 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :27690 [unknown] [.] 0000000000000000 0.37% 0.00% :27743 libpthread-2.17.so [.] start_thread 0.37% 0.00% :27743 mysqld [.] pfs_spawn_thread 0.37% 0.00% :27743 mysqld [.] handle_connection 0.37% 0.00% :27743 mysqld [.] do_command(THD*) 0.37% 0.00% :27743 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :27743 mysqld [.] THD::send_statement_status() 0.37% 0.00% :27743 mysqld [.] Protocol_classic::send_eof(unsigned int, unsigned int) 0.37% 0.00% :27944 libpthread-2.17.so [.] start_thread 0.37% 0.00% :27944 mysqld [.] pfs_spawn_thread 0.37% 0.00% :27944 mysqld [.] handle_connection 0.37% 0.00% :27944 mysqld [.] do_command(THD*) 0.37% 0.00% :27944 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :27944 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :27944 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :27944 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :27944 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :27944 mysqld [.] show_slave_status_metadata(List&, int, int) 0.37% 0.00% :27944 mysqld [.] Item_empty_string::Item_empty_string(char const*, unsigned long, CHARSET_INFO const*) 0.37% 0.00% :28093 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :28093 mysqld [.] check_connection(THD*) 0.37% 0.00% :28093 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :28093 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :28093 mysqld [.] THD::release_resources() 0.37% 0.00% :28093 mysqld [.] plugin_foreach_with_mask(THD*, bool (*)(THD*, st_plugin_int*, void*), int, unsigned int, void*) 0.37% 0.00% :28093 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :28093 mysqld [.] plugin_foreach_with_mask(THD*, bool (**)(THD*, st_plugin_int*, void*), int, unsigned int, void*) 0.37% 0.00% :28093 mysqld [.] server_mpvio_write_packet 0.37% 0.00% :28127 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28127 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28127 mysqld [.] handle_connection 0.37% 0.00% :28127 mysqld [.] THD::~THD() 0.37% 0.00% :28127 mysqld [.] THD::~THD() 0.37% 0.00% :28127 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :28127 mysqld [.] dd::cache::Dictionary_client::Auto_releaser::~Auto_releaser() 0.37% 0.00% :28151 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28151 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28151 mysqld [.] handle_connection 0.37% 0.00% :28151 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :28151 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :28151 mysqld [.] THD::THD(bool) 0.37% 0.00% :28151 mysqld [.] THD::init() 0.37% 0.00% :28151 mysqld [.] Session_tracker::enable(THD*) 0.37% 0.00% :28151 mysqld [.] Session_sysvars_tracker::enable(THD*) 0.37% 0.00% :28151 mysqld [.] Session_sysvars_tracker::vars_list::parse_var_list(THD*, MYSQL_LEX_STRING, bool, CHARSET_INFO const*, bool) 0.37% 0.00% :28151 mysqld [.] Session_sysvars_tracker::vars_list::insert(Session_sysvars_tracker::sysvar_node_st*, MYSQL_LEX_CSTRING const&) 0.37% 0.00% :2832 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2832 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2832 mysqld [.] handle_connection 0.37% 0.00% :2832 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :2832 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :2832 mysqld [.] THD::THD(bool) 0.37% 0.00% :2842 libpthread-2.17.so [.] start_thread 0.37% 0.00% :2842 mysqld [.] pfs_spawn_thread 0.37% 0.00% :2842 mysqld [.] handle_connection 0.37% 0.00% :2842 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :2842 mysqld [.] check_connection(THD*) 0.37% 0.00% :28530 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28530 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28530 mysqld [.] handle_connection 0.37% 0.00% :28530 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :28530 mysqld [.] check_connection(THD*) 0.37% 0.00% :28530 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :28530 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :28530 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :28530 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :28530 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :28530 mysqld [.] find_mpvio_user(THD*, MPVIO_EXT*) 0.37% 0.00% :28530 mysqld [.] Acl_cache_lock_guard::lock(bool) [clone .part.55] 0.37% 0.00% :28530 mysqld [.] MDL_context::acquire_lock(MDL_request*, unsigned long) 0.37% 0.00% :28530 libc-2.17.so [.] __clock_gettime 0.37% 0.00% :28541 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :28541 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :28541 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :28541 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :28541 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :28541 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :28541 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :28541 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :28541 [kernel.kallsyms] [k] consume_skb 0.37% 0.00% :28541 [kernel.kallsyms] [k] skb_release_all 0.37% 0.00% :28541 [kernel.kallsyms] [k] skb_release_head_state 0.37% 0.00% :28541 [kernel.kallsyms] [k] unix_destruct_scm 0.37% 0.00% :28541 [kernel.kallsyms] [k] sock_wfree 0.37% 0.00% :28541 [kernel.kallsyms] [k] unix_write_space 0.37% 0.00% :28541 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :28541 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :28541 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :28541 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :28541 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :28541 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :28541 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :28541 [kernel.kallsyms] [k] ttwu_do_wakeup 0.37% 0.00% :28541 [kernel.kallsyms] [k] check_preempt_curr 0.37% 0.00% :28541 [kernel.kallsyms] [k] resched_curr 0.37% 0.00% :28541 [kernel.kallsyms] [k] native_smp_send_reschedule 0.37% 0.00% :28550 [unknown] [.] 0x00007fd168024ab0 0.37% 0.00% :28623 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28623 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28623 mysqld [.] handle_connection 0.37% 0.00% :28623 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :28623 mysqld [.] prepare_new_connection_state(THD*) 0.37% 0.00% :28805 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28805 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28805 mysqld [.] handle_connection 0.37% 0.00% :28805 mysqld [.] pfs_delete_current_thread_vc() 0.37% 0.00% :28805 mysqld [.] aggregate_thread(PFS_thread*, PFS_account*, PFS_user*, PFS_host*) 0.37% 0.00% :28894 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28894 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28894 mysqld [.] handle_connection 0.37% 0.00% :28894 mysqld [.] THD::~THD() 0.37% 0.00% :28894 mysqld [.] THD::~THD() 0.37% 0.00% :28966 libpthread-2.17.so [.] start_thread 0.37% 0.00% :28966 mysqld [.] pfs_spawn_thread 0.37% 0.00% :28966 mysqld [.] handle_connection 0.37% 0.00% :28966 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :28966 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :28966 mysqld [.] my_net_init(NET*, Vio*) 0.37% 0.00% :28966 libc-2.17.so [.] __GI___setsockopt 0.37% 0.00% :28966 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :28966 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :28966 [kernel.kallsyms] [k] __x64_sys_setsockopt 0.37% 0.00% :2931 mysqld [.] do_command(THD*) 0.37% 0.00% :2931 mysqld [.] pfs_new_thread_vc(unsigned int, void const*, unsigned long long) 0.37% 0.00% :2931 mysqld [.] create_thread(PFS_thread_class*, void const*, unsigned long long) 0.37% 0.00% :2931 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :2931 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :2931 mysqld [.] set_thread_account(PFS_thread*) 0.37% 0.00% :29342 libc-2.17.so [.] __GI___shutdown 0.37% 0.00% :29695 libpthread-2.17.so [.] start_thread 0.37% 0.00% :29695 mysqld [.] pfs_spawn_thread 0.37% 0.00% :29695 mysqld [.] handle_connection 0.37% 0.00% :29695 mysqld [.] THD::~THD() 0.37% 0.00% :29695 mysqld [.] THD::~THD() 0.37% 0.00% :29695 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :2978 mysqld [.] check_connection(THD*) 0.37% 0.00% :2978 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :2978 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :2978 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :2978 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :2978 mysqld [.] parse_client_handshake_packet(THD*, MPVIO_EXT*, unsigned char**, unsigned long) 0.37% 0.00% :2978 mysqld [.] my_strndup(unsigned int, char const*, unsigned long, int) 0.37% 0.00% :2978 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :2978 mysqld [.] pfs_memory_alloc_v1(unsigned int, unsigned long, PSI_thread**) 0.37% 0.00% :2978 mysqld [.] prepare_new_connection_state(THD*) 0.37% 0.00% :30135 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30135 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30135 mysqld [.] handle_connection 0.37% 0.00% :30135 mysqld [.] do_command(THD*) 0.37% 0.00% :30135 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :30147 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30147 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30147 mysqld [.] handle_connection 0.37% 0.00% :30147 mysqld [.] THD::~THD() 0.37% 0.00% :30147 mysqld [.] THD::~THD() 0.37% 0.00% :30147 mysqld [.] MEM_ROOT::FreeBlocks(MEM_ROOT::Block*) 0.37% 0.00% :30147 mysqld [.] my_free(void*) 0.37% 0.00% :30210 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30210 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :30210 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :30210 [kernel.kallsyms] [k] __x64_sys_exit 0.37% 0.00% :30210 [kernel.kallsyms] [k] do_exit 0.37% 0.00% :30213 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30213 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30213 mysqld [.] handle_connection 0.37% 0.00% :30213 mysqld [.] pfs_new_thread_vc(unsigned int, void const*, unsigned long long) 0.37% 0.00% :30213 mysqld [.] pfs_notify_thread_create(PSI_thread*) 0.37% 0.00% :30496 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30496 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30496 mysqld [.] handle_connection 0.37% 0.00% :30496 mysqld [.] do_command(THD*) 0.37% 0.00% :30496 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :30496 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :30496 mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) 0.37% 0.00% :30496 mysqld [.] pfs_digest_end_v2(PSI_digest_locker*, sql_digest_storage const*) 0.37% 0.00% :30496 mysqld [.] SHA_EVP256(unsigned char const*, unsigned long, unsigned char*) 0.37% 0.00% :30521 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30521 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30521 mysqld [.] handle_connection 0.37% 0.00% :30521 mysqld [.] do_command(THD*) 0.37% 0.00% :30521 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :30551 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30551 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30551 mysqld [.] handle_connection 0.37% 0.00% :30551 mysqld [.] do_command(THD*) 0.37% 0.00% :30551 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :30661 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30661 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30661 mysqld [.] handle_connection 0.37% 0.00% :30661 mysqld [.] THD::~THD() 0.37% 0.00% :30661 mysqld [.] THD::~THD() 0.37% 0.00% :30661 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :30661 mysqld [.] dd::cache::Dictionary_client::release(dd::cache::Object_registry*) 0.37% 0.00% :30661 mysqld [.] unsigned long dd::cache::Dictionary_client::release(dd::cache::Object_registry*) 0.37% 0.00% :30741 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30741 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30741 mysqld [.] handle_connection 0.37% 0.00% :30741 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :30741 mysqld [.] lex_start(THD*) 0.37% 0.00% :30741 mysqld [.] LEX::new_top_level_query() 0.37% 0.00% :30741 mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% :30741 mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% :30741 mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% :30741 mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% :30741 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :30862 [unknown] [.] 0x1f0f2e66fffffde4 0.37% 0.00% :30862 mysqld [.] non-virtual thunk to dd::Schema_impl::~Schema_impl() 0.37% 0.00% :30862 [unknown] [.] 0x00001261ca6a5bcb 0.37% 0.00% :30862 [unknown] [.] 0000000000000000 0.37% 0.00% :30862 [unknown] [.] 0x0000000000000084 0.37% 0.00% :30928 libpthread-2.17.so [.] start_thread 0.37% 0.00% :30928 mysqld [.] pfs_spawn_thread 0.37% 0.00% :30928 mysqld [.] handle_connection 0.37% 0.00% :30928 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :30928 mysqld [.] check_connection(THD*) 0.37% 0.00% :30928 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :30928 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :30928 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :30928 mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% :30928 libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% :30928 libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% :30928 libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% :30928 libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% :30928 libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% :30928 libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% :31013 libpthread-2.17.so [.] start_thread 0.37% 0.00% :31013 mysqld [.] pfs_spawn_thread 0.37% 0.00% :31013 mysqld [.] handle_connection 0.37% 0.00% :31013 mysqld [.] do_command(THD*) 0.37% 0.00% :31013 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :31013 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :31013 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :31013 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :31013 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :31013 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :31101 libpthread-2.17.so [.] start_thread 0.37% 0.00% :31101 mysqld [.] pfs_spawn_thread 0.37% 0.00% :31101 mysqld [.] handle_connection 0.37% 0.00% :31101 mysqld [.] THD::~THD() 0.37% 0.00% :31101 mysqld [.] THD::~THD() 0.37% 0.00% :31101 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :31156 libpthread-2.17.so [.] start_thread 0.37% 0.00% :31156 mysqld [.] pfs_spawn_thread 0.37% 0.00% :31156 mysqld [.] handle_connection 0.37% 0.00% :31156 mysqld [.] do_command(THD*) 0.37% 0.00% :31156 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :31156 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :31156 mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) 0.37% 0.00% :31156 mysqld [.] THD::sql_parser() 0.37% 0.00% :31387 libpthread-2.17.so [.] start_thread 0.37% 0.00% :31387 mysqld [.] pfs_spawn_thread 0.37% 0.00% :31387 mysqld [.] handle_connection 0.37% 0.00% :31387 mysqld [.] do_command(THD*) 0.37% 0.00% :31387 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :31882 libpthread-2.17.so [.] start_thread 0.37% 0.00% :31882 mysqld [.] pfs_spawn_thread 0.37% 0.00% :31882 mysqld [.] handle_connection 0.37% 0.00% :31882 mysqld [.] do_command(THD*) 0.37% 0.00% :31882 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :31882 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :31882 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :31882 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :31882 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :31882 mysqld [.] show_slave_status_send_data(THD*, Master_info*, char*, char*) 0.37% 0.00% :31926 libpthread-2.17.so [.] start_thread 0.37% 0.00% :31926 mysqld [.] pfs_spawn_thread 0.37% 0.00% :31926 mysqld [.] handle_connection 0.37% 0.00% :31926 libpthread-2.17.so [.] __lll_unlock_wake 0.37% 0.00% :31926 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :31926 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :32202 libpthread-2.17.so [.] start_thread 0.37% 0.00% :32202 mysqld [.] pfs_spawn_thread 0.37% 0.00% :32202 mysqld [.] handle_connection 0.37% 0.00% :32202 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :32202 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :32202 mysqld [.] THD::THD(bool) 0.37% 0.00% :32202 mysqld [.] THD::init() 0.37% 0.00% :32202 mysqld [.] plugin_thdvar_init(THD*, bool) 0.37% 0.00% :32212 libpthread-2.17.so [.] start_thread 0.37% 0.00% :32212 mysqld [.] pfs_spawn_thread 0.37% 0.00% :32212 mysqld [.] handle_connection 0.37% 0.00% :32212 mysqld [.] do_command(THD*) 0.37% 0.00% :32345 mysqld [.] do_command(THD*) 0.37% 0.00% :32345 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.37% 0.00% :32345 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :32345 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :32345 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :32345 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :32345 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :32345 [kernel.kallsyms] [k] __x64_sys_futex 0.37% 0.00% :32345 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :32345 [kernel.kallsyms] [k] do_futex 0.37% 0.00% :32345 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :32345 [kernel.kallsyms] [k] futex_wait 0.37% 0.00% :32345 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :32345 [kernel.kallsyms] [k] futex_wait_queue_me 0.37% 0.00% :32345 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.00% :32345 [kernel.kallsyms] [k] schedule 0.37% 0.00% :32345 mysqld [.] Protocol_classic::store_string(char const*, unsigned long, CHARSET_INFO const*) 0.37% 0.00% :32356 libpthread-2.17.so [.] start_thread 0.37% 0.00% :32356 mysqld [.] pfs_spawn_thread 0.37% 0.00% :32356 mysqld [.] handle_connection 0.37% 0.00% :32356 mysqld [.] do_command(THD*) 0.37% 0.00% :32356 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :32356 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :32356 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :32356 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :32356 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :32356 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :32356 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.00% :32356 mysqld [.] Protocol_classic::net_store_data_with_conversion(unsigned char const*, unsigned long, CHARSET_INFO const*, CHARSET_INFO const*) 0.37% 0.00% :32444 mysqld [.] do_command(THD*) 0.37% 0.00% :32444 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :32444 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :32444 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :32444 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :32444 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :32444 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :32444 mysqld [.] pfs_new_thread_vc(unsigned int, void const*, unsigned long long) 0.37% 0.00% :32444 mysqld [.] Protocol_classic::send_field_metadata(Send_field*, CHARSET_INFO const*) 0.37% 0.00% :32510 libpthread-2.17.so [.] start_thread 0.37% 0.00% :32510 mysqld [.] pfs_spawn_thread 0.37% 0.00% :32510 mysqld [.] handle_connection 0.37% 0.00% :32510 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :32510 mysqld [.] check_connection(THD*) 0.37% 0.00% :32510 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :32510 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :32510 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :32510 mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% :32510 libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% :32510 libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% :32510 libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% :32510 libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% :32510 libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% :32510 libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% :32510 libcrypto.so.1.1 [.] ctr_BCC_update 0.37% 0.00% :32510 libcrypto.so.1.1 [.] ctr_BCC_blocks 0.37% 0.00% :32510 libcrypto.so.1.1 [.] ctr_BCC_block 0.37% 0.00% :32510 libcrypto.so.1.1 [.] EVP_CipherUpdate 0.37% 0.00% :32510 libcrypto.so.1.1 [.] EVP_EncryptUpdate 0.37% 0.00% :32510 libcrypto.so.1.1 [.] evp_EncryptDecryptUpdate 0.37% 0.00% :32510 libcrypto.so.1.1 [.] aesni_ecb_cipher 0.37% 0.00% :3759 libpthread-2.17.so [.] start_thread 0.37% 0.00% :3759 mysqld [.] pfs_spawn_thread 0.37% 0.00% :3759 mysqld [.] handle_connection 0.37% 0.00% :3759 mysqld [.] THD::~THD() 0.37% 0.00% :3759 mysqld [.] THD::~THD() 0.37% 0.00% :3759 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :3935 libpthread-2.17.so [.] start_thread 0.37% 0.00% :3935 mysqld [.] pfs_spawn_thread 0.37% 0.00% :3935 mysqld [.] handle_connection 0.37% 0.00% :3935 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :3935 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :3935 mysqld [.] THD::THD(bool) 0.37% 0.00% :3991 libpthread-2.17.so [.] start_thread 0.37% 0.00% :3991 mysqld [.] pfs_spawn_thread 0.37% 0.00% :3991 mysqld [.] handle_connection 0.37% 0.00% :3991 mysqld [.] do_command(THD*) 0.37% 0.00% :3991 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :3991 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :3994 libpthread-2.17.so [.] start_thread 0.37% 0.00% :3994 mysqld [.] pfs_spawn_thread 0.37% 0.00% :3994 mysqld [.] handle_connection 0.37% 0.00% :3994 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :3994 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :3994 mysqld [.] THD::THD(bool) 0.37% 0.00% :4378 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :4378 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :4378 mysqld [.] THD::THD(bool) 0.37% 0.00% :4378 mysqld [.] do_command(THD*) 0.37% 0.00% :4378 mysqld [.] MDL_context::MDL_context() 0.37% 0.00% :4378 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :4378 mysqld [.] MDL_wait::MDL_wait() 0.37% 0.00% :4505 libpthread-2.17.so [.] start_thread 0.37% 0.00% :4505 mysqld [.] pfs_spawn_thread 0.37% 0.00% :4505 mysqld [.] handle_connection 0.37% 0.00% :4505 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :4505 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :4505 mysqld [.] THD::THD(bool) 0.37% 0.00% :4505 mysqld [.] THD::init() 0.37% 0.00% :4704 [unknown] [.] 0x00000000801f0fc7 0.37% 0.00% :4704 libstdc++.so.6.0.19 [.] virtual thunk to std::basic_istream >::~basic_istream() 0.37% 0.00% :4704 [unknown] [.] 0x0000000000000006 0.37% 0.00% :4767 libpthread-2.17.so [.] start_thread 0.37% 0.00% :4767 mysqld [.] pfs_spawn_thread 0.37% 0.00% :4880 [unknown] [.] 0000000000000000 0.37% 0.00% :4899 libpthread-2.17.so [.] start_thread 0.37% 0.00% :4899 mysqld [.] pfs_spawn_thread 0.37% 0.00% :4899 mysqld [.] handle_connection 0.37% 0.00% :4899 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :4899 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :4899 mysqld [.] THD::THD(bool) 0.37% 0.00% :4989 [unknown] [.] 0x6335745300456349 0.37% 0.00% :5373 libpthread-2.17.so [.] __libc_recv 0.37% 0.00% :5373 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :5373 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :5373 [kernel.kallsyms] [k] __x64_sys_recvfrom 0.37% 0.00% :5373 libpthread-2.17.so [.] start_thread 0.37% 0.00% :5373 [kernel.kallsyms] [k] __sys_recvfrom 0.37% 0.00% :5373 mysqld [.] pfs_spawn_thread 0.37% 0.00% :5373 [kernel.kallsyms] [k] sock_recvmsg 0.37% 0.00% :5373 mysqld [.] handle_connection 0.37% 0.00% :5373 [kernel.kallsyms] [k] unix_stream_recvmsg 0.37% 0.00% :5373 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :5373 [kernel.kallsyms] [k] unix_stream_read_generic 0.37% 0.00% :5373 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :5373 [kernel.kallsyms] [k] unix_stream_read_actor 0.37% 0.00% :5373 mysqld [.] Channel_info_local_socket::create_and_init_vio() const 0.37% 0.00% :5373 [kernel.kallsyms] [k] skb_copy_datagram_iter 0.37% 0.00% :5373 mysqld [.] mysql_socket_vio_new(MYSQL_SOCKET, enum_vio_type, unsigned int) 0.37% 0.00% :5373 [kernel.kallsyms] [k] __skb_datagram_iter 0.37% 0.00% :5373 mysqld [.] internal_vio_create(unsigned int) 0.37% 0.00% :5373 [kernel.kallsyms] [k] simple_copy_to_iter 0.37% 0.00% :5373 mysqld [.] my_malloc(unsigned int, unsigned long, int) 0.37% 0.00% :5437 libpthread-2.17.so [.] start_thread 0.37% 0.00% :5437 mysqld [.] pfs_spawn_thread 0.37% 0.00% :5437 mysqld [.] handle_connection 0.37% 0.00% :5971 libpthread-2.17.so [.] start_thread 0.37% 0.00% :5971 mysqld [.] pfs_spawn_thread 0.37% 0.00% :5971 mysqld [.] handle_connection 0.37% 0.00% :5971 mysqld [.] do_command(THD*) 0.37% 0.00% :5971 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :5971 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :5971 mysqld [.] my_net_read(NET*) 0.37% 0.00% :5971 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :5971 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :5971 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :5971 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :5971 libc-2.17.so [.] ppoll 0.37% 0.00% :5971 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :5971 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :5971 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :5971 [kernel.kallsyms] [k] get_timespec64 0.37% 0.00% :6015 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :6015 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :6015 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :6015 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :6015 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :6015 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :6015 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :6015 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :6015 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :6015 libpthread-2.17.so [.] start_thread 0.37% 0.00% :6015 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :6015 mysqld [.] pfs_spawn_thread 0.37% 0.00% :6015 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :6015 mysqld [.] handle_connection 0.37% 0.00% :6015 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :6015 mysqld [.] do_command(THD*) 0.37% 0.00% :6015 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :6015 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :6015 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :6015 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :6015 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :6015 mysqld [.] my_net_read(NET*) 0.37% 0.00% :6015 [kernel.kallsyms] [k] activate_task 0.37% 0.00% :6015 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :6015 [kernel.kallsyms] [k] enqueue_task_fair 0.37% 0.00% :6015 mysqld [.] net_after_header_psi(NET*, void*, unsigned long, bool) 0.37% 0.00% :6015 [kernel.kallsyms] [k] enqueue_entity 0.37% 0.00% :6015 mysqld [.] pfs_end_idle_wait_v1(PSI_idle_locker*) 0.37% 0.00% :6189 [unknown] [.] 0000000000000000 0.37% 0.00% :6501 libpthread-2.17.so [.] start_thread 0.37% 0.00% :6501 mysqld [.] pfs_spawn_thread 0.37% 0.00% :6501 mysqld [.] handle_connection 0.37% 0.00% :6501 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :6501 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :6501 mysqld [.] THD::THD(bool) 0.37% 0.00% :6501 mysqld [.] THD::init() 0.37% 0.00% :6501 mysqld [.] Session_tracker::enable(THD*) 0.37% 0.00% :6501 mysqld [.] Session_sysvars_tracker::enable(THD*) 0.37% 0.00% :6501 mysqld [.] Session_sysvars_tracker::vars_list::parse_var_list(THD*, MYSQL_LEX_STRING, bool, CHARSET_INFO const*, bool) 0.37% 0.00% :6501 mysqld [.] Session_sysvars_tracker::vars_list::insert(Session_sysvars_tracker::sysvar_node_st*, MYSQL_LEX_CSTRING const&) 0.37% 0.00% :6501 mysqld [.] std::pair, std::allocator > const, std::unique_ptr >, false, true>, bool> std::_Hashtable, std::allocator >, std::pair, std::allocator > const, std::unique_ptr >, Malloc_allocator, std::allocator > const, std::unique_ptr > >, std::__detail::_Select1st, Collation_key_equal, Collation_hasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_emplace, std::allocator >, std::unique_ptr >(std::integral_constant, std::basic_string, std::allocator >&&, std::unique_ptr&&) 0.37% 0.00% :6501 mysqld [.] my_hash_sort_uca_900 0.37% 0.00% :6786 libpthread-2.17.so [.] start_thread 0.37% 0.00% :6786 mysqld [.] pfs_spawn_thread 0.37% 0.00% :6786 mysqld [.] handle_connection 0.37% 0.00% :6786 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :6786 mysqld [.] check_connection(THD*) 0.37% 0.00% :6786 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :6786 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :6786 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :6786 mysqld [.] server_mpvio_read_packet 0.37% 0.00% :6786 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :6786 mysqld [.] my_net_read(NET*) 0.37% 0.00% :6786 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :6786 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :682 libpthread-2.17.so [.] start_thread 0.37% 0.00% :682 mysqld [.] pfs_spawn_thread 0.37% 0.00% :682 mysqld [.] handle_connection 0.37% 0.00% :682 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :682 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :682 mysqld [.] THD::THD(bool) 0.37% 0.00% :682 mysqld [.] Security_context::Security_context(THD*) 0.37% 0.00% :682 mysqld [.] DB_restrictions::DB_restrictions(MEM_ROOT*) 0.37% 0.00% :6830 libpthread-2.17.so [.] start_thread 0.37% 0.00% :6830 mysqld [.] pfs_spawn_thread 0.37% 0.00% :6830 mysqld [.] handle_connection 0.37% 0.00% :6830 mysqld [.] pfs_delete_current_thread_vc() 0.37% 0.00% :6956 libpthread-2.17.so [.] start_thread 0.37% 0.00% :6956 mysqld [.] pfs_spawn_thread 0.37% 0.00% :6956 mysqld [.] handle_connection 0.37% 0.00% :6956 mysqld [.] do_command(THD*) 0.37% 0.00% :6956 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :6956 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :6956 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :6956 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :6956 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :6956 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :6978 libpthread-2.17.so [.] start_thread 0.37% 0.00% :6978 mysqld [.] pfs_spawn_thread 0.37% 0.00% :6978 mysqld [.] handle_connection 0.37% 0.00% :6978 mysqld [.] close_connection(THD*, unsigned int, bool, bool) 0.37% 0.00% :6978 mysqld [.] THD::disconnect(bool) 0.37% 0.00% :6978 mysqld [.] THD::shutdown_active_vio() 0.37% 0.00% :6978 libpthread-2.17.so [.] __libc_close 0.37% 0.00% :6978 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :6978 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :6978 [kernel.kallsyms] [k] exit_to_usermode_loop 0.37% 0.00% :6978 [kernel.kallsyms] [k] task_work_run 0.37% 0.00% :6978 [kernel.kallsyms] [k] ____fput 0.37% 0.00% :6978 [kernel.kallsyms] [k] __fput 0.37% 0.00% :6978 [kernel.kallsyms] [k] sock_close 0.37% 0.00% :6978 [kernel.kallsyms] [k] __sock_release 0.37% 0.00% :6978 [kernel.kallsyms] [k] unix_release 0.37% 0.00% :6978 [kernel.kallsyms] [k] unix_release_sock 0.37% 0.00% :6978 [kernel.kallsyms] [k] path_put 0.37% 0.00% :7111 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :7111 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :7111 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :7111 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :7111 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :7111 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :7111 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :7111 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :7111 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :7111 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :7111 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :7111 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :7111 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :7111 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :7111 [kernel.kallsyms] [k] ttwu_do_activate 0.37% 0.00% :7111 [kernel.kallsyms] [k] activate_task 0.37% 0.00% :7122 libpthread-2.17.so [.] start_thread 0.37% 0.00% :7122 mysqld [.] pfs_spawn_thread 0.37% 0.00% :7122 mysqld [.] handle_connection 0.37% 0.00% :7122 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :7122 mysqld [.] check_connection(THD*) 0.37% 0.00% :7122 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :7122 mysqld [.] do_auth_once(THD*, MYSQL_LEX_CSTRING const&, MPVIO_EXT*) 0.37% 0.00% :7122 mysqld [.] caching_sha2_password_authenticate(MYSQL_PLUGIN_VIO*, MYSQL_SERVER_AUTH_INFO*) 0.37% 0.00% :7122 mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% :7122 libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% :7122 libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% :7122 libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% :7122 libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% :7122 libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% :7122 libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% :7122 libcrypto.so.1.1 [.] EVP_CipherInit_ex 0.37% 0.00% :7122 libcrypto.so.1.1 [.] EVP_CIPHER_CTX_reset 0.37% 0.00% :7122 libcrypto.so.1.1 [.] CRYPTO_free 0.37% 0.00% :7122 mysqld [.] my_free(void*) 0.37% 0.00% :7122 mysqld [.] pfs_memory_free_v1(unsigned int, unsigned long, PSI_thread*) 0.37% 0.00% :7273 libpthread-2.17.so [.] start_thread 0.37% 0.00% :7273 mysqld [.] pfs_spawn_thread 0.37% 0.00% :7273 mysqld [.] handle_connection 0.37% 0.00% :7273 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :7273 mysqld [.] check_connection(THD*) 0.37% 0.00% :7273 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :7273 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :7273 mysqld [.] bool dd::cache::Dictionary_client::acquire(std::basic_string, Stateless_allocator > const&, dd::Schema const**) 0.37% 0.00% :7273 mysqld [.] dd::cache::Dictionary_client::Auto_releaser::~Auto_releaser() 0.37% 0.00% :7273 mysqld [.] unsigned long dd::cache::Dictionary_client::release(dd::cache::Object_registry*) 0.37% 0.00% :7328 libpthread-2.17.so [.] start_thread 0.37% 0.00% :7328 mysqld [.] pfs_spawn_thread 0.37% 0.00% :7328 mysqld [.] handle_connection 0.37% 0.00% :7328 mysqld [.] THD::~THD() 0.37% 0.00% :7328 mysqld [.] THD::~THD() 0.37% 0.00% :7328 mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% :7408 libpthread-2.17.so [.] start_thread 0.37% 0.00% :7408 mysqld [.] pfs_spawn_thread 0.37% 0.00% :7408 mysqld [.] handle_connection 0.37% 0.00% :7408 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :7408 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :7530 libpthread-2.17.so [.] start_thread 0.37% 0.00% :7530 mysqld [.] pfs_spawn_thread 0.37% 0.00% :7530 mysqld [.] handle_connection 0.37% 0.00% :7530 mysqld [.] do_command(THD*) 0.37% 0.00% :7530 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :7530 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :7530 mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) 0.37% 0.00% :7530 mysqld [.] THD::sql_parser() 0.37% 0.00% :7560 [unknown] [.] 0x058d49048e038f44 0.37% 0.00% :7560 libgcc_s-4.8.5-20150702.so.1 [.] 0x00007fd20a1aa55f 0.37% 0.00% :7560 libgcc_s-4.8.5-20150702.so.1 [.] 0x00007fd20a1a85a6 0.37% 0.00% :767 libpthread-2.17.so [.] start_thread 0.37% 0.00% :767 mysqld [.] pfs_spawn_thread 0.37% 0.00% :767 mysqld [.] handle_connection 0.37% 0.00% :767 mysqld [.] close_connection(THD*, unsigned int, bool, bool) 0.37% 0.00% :767 mysqld [.] THD::disconnect(bool) 0.37% 0.00% :767 mysqld [.] THD::shutdown_active_vio() 0.37% 0.00% :767 libpthread-2.17.so [.] __libc_close 0.37% 0.00% :767 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :767 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :767 [kernel.kallsyms] [k] exit_to_usermode_loop 0.37% 0.00% :767 [kernel.kallsyms] [k] task_work_run 0.37% 0.00% :767 [kernel.kallsyms] [k] ____fput 0.37% 0.00% :767 [kernel.kallsyms] [k] __fput 0.37% 0.00% :767 [kernel.kallsyms] [k] dput 0.37% 0.00% :767 [kernel.kallsyms] [k] __dentry_kill 0.37% 0.00% :767 [kernel.kallsyms] [k] dentry_unlink_inode 0.37% 0.00% :767 [kernel.kallsyms] [k] iput 0.37% 0.00% :767 [kernel.kallsyms] [k] evict 0.37% 0.00% :767 [kernel.kallsyms] [k] inode_wait_for_writeback 0.37% 0.00% :7692 libpthread-2.17.so [.] start_thread 0.37% 0.00% :7692 mysqld [.] pfs_spawn_thread 0.37% 0.00% :7692 mysqld [.] handle_connection 0.37% 0.00% :7692 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :7692 mysqld [.] check_connection(THD*) 0.37% 0.00% :7692 libc-2.17.so [.] __GI___setsockopt 0.37% 0.00% :7692 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :7692 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :7692 [kernel.kallsyms] [k] __x64_sys_setsockopt 0.37% 0.00% :7882 libpthread-2.17.so [.] __libc_send 0.37% 0.00% :7882 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :7882 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :7882 [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% :7882 [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% :7882 [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% :7882 [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% :7882 [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% :7882 [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% :7882 [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% :7882 [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% :7882 [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% :7882 [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% :7882 [kernel.kallsyms] [k] try_to_wake_up 0.37% 0.00% :7882 [kernel.kallsyms] [k] select_task_rq_fair 0.37% 0.00% :8067 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8067 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8067 mysqld [.] handle_connection 0.37% 0.00% :8067 libpthread-2.17.so [.] pthread_cond_wait@@GLIBC_2.3.2 0.37% 0.00% :8067 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :8067 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :8067 [kernel.kallsyms] [k] __x64_sys_futex 0.37% 0.00% :8067 [kernel.kallsyms] [k] do_futex 0.37% 0.00% :8067 [kernel.kallsyms] [k] futex_wait 0.37% 0.00% :8067 [kernel.kallsyms] [k] futex_wait_queue_me 0.37% 0.00% :8067 [kernel.kallsyms] [k] schedule 0.37% 0.00% :8067 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :8067 [kernel.kallsyms] [k] deactivate_task 0.37% 0.00% :8067 [kernel.kallsyms] [k] dequeue_task_fair 0.37% 0.00% :8067 [kernel.kallsyms] [k] dequeue_entity 0.37% 0.00% :8067 [kernel.kallsyms] [k] update_load_avg 0.37% 0.00% :8070 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8070 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8070 mysqld [.] handle_connection 0.37% 0.00% :8168 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8168 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8168 mysqld [.] handle_connection 0.37% 0.00% :8168 mysqld [.] do_command(THD*) 0.37% 0.00% :8168 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% :8168 mysqld [.] mysql_parse(THD*, Parser_state*) 0.37% 0.00% :8168 mysqld [.] mysql_execute_command(THD*, bool) 0.37% 0.00% :8168 mysqld [.] show_slave_status_cmd(THD*) 0.37% 0.00% :8168 mysqld [.] show_slave_status(THD*) 0.37% 0.00% :8168 mysqld [.] THD::send_result_metadata(List*, unsigned int) 0.37% 0.00% :8188 mysqld [.] do_command(THD*) 0.37% 0.00% :8188 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :8188 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :8188 mysqld [.] my_net_read(NET*) 0.37% 0.00% :8188 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :8188 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :8188 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :8188 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :8188 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :8188 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :8188 libc-2.17.so [.] ppoll 0.37% 0.00% :8188 mysqld [.] my_net_init(NET*, Vio*) 0.37% 0.00% :8188 libc-2.17.so [.] __GI___setsockopt 0.37% 0.00% :8188 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :8188 [kernel.kallsyms] [k] __x64_sys_setsockopt 0.37% 0.00% :8188 [kernel.kallsyms] [k] poll_select_finish 0.37% 0.00% :8419 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8419 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8419 mysqld [.] handle_connection 0.37% 0.00% :8419 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :8419 mysqld [.] check_connection(THD*) 0.37% 0.00% :8419 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :8617 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8617 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8617 mysqld [.] handle_connection 0.37% 0.00% :8617 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :8617 mysqld [.] check_connection(THD*) 0.37% 0.00% :8617 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :8617 mysqld [.] mysql_change_db(THD*, MYSQL_LEX_CSTRING const&, bool) 0.37% 0.00% :8617 mysqld [.] bool dd::cache::Dictionary_client::acquire(std::basic_string, Stateless_allocator > const&, dd::Schema const**) 0.37% 0.00% :8749 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8749 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8749 mysqld [.] handle_connection 0.37% 0.00% :8749 mysqld [.] Channel_info_local_socket::create_thd() 0.37% 0.00% :8749 mysqld [.] Channel_info::create_thd() 0.37% 0.00% :8749 mysqld [.] THD::THD(bool) 0.37% 0.00% :8749 mysqld [.] THD::init() 0.37% 0.00% :8749 mysqld [.] plugin_thdvar_init(THD*, bool) 0.37% 0.00% :8749 mysqld [.] Session_sysvar_resource_manager::init(char**) 0.37% 0.00% :8936 libpthread-2.17.so [.] start_thread 0.37% 0.00% :8936 mysqld [.] pfs_spawn_thread 0.37% 0.00% :8936 mysqld [.] handle_connection 0.37% 0.00% :8936 mysqld [.] thd_prepare_connection(THD*) 0.37% 0.00% :8936 mysqld [.] check_connection(THD*) 0.37% 0.00% :8936 mysqld [.] acl_authenticate(THD*, enum_server_command) 0.37% 0.00% :9170 libpthread-2.17.so [.] start_thread 0.37% 0.00% :9170 mysqld [.] pfs_spawn_thread 0.37% 0.00% :9170 mysqld [.] handle_connection 0.37% 0.00% :9170 mysqld [.] do_command(THD*) 0.37% 0.00% :9170 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :9170 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :9170 mysqld [.] my_net_read(NET*) 0.37% 0.00% :9170 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :9170 mysqld [.] net_after_header_psi(NET*, void*, unsigned long, bool) 0.37% 0.00% :9336 [unknown] [.] 0000000000000000 0.37% 0.00% :955 libpthread-2.17.so [.] start_thread 0.37% 0.00% :955 mysqld [.] pfs_spawn_thread 0.37% 0.00% :955 mysqld [.] handle_connection 0.37% 0.00% :955 mysqld [.] do_command(THD*) 0.37% 0.00% :955 mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% :955 mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% :955 mysqld [.] my_net_read(NET*) 0.37% 0.00% :955 mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% :955 mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% :955 mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% :955 mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% :955 libc-2.17.so [.] ppoll 0.37% 0.00% :955 [kernel.kallsyms] [k] entry_SYSCALL_64_after_hwframe 0.37% 0.00% :955 [kernel.kallsyms] [k] do_syscall_64 0.37% 0.00% :955 [kernel.kallsyms] [k] __x64_sys_ppoll 0.37% 0.00% :955 [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% :955 [kernel.kallsyms] [k] poll_schedule_timeout.constprop.11 0.37% 0.00% :955 [kernel.kallsyms] [k] schedule_hrtimeout_range 0.37% 0.00% :955 [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.37% 0.00% :955 [kernel.kallsyms] [k] schedule 0.37% 0.00% :955 [kernel.kallsyms] [k] __schedule 0.37% 0.00% :955 [kernel.kallsyms] [k] pick_next_task_idle 0.37% 0.00% :9892 libpthread-2.17.so [.] start_thread 0.37% 0.00% :9892 mysqld [.] pfs_spawn_thread 0.37% 0.00% :9892 mysqld [.] handle_connection 0.37% 0.00% :9892 mysqld [.] do_command(THD*) 0.37% 0.00% :9892 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.37% 0.00% mysqld [kernel.kallsyms] [k] __sys_accept4 0.37% 0.00% mysqld [kernel.kallsyms] [k] __alloc_file 0.37% 0.00% mysqld [kernel.kallsyms] [k] __hrtimer_run_queues 0.37% 0.00% mysqld [kernel.kallsyms] [k] __pollwait 0.37% 0.00% mysqld libpthread-2.17.so [.] __libc_send 0.37% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_sendto 0.37% 0.00% mysqld [kernel.kallsyms] [k] __sys_sendto 0.37% 0.00% mysqld [kernel.kallsyms] [k] sock_sendmsg 0.37% 0.00% mysqld [kernel.kallsyms] [k] unix_stream_sendmsg 0.37% 0.00% mysqld [kernel.kallsyms] [k] sock_def_readable 0.37% 0.00% mysqld [kernel.kallsyms] [k] __wake_up_sync_key 0.37% 0.00% mysqld [kernel.kallsyms] [k] __wake_up_common_lock 0.37% 0.00% mysqld [kernel.kallsyms] [k] __wake_up_common 0.37% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_accept 0.37% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_poll 0.37% 0.00% mysqld [kernel.kallsyms] [k] alloc_file_pseudo 0.37% 0.00% mysqld [kernel.kallsyms] [k] alloc_file 0.37% 0.00% mysqld [kernel.kallsyms] [k] alloc_empty_file 0.37% 0.00% mysqld [kernel.kallsyms] [k] autoremove_wake_function 0.37% 0.00% mysqld [kernel.kallsyms] [k] default_wake_function 0.37% 0.00% mysqld [kernel.kallsyms] [k] sock_alloc_file 0.37% 0.00% mysqld [kernel.kallsyms] [k] do_sys_poll 0.37% 0.00% mysqld [kernel.kallsyms] [k] perf_event_init_task 0.37% 0.00% mysqld [kernel.kallsyms] [k] inherit_task_group.isra.110.part.111 0.37% 0.00% mysqld [kernel.kallsyms] [k] sock_poll 0.37% 0.00% mysqld [kernel.kallsyms] [k] inherit_event.isra.108 0.37% 0.00% mysqld [kernel.kallsyms] [k] kvm_guest_apic_eoi_write 0.37% 0.00% mysqld [kernel.kallsyms] [k] native_smp_send_reschedule 0.37% 0.00% mysqld [kernel.kallsyms] [k] perf_event_alloc 0.37% 0.00% mysqld [kernel.kallsyms] [k] tick_sched_timer 0.37% 0.00% mysqld [kernel.kallsyms] [k] tick_sched_handle 0.37% 0.00% mysqld libc-2.17.so [.] 0x00007fd209ec0c3d 0.37% 0.00% mysqld [kernel.kallsyms] [k] unix_poll 0.37% 0.00% mysqld [kernel.kallsyms] [k] x2apic_send_IPI 0.37% 0.00% mysqld libcrypto.so.1.1 [.] EVP_CipherInit_ex 0.37% 0.00% mysqld mysqld [.] parse_sql(THD*, Parser_state*, Object_creation_ctx*) 0.37% 0.00% mysqld mysqld [.] pfs_digest_end_v2(PSI_digest_locker*, sql_digest_storage const*) 0.37% 0.00% mysqld mysqld [.] SHA_EVP256(unsigned char const*, unsigned long, unsigned char*) 0.37% 0.00% mysqld libcrypto.so.1.1 [.] EVP_MD_CTX_free 0.37% 0.00% mysqld libcrypto.so.1.1 [.] EVP_MD_CTX_reset 0.37% 0.00% mysqld mysqld [.] generate_user_salt(char*, int) 0.37% 0.00% mysqld libcrypto.so.1.1 [.] RAND_bytes 0.37% 0.00% mysqld libcrypto.so.1.1 [.] drbg_bytes 0.37% 0.00% mysqld libcrypto.so.1.1 [.] RAND_DRBG_bytes 0.37% 0.00% mysqld libcrypto.so.1.1 [.] RAND_DRBG_generate 0.37% 0.00% mysqld libcrypto.so.1.1 [.] drbg_ctr_generate 0.37% 0.00% mysqld libcrypto.so.1.1 [.] ctr_update 0.37% 0.00% mysqld libpthread-2.17.so [.] __libc_accept 0.37% 0.00% mysqld mysqld [.] my_net_read(NET*) 0.37% 0.00% mysqld mysqld [.] lf_hash_search(LF_HASH*, LF_PINS*, void const*, unsigned int) 0.37% 0.00% mysqld mysqld [.] append_identifier(String*, char const*, unsigned long) 0.37% 0.00% mysqld mysqld [.] trans_commit_stmt(THD*, bool) 0.37% 0.00% mysqld mysqld [.] vio_socket_io_wait(Vio*, enum_vio_io_event) 0.37% 0.00% mysqld mysqld [.] find_or_create_digest(PFS_thread*, sql_digest_storage const*, char const*, unsigned int) 0.37% 0.00% mysqld mysqld [.] pfs_create_metadata_lock_v1(void*, MDL_key const*, int, int, int, char const*, unsigned int) 0.37% 0.00% mysqld mysqld [.] vio_read(Vio*, unsigned char*, unsigned long) 0.37% 0.00% mysqld mysqld [.] lex_start(THD*) 0.37% 0.00% mysqld mysqld [.] Protocol_classic::read_packet() 0.37% 0.00% mysqld mysqld [.] net_read_packet(NET*, unsigned long*) 0.37% 0.00% mysqld mysqld [.] net_read_raw_loop(NET*, unsigned long) 0.37% 0.00% mysqld mysqld [.] show_slave_status_send_data(THD*, Master_info*, char*, char*) 0.37% 0.00% mysqld mysqld [.] MDL_context::try_acquire_lock_impl(MDL_request*, MDL_ticket**) 0.37% 0.00% mysqld mysqld [.] DB_restrictions::DB_restrictions(MEM_ROOT*) 0.37% 0.00% mysqld mysqld [.] Protocol_classic::get_command(COM_DATA*, enum_server_command*) 0.37% 0.00% mysqld mysqld [.] Protocol_classic::store_string(char const*, unsigned long, CHARSET_INFO const*) 0.37% 0.00% mysqld mysqld [.] Protocol_classic::net_store_data_with_conversion(unsigned char const*, unsigned long, CHARSET_INFO const*, CHARSET_INFO const*) 0.37% 0.00% mysqld mysqld [.] PFS_connection_slice::reset_statements_stats() 0.37% 0.00% mysqld mysqld [.] Mysqld_socket_listener::listen_for_connection_event() 0.37% 0.00% mysqld mysqld [.] dd::cache::Dictionary_client::~Dictionary_client() 0.37% 0.00% mysqld mysqld [.] LEX::new_top_level_query() 0.37% 0.00% mysqld mysqld [.] LEX::new_query(SELECT_LEX*) 0.37% 0.00% mysqld mysqld [.] LEX::create_query_expr_and_block(THD*, SELECT_LEX*, Item*, Item*, enum_parsing_context) 0.37% 0.00% mysqld mysqld [.] MEM_ROOT::AllocSlow(unsigned long) 0.37% 0.00% mysqld mysqld [.] MEM_ROOT::AllocBlock(unsigned long) 0.37% 0.00% mysqld mysqld [.] PFS_account::carry_memory_stat_delta(PFS_memory_stat_delta*, unsigned int) 0.37% 0.00% mysqld mysqld [.] Auth_id::auth_str() const 0.37% 0.00% mysqld mysqld [.] String::mem_realloc(unsigned long, bool) 0.37% 0.00% mysqld [unknown] [.] 0000000000000000 0.00% 0.00% mysqld mysqld [.] execute_native_thread_routine 0.00% 0.00% mysqld mysqld [.] os_event::wait_time_low(unsigned long, long) 0.00% 0.00% mysqld libpthread-2.17.so [.] pthread_cond_timedwait@@GLIBC_2.3.2 0.00% 0.00% mysqld mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% mysqld mysqld [.] Clone_persist_gtid::periodic_write() 0.00% 0.00% mysqld [kernel.kallsyms] [k] _raw_spin_lock 0.00% 0.00% mysqld [kernel.kallsyms] [k] schedule 0.00% 0.00% mysqld [kernel.kallsyms] [k] futex_wait 0.00% 0.00% mysqld [kernel.kallsyms] [k] finish_task_switch 0.00% 0.00% mysqld [kernel.kallsyms] [k] __schedule 0.00% 0.00% mysqld mysqld [.] std::thread::_State_impl > >::_M_run() 0.00% 0.00% mysqld mysqld [.] io_handler_thread(unsigned long) 0.00% 0.00% mysqld mysqld [.] fil_aio_wait(unsigned long) 0.00% 0.00% mysqld mysqld [.] os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) 0.00% 0.00% mysqld mysqld [.] LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) 0.00% 0.00% mysqld libaio.so.1.0.1 [.] 0x00007fd20abc7644 0.00% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_io_getevents 0.00% 0.00% mysqld [kernel.kallsyms] [k] do_io_getevents 0.00% 0.00% mysqld [kernel.kallsyms] [k] futex_wait_queue_me 0.00% 0.00% mysqld [kernel.kallsyms] [k] read_events 0.00% 0.00% mysqld [kernel.kallsyms] [k] _raw_spin_lock_irqsave 0.00% 0.00% mysqld [kernel.kallsyms] [k] prepare_to_wait_event 0.00% 0.00% :14255 [kernel.kallsyms] [k] fpregs_assert_state_consistent 0.00% 0.00% mysqld [kernel.kallsyms] [k] hrtimer_active 0.00% 0.00% :14255 libpthread-2.17.so [.] start_thread 0.00% 0.00% :14255 mysqld [.] pfs_spawn_thread 0.00% 0.00% :14255 mysqld [.] handle_connection 0.00% 0.00% :14255 mysqld [.] do_command(THD*) 0.00% 0.00% :14255 mysqld [.] dispatch_command(THD*, COM_DATA const*, enum_server_command) 0.00% 0.00% :14255 mysqld [.] PFS_connection_slice::reset_statements_stats() 0.00% 0.00% :14255 [kernel.kallsyms] [k] swapgs_restore_regs_and_return_to_usermode 0.00% 0.00% :14255 [kernel.kallsyms] [k] prepare_exit_to_usermode 0.00% 0.00% mysqld mysqld [.] ngs::Scheduler_dynamic::worker() 0.00% 0.00% mysqld mysqld [.] std::_Function_handler::_M_invoke(std::_Any_data const&) 0.00% 0.00% mysqld mysqld [.] ngs::Server::run_task(std::shared_ptr) 0.00% 0.00% mysqld mysqld [.] event_base_loop 0.00% 0.00% mysqld mysqld [.] epoll_dispatch 0.00% 0.00% mysqld libc-2.17.so [.] syscall 0.00% 0.00% mysqld [kernel.kallsyms] [k] __x64_sys_epoll_wait 0.00% 0.00% mysqld [kernel.kallsyms] [k] do_epoll_wait 0.00% 0.00% mysqld [kernel.kallsyms] [k] ep_poll 0.00% 0.00% mysqld [kernel.kallsyms] [k] schedule_hrtimeout_range 0.00% 0.00% mysqld [kernel.kallsyms] [k] schedule_hrtimeout_range_clock 0.00% 0.00% mysqld [kernel.kallsyms] [k] hrtimer_cancel 0.00% 0.00% mysqld mysqld [.] buf_flush_page_coordinator_thread(unsigned long) # # (Cannot load tips.txt file, please install perf!) #