mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 09:12:24 +03:00
Open source GPL/LGPL release
This commit is contained in:
132
scripts/nvgpu_debug_hal.py
Executable file
132
scripts/nvgpu_debug_hal.py
Executable file
@@ -0,0 +1,132 @@
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved.
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||
# copy of this software and associated documentation files (the "Software"),
|
||||
# to deal in the Software without restriction, including without limitation
|
||||
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
# and/or sell copies of the Software, and to permit persons to whom the
|
||||
# Software is furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
# DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
# usage: nvgpu_debug_hal.py [-h] [--csv] [--gk20a GK20A] [gops_filename]
|
||||
#
|
||||
# Analyze the HAL debugfs interface's output. With no arguments, prints out
|
||||
# statistics on the gpu_ops struct based on analysis of gk20a.h
|
||||
#
|
||||
# positional arguments:
|
||||
# gops_filename debugfs interface output file (from /d/gpu.0/hal/gops)
|
||||
#
|
||||
# optional arguments:
|
||||
# -h, --help show this help message and exit
|
||||
# --csv csv formatted output
|
||||
# --gk20a GK20A path to gk20a.h
|
||||
|
||||
import argparse
|
||||
import re
|
||||
from os import environ
|
||||
|
||||
description_str = ('Analyze the HAL debugfs interface\'s output. '
|
||||
'With no arguments, prints out statistics on the gpu_ops struct based on '
|
||||
'analysis of gk20a.h')
|
||||
|
||||
parser = argparse.ArgumentParser(description=description_str);
|
||||
parser.add_argument("--csv", help="csv formatted output", action="store_true");
|
||||
parser.add_argument("--gk20a", help="path to gk20a.h");
|
||||
parser.add_argument("gops_filename", help="debugfs interface output file (from /d/gpu.0/hal/gops)", nargs='?');
|
||||
args = parser.parse_args();
|
||||
|
||||
if args.gk20a:
|
||||
gk20a_h_path = args.gk20a
|
||||
else:
|
||||
top = environ.get('TOP');
|
||||
if top is None:
|
||||
print("$TOP is undefined, unable to find gk20a.h");
|
||||
exit(-1);
|
||||
gk20a_h_path = top + "/kernel/nvgpu/drivers/gpu/nvgpu/include/nvgpu/gk20a.h"
|
||||
|
||||
def get_function_pointer_name(line):
|
||||
matches = re.search('.*\(\*(?P<function_name>\w+)\)\(', line);
|
||||
if matches is None:
|
||||
return None
|
||||
else:
|
||||
return matches.group("function_name");
|
||||
|
||||
# Build the list of gpu_ops member function pointers from gk20a.h
|
||||
non_function_pointer_members = [];
|
||||
formatted_members = [];
|
||||
gops_members = dict();
|
||||
substruct_names = [];
|
||||
lone_members = [];
|
||||
with open(gk20a_h_path) as gk20a_h:
|
||||
# Skip to start of gpu_ops struct
|
||||
while gk20a_h.readline() != "struct gpu_ops {\n":
|
||||
continue;
|
||||
|
||||
line = gk20a_h.readline();
|
||||
while line != "};\n":
|
||||
# If this is a substruct
|
||||
if re.match('\t+struct.+\{', line):
|
||||
# Read the contents of the substruct
|
||||
line = gk20a_h.readline();
|
||||
struct_contents = ""
|
||||
while not re.match("\t*\} (\w+);", line):
|
||||
struct_contents += line;
|
||||
line = gk20a_h.readline();
|
||||
# Split out the substruct name and the function pointer names
|
||||
struct_name = re.match("\t*\} (?P<struct_name>\w+);", line).group("struct_name");
|
||||
struct_members = re.findall(r".+?\(\s*\*\s*(\w+)\s*\).+?;", struct_contents, flags=re.DOTALL)
|
||||
|
||||
# Store the substruct as an entry
|
||||
substruct_names.append(struct_name);
|
||||
gops_members[struct_name] = struct_members;
|
||||
# Format members
|
||||
for member in struct_members:
|
||||
formatted_members.append(struct_name + "." + member);
|
||||
else:
|
||||
# Lone members (function pointers or stuff not in a substruct)
|
||||
match = re.match(".*\(\*(?P<function_name>\w+)\)\(", line);
|
||||
if match is not None:
|
||||
# It's a function pointer, keep track of it
|
||||
lone_members.append(match.group("function_name"));
|
||||
formatted_members.append(match.group("function_name"));
|
||||
else:
|
||||
# Not a function pointer, may also catch comments etc.
|
||||
non_function_pointer_members.append(line.strip());
|
||||
line = gk20a_h.readline();
|
||||
if args.gops_filename:
|
||||
# Interpret gops file
|
||||
with open(args.gops_filename) as gops:
|
||||
i = 0;
|
||||
# Option for csv output
|
||||
if args.csv:
|
||||
format_string = '{0},{1}';
|
||||
else:
|
||||
format_string = '{0:<60} = {1}';
|
||||
for line in gops:
|
||||
print(format_string.format(formatted_members[i], line[:-1]));
|
||||
i += 1;
|
||||
else:
|
||||
# Just print some stats on the gpu_ops struct
|
||||
total = 0;
|
||||
print("----- Lone Function Pointers -----");
|
||||
print("Count =", len(lone_members));
|
||||
total += len(lone_members);
|
||||
for line in lone_members:
|
||||
print(line);
|
||||
print("----- Substruct Counts -----");
|
||||
for name in substruct_names:
|
||||
print(name, "=", len(gops_members[name]));
|
||||
total += len(gops_members[name])
|
||||
print("\n Total =", total);
|
||||
Reference in New Issue
Block a user