⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eiptofunction

📁 The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a s
💻
字号:
#! /usr/bin/perl# Find the function name from the value of the EIP (instruction pointer)# register from a Bochs crash report.  Uses the kernel symbol# map (kernel.syms) produced by compiling the kernel.use strict qw(refs vars);use FileHandle;if (scalar(@ARGV) != 2){	print STDERR "Usage: eipToFunction kernel.syms <eip value>\n";	print STDERR "   eip value should be in hex\n";	exit 1;}my $syms = shift @ARGV;my $eip = hex(shift @ARGV);my @text = ();my $fh = new FileHandle("<$syms");(defined $fh) || die "Couldn't open $syms: $!\n";while (<$fh>) {	#print $_;	if (/^([0-9A-Fa-f]+)\s+[Tt]\s+(\S+)\s*$/) {		push @text, [hex($1), $2];	}}$fh->close();#print scalar(@text),"\n";@text = sort { $a->[0] <=> $b->[0] } @text;my $last = undef;foreach my $entry (@text) {	last if ($eip < $entry->[0]);	$last = $entry;}printf("%s\n",(defined $last) ? $last->[1] : "not found");# vim:ts=4

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -