Reko.Scanning.Scanner.GetTrampoline C# (CSharp) Метод

GetTrampoline() публичный Метод

Tries to determine if the instruction at addr is a trampoline instruction. If so, we return a call to the imported function directly. procedure.
A trampoline is a procedure whose only contents is an indirect JUMP to a location that contains the address of an imported function. Because these trampolines may take on different appearances depending on the processor architecture, we have to call out to the architecture to assist in matching them.
public GetTrampoline ( Address addr ) : Reko.Core.ProcedureBase
addr Address
Результат Reko.Core.ProcedureBase
        public ProcedureBase GetTrampoline(Address addr)
        {
            var rdr = program.CreateImageReader(addr);
            var target = program.Platform.GetTrampolineDestination(rdr, this);
            return target;
        }