.se             = &sort_thread,
 };
 
+static struct c2c_dimension dim_symbol = {
+       .name           = "symbol",
+       .se             = &sort_sym,
+};
+
+static struct c2c_dimension dim_dso = {
+       .header         = HEADER_BOTH("Shared", "Object"),
+       .name           = "dso",
+       .se             = &sort_dso,
+};
+
 static struct c2c_dimension *dimensions[] = {
        &dim_dcacheline,
        &dim_offset,
        &dim_dram_rmt,
        &dim_pid,
        &dim_tid,
+       &dim_symbol,
+       &dim_dso,
        NULL,
 };
 
 static int c2c_hists__init_sort(struct perf_hpp_list *hpp_list, char *name)
 {
        struct c2c_fmt *c2c_fmt = get_format(name);
+       struct c2c_dimension *dim;
 
        if (!c2c_fmt) {
                reset_dimensions();
                return sort_dimension__add(hpp_list, name, NULL, 0);
        }
 
+       dim = c2c_fmt->dim;
+       if (dim == &dim_dso)
+               hpp_list->dso = 1;
+
        perf_hpp_list__register_sort_field(hpp_list, &c2c_fmt->fmt);
        return 0;
 }