| 30 | }; |
| 31 | |
| 32 | class Frame |
| 33 | { |
| 34 | public: |
| 35 | Frame(Dwarf_Addr pc, bool isActivation, std::optional<Dwarf_Word> stackPointer) |
| 36 | : pc(pc) |
| 37 | , isActivation(isActivation) |
| 38 | , stackPointer(stackPointer) |
| 39 | { |
| 40 | } |
| 41 | Dwarf_Addr pc; |
| 42 | bool isActivation; |
| 43 | std::optional<Dwarf_Word> stackPointer; |
| 44 | }; |
| 45 | |
| 46 | class ModuleCuDieRanges |
| 47 | { |
nothing calls this directly
no outgoing calls
no test coverage detected