| 482 | } |
| 483 | |
| 484 | static void WriteRegisterStackLocation(TArray<uint8_t> &instructions, int dwarfRegId, int stackLocation) |
| 485 | { |
| 486 | WriteUInt8(instructions, (2 << 6) | dwarfRegId); // DW_CFA_offset |
| 487 | WriteULEB128(instructions, stackLocation); |
| 488 | } |
| 489 | |
| 490 | static TArray<uint8_t> CreateUnwindInfoUnix(asmjit::CCFunc *func, unsigned int &functionStart) |
| 491 | { |
no test coverage detected