Method SymbolLookup
SymbolLookup(ulong, ref ulong, ulong, out LazyEncodedString?)
Performs symbol lookup for the disassembler
[SuppressMessage("Design", "CA1045:Do not pass types by reference", Justification = "Matches ABI; Otherwise requires returning (and marshalling) a tuple")]
LazyEncodedString? SymbolLookup(ulong referenceValue, ref ulong referenceType, ulong referencePC, out LazyEncodedString? ReferenceName)
Parameters
referenceValueulongreferenceValue [Unknown what this is in "reference" to]
referenceTypeulongreferenceType [Unknown what this is in "reference" to or why an implementation might need/want to change this]
referencePCulongUnknown but assumed to relate to a program counter
ReferenceNameLazyEncodedStringCompletely unknown. [Is this really an OUT string or an IN array?]
Returns
- LazyEncodedString
Unknown