From: Hyeoncheol Lee <[email protected]>

Union members can be accessed with '.' or '->' like data structure
member access

Signed-off-by: Hyunchul Lee <[email protected]>
Acked-by: Masami Hiramatsu <[email protected]>
Cc: Masami Hiramatsu <[email protected]>
Cc: Srikar Dronamraju <[email protected]>
Link: 
http://lkml.kernel.org/r/canfs6baeusbxpgq8suzwzerj2bws-nojg+fso138e1qk8bj...@mail.gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
---
 tools/perf/util/probe-finder.c |   24 ++++++++++++++++--------
 1 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/tools/perf/util/probe-finder.c b/tools/perf/util/probe-finder.c
index 526ba56..1daf5c1 100644
--- a/tools/perf/util/probe-finder.c
+++ b/tools/perf/util/probe-finder.c
@@ -525,8 +525,10 @@ static int convert_variable_fields(Dwarf_Die *vr_die, 
const char *varname,
                        return -ENOENT;
                }
                /* Verify it is a data structure  */
-               if (dwarf_tag(&type) != DW_TAG_structure_type) {
-                       pr_warning("%s is not a data structure.\n", varname);
+               tag = dwarf_tag(&type);
+               if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
+                       pr_warning("%s is not a data structure nor an union.\n",
+                                  varname);
                        return -EINVAL;
                }
 
@@ -539,8 +541,9 @@ static int convert_variable_fields(Dwarf_Die *vr_die, const 
char *varname,
                        *ref_ptr = ref;
        } else {
                /* Verify it is a data structure  */
-               if (tag != DW_TAG_structure_type) {
-                       pr_warning("%s is not a data structure.\n", varname);
+               if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
+                       pr_warning("%s is not a data structure nor an union.\n",
+                                  varname);
                        return -EINVAL;
                }
                if (field->name[0] == '[') {
@@ -567,10 +570,15 @@ static int convert_variable_fields(Dwarf_Die *vr_die, 
const char *varname,
        }
 
        /* Get the offset of the field */
-       ret = die_get_data_member_location(die_mem, &offs);
-       if (ret < 0) {
-               pr_warning("Failed to get the offset of %s.\n", field->name);
-               return ret;
+       if (tag == DW_TAG_union_type) {
+               offs = 0;
+       } else {
+               ret = die_get_data_member_location(die_mem, &offs);
+               if (ret < 0) {
+                       pr_warning("Failed to get the offset of %s.\n",
+                                  field->name);
+                       return ret;
+               }
        }
        ref->offset += (long)offs;
 
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to