#include "sort.h"
 #include "machine.h"
 #include "callchain.h"
+#include "branch.h"
 
 #define CALLCHAIN_PARAM_DEFAULT                        \
        .mode           = CHAIN_GRAPH_ABS,      \
                        call->cycles_count = cursor_node->branch_flags.cycles;
                        call->iter_count = cursor_node->nr_loop_iter;
                        call->samples_count = cursor_node->samples;
+
+                       branch_type_count(&call->brtype_stat,
+                                         &cursor_node->branch_flags,
+                                         cursor_node->branch_from,
+                                         cursor_node->ip);
                }
 
                list_add_tail(&call->list, &node->val);
                        cnode->cycles_count += node->branch_flags.cycles;
                        cnode->iter_count += node->nr_loop_iter;
                        cnode->samples_count += node->samples;
+
+                       branch_type_count(&cnode->brtype_stat,
+                                         &node->branch_flags,
+                                         node->branch_from,
+                                         node->ip);
                }
 
                return MATCH_EQ;
        list_for_each_entry_safe(list, next_list, &src->val, list) {
                callchain_cursor_append(cursor, list->ip,
                                        list->ms.map, list->ms.sym,
-                                       false, NULL, 0, 0);
+                                       false, NULL, 0, 0, 0);
                list_del(&list->list);
                map__zput(list->ms.map);
                free(list);
 int callchain_cursor_append(struct callchain_cursor *cursor,
                            u64 ip, struct map *map, struct symbol *sym,
                            bool branch, struct branch_flags *flags,
-                           int nr_loop_iter, int samples)
+                           int nr_loop_iter, int samples, u64 branch_from)
 {
        struct callchain_cursor_node *node = *cursor->last;
 
                memcpy(&node->branch_flags, flags,
                        sizeof(struct branch_flags));
 
+       node->branch_from = branch_from;
        cursor->nr++;
 
        cursor->last = &node->next;
 static int counts_str_build(char *bf, int bfsize,
                             u64 branch_count, u64 predicted_count,
                             u64 abort_count, u64 cycles_count,
-                            u64 iter_count, u64 samples_count)
+                            u64 iter_count, u64 samples_count,
+                            struct branch_type_stat *brtype_stat)
 {
        u64 cycles;
-       int printed = 0, i = 0;
+       int printed, i = 0;
 
        if (branch_count == 0)
                return scnprintf(bf, bfsize, " (calltrace)");
 
+       printed = branch_type_str(brtype_stat, bf, bfsize);
+       if (printed)
+               i++;
+
        if (predicted_count < branch_count) {
                printed += count_float_printf(i++, "predicted",
                                predicted_count * 100.0 / branch_count,
 static int callchain_counts_printf(FILE *fp, char *bf, int bfsize,
                                   u64 branch_count, u64 predicted_count,
                                   u64 abort_count, u64 cycles_count,
-                                  u64 iter_count, u64 samples_count)
+                                  u64 iter_count, u64 samples_count,
+                                  struct branch_type_stat *brtype_stat)
 {
-       char str[128];
+       char str[256];
 
        counts_str_build(str, sizeof(str), branch_count,
                         predicted_count, abort_count, cycles_count,
-                        iter_count, samples_count);
+                        iter_count, samples_count, brtype_stat);
 
        if (fp)
                return fprintf(fp, "%s", str);
 
        return callchain_counts_printf(fp, bf, bfsize, branch_count,
                                       predicted_count, abort_count,
-                                      cycles_count, iter_count, samples_count);
+                                      cycles_count, iter_count, samples_count,
+                                      &clist->brtype_stat);
 }
 
 static void free_callchain_node(struct callchain_node *node)
 
                rc = callchain_cursor_append(dst, node->ip, node->map, node->sym,
                                             node->branch, &node->branch_flags,
-                                            node->nr_loop_iter, node->samples);
+                                            node->nr_loop_iter, node->samples,
+                                            node->branch_from);
                if (rc)
                        break;
 
 
                            bool branch,
                            struct branch_flags *flags,
                            int nr_loop_iter,
-                           int samples)
+                           int samples,
+                           u64 branch_from)
 {
        struct addr_location al;
 
        if (symbol_conf.hide_unresolved && al.sym == NULL)
                return 0;
        return callchain_cursor_append(cursor, al.addr, al.map, al.sym,
-                                      branch, flags, nr_loop_iter, samples);
+                                      branch, flags, nr_loop_iter, samples,
+                                      branch_from);
 }
 
 struct branch_info *sample__resolve_bstack(struct perf_sample *sample,
        struct ip_callchain *chain = sample->callchain;
        int chain_nr = min(max_stack, (int)chain->nr), i;
        u8 cpumode = PERF_RECORD_MISC_USER;
-       u64 ip;
+       u64 ip, branch_from = 0;
 
        for (i = 0; i < chain_nr; i++) {
                if (chain->ips[i] == PERF_CONTEXT_USER)
                                        ip = lbr_stack->entries[0].to;
                                        branch = true;
                                        flags = &lbr_stack->entries[0].flags;
+                                       branch_from =
+                                               lbr_stack->entries[0].from;
                                }
                        } else {
                                if (j < lbr_nr) {
                                        ip = lbr_stack->entries[0].to;
                                        branch = true;
                                        flags = &lbr_stack->entries[0].flags;
+                                       branch_from =
+                                               lbr_stack->entries[0].from;
                                }
                        }
 
                        err = add_callchain_ip(thread, cursor, parent,
                                               root_al, &cpumode, ip,
-                                              branch, flags, 0, 0);
+                                              branch, flags, 0, 0,
+                                              branch_from);
                        if (err)
                                return (err < 0) ? err : 0;
                }
                                                       root_al,
                                                       NULL, be[i].to,
                                                       true, &be[i].flags,
-                                                      nr_loop_iter, 1);
+                                                      nr_loop_iter, 1,
+                                                      be[i].from);
                        else
                                err = add_callchain_ip(thread, cursor, parent,
                                                       root_al,
                                                       NULL, be[i].to,
                                                       true, &be[i].flags,
-                                                      0, 0);
+                                                      0, 0, be[i].from);
 
                        if (!err)
                                err = add_callchain_ip(thread, cursor, parent, root_al,
                                                       NULL, be[i].from,
                                                       true, &be[i].flags,
-                                                      0, 0);
+                                                      0, 0, 0);
                        if (err == -EINVAL)
                                break;
                        if (err)
 
                err = add_callchain_ip(thread, cursor, parent,
                                       root_al, &cpumode, ip,
-                                      false, NULL, 0, 0);
+                                      false, NULL, 0, 0, 0);
 
                if (err)
                        return (err < 0) ? err : 0;
                return 0;
        return callchain_cursor_append(cursor, entry->ip,
                                       entry->map, entry->sym,
-                                      false, NULL, 0, 0);
+                                      false, NULL, 0, 0, 0);
 }
 
 static int thread__resolve_callchain_unwind(struct thread *thread,