aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/recordmcount.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 2033af758173..d44d55db7c06 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -376,6 +376,11 @@ if ($arch eq "x86_64") {
376 $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$"; 376 $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
377 $type = ".quad"; 377 $type = ".quad";
378 $alignment = 8; 378 $alignment = 8;
379} elsif ($arch eq "riscv") {
380 $function_regex = "^([0-9a-fA-F]+)\\s+<([^.0-9][0-9a-zA-Z_\\.]+)>:";
381 $mcount_regex = "^\\s*([0-9a-fA-F]+):\\sR_RISCV_CALL\\s_mcount\$";
382 $type = ".quad";
383 $alignment = 2;
379} else { 384} else {
380 die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; 385 die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
381} 386}