Package ghidra.app.util.bin.format.pe
Class ImageRuntimeFunctionEntries_ARM
java.lang.Object
ghidra.app.util.bin.format.pe.ImageRuntimeFunctionEntries_ARM
- All Implemented Interfaces:
ImageRuntimeFunctionEntries
typedef struct _IMAGE_ARM_RUNTIME_FUNCTION_ENTRY {
DWORD BeginAddress;
union {
DWORD UnwindData;
struct {
DWORD Flag : 2;
DWORD FunctionLength : 11;
DWORD Ret : 2;
DWORD H : 1;
DWORD Reg : 3;
DWORD R : 1;
DWORD L : 1;
DWORD C : 1;
DWORD StackAdjust : 10;
} DUMMYSTRUCTNAME;
} DUMMYUNIONNAME;
} IMAGE_ARM_RUNTIME_FUNCTION_ENTRY, * PIMAGE_ARM_RUNTIME_FUNCTION_ENTRY;
- See Also:
-
Method Summary
-
Method Details
-
markup
public void markup(Program program, Address headerStart) throws CodeUnitInsertionException, IOException, DuplicateNameException Description copied from interface:ImageRuntimeFunctionEntriesMarks up anImageRuntimeFunctionEntries- Specified by:
markupin interfaceImageRuntimeFunctionEntries- Parameters:
program- TheProgramheaderStart- The startAddress- Throws:
CodeUnitInsertionException- If data creation failedIOException- If there was an IO-related error creating the dataDuplicateNameException- If a data type of the same name already exists
-