Changeset 73396 in vbox
- Timestamp:
- Jul 30, 2018 3:24:19 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124014
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/pecoff.h
r73386 r73396 705 705 typedef struct IMAGE_UNWIND_INFO 706 706 { 707 /** Version, currently 1 .*/707 /** Version, currently 1 or 2. The latter if IMAGE_AMD64_UWOP_EPILOG is used. */ 708 708 uint8_t Version : 3; 709 709 /** IMAGE_UNW_FLAG_XXX */ … … 750 750 * MASM: .PUSHREG reg */ 751 751 IMAGE_AMD64_UWOP_PUSH_NONVOL = 0, 752 /** Stack allocation: Size stored in the next two slots (dword). 752 /** Stack allocation: Size stored in scaled in the next slot if OpInfo == 0, 753 * otherwise stored unscaled in the next two slots. 753 754 * YASM: [allocstack size] 754 755 * MASM: .ALLOCSTACK size */ … … 774 775 * MASM: .SAVEREG reg, offset */ 775 776 IMAGE_AMD64_UWOP_SAVE_NONVOL_FAR, 776 IMAGE_AMD64_UWOP_RESERVED_6, 777 /** Epilog info, version 2+. 778 * 779 * The first time this opcode is used, the CodeOffset gives the size of the 780 * epilog and bit 0 of the OpInfo field indicates that there is only one 781 * epilog at the very end of the function. 782 * 783 * Subsequent uses of this opcode specifies epilog start offsets relative to 784 * the end of the function, using CodeOffset for the 8 lower bits and OpInfo 785 * for bits 8 thru 11. 786 * 787 * The compiler seems to stack allocations and register saving opcodes and 788 * indicates the location mirroring the first IMAGE_AMD64_UWOP_PUSH_NONVOL. */ 789 IMAGE_AMD64_UWOP_EPILOG, 790 /** Undefined. */ 777 791 IMAGE_AMD64_UWOP_RESERVED_7, 778 792 /** Save 128-bit XMM register (OpInfo) on stack (RSP/FP + next slot).
Note:
See TracChangeset
for help on using the changeset viewer.