| 476 | } |
| 477 | |
| 478 | static void WriteDefineStackOffset(TArray<uint8_t> &fdeInstructions, int stackOffset) |
| 479 | { |
| 480 | WriteUInt8(fdeInstructions, 0x0e); // DW_CFA_def_cfa_offset |
| 481 | WriteULEB128(fdeInstructions, stackOffset); |
| 482 | } |
| 483 | |
| 484 | static void WriteRegisterStackLocation(TArray<uint8_t> &instructions, int dwarfRegId, int stackLocation) |
| 485 | { |
no test coverage detected