Package com.abovevacant.epitaph.core
Class BacktraceFrame
java.lang.Object
com.abovevacant.epitaph.core.BacktraceFrame
A single frame in a backtrace.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringBuild ID of the binary (hex string).final longOffset within the file mapping.final StringFile/library name, or empty string if unknown.final StringFunction name, or empty string if unknown.final longOffset within the function.final longAbsolute program counter (instruction address).final longRelative program counter (offset within the binary).final longStack pointer. -
Constructor Summary
ConstructorsConstructorDescriptionBacktraceFrame(long relPc, long pc, long sp, String functionName, long functionOffset, String fileName, long fileMapOffset, String buildId) -
Method Summary
-
Field Details
-
relPc
public final long relPcRelative program counter (offset within the binary). -
pc
public final long pcAbsolute program counter (instruction address). -
sp
public final long spStack pointer. -
functionName
Function name, or empty string if unknown. -
functionOffset
public final long functionOffsetOffset within the function. -
fileName
File/library name, or empty string if unknown. -
fileMapOffset
public final long fileMapOffsetOffset within the file mapping. -
buildId
Build ID of the binary (hex string).
-
-
Constructor Details
-
BacktraceFrame
-