mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
94864e49b5
* mmap on the PTC side before doing any translation * Update usages of virtual addresses * Refactor options to have --load-at and --entry * Update tests according to the changes
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PROGRAM=$1
|
|
FUNCTION=$2
|
|
|
|
VA=`readelf --wide -s $PROGRAM | grep $FUNCTION | grep GLOBAL | grep FUNC | head -n1 | awk -F' ' '{ print strtonum("0x" $2) }'`
|
|
|
|
echo $VA
|